diff --git a/doc/html/ADSR_8h-source.html b/doc/html/ADSR_8h-source.html new file mode 100644 index 0000000..fb0caf7 --- /dev/null +++ b/doc/html/ADSR_8h-source.html @@ -0,0 +1,76 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

ADSR.h

00001 /***************************************************/
+00016 /***************************************************/
+00017 
+00018 #if !defined(__ADSR_H)
+00019 #define __ADSR_H
+00020 
+00021 #include "Envelope.h"
+00022 
+00023 class ADSR : public Envelope
+00024 {
+00025  public:
+00026 
+00028   enum { ATTACK, DECAY, SUSTAIN, RELEASE, DONE };
+00029 
+00031   ADSR(void);
+00032 
+00034   ~ADSR(void);
+00035 
+00037   void keyOn(void);
+00038 
+00040   void keyOff(void);
+00041 
+00043   void setAttackRate(MY_FLOAT aRate);
+00044 
+00046   void setDecayRate(MY_FLOAT aRate);
+00047 
+00049   void setSustainLevel(MY_FLOAT aLevel);
+00050 
+00052   void setReleaseRate(MY_FLOAT aRate);
+00053 
+00055   void setAttackTime(MY_FLOAT aTime);
+00056 
+00058   void setDecayTime(MY_FLOAT aTime);
+00059 
+00061   void setReleaseTime(MY_FLOAT aTime);
+00062 
+00064   void setAllTimes(MY_FLOAT aTime, MY_FLOAT dTime, MY_FLOAT sLevel, MY_FLOAT rTime);
+00065 
+00067   void setTarget(MY_FLOAT aTarget);
+00068 
+00070   int getState(void) const;
+00071 
+00073   void setValue(MY_FLOAT aValue);
+00074 
+00076   MY_FLOAT tick(void);
+00077 
+00079   MY_FLOAT *tick(MY_FLOAT *vector, unsigned int vectorSize);
+00080 
+00081  protected:  
+00082   MY_FLOAT attackRate;
+00083   MY_FLOAT decayRate;
+00084   MY_FLOAT sustainLevel;
+00085   MY_FLOAT releaseRate;
+00086 };
+00087 
+00088 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/BandedWG_8h-source.html b/doc/html/BandedWG_8h-source.html new file mode 100644 index 0000000..c601e5b --- /dev/null +++ b/doc/html/BandedWG_8h-source.html @@ -0,0 +1,87 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

BandedWG.h

00001 /***************************************************/
+00030 /***************************************************/
+00031 
+00032 #if !defined(__BANDEDWG_H)
+00033 #define __BANDEDWG_H
+00034 
+00035 #define MAX_BANDED_MODES 17
+00036 
+00037 #include "Instrmnt.h"
+00038 #include "Delay.h"
+00039 #include "BowTabl.h"
+00040 #include "ADSR.h"
+00041 #include "BiQuad.h"
+00042 
+00043 class BandedWG : public Instrmnt
+00044 {
+00045  public:
+00047   BandedWG();
+00048 
+00050   ~BandedWG();
+00051 
+00053   void clear();
+00054 
+00056   void setStrikePosition(MY_FLOAT position);
+00057 
+00059   void setPreset(int preset);
+00060 
+00062   void setFrequency(MY_FLOAT frequency);
+00063 
+00065   void startBowing(MY_FLOAT amplitude, MY_FLOAT rate);
+00066 
+00068   void stopBowing(MY_FLOAT rate);
+00069 
+00071   void pluck(MY_FLOAT amp);
+00072 
+00074   void noteOn(MY_FLOAT frequency, MY_FLOAT amplitude);
+00075 
+00077   void noteOff(MY_FLOAT amplitude);
+00078 
+00080   MY_FLOAT tick();
+00081 
+00083   void controlChange(int number, MY_FLOAT value);
+00084 
+00085  protected:
+00086 
+00087   bool doPluck;
+00088   bool trackVelocity;
+00089   int nModes;
+00090   int presetModes;
+00091   BowTabl *bowTabl;
+00092   ADSR *adsr;
+00093   BiQuad *bandpass;
+00094   Delay *delay;
+00095   MY_FLOAT maxVelocity;
+00096   MY_FLOAT modes[MAX_BANDED_MODES];
+00097   MY_FLOAT freakency;
+00098   MY_FLOAT baseGain;
+00099   MY_FLOAT gains[MAX_BANDED_MODES];
+00100   MY_FLOAT integrationConstant;
+00101   MY_FLOAT bowVelocity;
+00102   MY_FLOAT bowTarget;
+00103   MY_FLOAT bowPosition;
+00104   int strikePosition;
+00105 
+00106 };
+00107 
+00108 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/BeeThree_8h-source.html b/doc/html/BeeThree_8h-source.html new file mode 100644 index 0000000..cd0c52d --- /dev/null +++ b/doc/html/BeeThree_8h-source.html @@ -0,0 +1,41 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

BeeThree.h

00001 /***************************************************/
+00033 /***************************************************/
+00034 
+00035 #if !defined(__BEETHREE_H)
+00036 #define __BEETHREE_H
+00037 
+00038 #include "FM.h"
+00039 
+00040 class BeeThree : public FM
+00041 {
+00042  public:
+00044   BeeThree();
+00045 
+00047   ~BeeThree();
+00048 
+00050   void noteOn(MY_FLOAT frequency, MY_FLOAT amplitude);
+00051 
+00053   MY_FLOAT tick();
+00054 };
+00055 
+00056 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/BiQuad_8h-source.html b/doc/html/BiQuad_8h-source.html new file mode 100644 index 0000000..a78b6f7 --- /dev/null +++ b/doc/html/BiQuad_8h-source.html @@ -0,0 +1,70 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

BiQuad.h

00001 /***************************************************/
+00013 /***************************************************/
+00014 
+00015 #if !defined(__BIQUAD_H)
+00016 #define __BIQUAD_H
+00017 
+00018 #include "Filter.h"
+00019 
+00020 class BiQuad : protected Filter
+00021 {
+00022 public:
+00023 
+00025   BiQuad();
+00026 
+00028   virtual ~BiQuad();
+00029 
+00031   void clear(void);
+00032 
+00034   void setB0(MY_FLOAT b0);
+00035 
+00037   void setB1(MY_FLOAT b1);
+00038 
+00040   void setB2(MY_FLOAT b2);
+00041 
+00043   void setA1(MY_FLOAT a1);
+00044 
+00046   void setA2(MY_FLOAT a2);
+00047 
+00049 
+00060   void setResonance(MY_FLOAT frequency, MY_FLOAT radius, bool normalize = FALSE);
+00061 
+00063 
+00069   void setNotch(MY_FLOAT frequency, MY_FLOAT radius);
+00070 
+00072 
+00078   void setEqualGainZeroes();
+00079 
+00081 
+00085   void setGain(MY_FLOAT theGain);
+00086 
+00088   MY_FLOAT getGain(void) const;
+00089 
+00091   MY_FLOAT lastOut(void) const;
+00092 
+00094   MY_FLOAT tick(MY_FLOAT sample);
+00095 
+00097   MY_FLOAT *tick(MY_FLOAT *vector, unsigned int vectorSize);
+00098 };
+00099 
+00100 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/BlowBotl_8h-source.html b/doc/html/BlowBotl_8h-source.html new file mode 100644 index 0000000..1a1b70a --- /dev/null +++ b/doc/html/BlowBotl_8h-source.html @@ -0,0 +1,72 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

BlowBotl.h

00001 /***************************************************/
+00017 /***************************************************/
+00018 
+00019 #if !defined(__BOTTLE_H)
+00020 #define __BOTTLE_H
+00021 
+00022 #include "Instrmnt.h"
+00023 #include "JetTabl.h"
+00024 #include "BiQuad.h"
+00025 #include "PoleZero.h"
+00026 #include "Noise.h"
+00027 #include "ADSR.h"
+00028 #include "WaveLoop.h"
+00029 
+00030 class BlowBotl : public Instrmnt
+00031 {
+00032  public:
+00034   BlowBotl();
+00035 
+00037   ~BlowBotl();
+00038 
+00040   void clear();
+00041 
+00043   void setFrequency(MY_FLOAT frequency);
+00044 
+00046   void startBlowing(MY_FLOAT amplitude, MY_FLOAT rate);
+00047 
+00049   void stopBlowing(MY_FLOAT rate);
+00050 
+00052   void noteOn(MY_FLOAT frequency, MY_FLOAT amplitude);
+00053 
+00055   void noteOff(MY_FLOAT amplitude);
+00056 
+00058   MY_FLOAT tick();
+00059 
+00061   void controlChange(int number, MY_FLOAT value);
+00062 
+00063  protected:  
+00064   JetTabl *jetTable;
+00065   BiQuad *resonator;
+00066   PoleZero *dcBlock;
+00067   Noise *noise;
+00068   ADSR *adsr;
+00069   WaveLoop *vibrato;
+00070   MY_FLOAT maxPressure;
+00071   MY_FLOAT noiseGain;
+00072   MY_FLOAT vibratoGain;
+00073   MY_FLOAT outputGain;
+00074 
+00075 };
+00076 
+00077 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/BlowHole_8h-source.html b/doc/html/BlowHole_8h-source.html new file mode 100644 index 0000000..f8ec69f --- /dev/null +++ b/doc/html/BlowHole_8h-source.html @@ -0,0 +1,84 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

BlowHole.h

00001 /***************************************************/
+00034 /***************************************************/
+00035 
+00036 #if !defined(__BLOWHOLE_H)
+00037 #define __BLOWHOLE_H
+00038 
+00039 #include "Instrmnt.h"
+00040 #include "DelayL.h"
+00041 #include "ReedTabl.h"
+00042 #include "OneZero.h"
+00043 #include "PoleZero.h"
+00044 #include "Envelope.h"
+00045 #include "Noise.h"
+00046 #include "WaveLoop.h"
+00047 
+00048 class BlowHole : public Instrmnt
+00049 {
+00050  public:
+00052   BlowHole(MY_FLOAT lowestFrequency);
+00053 
+00055   ~BlowHole();
+00056 
+00058   void clear();
+00059 
+00061   void setFrequency(MY_FLOAT frequency);
+00062 
+00064   void setTonehole(MY_FLOAT newValue);
+00065 
+00067   void setVent(MY_FLOAT newValue);
+00068 
+00070   void startBlowing(MY_FLOAT amplitude, MY_FLOAT rate);
+00071 
+00073   void stopBlowing(MY_FLOAT rate);
+00074 
+00076   void noteOn(MY_FLOAT frequency, MY_FLOAT amplitude);
+00077 
+00079   void noteOff(MY_FLOAT amplitude);
+00080 
+00082   MY_FLOAT tick();
+00083 
+00085   void controlChange(int number, MY_FLOAT value);
+00086 
+00087  protected:  
+00088   DelayL *delays[3];
+00089   ReedTabl *reedTable;
+00090   OneZero *filter;
+00091   PoleZero *tonehole;
+00092   PoleZero *vent;
+00093   Envelope *envelope;
+00094   Noise *noise;
+00095   WaveLoop *vibrato;
+00096   long length;
+00097   MY_FLOAT scatter;
+00098   MY_FLOAT th_coeff;
+00099   MY_FLOAT r_th;
+00100   MY_FLOAT rh_coeff;
+00101   MY_FLOAT rh_gain;
+00102   MY_FLOAT outputGain;
+00103   MY_FLOAT noiseGain;
+00104   MY_FLOAT vibratoGain;
+00105 
+00106 };
+00107 
+00108 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/BowTabl_8h-source.html b/doc/html/BowTabl_8h-source.html new file mode 100644 index 0000000..15cc898 --- /dev/null +++ b/doc/html/BowTabl_8h-source.html @@ -0,0 +1,56 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

BowTabl.h

00001 /***************************************************/
+00010 /***************************************************/
+00011 
+00012 #if !defined(__BOWTABL_H)
+00013 #define __BOWTABL_H
+00014 
+00015 #include "Stk.h"
+00016 
+00017 class BowTabl : public Stk
+00018 {
+00019 public:
+00021   BowTabl();
+00022 
+00024   ~BowTabl();
+00025 
+00027 
+00033   void setOffset(MY_FLOAT aValue);
+00034 
+00036 
+00040   void setSlope(MY_FLOAT aValue);
+00041 
+00043   MY_FLOAT lastOut(void) const;
+00044 
+00046 
+00050   MY_FLOAT tick(const MY_FLOAT input);
+00051 
+00053   MY_FLOAT *tick(MY_FLOAT *vector, unsigned int vectorSize);
+00054 
+00055 protected:  
+00056   MY_FLOAT offSet;
+00057   MY_FLOAT slope;
+00058   MY_FLOAT lastOutput;
+00059 
+00060 };
+00061 
+00062 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Bowed_8h-source.html b/doc/html/Bowed_8h-source.html new file mode 100644 index 0000000..3123755 --- /dev/null +++ b/doc/html/Bowed_8h-source.html @@ -0,0 +1,75 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Bowed.h

00001 /***************************************************/
+00022 /***************************************************/
+00023 
+00024 #if !defined(__BOWED_H)
+00025 #define __BOWED_H
+00026 
+00027 #include "Instrmnt.h"
+00028 #include "DelayL.h"
+00029 #include "BowTabl.h"
+00030 #include "OnePole.h"
+00031 #include "BiQuad.h"
+00032 #include "WaveLoop.h"
+00033 #include "ADSR.h"
+00034 
+00035 class Bowed : public Instrmnt
+00036 {
+00037  public:
+00039   Bowed(MY_FLOAT lowestFrequency);
+00040 
+00042   ~Bowed();
+00043 
+00045   void clear();
+00046 
+00048   void setFrequency(MY_FLOAT frequency);
+00049 
+00051   void setVibrato(MY_FLOAT gain);
+00052 
+00054   void startBowing(MY_FLOAT amplitude, MY_FLOAT rate);
+00055 
+00057   void stopBowing(MY_FLOAT rate);
+00058 
+00060   void noteOn(MY_FLOAT frequency, MY_FLOAT amplitude);
+00061 
+00063   void noteOff(MY_FLOAT amplitude);
+00064 
+00066   MY_FLOAT tick();
+00067 
+00069   void controlChange(int number, MY_FLOAT value);
+00070 
+00071  protected:  
+00072   DelayL *neckDelay;
+00073   DelayL *bridgeDelay;
+00074   BowTabl *bowTable;
+00075   OnePole *stringFilter;
+00076   BiQuad *bodyFilter;
+00077   WaveLoop *vibrato;
+00078   ADSR *adsr;
+00079   MY_FLOAT maxVelocity;
+00080   MY_FLOAT baseDelay;
+00081   MY_FLOAT vibratoGain;
+00082   MY_FLOAT betaRatio;
+00083 
+00084 };
+00085 
+00086 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Brass_8h-source.html b/doc/html/Brass_8h-source.html new file mode 100644 index 0000000..81a1dce --- /dev/null +++ b/doc/html/Brass_8h-source.html @@ -0,0 +1,73 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Brass.h

00001 /***************************************************/
+00021 /***************************************************/
+00022 
+00023 #if !defined(__BRASS_H)
+00024 #define __BRASS_H
+00025 
+00026 #include "Instrmnt.h"
+00027 #include "DelayA.h"
+00028 #include "BiQuad.h"
+00029 #include "PoleZero.h"
+00030 #include "ADSR.h"
+00031 #include "WaveLoop.h"
+00032 
+00033 class Brass: public Instrmnt
+00034 {
+00035  public:
+00037   Brass(MY_FLOAT lowestFrequency);
+00038 
+00040   ~Brass();
+00041 
+00043   void clear();
+00044 
+00046   void setFrequency(MY_FLOAT frequency);
+00047 
+00049   void setLip(MY_FLOAT frequency);
+00050 
+00052   void startBlowing(MY_FLOAT amplitude,MY_FLOAT rate);
+00053 
+00055   void stopBlowing(MY_FLOAT rate);
+00056 
+00058   void noteOn(MY_FLOAT frequency, MY_FLOAT amplitude);
+00059 
+00061   void noteOff(MY_FLOAT amplitude);
+00062 
+00064   MY_FLOAT tick();
+00065 
+00067   void controlChange(int number, MY_FLOAT value);
+00068 
+00069  protected:  
+00070   DelayA *delayLine;
+00071   BiQuad *lipFilter;
+00072   PoleZero *dcBlock;
+00073   ADSR *adsr;
+00074   WaveLoop *vibrato;
+00075   long length;
+00076   MY_FLOAT lipTarget;
+00077   MY_FLOAT slideTarget;
+00078   MY_FLOAT vibratoGain;
+00079   MY_FLOAT maxPressure;
+00080 
+00081 };
+00082 
+00083 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Chorus_8h-source.html b/doc/html/Chorus_8h-source.html new file mode 100644 index 0000000..9d0ac2e --- /dev/null +++ b/doc/html/Chorus_8h-source.html @@ -0,0 +1,67 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Chorus.h

00001 /***************************************************/
+00009 /***************************************************/
+00010 
+00011 #if !defined(__CHORUS_H)
+00012 #define __CHORUS_H
+00013 
+00014 #include "Stk.h" 
+00015 #include "DelayL.h" 
+00016 #include "WaveLoop.h" 
+00017 
+00018 class Chorus : public Stk
+00019 {
+00020  public:
+00022   Chorus(MY_FLOAT baseDelay);
+00023 
+00025   ~Chorus();
+00026 
+00028   void clear();
+00029 
+00031   void setModDepth(MY_FLOAT depth);
+00032 
+00034   void setModFrequency(MY_FLOAT frequency);
+00035 
+00037   void setEffectMix(MY_FLOAT mix);
+00038 
+00040   MY_FLOAT lastOut() const;
+00041 
+00043   MY_FLOAT lastOutLeft() const;
+00044 
+00046   MY_FLOAT lastOutRight() const;
+00047 
+00049   MY_FLOAT tick(MY_FLOAT input);
+00050 
+00052   MY_FLOAT *tick(MY_FLOAT *vector, unsigned int vectorSize);
+00053 
+00054  protected:  
+00055   DelayL *delayLine[2];
+00056   WaveLoop *mods[2];
+00057   MY_FLOAT baseLength;
+00058   MY_FLOAT modDepth;
+00059   MY_FLOAT lastOutput[2];
+00060   MY_FLOAT effectMix;
+00061 
+00062 };
+00063 
+00064 #endif
+00065 
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Clarinet_8h-source.html b/doc/html/Clarinet_8h-source.html new file mode 100644 index 0000000..120830c --- /dev/null +++ b/doc/html/Clarinet_8h-source.html @@ -0,0 +1,72 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Clarinet.h

00001 /***************************************************/
+00023 /***************************************************/
+00024 
+00025 #if !defined(__CLARINET_H)
+00026 #define __CLARINET_H
+00027 
+00028 #include "Instrmnt.h"
+00029 #include "DelayL.h"
+00030 #include "ReedTabl.h"
+00031 #include "OneZero.h"
+00032 #include "Envelope.h"
+00033 #include "Noise.h"
+00034 #include "WaveLoop.h"
+00035 
+00036 class Clarinet : public Instrmnt
+00037 {
+00038  public:
+00040   Clarinet(MY_FLOAT lowestFrequency);
+00041 
+00043   ~Clarinet();
+00044 
+00046   void clear();
+00047 
+00049   void setFrequency(MY_FLOAT frequency);
+00050 
+00052   void startBlowing(MY_FLOAT amplitude, MY_FLOAT rate);
+00053 
+00055   void stopBlowing(MY_FLOAT rate);
+00056 
+00058   void noteOn(MY_FLOAT frequency, MY_FLOAT amplitude);
+00059 
+00061   void noteOff(MY_FLOAT amplitude);
+00062 
+00064   MY_FLOAT tick();
+00065 
+00067   void controlChange(int number, MY_FLOAT value);
+00068 
+00069  protected:
+00070   DelayL *delayLine;
+00071   ReedTabl *reedTable;
+00072   OneZero *filter;
+00073   Envelope *envelope;
+00074   Noise *noise;
+00075   WaveLoop *vibrato;
+00076   long length;
+00077   MY_FLOAT outputGain;
+00078   MY_FLOAT noiseGain;
+00079   MY_FLOAT vibratoGain;
+00080 
+00081 };
+00082 
+00083 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/DelayA_8h-source.html b/doc/html/DelayA_8h-source.html new file mode 100644 index 0000000..fa4d007 --- /dev/null +++ b/doc/html/DelayA_8h-source.html @@ -0,0 +1,55 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

DelayA.h

00001 /***************************************************/
+00023 /***************************************************/
+00024 
+00025 #if !defined(__DelayA_h)
+00026 #define __DelayA_h
+00027 
+00028 #include "Delay.h"
+00029 
+00030 class DelayA : public Delay
+00031 {
+00032 public:
+00033 
+00035   DelayA();
+00036 
+00038   
+00039   DelayA(MY_FLOAT theDelay, long maxDelay);
+00040 
+00042   ~DelayA();
+00043 
+00045   void clear();
+00046 
+00048 
+00051   void setDelay(MY_FLOAT theDelay);
+00052 
+00054   MY_FLOAT getDelay(void);
+00055 
+00057   MY_FLOAT tick(MY_FLOAT sample);
+00058 
+00059 protected:  
+00060     MY_FLOAT alpha;
+00061     MY_FLOAT coeff;
+00062     MY_FLOAT apInput;
+00063 };
+00064 
+00065 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/DelayL_8h-source.html b/doc/html/DelayL_8h-source.html new file mode 100644 index 0000000..7c954d4 --- /dev/null +++ b/doc/html/DelayL_8h-source.html @@ -0,0 +1,52 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

DelayL.h

00001 /***************************************************/
+00023 /***************************************************/
+00024 
+00025 #if !defined(__DELAYL_H)
+00026 #define __DELAYL_H
+00027 
+00028 #include "Delay.h"
+00029 
+00030 class DelayL : public Delay
+00031 {
+00032 public:
+00033 
+00035   DelayL();
+00036 
+00038   
+00039   DelayL(MY_FLOAT theDelay, long maxDelay);
+00040 
+00042   ~DelayL();
+00043 
+00045 
+00048   void setDelay(MY_FLOAT theDelay);
+00049 
+00051   MY_FLOAT getDelay(void) const;
+00052 
+00054   MY_FLOAT tick(MY_FLOAT sample);
+00055 
+00056  protected:  
+00057   MY_FLOAT alpha;
+00058   MY_FLOAT omAlpha;
+00059 };
+00060 
+00061 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Delay_8h-source.html b/doc/html/Delay_8h-source.html new file mode 100644 index 0000000..3c94f83 --- /dev/null +++ b/doc/html/Delay_8h-source.html @@ -0,0 +1,65 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Delay.h

00001 /***************************************************/
+00019 /***************************************************/
+00020 
+00021 #if !defined(__DELAY_H)
+00022 #define __DELAY_H
+00023 
+00024 #include "Filter.h"
+00025 
+00026 class Delay : protected Filter
+00027 {
+00028 public:
+00029 
+00031   Delay();
+00032 
+00034   Delay(long theDelay, long maxDelay);
+00035 
+00037   virtual ~Delay();
+00038 
+00040   void clear();
+00041 
+00043 
+00046   void setDelay(long theDelay);
+00047 
+00049   long getDelay(void) const;
+00050 
+00052   MY_FLOAT energy(void) const;
+00053 
+00055 
+00058   MY_FLOAT contentsAt(long tapDelay) const;
+00059 
+00061   MY_FLOAT lastOut(void) const;
+00062 
+00064   virtual MY_FLOAT tick(MY_FLOAT sample);
+00065 
+00067   virtual MY_FLOAT *tick(MY_FLOAT *vector, unsigned int vectorSize);
+00068 
+00069 protected:
+00070   long inPoint;
+00071   long outPoint;
+00072   long length;
+00073   MY_FLOAT delay;
+00074 };
+00075 
+00076 #endif
+00077 
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Drummer_8h-source.html b/doc/html/Drummer_8h-source.html new file mode 100644 index 0000000..9fafbb1 --- /dev/null +++ b/doc/html/Drummer_8h-source.html @@ -0,0 +1,56 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Drummer.h

00001 /***************************************************/
+00016 /***************************************************/
+00017 
+00018 #if !defined(__DRUMMER_H)
+00019 #define __DRUMMER_H
+00020 
+00021 #include "Instrmnt.h"
+00022 #include "WvIn.h"
+00023 #include "OnePole.h"
+00024 
+00025 #define DRUM_NUMWAVES 11
+00026 #define DRUM_POLYPHONY 4
+00027 
+00028 class Drummer : public Instrmnt
+00029 {
+00030  public:
+00032   Drummer();
+00033 
+00035   ~Drummer();
+00036 
+00038 
+00043   void noteOn(MY_FLOAT instrument, MY_FLOAT amplitude);
+00044 
+00046   void noteOff(MY_FLOAT amplitude);
+00047 
+00049   MY_FLOAT tick();
+00050 
+00051  protected:  
+00052   WvIn    *waves[DRUM_POLYPHONY];
+00053   OnePole *filters[DRUM_POLYPHONY];
+00054   int      sounding[DRUM_POLYPHONY];
+00055   int      nSounding;
+00056 
+00057 };
+00058 
+00059 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Echo_8h-source.html b/doc/html/Echo_8h-source.html new file mode 100644 index 0000000..b5bb21b --- /dev/null +++ b/doc/html/Echo_8h-source.html @@ -0,0 +1,58 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Echo.h

00001 /***************************************************/
+00009 /***************************************************/
+00010 
+00011 #if !defined(__ECHO_H)
+00012 #define __ECHO_H
+00013 
+00014 #include "Stk.h" 
+00015 #include "Delay.h" 
+00016 
+00017 class Echo : public Stk
+00018 {
+00019  public:
+00021   Echo(MY_FLOAT longestDelay);
+00022 
+00024   ~Echo();
+00025 
+00027   void clear();
+00028 
+00030   void setDelay(MY_FLOAT delay);
+00031 
+00033   void setEffectMix(MY_FLOAT mix);
+00034 
+00036   MY_FLOAT lastOut() const;
+00037 
+00039   MY_FLOAT tick(MY_FLOAT input);
+00040 
+00042   MY_FLOAT *tick(MY_FLOAT *vector, unsigned int vectorSize);
+00043 
+00044  protected:  
+00045   Delay *delayLine;
+00046   long length;
+00047   MY_FLOAT lastOutput;
+00048   MY_FLOAT effectMix;
+00049 
+00050 };
+00051 
+00052 #endif
+00053 
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Envelope_8h-source.html b/doc/html/Envelope_8h-source.html new file mode 100644 index 0000000..70ca58b --- /dev/null +++ b/doc/html/Envelope_8h-source.html @@ -0,0 +1,64 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Envelope.h

00001 /***************************************************/
+00014 /***************************************************/
+00015 
+00016 #if !defined(__ENVELOPE_H)
+00017 #define __ENVELOPE_H
+00018 
+00019 #include "Stk.h"
+00020 
+00021 class Envelope : public Stk
+00022 {
+00023  public:
+00024 
+00026   Envelope(void);
+00027 
+00029   virtual ~Envelope(void);
+00030 
+00032   virtual void keyOn(void);
+00033 
+00035   virtual void keyOff(void);
+00036 
+00038   void setRate(MY_FLOAT aRate);
+00039 
+00041   void setTime(MY_FLOAT aTime);
+00042 
+00044   virtual void setTarget(MY_FLOAT aTarget);
+00045 
+00047   virtual void setValue(MY_FLOAT aValue);
+00048 
+00050   virtual int getState(void) const;
+00051 
+00053   virtual MY_FLOAT tick(void);
+00054 
+00056   virtual MY_FLOAT *tick(MY_FLOAT *vector, unsigned int vectorSize);
+00057 
+00059   MY_FLOAT lastOut(void) const;
+00060 
+00061  protected:
+00062   MY_FLOAT value;
+00063   MY_FLOAT target;
+00064   MY_FLOAT rate;
+00065   int state;
+00066 };
+00067 
+00068 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/FMVoices_8h-source.html b/doc/html/FMVoices_8h-source.html new file mode 100644 index 0000000..45e9373 --- /dev/null +++ b/doc/html/FMVoices_8h-source.html @@ -0,0 +1,50 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

FMVoices.h

00001 /***************************************************/
+00031 /***************************************************/
+00032 
+00033 #if !defined(__FMVOICES_H)
+00034 #define __FMVOICES_H
+00035 
+00036 #include "FM.h"
+00037 
+00038 class FMVoices : public FM
+00039 {
+00040  public:
+00042   FMVoices();
+00043 
+00045   ~FMVoices();
+00046 
+00048   virtual void setFrequency(MY_FLOAT frequency);
+00049 
+00051   void noteOn(MY_FLOAT frequency, MY_FLOAT amplitude);
+00052 
+00054   MY_FLOAT tick();
+00055 
+00057   virtual void controlChange(int number, MY_FLOAT value);
+00058 
+00059  protected:
+00060   int currentVowel;
+00061   MY_FLOAT tilt[3];
+00062   MY_FLOAT mods[3];
+00063 };
+00064 
+00065 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/FM_8h-source.html b/doc/html/FM_8h-source.html new file mode 100644 index 0000000..c77caa5 --- /dev/null +++ b/doc/html/FM_8h-source.html @@ -0,0 +1,85 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

FM.h

00001 /***************************************************/
+00024 /***************************************************/
+00025 
+00026 #if !defined(__FM_H)
+00027 #define __FM_H
+00028 
+00029 #include "Instrmnt.h"
+00030 #include "ADSR.h"
+00031 #include "WaveLoop.h"
+00032 #include "TwoZero.h"
+00033 
+00034 class FM : public Instrmnt
+00035 {
+00036  public:
+00038   FM( int operators = 4 );
+00039 
+00041   virtual ~FM();
+00042 
+00044   void clear();
+00045 
+00047   void loadWaves(const char **filenames);
+00048 
+00050   virtual void setFrequency(MY_FLOAT frequency);
+00051 
+00053   void setRatio(int waveIndex, MY_FLOAT ratio);
+00054 
+00056   void setGain(int waveIndex, MY_FLOAT gain);
+00057 
+00059   void setModulationSpeed(MY_FLOAT mSpeed);
+00060 
+00062   void setModulationDepth(MY_FLOAT mDepth);
+00063 
+00065   void setControl1(MY_FLOAT cVal);
+00066 
+00068   void setControl2(MY_FLOAT cVal);
+00069 
+00071   void keyOn();
+00072 
+00074   void keyOff();
+00075 
+00077   void noteOff(MY_FLOAT amplitude);
+00078 
+00080   virtual MY_FLOAT tick() = 0;
+00081 
+00083   virtual void controlChange(int number, MY_FLOAT value);
+00084 
+00085  protected:  
+00086   ADSR     **adsr; 
+00087   WaveLoop **waves;
+00088   WaveLoop *vibrato;
+00089   TwoZero  *twozero;
+00090   int nOperators;
+00091   MY_FLOAT baseFrequency;
+00092   MY_FLOAT *ratios;
+00093   MY_FLOAT *gains;
+00094   MY_FLOAT modDepth;
+00095   MY_FLOAT control1;
+00096   MY_FLOAT control2;
+00097   MY_FLOAT __FM_gains[100];
+00098   MY_FLOAT __FM_susLevels[16];
+00099   MY_FLOAT __FM_attTimes[32];
+00100 
+00101 };
+00102 
+00103 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Filter_8h-source.html b/doc/html/Filter_8h-source.html new file mode 100644 index 0000000..2a303f8 --- /dev/null +++ b/doc/html/Filter_8h-source.html @@ -0,0 +1,72 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Filter.h

00001 /***************************************************/
+00028 /***************************************************/
+00029 
+00030 #if !defined(__FILTER_H)
+00031 #define __FILTER_H
+00032 
+00033 #include "Stk.h"
+00034 
+00035 class Filter : public Stk
+00036 {
+00037 public:
+00039   Filter(void);
+00040 
+00042 
+00046   Filter(int nb, MY_FLOAT *bCoefficients, int na, MY_FLOAT *aCoefficients);
+00047 
+00049   virtual ~Filter(void);
+00050 
+00052   void clear(void);
+00053 
+00055 
+00060   void setCoefficients(int nb, MY_FLOAT *bCoefficients, int na, MY_FLOAT *aCoefficients);
+00061 
+00063 
+00069   void setNumerator(int nb, MY_FLOAT *bCoefficients);
+00070 
+00072 
+00080   void setDenominator(int na, MY_FLOAT *aCoefficients);
+00081 
+00083 
+00087   virtual void setGain(MY_FLOAT theGain);
+00088 
+00090   virtual MY_FLOAT getGain(void) const;
+00091 
+00093   virtual MY_FLOAT lastOut(void) const;
+00094 
+00096   virtual MY_FLOAT tick(MY_FLOAT sample);
+00097 
+00099   virtual MY_FLOAT *tick(MY_FLOAT *vector, unsigned int vectorSize);
+00100 
+00101 protected:
+00102   MY_FLOAT gain;
+00103   int     nB;
+00104   int     nA;
+00105   MY_FLOAT *b;
+00106   MY_FLOAT *a;
+00107   MY_FLOAT *outputs;
+00108   MY_FLOAT *inputs;
+00109 
+00110 };
+00111 
+00112 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Flute_8h-source.html b/doc/html/Flute_8h-source.html new file mode 100644 index 0000000..5cbcb7f --- /dev/null +++ b/doc/html/Flute_8h-source.html @@ -0,0 +1,86 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Flute.h

00001 /***************************************************/
+00023 /***************************************************/
+00024 
+00025 #if !defined(__FLUTE_H)
+00026 #define __FLUTE_H
+00027 
+00028 #include "Instrmnt.h"
+00029 #include "JetTabl.h"
+00030 #include "DelayL.h"
+00031 #include "OnePole.h"
+00032 #include "PoleZero.h"
+00033 #include "Noise.h"
+00034 #include "ADSR.h"
+00035 #include "WaveLoop.h"
+00036 
+00037 class Flute : public Instrmnt
+00038 {
+00039  public:
+00041   Flute(MY_FLOAT lowestFrequency);
+00042 
+00044   ~Flute();
+00045 
+00047   void clear();
+00048 
+00050   void setFrequency(MY_FLOAT frequency);
+00051 
+00053   void setJetReflection(MY_FLOAT coefficient);
+00054 
+00056   void setEndReflection(MY_FLOAT coefficient);
+00057 
+00059   void setJetDelay(MY_FLOAT aRatio);
+00060 
+00062   void startBlowing(MY_FLOAT amplitude, MY_FLOAT rate);
+00063 
+00065   void stopBlowing(MY_FLOAT rate);
+00066 
+00068   void noteOn(MY_FLOAT frequency, MY_FLOAT amplitude);
+00069 
+00071   void noteOff(MY_FLOAT amplitude);
+00072 
+00074   MY_FLOAT tick();
+00075 
+00077   void controlChange(int number, MY_FLOAT value);
+00078 
+00079  protected:  
+00080   DelayL *jetDelay;
+00081   DelayL *boreDelay;
+00082   JetTabl *jetTable;
+00083   OnePole *filter;
+00084   PoleZero *dcBlock;
+00085   Noise *noise;
+00086   ADSR *adsr;
+00087   WaveLoop *vibrato;
+00088   long length;
+00089   MY_FLOAT lastFrequency;
+00090   MY_FLOAT maxPressure;
+00091   MY_FLOAT jetReflection;
+00092   MY_FLOAT endReflection;
+00093   MY_FLOAT noiseGain;
+00094   MY_FLOAT vibratoGain;
+00095   MY_FLOAT outputGain;
+00096   MY_FLOAT jetRatio;
+00097 
+00098 };
+00099 
+00100 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/FormSwep_8h-source.html b/doc/html/FormSwep_8h-source.html new file mode 100644 index 0000000..9788cbb --- /dev/null +++ b/doc/html/FormSwep_8h-source.html @@ -0,0 +1,72 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

FormSwep.h

00001 /***************************************************/
+00013 /***************************************************/
+00014 
+00015 #if !defined(__FORMSWEP_H)
+00016 #define __FORMSWEP_H
+00017 
+00018 #include "BiQuad.h"
+00019 
+00020 class FormSwep : public BiQuad
+00021 {
+00022  public:
+00023 
+00025   FormSwep();
+00026 
+00028   ~FormSwep();
+00029 
+00031 
+00042   void setResonance(MY_FLOAT aFrequency, MY_FLOAT aRadius);
+00043 
+00045   void setStates(MY_FLOAT aFrequency, MY_FLOAT aRadius, MY_FLOAT aGain = 1.0);
+00046 
+00048   void setTargets(MY_FLOAT aFrequency, MY_FLOAT aRadius, MY_FLOAT aGain = 1.0);
+00049 
+00051 
+00059   void setSweepRate(MY_FLOAT aRate);    
+00060 
+00062 
+00067   void setSweepTime(MY_FLOAT aTime);    
+00068 
+00070   MY_FLOAT tick(MY_FLOAT sample);
+00071 
+00073   MY_FLOAT *tick(MY_FLOAT *vector, unsigned int vectorSize);
+00074 
+00075  protected:  
+00076   bool dirty;
+00077   MY_FLOAT frequency;
+00078   MY_FLOAT radius;
+00079   MY_FLOAT startFrequency;
+00080   MY_FLOAT startRadius;
+00081   MY_FLOAT startGain;
+00082   MY_FLOAT targetFrequency;
+00083   MY_FLOAT targetRadius;
+00084   MY_FLOAT targetGain;
+00085   MY_FLOAT deltaFrequency;
+00086   MY_FLOAT deltaRadius;
+00087   MY_FLOAT deltaGain;
+00088   MY_FLOAT sweepState;
+00089   MY_FLOAT sweepRate;
+00090 
+00091 };
+00092 
+00093 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/HevyMetl_8h-source.html b/doc/html/HevyMetl_8h-source.html new file mode 100644 index 0000000..87e0db4 --- /dev/null +++ b/doc/html/HevyMetl_8h-source.html @@ -0,0 +1,41 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

HevyMetl.h

00001 /***************************************************/
+00029 /***************************************************/
+00030 
+00031 #if !defined(__HEVYMETL_H)
+00032 #define __HEVYMETL_H
+00033 
+00034 #include "FM.h"
+00035 
+00036 class HevyMetl : public FM
+00037 {
+00038  public:
+00040   HevyMetl();
+00041 
+00043   ~HevyMetl();
+00044 
+00046   void noteOn(MY_FLOAT frequency, MY_FLOAT amplitude);
+00047 
+00049   MY_FLOAT tick();
+00050 };
+00051 
+00052 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Instrmnt_8h-source.html b/doc/html/Instrmnt_8h-source.html new file mode 100644 index 0000000..997a6dc --- /dev/null +++ b/doc/html/Instrmnt_8h-source.html @@ -0,0 +1,56 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Instrmnt.h

00001 /***************************************************/
+00010 /***************************************************/
+00011 
+00012 #if !defined(__INSTRMNT_H)
+00013 #define __INSTRMNT_H
+00014 
+00015 #include "Stk.h"
+00016 #include <iostream.h>
+00017 
+00018 class Instrmnt : public Stk
+00019 {
+00020  public:
+00022   Instrmnt();
+00023 
+00025   virtual ~Instrmnt();
+00026 
+00028   virtual void noteOn(MY_FLOAT frequency, MY_FLOAT amplitude) = 0;
+00029 
+00031   virtual void noteOff(MY_FLOAT amplitude) = 0;
+00032 
+00034   virtual void setFrequency(MY_FLOAT frequency);
+00035 
+00037   MY_FLOAT lastOut() const;
+00038 
+00040   virtual MY_FLOAT tick() = 0;
+00041 
+00043   virtual MY_FLOAT *tick(MY_FLOAT *vector, unsigned int vectorSize);
+00044   
+00046   virtual void controlChange(int number, MY_FLOAT value);
+00047 
+00048   protected:
+00049     MY_FLOAT lastOutput;
+00050 
+00051 };
+00052 
+00053 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/JCRev_8h-source.html b/doc/html/JCRev_8h-source.html new file mode 100644 index 0000000..52d9e9b --- /dev/null +++ b/doc/html/JCRev_8h-source.html @@ -0,0 +1,54 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

JCRev.h

00001 /***************************************************/
+00015 /***************************************************/
+00016 
+00017 #if !defined(__JCREV_H)
+00018 #define __JCREV_H
+00019 
+00020 #include "Reverb.h"
+00021 #include "Delay.h" 
+00022 
+00023 class JCRev : public Reverb
+00024 {
+00025  public:
+00026   // Class constructor taking a T60 decay time argument.
+00027   JCRev(MY_FLOAT T60);
+00028 
+00029   // Class destructor.
+00030   ~JCRev();
+00031 
+00033   void clear();
+00034 
+00036   MY_FLOAT tick(MY_FLOAT input);
+00037 
+00038  protected:
+00039   Delay *allpassDelays[3];
+00040   Delay *combDelays[4];
+00041   Delay *outLeftDelay;
+00042   Delay *outRightDelay;
+00043   MY_FLOAT allpassCoefficient;
+00044   MY_FLOAT combCoefficient[4];
+00045 
+00046 };
+00047 
+00048 #endif
+00049 
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/JetTabl_8h-source.html b/doc/html/JetTabl_8h-source.html new file mode 100644 index 0000000..339f647 --- /dev/null +++ b/doc/html/JetTabl_8h-source.html @@ -0,0 +1,47 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

JetTabl.h

00001 /***************************************************/
+00014 /***************************************************/
+00015 
+00016 #if !defined(__JETTABL_H)
+00017 #define __JETTABL_H
+00018 
+00019 #include "Stk.h"
+00020 
+00021 class JetTabl : public Stk
+00022 {
+00023 public:
+00025   JetTabl();
+00026 
+00028   ~JetTabl();
+00029 
+00031   MY_FLOAT lastOut() const;
+00032 
+00034   MY_FLOAT tick(MY_FLOAT input);
+00035 
+00037   MY_FLOAT *tick(MY_FLOAT *vector, unsigned int vectorSize);
+00038 
+00039 protected:  
+00040   MY_FLOAT lastOutput;
+00041 
+00042 };
+00043 
+00044 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Mandolin_8h-source.html b/doc/html/Mandolin_8h-source.html new file mode 100644 index 0000000..e9df848 --- /dev/null +++ b/doc/html/Mandolin_8h-source.html @@ -0,0 +1,57 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Mandolin.h

00001 /***************************************************/
+00028 /***************************************************/
+00029 
+00030 #if !defined(__MANDOLIN_H)
+00031 #define __MANDOLIN_H
+00032 
+00033 #include "PluckTwo.h"
+00034 #include "WvIn.h"
+00035 
+00036 class Mandolin : public PluckTwo
+00037 {
+00038  public:
+00040   Mandolin(MY_FLOAT lowestFrequency);
+00041 
+00043   virtual ~Mandolin();
+00044 
+00046   void pluck(MY_FLOAT amplitude);
+00047 
+00049   void pluck(MY_FLOAT amplitude,MY_FLOAT position);
+00050 
+00052   virtual void noteOn(MY_FLOAT frequency, MY_FLOAT amplitude);
+00053 
+00055   void setBodySize(MY_FLOAT size);
+00056 
+00058   virtual MY_FLOAT tick();
+00059 
+00061   virtual void controlChange(int number, MY_FLOAT value);
+00062 
+00063   protected:  
+00064     WvIn *soundfile[12];
+00065     MY_FLOAT directBody;
+00066     int mic;
+00067     long dampTime;
+00068     bool waveDone;
+00069 };
+00070 
+00071 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Mesh2D_8h-source.html b/doc/html/Mesh2D_8h-source.html new file mode 100644 index 0000000..99c55b7 --- /dev/null +++ b/doc/html/Mesh2D_8h-source.html @@ -0,0 +1,89 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Mesh2D.h

00001 /***************************************************/
+00025 /***************************************************/
+00026 
+00027 #if !defined(__MESH2D_H)
+00028 #define __MESH2D_H
+00029 
+00030 #include "Instrmnt.h"
+00031 #include "OnePole.h"
+00032 
+00033 #define NXMAX ((short)(12))
+00034 #define NYMAX ((short)(12))
+00035 
+00036 class Mesh2D : public Instrmnt
+00037 {
+00038  public:
+00040   Mesh2D(short nX, short nY);
+00041 
+00043   ~Mesh2D();
+00044 
+00046   void clear(); 
+00047 
+00049   void setNX(short lenX);
+00050 
+00052   void setNY(short lenY);
+00053 
+00055   void setInputPosition(MY_FLOAT xFactor, MY_FLOAT yFactor);
+00056 
+00058   void setDecay(MY_FLOAT decayFactor);
+00059 
+00061   void noteOn(MY_FLOAT frequency, MY_FLOAT amplitude);
+00062 
+00064   void noteOff(MY_FLOAT amplitude);
+00065 
+00067   MY_FLOAT energy();
+00068 
+00070   MY_FLOAT tick();
+00071 
+00073   MY_FLOAT tick(MY_FLOAT input);
+00074 
+00076   void controlChange(int number, MY_FLOAT value);
+00077 
+00078  protected:
+00079 
+00080   MY_FLOAT tick0();
+00081   MY_FLOAT tick1();
+00082   void clearMesh();
+00083 
+00084   short NX, NY;
+00085   short xInput, yInput;
+00086   OnePole *filterX[NXMAX];
+00087   OnePole *filterY[NYMAX];
+00088   MY_FLOAT v[NXMAX-1][NYMAX-1]; // junction velocities
+00089   MY_FLOAT vxp[NXMAX][NYMAX]; // positive-x velocity wave
+00090   MY_FLOAT vxm[NXMAX][NYMAX]; // negative-x velocity wave
+00091   MY_FLOAT vyp[NXMAX][NYMAX]; // positive-y velocity wave
+00092   MY_FLOAT vym[NXMAX][NYMAX]; // negative-y velocity wave
+00093 
+00094   // Alternate buffers
+00095   MY_FLOAT vxp1[NXMAX][NYMAX]; // positive-x velocity wave
+00096   MY_FLOAT vxm1[NXMAX][NYMAX]; // negative-x velocity wave
+00097   MY_FLOAT vyp1[NXMAX][NYMAX]; // positive-y velocity wave
+00098   MY_FLOAT vym1[NXMAX][NYMAX]; // negative-y velocity wave
+00099 
+00100   int counter; // time in samples
+00101 
+00102 
+00103 };
+00104 
+00105 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Messager_8h-source.html b/doc/html/Messager_8h-source.html new file mode 100644 index 0000000..e6eb6b7 --- /dev/null +++ b/doc/html/Messager_8h-source.html @@ -0,0 +1,115 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Messager.h

00001 /***************************************************/
+00034 /***************************************************/
+00035 
+00036 #if !defined(__MESSAGER_H)
+00037 #define __MESSSAGER_H
+00038 
+00039 #include "Stk.h"
+00040 #include "SKINI.h"
+00041 
+00042 #define MESSAGE_LENGTH  128
+00043 #define MAX_MESSAGES 25
+00044 
+00045 #if defined(__STK_REALTIME__)
+00046 
+00047 #include "Thread.h"
+00048 #include "Socket.h"
+00049 #include "RtMidi.h"
+00050 
+00051 #define STK_MIDI        0x0001
+00052 #define STK_PIPE        0x0002
+00053 #define STK_SOCKET      0x0004
+00054 
+00055 extern "C" THREAD_RETURN THREAD_TYPE stdinHandler(void * ptr);
+00056 
+00057 #if (defined(__OS_IRIX__) || defined(__OS_LINUX__))
+00058   #include <sys/types.h>
+00059   #include <sys/time.h>
+00060 #endif
+00061 
+00062 #endif // __STK_REALTIME__
+00063 
+00064 class Messager : public Stk
+00065 {
+00066  public:
+00068 
+00075   Messager(int inputMask = 0);
+00076 
+00078   ~Messager();
+00079 
+00081 
+00087   long nextMessage(void);
+00088 
+00090   void setRtDelta(long nSamples);
+00091 
+00093   long getDelta(void) const;
+00094 
+00096   long getType() const;
+00097 
+00099   MY_FLOAT getByteTwo() const;
+00100 
+00102   MY_FLOAT getByteThree() const;
+00103 
+00105   long getChannel() const;
+00106 
+00107  protected:
+00108 
+00109   SKINI *skini;
+00110   long type;
+00111   long channel;
+00112   MY_FLOAT byte2;
+00113   MY_FLOAT byte3;
+00114   int sources;
+00115   long delta;
+00116   long rtDelta;
+00117   char message[MAX_MESSAGES][MESSAGE_LENGTH];
+00118   unsigned int messageIndex;
+00119   int nMessages;
+00120 
+00121 #if defined(__STK_REALTIME__)
+00122 
+00123   // Check MIDI source for new messages.
+00124   bool midiMessage(void);
+00125 
+00126   // Check socket sources for new messages.
+00127   bool socketMessage(void);
+00128 
+00129   // Receive and parse socket data.
+00130   bool readSocket(int fd);
+00131 
+00132   RtMidi *midi;
+00133   Thread *thread;
+00134   Socket *soket;
+00135 
+00136   unsigned int nSockets;  
+00137   fd_set mask;
+00138   int maxfd;
+00139   int pipefd;
+00140   int fd[16];
+00141   char error[256];
+00142 
+00143 #endif // __STK_REALTIME__
+00144 
+00145 };
+00146 
+00147 #endif // defined(__MESSAGER_H)
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/ModalBar_8h-source.html b/doc/html/ModalBar_8h-source.html new file mode 100644 index 0000000..a435524 --- /dev/null +++ b/doc/html/ModalBar_8h-source.html @@ -0,0 +1,47 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

ModalBar.h

00001 /***************************************************/
+00028 /***************************************************/
+00029 
+00030 #if !defined(__MODALBAR_H)
+00031 #define __MODALBAR_H
+00032 
+00033 #include "Modal.h"
+00034 
+00035 class ModalBar : public Modal
+00036 {
+00037 public:
+00039   ModalBar();
+00040 
+00042   ~ModalBar();
+00043 
+00045   void setStickHardness(MY_FLOAT hardness);
+00046 
+00048   void setStrikePosition(MY_FLOAT position);
+00049 
+00051   void setPreset(int preset);
+00052 
+00054   void setModulationDepth(MY_FLOAT mDepth);
+00055 
+00057   void controlChange(int number, MY_FLOAT value);
+00058 };
+00059 
+00060 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Modal_8h-source.html b/doc/html/Modal_8h-source.html new file mode 100644 index 0000000..2a8dc5d --- /dev/null +++ b/doc/html/Modal_8h-source.html @@ -0,0 +1,82 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Modal.h

00001 /***************************************************/
+00012 /***************************************************/
+00013 
+00014 #if !defined(__MODAL_H)
+00015 #define __MODAL_H
+00016 
+00017 #include "Instrmnt.h"
+00018 #include "Envelope.h"
+00019 #include "WaveLoop.h"
+00020 #include "BiQuad.h"
+00021 #include "OnePole.h"
+00022 
+00023 class Modal : public Instrmnt
+00024 {
+00025 public:
+00027   Modal( int modes = 4 );
+00028 
+00030   virtual ~Modal();
+00031 
+00033   void clear();
+00034 
+00036   virtual void setFrequency(MY_FLOAT frequency);
+00037 
+00039   void setRatioAndRadius(int modeIndex, MY_FLOAT ratio, MY_FLOAT radius);
+00040 
+00042   void setMasterGain(MY_FLOAT aGain);
+00043 
+00045   void setDirectGain(MY_FLOAT aGain);
+00046 
+00048   void setModeGain(int modeIndex, MY_FLOAT gain);
+00049 
+00051   virtual void strike(MY_FLOAT amplitude);
+00052 
+00054   void damp(MY_FLOAT amplitude);
+00055 
+00057   void noteOn(MY_FLOAT frequency, MY_FLOAT amplitude);
+00058 
+00060   void noteOff(MY_FLOAT amplitude);
+00061 
+00063   virtual MY_FLOAT tick();
+00064 
+00066   virtual void controlChange(int number, MY_FLOAT value) = 0;
+00067 
+00068 protected:  
+00069   Envelope *envelope; 
+00070   WvIn     *wave;
+00071   BiQuad   **filters;
+00072   OnePole  *onepole;
+00073   WaveLoop *vibrato;
+00074   int nModes;
+00075   MY_FLOAT vibratoGain;
+00076   MY_FLOAT masterGain;
+00077   MY_FLOAT directGain;
+00078   MY_FLOAT stickHardness;
+00079   MY_FLOAT strikePosition;
+00080   MY_FLOAT baseFrequency;
+00081   MY_FLOAT *ratios;
+00082   MY_FLOAT *radii;
+00083 
+00084 };
+00085 
+00086 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Modulate_8h-source.html b/doc/html/Modulate_8h-source.html new file mode 100644 index 0000000..f05a381 --- /dev/null +++ b/doc/html/Modulate_8h-source.html @@ -0,0 +1,63 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Modulate.h

00001 /***************************************************/
+00011 /***************************************************/
+00012 
+00013 #if !defined(__MODULATE_H)
+00014 #define __MODULATE_H
+00015 
+00016 #include "Stk.h"
+00017 #include "WaveLoop.h"
+00018 #include "SubNoise.h"
+00019 #include "OnePole.h"
+00020 
+00021 class Modulate : public Stk
+00022 {
+00023  public:
+00025   Modulate();
+00026 
+00028   ~Modulate();
+00029 
+00031   void reset();
+00032 
+00034   void setVibratoRate(MY_FLOAT aRate);
+00035 
+00037   void setVibratoGain(MY_FLOAT aGain);
+00038 
+00040   void setRandomGain(MY_FLOAT aGain);
+00041 
+00043   MY_FLOAT tick();
+00044 
+00046   virtual MY_FLOAT *tick(MY_FLOAT *vector, unsigned int vectorSize);
+00047 
+00049   MY_FLOAT lastOut() const;
+00050 
+00051  protected:
+00052   WaveLoop  *vibrato;
+00053   SubNoise *noise;
+00054   OnePole  *filter;
+00055   MY_FLOAT vibratoGain;
+00056   MY_FLOAT randomGain;
+00057   MY_FLOAT lastOutput;
+00058 
+00059 };
+00060 
+00061 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Moog_8h-source.html b/doc/html/Moog_8h-source.html new file mode 100644 index 0000000..f192851 --- /dev/null +++ b/doc/html/Moog_8h-source.html @@ -0,0 +1,57 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Moog.h

00001 /***************************************************/
+00019 /***************************************************/
+00020 
+00021 #if !defined(__MOOG_H)
+00022 #define __MOOG_H
+00023 
+00024 #include "Sampler.h"
+00025 #include "FormSwep.h"
+00026 
+00027 class Moog : public Sampler
+00028 {
+00029  public:
+00031   Moog();
+00032 
+00034   ~Moog();
+00035 
+00037   virtual void setFrequency(MY_FLOAT frequency);
+00038 
+00040   virtual void noteOn(MY_FLOAT frequency, MY_FLOAT amplitude);
+00041 
+00043   void setModulationSpeed(MY_FLOAT mSpeed);
+00044 
+00046   void setModulationDepth(MY_FLOAT mDepth);
+00047 
+00049   virtual MY_FLOAT tick();
+00050 
+00052   virtual void controlChange(int number, MY_FLOAT value);
+00053 
+00054  protected:
+00055   FormSwep *filters[2];
+00056   MY_FLOAT modDepth;
+00057   MY_FLOAT filterQ;
+00058   MY_FLOAT filterRate;
+00059 
+00060 };
+00061 
+00062 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/NRev_8h-source.html b/doc/html/NRev_8h-source.html new file mode 100644 index 0000000..9b71964 --- /dev/null +++ b/doc/html/NRev_8h-source.html @@ -0,0 +1,53 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

NRev.h

00001 /***************************************************/
+00017 /***************************************************/
+00018 
+00019 #if !defined(__NREV_H)
+00020 #define __NREV_H
+00021 
+00022 #include "Reverb.h" 
+00023 #include "Delay.h" 
+00024 
+00025 class NRev : public Reverb
+00026 {
+00027  public:
+00028   // Class constructor taking a T60 decay time argument.
+00029   NRev(MY_FLOAT T60);
+00030 
+00031   // Class destructor.
+00032   ~NRev();
+00033 
+00035   void clear();
+00036 
+00038   MY_FLOAT tick(MY_FLOAT input);
+00039 
+00040  protected:  
+00041   Delay *allpassDelays[8];
+00042   Delay *combDelays[6];
+00043   MY_FLOAT allpassCoefficient;
+00044   MY_FLOAT combCoefficient[6];
+00045         MY_FLOAT lowpassState;
+00046 
+00047 };
+00048 
+00049 #endif
+00050 
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Noise_8h-source.html b/doc/html/Noise_8h-source.html new file mode 100644 index 0000000..0d3f26f --- /dev/null +++ b/doc/html/Noise_8h-source.html @@ -0,0 +1,49 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Noise.h

00001 /***************************************************/
+00011 /***************************************************/
+00012 
+00013 #if !defined(__NOISE_H)
+00014 #define __NOISE_H
+00015 
+00016 #include "Stk.h"
+00017 
+00018 class Noise : public Stk
+00019 {
+00020 public:
+00021 
+00023   Noise();
+00024 
+00026   virtual ~Noise();
+00027 
+00029   virtual MY_FLOAT tick();
+00030 
+00032   virtual MY_FLOAT *tick(MY_FLOAT *vector, unsigned int vectorSize);
+00033 
+00035   MY_FLOAT lastOut() const;
+00036 
+00037 protected:  
+00038 
+00039   MY_FLOAT lastOutput;
+00040 
+00041 };
+00042 
+00043 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/OnePole_8h-source.html b/doc/html/OnePole_8h-source.html new file mode 100644 index 0000000..88363bb --- /dev/null +++ b/doc/html/OnePole_8h-source.html @@ -0,0 +1,60 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

OnePole.h

00001 /***************************************************/
+00013 /***************************************************/
+00014 
+00015 #if !defined(__ONEPOLE_H)
+00016 #define __ONEPOLE_H
+00017 
+00018 #include "Filter.h"
+00019 
+00020 class OnePole : protected Filter
+00021 {
+00022 public:
+00023 
+00025   OnePole();
+00026 
+00028   OnePole(MY_FLOAT thePole);
+00029 
+00031   ~OnePole();
+00032 
+00034   void clear(void);
+00035 
+00037   void setB0(MY_FLOAT b0);
+00038 
+00040   void setA1(MY_FLOAT a1);
+00041 
+00043 
+00050   void setPole(MY_FLOAT thePole);
+00051 
+00053 
+00057   void setGain(MY_FLOAT theGain);
+00058 
+00060   MY_FLOAT getGain(void) const;
+00061 
+00063   MY_FLOAT lastOut(void) const;
+00064 
+00066   MY_FLOAT tick(MY_FLOAT sample);
+00067 
+00069   MY_FLOAT *tick(MY_FLOAT *vector, unsigned int vectorSize);
+00070 };
+00071 
+00072 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/OneZero_8h-source.html b/doc/html/OneZero_8h-source.html new file mode 100644 index 0000000..ba6ec3f --- /dev/null +++ b/doc/html/OneZero_8h-source.html @@ -0,0 +1,60 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

OneZero.h

00001 /***************************************************/
+00013 /***************************************************/
+00014 
+00015 #if !defined(__ONEZERO_H)
+00016 #define __ONEZERO_H
+00017 
+00018 #include "Filter.h"
+00019 
+00020 class OneZero : protected Filter
+00021 {
+00022  public:
+00023 
+00025   OneZero();
+00026 
+00028   OneZero(MY_FLOAT theZero);
+00029 
+00031   ~OneZero();
+00032 
+00034   void clear(void);
+00035 
+00037   void setB0(MY_FLOAT b0);
+00038 
+00040   void setB1(MY_FLOAT b1);
+00041 
+00043 
+00050   void setZero(MY_FLOAT theZero);
+00051 
+00053 
+00057   void setGain(MY_FLOAT theGain);
+00058 
+00060   MY_FLOAT getGain(void) const;
+00061 
+00063   MY_FLOAT lastOut(void) const;
+00064 
+00066   MY_FLOAT tick(MY_FLOAT sample);
+00067 
+00069   MY_FLOAT *tick(MY_FLOAT *vector, unsigned int vectorSize);
+00070 };
+00071 
+00072 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/PRCRev_8h-source.html b/doc/html/PRCRev_8h-source.html new file mode 100644 index 0000000..2e496c6 --- /dev/null +++ b/doc/html/PRCRev_8h-source.html @@ -0,0 +1,52 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

PRCRev.h

00001 /***************************************************/
+00015 /***************************************************/
+00016 
+00017 #if !defined(__PRCREV_H)
+00018 #define __PRCREV_H
+00019 
+00020 #include "Reverb.h" 
+00021 #include "Delay.h" 
+00022 
+00023 class PRCRev : public Reverb
+00024 {
+00025  public:
+00026   // Class constructor taking a T60 decay time argument.
+00027   PRCRev(MY_FLOAT T60);
+00028 
+00029   // Class destructor.
+00030   ~PRCRev();
+00031 
+00033   void clear();
+00034 
+00036   MY_FLOAT tick(MY_FLOAT input);
+00037 
+00038   protected:  
+00039     Delay *allpassDelays[2];
+00040     Delay *combDelays[2];
+00041     MY_FLOAT allpassCoefficient;
+00042     MY_FLOAT combCoefficient[2];
+00043 
+00044 };
+00045 
+00046 #endif
+00047 
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/PercFlut_8h-source.html b/doc/html/PercFlut_8h-source.html new file mode 100644 index 0000000..a68ab07 --- /dev/null +++ b/doc/html/PercFlut_8h-source.html @@ -0,0 +1,43 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

PercFlut.h

00001 /***************************************************/
+00027 /***************************************************/
+00028 
+00029 #if !defined(__PERCFLUT_H)
+00030 #define __PERCFLUT_H
+00031 
+00032 #include "FM.h"
+00033 
+00034 class PercFlut : public FM
+00035 {
+00036  public:
+00038   PercFlut();
+00039 
+00041   ~PercFlut();
+00042 
+00044   void setFrequency(MY_FLOAT frequency);
+00045 
+00047   void noteOn(MY_FLOAT frequency, MY_FLOAT amplitude);
+00048 
+00050   MY_FLOAT tick();
+00051 };
+00052 
+00053 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/PitShift_8h-source.html b/doc/html/PitShift_8h-source.html new file mode 100644 index 0000000..a727032 --- /dev/null +++ b/doc/html/PitShift_8h-source.html @@ -0,0 +1,60 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

PitShift.h

00001 /***************************************************/
+00010 /***************************************************/
+00011 
+00012 #if !defined(__PITSHIFT_H)
+00013 #define __PITSHIFT_H
+00014 
+00015 #include "Stk.h" 
+00016 #include "DelayL.h" 
+00017 
+00018 class PitShift : public Stk
+00019 {
+00020  public:
+00022   PitShift();
+00023 
+00025   ~PitShift();
+00026 
+00028   void clear();
+00029 
+00031   void setShift(MY_FLOAT shift);
+00032 
+00034   void setEffectMix(MY_FLOAT mix);
+00035 
+00037   MY_FLOAT lastOut() const;
+00038 
+00040   MY_FLOAT tick(MY_FLOAT input);
+00041 
+00043   MY_FLOAT *tick(MY_FLOAT *vector, unsigned int vectorSize);
+00044 
+00045  protected:  
+00046   Delay *delayLine[2];
+00047   MY_FLOAT lastOutput;
+00048   MY_FLOAT delay[2];
+00049   MY_FLOAT env[2];
+00050   MY_FLOAT effectMix;
+00051   MY_FLOAT rate;
+00052 
+00053 };
+00054 
+00055 #endif
+00056 
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/PluckTwo_8h-source.html b/doc/html/PluckTwo_8h-source.html new file mode 100644 index 0000000..4097fd1 --- /dev/null +++ b/doc/html/PluckTwo_8h-source.html @@ -0,0 +1,73 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

PluckTwo.h

00001 /***************************************************/
+00019 /***************************************************/
+00020 
+00021 #if !defined(__PLUCKTWO_H)
+00022 #define __PLUCKTWO_H
+00023 
+00024 #include "Instrmnt.h"
+00025 #include "DelayL.h"
+00026 #include "DelayA.h"
+00027 #include "OneZero.h"
+00028 
+00029 class PluckTwo : public Instrmnt
+00030 {
+00031  public:
+00033   PluckTwo(MY_FLOAT lowestFrequency);
+00034 
+00036   virtual ~PluckTwo();
+00037 
+00039   void clear();
+00040 
+00042   virtual void setFrequency(MY_FLOAT frequency);
+00043 
+00045   void setDetune(MY_FLOAT detune);
+00046 
+00048   void setFreqAndDetune(MY_FLOAT frequency, MY_FLOAT detune);
+00049 
+00051   void setPluckPosition(MY_FLOAT position);
+00052 
+00054 
+00059   void setBaseLoopGain(MY_FLOAT aGain);
+00060 
+00062   virtual void noteOff(MY_FLOAT amplitude);
+00063 
+00065   virtual MY_FLOAT tick() = 0;
+00066 
+00067   protected:  
+00068     DelayA *delayLine;
+00069     DelayA *delayLine2;
+00070     DelayL *combDelay;
+00071     OneZero *filter;
+00072     OneZero *filter2;
+00073     long length;
+00074     MY_FLOAT loopGain;
+00075     MY_FLOAT baseLoopGain;
+00076     MY_FLOAT lastFrequency;
+00077     MY_FLOAT lastLength;
+00078     MY_FLOAT detuning;
+00079     MY_FLOAT pluckAmplitude;
+00080     MY_FLOAT pluckPosition;
+00081 
+00082 };
+00083 
+00084 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Plucked_8h-source.html b/doc/html/Plucked_8h-source.html new file mode 100644 index 0000000..a44c46c --- /dev/null +++ b/doc/html/Plucked_8h-source.html @@ -0,0 +1,63 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Plucked.h

00001 /***************************************************/
+00018 /***************************************************/
+00019 
+00020 #if !defined(__PLUCKED_H)
+00021 #define __PLUCKED_H
+00022 
+00023 #include "Instrmnt.h"
+00024 #include "DelayA.h"
+00025 #include "OneZero.h"
+00026 #include "OnePole.h"
+00027 #include "Noise.h"
+00028 
+00029 class Plucked : public Instrmnt
+00030 {
+00031  public:
+00033   Plucked(MY_FLOAT lowestFrequency);
+00034 
+00036   ~Plucked();
+00037 
+00039   void clear();
+00040 
+00042   virtual void setFrequency(MY_FLOAT frequency);
+00043 
+00045   void pluck(MY_FLOAT amplitude);
+00046 
+00048   virtual void noteOn(MY_FLOAT frequency, MY_FLOAT amplitude);
+00049 
+00051   virtual void noteOff(MY_FLOAT amplitude);
+00052 
+00054   virtual MY_FLOAT tick();
+00055 
+00056  protected:  
+00057   DelayA *delayLine;
+00058   OneZero *loopFilter;
+00059   OnePole *pickFilter;
+00060   Noise *noise;
+00061   long length;
+00062   MY_FLOAT loopGain;
+00063 
+00064 };
+00065 
+00066 #endif
+00067 
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/PoleZero_8h-source.html b/doc/html/PoleZero_8h-source.html new file mode 100644 index 0000000..d4a34b9 --- /dev/null +++ b/doc/html/PoleZero_8h-source.html @@ -0,0 +1,63 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

PoleZero.h

00001 /***************************************************/
+00013 /***************************************************/
+00014 
+00015 #if !defined(__POLEZERO_H)
+00016 #define __POLEZERO_H
+00017 
+00018 #include "Filter.h"
+00019 
+00020 class PoleZero : protected Filter
+00021 {
+00022  public:
+00023 
+00025   PoleZero();
+00026 
+00028   ~PoleZero();
+00029 
+00031   void clear(void);
+00032 
+00034   void setB0(MY_FLOAT b0);
+00035 
+00037   void setB1(MY_FLOAT b1);
+00038 
+00040   void setA1(MY_FLOAT a1);
+00041 
+00043 
+00048   void setAllpass(MY_FLOAT coefficient);
+00049 
+00051 
+00057   void setBlockZero(MY_FLOAT thePole = 0.99);
+00058 
+00060 
+00064   void setGain(MY_FLOAT theGain);
+00065 
+00067   MY_FLOAT getGain(void) const;
+00068 
+00070   MY_FLOAT lastOut(void) const;
+00071 
+00073   MY_FLOAT tick(MY_FLOAT sample);
+00074 
+00076   MY_FLOAT *tick(MY_FLOAT *vector, unsigned int vectorSize);
+00077 };
+00078 
+00079 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/ReedTabl_8h-source.html b/doc/html/ReedTabl_8h-source.html new file mode 100644 index 0000000..34e45ec --- /dev/null +++ b/doc/html/ReedTabl_8h-source.html @@ -0,0 +1,56 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

ReedTabl.h

00001 /***************************************************/
+00018 /***************************************************/
+00019 
+00020 #if !defined(__REEDTABL_H)
+00021 #define __REEDTABL_H
+00022 
+00023 #include "Stk.h"
+00024 
+00025 class ReedTabl : public Stk
+00026 {
+00027 public:
+00029   ReedTabl();
+00030 
+00032   ~ReedTabl();
+00033 
+00035 
+00040   void setOffset(MY_FLOAT aValue);
+00041 
+00043 
+00048   void setSlope(MY_FLOAT aValue);
+00049 
+00051   MY_FLOAT lastOut() const;
+00052 
+00054 
+00058   MY_FLOAT tick(MY_FLOAT input);
+00059 
+00061   MY_FLOAT *tick(MY_FLOAT *vector, unsigned int vectorSize);
+00062 
+00063 protected:  
+00064   MY_FLOAT offSet;
+00065   MY_FLOAT slope;
+00066   MY_FLOAT lastOutput;
+00067 
+00068 };
+00069 
+00070 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Resonate_8h-source.html b/doc/html/Resonate_8h-source.html new file mode 100644 index 0000000..fb1760c --- /dev/null +++ b/doc/html/Resonate_8h-source.html @@ -0,0 +1,70 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Resonate.h

00001 /***************************************************/
+00018 /***************************************************/
+00019 
+00020 #if !defined(__RESONATE_H)
+00021 #define __RESONATE_H
+00022 
+00023 #include "Instrmnt.h"
+00024 #include "ADSR.h"
+00025 #include "BiQuad.h"
+00026 #include "Noise.h"
+00027 
+00028 class Resonate : public Instrmnt
+00029 {
+00030  public:
+00032   Resonate();
+00033 
+00035   ~Resonate();
+00036 
+00038   void clear();
+00039 
+00041   void setResonance(MY_FLOAT frequency, MY_FLOAT radius);
+00042 
+00044   void setNotch(MY_FLOAT frequency, MY_FLOAT radius);
+00045 
+00047   void setEqualGainZeroes();
+00048 
+00050   void keyOn();
+00051 
+00053   void keyOff();
+00054 
+00056   void noteOn(MY_FLOAT frequency, MY_FLOAT amplitude);
+00057 
+00059   void noteOff(MY_FLOAT amplitude);
+00060 
+00062   MY_FLOAT tick();
+00063 
+00065   virtual void controlChange(int number, MY_FLOAT value);
+00066 
+00067  protected:  
+00068   ADSR     *adsr;
+00069   BiQuad   *filter;
+00070   Noise    *noise;
+00071   MY_FLOAT poleFrequency;
+00072   MY_FLOAT poleRadius;
+00073   MY_FLOAT zeroFrequency;
+00074   MY_FLOAT zeroRadius;
+00075 
+00076 };
+00077 
+00078 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Reverb_8h-source.html b/doc/html/Reverb_8h-source.html new file mode 100644 index 0000000..0f431ad --- /dev/null +++ b/doc/html/Reverb_8h-source.html @@ -0,0 +1,61 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Reverb.h

00001 /***************************************************/
+00010 /***************************************************/
+00011 
+00012 #include "Stk.h"
+00013 
+00014 #if !defined(__REVERB_H)
+00015 #define __REVERB_H
+00016 
+00017 class Reverb : public Stk
+00018 {
+00019  public:
+00021   Reverb();
+00022 
+00024   virtual ~Reverb();
+00025 
+00027   virtual void clear() = 0;
+00028 
+00030   void setEffectMix(MY_FLOAT mix);
+00031 
+00033   MY_FLOAT lastOut() const;
+00034 
+00036   MY_FLOAT lastOutLeft() const;
+00037 
+00039   MY_FLOAT lastOutRight() const;
+00040 
+00042   virtual MY_FLOAT tick(MY_FLOAT input) = 0;
+00043 
+00045   virtual MY_FLOAT *tick(MY_FLOAT *vector, unsigned int vectorSize);
+00046 
+00047  protected:
+00048 
+00049   // Returns true if argument value is prime.
+00050   bool isPrime(int number);
+00051 
+00052   MY_FLOAT lastOutput[2];
+00053   MY_FLOAT effectMix;
+00054 
+00055 };
+00056 
+00057 #endif // defined(__REVERB_H)
+00058 
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Rhodey_8h-source.html b/doc/html/Rhodey_8h-source.html new file mode 100644 index 0000000..58161d2 --- /dev/null +++ b/doc/html/Rhodey_8h-source.html @@ -0,0 +1,43 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Rhodey.h

00001 /***************************************************/
+00031 /***************************************************/
+00032 
+00033 #if !defined(__RHODEY_H)
+00034 #define __RHODEY_H
+00035 
+00036 #include "FM.h"
+00037 
+00038 class Rhodey : public FM
+00039 {
+00040  public:
+00042   Rhodey();
+00043 
+00045   ~Rhodey();
+00046 
+00048   void setFrequency(MY_FLOAT frequency);
+00049 
+00051   void noteOn(MY_FLOAT frequency, MY_FLOAT amplitude);
+00052 
+00054   MY_FLOAT tick();
+00055 };
+00056 
+00057 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/RtAudio_8h-source.html b/doc/html/RtAudio_8h-source.html new file mode 100644 index 0000000..57e3f61 --- /dev/null +++ b/doc/html/RtAudio_8h-source.html @@ -0,0 +1,301 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

RtAudio.h

00001 /******************************************/
+00002 /*
+00003   RtAudio - realtime sound I/O C++ class
+00004   by Gary P. Scavone, 2001-2002.
+00005 */
+00006 /******************************************/
+00007 
+00008 #if !defined(__RTAUDIO_H)
+00009 #define __RTAUDIO_H
+00010 
+00011 #include <map>
+00012 
+00013 #if defined(__LINUX_ALSA__)
+00014   #include <alsa/asoundlib.h>
+00015   #include <pthread.h>
+00016   #include <unistd.h>
+00017 
+00018   #define THREAD_TYPE
+00019   typedef snd_pcm_t *AUDIO_HANDLE;
+00020   typedef int DEVICE_ID;
+00021   typedef pthread_t THREAD_HANDLE;
+00022   typedef pthread_mutex_t MUTEX;
+00023 
+00024 #elif defined(__LINUX_OSS__)
+00025   #include <pthread.h>
+00026   #include <unistd.h>
+00027 
+00028   #define THREAD_TYPE
+00029   typedef int AUDIO_HANDLE;
+00030   typedef int DEVICE_ID;
+00031   typedef pthread_t THREAD_HANDLE;
+00032   typedef pthread_mutex_t MUTEX;
+00033 
+00034 #elif defined(__WINDOWS_DS__)
+00035   #include <windows.h>
+00036   #include <process.h>
+00037 
+00038   // The following struct is used to hold the extra variables
+00039   // specific to the DirectSound implementation.
+00040   typedef struct {
+00041     void * object;
+00042     void * buffer;
+00043     UINT bufferPointer;
+00044   } AUDIO_HANDLE;
+00045 
+00046   #define THREAD_TYPE __stdcall
+00047   typedef LPGUID DEVICE_ID;
+00048   typedef unsigned long THREAD_HANDLE;
+00049   typedef CRITICAL_SECTION MUTEX;
+00050 
+00051 #elif defined(__IRIX_AL__)
+00052   #include <dmedia/audio.h>
+00053   #include <pthread.h>
+00054   #include <unistd.h>
+00055 
+00056   #define THREAD_TYPE
+00057   typedef ALport AUDIO_HANDLE;
+00058   typedef int DEVICE_ID;
+00059   typedef pthread_t THREAD_HANDLE;
+00060   typedef pthread_mutex_t MUTEX;
+00061 
+00062 #endif
+00063 
+00064 
+00065 // *************************************************** //
+00066 //
+00067 // RtError class declaration.
+00068 //
+00069 // *************************************************** //
+00070 
+00071 class RtError
+00072 {
+00073 public:
+00074   enum TYPE {
+00075     WARNING,
+00076     DEBUG_WARNING,
+00077     UNSPECIFIED,
+00078     NO_DEVICES_FOUND,
+00079     INVALID_DEVICE,
+00080     INVALID_STREAM,
+00081     MEMORY_ERROR,
+00082     INVALID_PARAMETER,
+00083     DRIVER_ERROR,
+00084     SYSTEM_ERROR,
+00085     THREAD_ERROR
+00086   };
+00087 
+00088 protected:
+00089   char error_message[256];
+00090   TYPE type;
+00091 
+00092 public:
+00094   RtError(const char *p, TYPE tipe = RtError::UNSPECIFIED);
+00095 
+00097   virtual ~RtError(void);
+00098 
+00100   virtual void printMessage(void);
+00101 
+00103   virtual const TYPE& getType(void) { return type; }
+00104 
+00106   virtual const char *getMessage(void) { return error_message; }
+00107 };
+00108 
+00109 
+00110 // *************************************************** //
+00111 //
+00112 // RtAudio class declaration.
+00113 //
+00114 // *************************************************** //
+00115 
+00116 class RtAudio
+00117 {
+00118 public:
+00119 
+00120   // Support for signed integers and floats.  Audio data fed to/from
+00121   // the tickStream() routine is assumed to ALWAYS be in host
+00122   // byte order.  The internal routines will automatically take care of
+00123   // any necessary byte-swapping between the host format and the
+00124   // soundcard.  Thus, endian-ness is not a concern in the following
+00125   // format definitions.
+00126   typedef unsigned long RTAUDIO_FORMAT;
+00127   static const RTAUDIO_FORMAT RTAUDIO_SINT8;
+00128   static const RTAUDIO_FORMAT RTAUDIO_SINT16;
+00129   static const RTAUDIO_FORMAT RTAUDIO_SINT24; 
+00130   static const RTAUDIO_FORMAT RTAUDIO_SINT32;
+00131   static const RTAUDIO_FORMAT RTAUDIO_FLOAT32; 
+00132   static const RTAUDIO_FORMAT RTAUDIO_FLOAT64; 
+00133 
+00134   //static const int MAX_SAMPLE_RATES = 14;
+00135   enum { MAX_SAMPLE_RATES = 14 };
+00136 
+00137   typedef int (*RTAUDIO_CALLBACK)(char *buffer, int bufferSize, void *userData);
+00138 
+00139   typedef struct {
+00140     char name[128];
+00141     DEVICE_ID id[2];  
+00142     bool probed;       
+00143     int maxOutputChannels;
+00144     int maxInputChannels;
+00145     int maxDuplexChannels;
+00146     int minOutputChannels;
+00147     int minInputChannels;
+00148     int minDuplexChannels;
+00149     bool hasDuplexSupport; 
+00150     int nSampleRates;      
+00151     int sampleRates[MAX_SAMPLE_RATES]; 
+00152     RTAUDIO_FORMAT nativeFormats;     
+00153   } RTAUDIO_DEVICE;
+00154 
+00156 
+00163   RtAudio();
+00164 
+00166 
+00177   RtAudio(int *streamId,
+00178           int outputDevice, int outputChannels,
+00179           int inputDevice, int inputChannels,
+00180           RTAUDIO_FORMAT format, int sampleRate,
+00181           int *bufferSize, int numberOfBuffers);
+00182 
+00184 
+00188   ~RtAudio();
+00189 
+00191 
+00218   int openStream(int outputDevice, int outputChannels,
+00219                  int inputDevice, int inputChannels,
+00220                  RTAUDIO_FORMAT format, int sampleRate,
+00221                  int *bufferSize, int numberOfBuffers);
+00222 
+00224 
+00243   void setStreamCallback(int streamId, RTAUDIO_CALLBACK callback, void *userData);
+00244 
+00246 
+00253   void cancelStreamCallback(int streamId);
+00254 
+00256   int getDeviceCount(void);
+00257 
+00259 
+00269   void getDeviceInfo(int device, RTAUDIO_DEVICE *info);
+00270 
+00272 
+00277   char * const getStreamBuffer(int streamId);
+00278 
+00280 
+00285   void tickStream(int streamId);
+00286 
+00288 
+00292   void closeStream(int streamId);
+00293 
+00295 
+00299   void startStream(int streamId);
+00300 
+00302 
+00306   void stopStream(int streamId);
+00307 
+00309 
+00313   void abortStream(int streamId);
+00314 
+00316 
+00321   int streamWillBlock(int streamId);
+00322 
+00323 protected:
+00324 
+00325 private:
+00326 
+00327   static const unsigned int SAMPLE_RATES[MAX_SAMPLE_RATES];
+00328 
+00329   enum { FAILURE, SUCCESS };
+00330 
+00331   enum STREAM_MODE {
+00332     PLAYBACK,
+00333     RECORD,
+00334     DUPLEX,
+00335     UNINITIALIZED = -75
+00336   };
+00337 
+00338   enum STREAM_STATE {
+00339     STREAM_STOPPED,
+00340     STREAM_RUNNING
+00341   };
+00342 
+00343   typedef struct {
+00344     int device[2];          // Playback and record, respectively.
+00345     STREAM_MODE mode;       // PLAYBACK, RECORD, or DUPLEX.
+00346     AUDIO_HANDLE handle[2]; // Playback and record handles, respectively.
+00347     STREAM_STATE state;     // STOPPED or RUNNING
+00348     char *userBuffer;
+00349     char *deviceBuffer;
+00350     bool doConvertBuffer[2]; // Playback and record, respectively.
+00351     bool deInterleave[2];    // Playback and record, respectively.
+00352     bool doByteSwap[2];      // Playback and record, respectively.
+00353     int sampleRate;
+00354     int bufferSize;
+00355     int nBuffers;
+00356     int nUserChannels[2];    // Playback and record, respectively.
+00357     int nDeviceChannels[2];  // Playback and record channels, respectively.
+00358     RTAUDIO_FORMAT userFormat;
+00359     RTAUDIO_FORMAT deviceFormat[2]; // Playback and record, respectively.
+00360     bool usingCallback;
+00361     THREAD_HANDLE thread;
+00362     MUTEX mutex;
+00363     RTAUDIO_CALLBACK callback;
+00364     void *userData;
+00365   } RTAUDIO_STREAM;
+00366 
+00367   typedef signed short INT16;
+00368   typedef signed int INT32;
+00369   typedef float FLOAT32;
+00370   typedef double FLOAT64;
+00371 
+00372   char message[256];
+00373   int nDevices;
+00374   RTAUDIO_DEVICE *devices;
+00375 
+00376   std::map<int, void *> streams;
+00377 
+00379   void error(RtError::TYPE type);
+00380 
+00385   void initialize(void);
+00386 
+00388   void clearDeviceInfo(RTAUDIO_DEVICE *info);
+00389 
+00397   void probeDeviceInfo(RTAUDIO_DEVICE *info);
+00398 
+00405   bool probeDeviceOpen(int device, RTAUDIO_STREAM *stream,
+00406                        STREAM_MODE mode, int channels, 
+00407                        int sampleRate, RTAUDIO_FORMAT format,
+00408                        int *bufferSize, int numberOfBuffers);
+00409 
+00416   void *verifyStream(int streamId);
+00417 
+00422   void convertStreamBuffer(RTAUDIO_STREAM *stream, STREAM_MODE mode);
+00423 
+00425   void byteSwapBuffer(char *buffer, int samples, RTAUDIO_FORMAT format);
+00426 
+00428   int formatBytes(RTAUDIO_FORMAT format);
+00429 };
+00430 
+00431 // Uncomment the following definition to have extra information spewed to stderr.
+00432 //#define RTAUDIO_DEBUG
+00433 
+00434 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/RtDuplex_8h-source.html b/doc/html/RtDuplex_8h-source.html new file mode 100644 index 0000000..ac3b2e9 --- /dev/null +++ b/doc/html/RtDuplex_8h-source.html @@ -0,0 +1,70 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

RtDuplex.h

00001 /***************************************************/
+00022 /***************************************************/
+00023 
+00024 #if !defined(__RTDUPLEX_H)
+00025 #define __RTDUPLEX_H
+00026 
+00027 #include "Stk.h"
+00028 #include "RtAudio.h"
+00029 
+00030 class RtDuplex : public Stk
+00031 {
+00032 public:
+00034 
+00045   RtDuplex(int nChannels = 1, MY_FLOAT sampleRate = Stk::sampleRate(), int device = 0, int bufferFrames = RT_BUFFER_SIZE, int nBuffers = 2);
+00046 
+00048   ~RtDuplex();
+00049 
+00051 
+00054   void start(void);
+00055 
+00057 
+00060   void stop(void);
+00061 
+00063   MY_FLOAT lastOut(void) const;
+00064 
+00066 
+00069   MY_FLOAT tick(const MY_FLOAT sample);
+00070 
+00072 
+00075   MY_FLOAT *tick(MY_FLOAT *vector, unsigned int vectorSize);
+00076 
+00078   const MY_FLOAT *lastFrame(void) const;
+00079 
+00081 
+00084   MY_FLOAT *tickFrame(MY_FLOAT *frameVector, unsigned int frames = 1);
+00085 
+00086 protected:
+00087 
+00088         RtAudio *audio;
+00089   MY_FLOAT *data;
+00090   MY_FLOAT *lastOutput;
+00091   int bufferSize;
+00092   bool stopped;
+00093   int stream;
+00094   long counter;
+00095   unsigned int channels;
+00096 
+00097 };
+00098 
+00099 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/RtMidi_8h-source.html b/doc/html/RtMidi_8h-source.html new file mode 100644 index 0000000..837416e --- /dev/null +++ b/doc/html/RtMidi_8h-source.html @@ -0,0 +1,61 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

RtMidi.h

00001 /***************************************************/
+00030 /***************************************************/
+00031 
+00032 #if !defined(__RTMIDI_H)
+00033 #define __RTMIDI_H
+00034 
+00035 #include "Stk.h"
+00036 
+00037 class RtMidi : public Stk
+00038 {
+00039  public:
+00041   RtMidi(int device = 0);
+00042 
+00044   ~RtMidi();
+00045 
+00047   void printMessage(void) const;
+00048 
+00050 
+00053   int nextMessage(void);
+00054 
+00056   int getType() const;
+00057 
+00059   int getChannel() const;
+00060 
+00062   MY_FLOAT getByteTwo() const;
+00063 
+00065   MY_FLOAT getByteThree() const;
+00066 
+00068         MY_FLOAT getDeltaTime() const;
+00069 
+00070  protected:
+00071   int messageType;
+00072   int channel;
+00073   float byteTwo;
+00074   float byteThree;
+00075         MY_FLOAT deltaTime;
+00076   int readIndex;
+00077 
+00078 };
+00079 
+00080 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/RtWvIn_8h-source.html b/doc/html/RtWvIn_8h-source.html new file mode 100644 index 0000000..e025c17 --- /dev/null +++ b/doc/html/RtWvIn_8h-source.html @@ -0,0 +1,70 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

RtWvIn.h

00001 /***************************************************/
+00020 /***************************************************/
+00021 
+00022 #if !defined(__RTWVIN_H)
+00023 #define __RTWVIN_H
+00024 
+00025 #include "Stk.h"
+00026 #include "WvIn.h"
+00027 #include "RtAudio.h"
+00028 
+00029 class RtWvIn : protected WvIn
+00030 {
+00031 public:
+00033 
+00044   RtWvIn(int nChannels = 1, MY_FLOAT sampleRate = Stk::sampleRate(), int device = 0, int bufferFrames = RT_BUFFER_SIZE, int nBuffers = 2);
+00045 
+00047   ~RtWvIn();
+00048 
+00050 
+00053   void start(void);
+00054 
+00056 
+00059   void stop(void);
+00060 
+00062   MY_FLOAT lastOut(void) const;
+00063 
+00065 
+00068   MY_FLOAT tick(void);
+00069 
+00071 
+00074   MY_FLOAT *tick(MY_FLOAT *vector, unsigned int vectorSize);
+00075 
+00077   const MY_FLOAT *lastFrame(void) const;
+00078 
+00080 
+00083   const MY_FLOAT *tickFrame(void);
+00084 
+00086 
+00089   MY_FLOAT *tickFrame(MY_FLOAT *frameVector, unsigned int frames);
+00090 
+00091 protected:
+00092 
+00093         RtAudio *audio;
+00094   bool stopped;
+00095   int stream;
+00096   long counter;
+00097 
+00098 };
+00099 
+00100 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/RtWvOut_8h-source.html b/doc/html/RtWvOut_8h-source.html new file mode 100644 index 0000000..a2a734c --- /dev/null +++ b/doc/html/RtWvOut_8h-source.html @@ -0,0 +1,66 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

RtWvOut.h

00001 /***************************************************/
+00019 /***************************************************/
+00020 
+00021 #if !defined(__RTWVOUT_H)
+00022 #define __RTWVOUT_H
+00023 
+00024 #include "WvOut.h"
+00025 #include "RtAudio.h"
+00026 
+00027 class RtWvOut : protected WvOut
+00028 {
+00029  public:
+00031 
+00042   RtWvOut(unsigned int nChannels = 1, MY_FLOAT sampleRate = Stk::sampleRate(), int device = 0, int bufferFrames = RT_BUFFER_SIZE, int nBuffers = 4 );
+00043 
+00045   ~RtWvOut();
+00046 
+00048 
+00051   void start(void);
+00052 
+00054 
+00057   void stop(void);
+00058 
+00060   unsigned long getFrames( void ) const;
+00061 
+00063   MY_FLOAT getTime( void ) const;
+00064 
+00066 
+00069   void tick(const MY_FLOAT sample);
+00070 
+00072 
+00075   void tick(const MY_FLOAT *vector, unsigned int vectorSize);
+00076 
+00078 
+00081   void tickFrame(const MY_FLOAT *frameVector, unsigned int frames = 1);
+00082 
+00083  protected:
+00084 
+00085         RtAudio *audio;
+00086   bool stopped;
+00087   int stream;
+00088   int bufferSize;
+00089 
+00090 };
+00091 
+00092 #endif // defined(__RTWVOUT_H)
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/SKINI_8h-source.html b/doc/html/SKINI_8h-source.html new file mode 100644 index 0000000..002fed0 --- /dev/null +++ b/doc/html/SKINI_8h-source.html @@ -0,0 +1,103 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

SKINI.h

00001 /***************************************************/
+00026 /***************************************************/
+00027 
+00028 #if !defined(__SKINI_H)
+00029 #define __SKINI_H
+00030 
+00031 #include "Stk.h"
+00032 #include <stdio.h>
+00033 
+00034 class SKINI : public Stk
+00035 {
+00036  public:
+00038   SKINI();
+00039 
+00041   SKINI(char *fileName);
+00042 
+00044   ~SKINI();
+00045 
+00047 
+00050   long parseThis(char* aString);
+00051 
+00053 
+00056   long nextMessage();
+00057 
+00059   long getType() const;
+00060 
+00062   long getChannel() const;
+00063 
+00065   MY_FLOAT getDelta() const;
+00066 
+00068   MY_FLOAT getByteTwo() const;
+00069 
+00071   MY_FLOAT getByteThree() const;
+00072 
+00074   long getByteTwoInt() const;
+00075 
+00077   long getByteThreeInt() const;
+00078 
+00080   const char* getRemainderString();
+00081 
+00083   const char* getMessageTypeString();
+00084 
+00086   const char* whatsThisType(long type);
+00087 
+00089   const char* whatsThisController(long number);
+00090 
+00091  protected:
+00092 
+00093   FILE *myFile;
+00094   long messageType;
+00095   char msgTypeString[64];
+00096   long channel;
+00097   MY_FLOAT deltaTime;
+00098   MY_FLOAT byteTwo;
+00099   MY_FLOAT byteThree;
+00100   long byteTwoInt;
+00101   long byteThreeInt;
+00102   char remainderString[1024];
+00103   char whatString[1024];
+00104 };
+00105 
+00106 static const double Midi2Pitch[129] = {
+00107 8.18,8.66,9.18,9.72,10.30,10.91,11.56,12.25,
+00108 12.98,13.75,14.57,15.43,16.35,17.32,18.35,19.45,
+00109 20.60,21.83,23.12,24.50,25.96,27.50,29.14,30.87,
+00110 32.70,34.65,36.71,38.89,41.20,43.65,46.25,49.00,
+00111 51.91,55.00,58.27,61.74,65.41,69.30,73.42,77.78,
+00112 82.41,87.31,92.50,98.00,103.83,110.00,116.54,123.47,
+00113 130.81,138.59,146.83,155.56,164.81,174.61,185.00,196.00,
+00114 207.65,220.00,233.08,246.94,261.63,277.18,293.66,311.13,
+00115 329.63,349.23,369.99,392.00,415.30,440.00,466.16,493.88,
+00116 523.25,554.37,587.33,622.25,659.26,698.46,739.99,783.99,
+00117 830.61,880.00,932.33,987.77,1046.50,1108.73,1174.66,1244.51,
+00118 1318.51,1396.91,1479.98,1567.98,1661.22,1760.00,1864.66,1975.53,
+00119 2093.00,2217.46,2349.32,2489.02,2637.02,2793.83,2959.96,3135.96,
+00120 3322.44,3520.00,3729.31,3951.07,4186.01,4434.92,4698.64,4978.03,
+00121 5274.04,5587.65,5919.91,6271.93,6644.88,7040.00,7458.62,7902.13,
+00122 8372.02,8869.84,9397.27,9956.06,10548.08,11175.30,11839.82,12543.85,
+00123 13289.75};
+00124 
+00125 #endif
+00126 
+00127 
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Sampler_8h-source.html b/doc/html/Sampler_8h-source.html new file mode 100644 index 0000000..f486eb5 --- /dev/null +++ b/doc/html/Sampler_8h-source.html @@ -0,0 +1,68 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Sampler.h

00001 /***************************************************/
+00010 /***************************************************/
+00011 
+00012 #if !defined(__SAMPLER_H)
+00013 #define __SAMPLER_H
+00014 
+00015 #include "Instrmnt.h"
+00016 #include "ADSR.h"
+00017 #include "WvIn.h"
+00018 #include "WaveLoop.h"
+00019 #include "OnePole.h"
+00020 
+00021 class Sampler : public Instrmnt
+00022 {
+00023  public:
+00025   Sampler();
+00026 
+00028   virtual ~Sampler();
+00029 
+00031   void clear();
+00032 
+00034   virtual void setFrequency(MY_FLOAT frequency) = 0;
+00035 
+00037   void keyOn();
+00038 
+00040   void keyOff();
+00041 
+00043   virtual void noteOff(MY_FLOAT amplitude);
+00044 
+00046   virtual MY_FLOAT tick();
+00047 
+00049   virtual void controlChange(int number, MY_FLOAT value) = 0;
+00050 
+00051  protected:  
+00052   ADSR     *adsr; 
+00053   WvIn     *attacks[5];
+00054   WaveLoop *loops[5];
+00055   OnePole  *filter;
+00056   MY_FLOAT baseFrequency;
+00057   MY_FLOAT attackRatios[5];
+00058   MY_FLOAT loopRatios[5];
+00059   MY_FLOAT attackGain;
+00060   MY_FLOAT loopGain;
+00061   int whichOne;
+00062 
+00063 };
+00064 
+00065 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Saxofony_8h-source.html b/doc/html/Saxofony_8h-source.html new file mode 100644 index 0000000..e4da76b --- /dev/null +++ b/doc/html/Saxofony_8h-source.html @@ -0,0 +1,75 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Saxofony.h

00001 /***************************************************/
+00036 /***************************************************/
+00037 
+00038 #if !defined(__SAXOFONY_H)
+00039 #define __SAXOFONY_H
+00040 
+00041 #include "Instrmnt.h"
+00042 #include "DelayL.h"
+00043 #include "ReedTabl.h"
+00044 #include "OneZero.h"
+00045 #include "Envelope.h"
+00046 #include "Noise.h"
+00047 #include "WaveLoop.h"
+00048 
+00049 class Saxofony : public Instrmnt
+00050 {
+00051  public:
+00053   Saxofony(MY_FLOAT lowestFrequency);
+00054 
+00056   ~Saxofony();
+00057 
+00059   void clear();
+00060 
+00062   void setFrequency(MY_FLOAT frequency);
+00063 
+00065   void setBlowPosition(MY_FLOAT aPosition);
+00066 
+00068   void startBlowing(MY_FLOAT amplitude, MY_FLOAT rate);
+00069 
+00071   void stopBlowing(MY_FLOAT rate);
+00072 
+00074   void noteOn(MY_FLOAT frequency, MY_FLOAT amplitude);
+00075 
+00077   void noteOff(MY_FLOAT amplitude);
+00078 
+00080   MY_FLOAT tick();
+00081 
+00083   void controlChange(int number, MY_FLOAT value);
+00084 
+00085  protected:
+00086   DelayL *delays[2];
+00087   ReedTabl *reedTable;
+00088   OneZero *filter;
+00089   Envelope *envelope;
+00090   Noise *noise;
+00091   WaveLoop *vibrato;
+00092   long length;
+00093   MY_FLOAT outputGain;
+00094   MY_FLOAT noiseGain;
+00095   MY_FLOAT vibratoGain;
+00096   MY_FLOAT position;
+00097 
+00098 };
+00099 
+00100 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Shakers_8h-source.html b/doc/html/Shakers_8h-source.html new file mode 100644 index 0000000..0934e1d --- /dev/null +++ b/doc/html/Shakers_8h-source.html @@ -0,0 +1,88 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Shakers.h

00001 /***************************************************/
+00053 /***************************************************/
+00054 
+00055 #if !defined(__SHAKERS_H)
+00056 #define __SHAKERS_H
+00057 
+00058 #include "Instrmnt.h"
+00059 
+00060 #define MAX_FREQS 8
+00061 #define NUM_INSTR 24
+00062 
+00063 class Shakers : public Instrmnt
+00064 {
+00065  public:
+00067   Shakers();
+00068 
+00070   ~Shakers();
+00071 
+00073 
+00077   virtual void noteOn(MY_FLOAT instrument, MY_FLOAT amplitude);
+00078 
+00080   virtual void noteOff(MY_FLOAT amplitude);
+00081 
+00083   MY_FLOAT tick();
+00084 
+00086   virtual void controlChange(int number, MY_FLOAT value);
+00087 
+00088  protected:
+00089 
+00090   int setupName(char* instr);
+00091   int setupNum(int inst);
+00092   int setFreqAndReson(int which, MY_FLOAT freq, MY_FLOAT reson);
+00093   void setDecays(MY_FLOAT sndDecay, MY_FLOAT sysDecay);
+00094   void setFinalZs(MY_FLOAT z0, MY_FLOAT z1, MY_FLOAT z2);
+00095   MY_FLOAT wuter_tick();
+00096   MY_FLOAT tbamb_tick();
+00097   MY_FLOAT ratchet_tick();
+00098 
+00099   int instType;
+00100   int ratchetPos, lastRatchetPos;
+00101   MY_FLOAT shakeEnergy;
+00102   MY_FLOAT inputs[MAX_FREQS];
+00103   MY_FLOAT outputs[MAX_FREQS][2];
+00104   MY_FLOAT coeffs[MAX_FREQS][2];
+00105   MY_FLOAT sndLevel;
+00106   MY_FLOAT baseGain;
+00107   MY_FLOAT gains[MAX_FREQS];
+00108   int nFreqs;
+00109   MY_FLOAT t_center_freqs[MAX_FREQS];
+00110   MY_FLOAT center_freqs[MAX_FREQS];
+00111   MY_FLOAT resons[MAX_FREQS];
+00112   MY_FLOAT freq_rand[MAX_FREQS];
+00113   int freqalloc[MAX_FREQS];
+00114   MY_FLOAT soundDecay;
+00115   MY_FLOAT systemDecay;
+00116   MY_FLOAT nObjects;
+00117   MY_FLOAT collLikely;
+00118   MY_FLOAT totalEnergy;
+00119   MY_FLOAT ratchet,ratchetDelta;
+00120   MY_FLOAT finalZ[3];
+00121   MY_FLOAT finalZCoeffs[3];
+00122   MY_FLOAT defObjs[NUM_INSTR];
+00123   MY_FLOAT defDecays[NUM_INSTR];
+00124   MY_FLOAT decayScale[NUM_INSTR];
+00125 
+00126 };
+00127 
+00128 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Simple_8h-source.html b/doc/html/Simple_8h-source.html new file mode 100644 index 0000000..6033104 --- /dev/null +++ b/doc/html/Simple_8h-source.html @@ -0,0 +1,68 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Simple.h

00001 /***************************************************/
+00018 /***************************************************/
+00019 
+00020 #if !defined(__SIMPLE_H)
+00021 #define __SIMPLE_H
+00022 
+00023 #include "Instrmnt.h"
+00024 #include "ADSR.h"
+00025 #include "WaveLoop.h"
+00026 #include "OnePole.h"
+00027 #include "BiQuad.h"
+00028 #include "Noise.h"
+00029 
+00030 class Simple : public Instrmnt
+00031 {
+00032  public:
+00034   Simple();
+00035 
+00037   virtual ~Simple();
+00038 
+00040   void clear();
+00041 
+00043   virtual void setFrequency(MY_FLOAT frequency);
+00044 
+00046   void keyOn();
+00047 
+00049   void keyOff();
+00050 
+00052   virtual void noteOn(MY_FLOAT frequency, MY_FLOAT amplitude);
+00053 
+00055   virtual void noteOff(MY_FLOAT amplitude);
+00056 
+00058   virtual MY_FLOAT tick();
+00059 
+00061   virtual void controlChange(int number, MY_FLOAT value);
+00062 
+00063  protected:  
+00064   ADSR     *adsr; 
+00065   WaveLoop  *loop;
+00066   OnePole  *filter;
+00067   BiQuad   *biquad;
+00068   Noise    *noise;
+00069   MY_FLOAT baseFrequency;
+00070   MY_FLOAT loopGain;
+00071 
+00072 };
+00073 
+00074 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Sitar_8h-source.html b/doc/html/Sitar_8h-source.html new file mode 100644 index 0000000..1c9741e --- /dev/null +++ b/doc/html/Sitar_8h-source.html @@ -0,0 +1,66 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Sitar.h

00001 /***************************************************/
+00018 /***************************************************/
+00019 
+00020 #if !defined(__SITAR_H)
+00021 #define __SITAR_H
+00022 
+00023 #include "Instrmnt.h"
+00024 #include "DelayA.h"
+00025 #include "OneZero.h"
+00026 #include "Noise.h"
+00027 #include "ADSR.h"
+00028 
+00029 class Sitar : public Instrmnt
+00030 {
+00031  public:
+00033   Sitar(MY_FLOAT lowestFrequency);
+00034 
+00036   ~Sitar();
+00037 
+00039   void clear();
+00040 
+00042   void setFrequency(MY_FLOAT frequency);
+00043 
+00045   void pluck(MY_FLOAT amplitude);
+00046 
+00048   void noteOn(MY_FLOAT frequency, MY_FLOAT amplitude);
+00049 
+00051   void noteOff(MY_FLOAT amplitude);
+00052 
+00054   MY_FLOAT tick();
+00055 
+00056  protected:  
+00057   DelayA *delayLine;
+00058   OneZero *loopFilter;
+00059   Noise *noise;
+00060   ADSR *envelope;
+00061   long length;
+00062   MY_FLOAT loopGain;
+00063   MY_FLOAT amGain;
+00064   MY_FLOAT delay;
+00065   MY_FLOAT targetDelay;
+00066 
+00067 };
+00068 
+00069 #endif
+00070 
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Socket_8h-source.html b/doc/html/Socket_8h-source.html new file mode 100644 index 0000000..b49fa93 --- /dev/null +++ b/doc/html/Socket_8h-source.html @@ -0,0 +1,75 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Socket.h

00001 /***************************************************/
+00019 /***************************************************/
+00020 
+00021 #if !defined(__SOCKET_H)
+00022 #define __SOCKET_H
+00023 
+00024 #include "Stk.h"
+00025 
+00026 class Socket : public Stk
+00027 {
+00028  public:
+00030 
+00033   Socket( int port = 2006 );
+00034 
+00036 
+00039   Socket( int port, const char *hostname );
+00040 
+00042   ~Socket();
+00043 
+00045 
+00053   int connect( int port, const char *hostname = "localhost" );
+00054 
+00056   void close( void );
+00057 
+00059   int socket( void ) const;
+00060 
+00062   int port( void ) const;
+00063 
+00065 
+00071   int accept( void );
+00072 
+00074   static void setBlocking( int socket, bool enable );
+00075 
+00077   static void close( int socket );
+00078 
+00080   static bool isValid( int socket );
+00081 
+00083   int writeBuffer(const void *buffer, long bufferSize, int flags = 0);
+00084 
+00086   static int writeBuffer(int socket, const void *buffer, long bufferSize, int flags );
+00087 
+00089   int readBuffer(void *buffer, long bufferSize, int flags = 0);
+00090 
+00092   static int readBuffer(int socket, void *buffer, long bufferSize, int flags );
+00093 
+00094  protected:
+00095 
+00096   char msg[256];
+00097   int soket;
+00098   int poort;
+00099   bool server;
+00100 
+00101 };
+00102 
+00103 #endif // defined(__SOCKET_H)
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/StifKarp_8h-source.html b/doc/html/StifKarp_8h-source.html new file mode 100644 index 0000000..52b0a1d --- /dev/null +++ b/doc/html/StifKarp_8h-source.html @@ -0,0 +1,79 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

StifKarp.h

00001 /***************************************************/
+00022 /***************************************************/
+00023 
+00024 #if !defined(__StifKarp_h)
+00025 #define __StifKarp_h
+00026 
+00027 #include "Instrmnt.h"
+00028 #include "DelayL.h"
+00029 #include "DelayA.h"
+00030 #include "OneZero.h"
+00031 #include "Noise.h"
+00032 #include "BiQuad.h"
+00033 
+00034 class StifKarp : public Instrmnt
+00035 {
+00036  public:
+00038   StifKarp(MY_FLOAT lowestFrequency);
+00039 
+00041   ~StifKarp();
+00042 
+00044   void clear();
+00045 
+00047   void setFrequency(MY_FLOAT frequency);
+00048 
+00050   void setStretch(MY_FLOAT stretch);
+00051 
+00053   void setPickupPosition(MY_FLOAT position);
+00054 
+00056 
+00061   void setBaseLoopGain(MY_FLOAT aGain);
+00062 
+00064   void pluck(MY_FLOAT amplitude);
+00065 
+00067   void noteOn(MY_FLOAT frequency, MY_FLOAT amplitude);
+00068 
+00070   void noteOff(MY_FLOAT amplitude);
+00071 
+00073   MY_FLOAT tick();
+00074 
+00076   void controlChange(int number, MY_FLOAT value);
+00077 
+00078  protected:  
+00079     DelayA *delayLine;
+00080     DelayL *combDelay;
+00081     OneZero *filter;
+00082     Noise *noise;
+00083     BiQuad *biQuad[4];
+00084     long length;
+00085     MY_FLOAT loopGain;
+00086     MY_FLOAT baseLoopGain;
+00087     MY_FLOAT lastFrequency;
+00088     MY_FLOAT lastLength;
+00089     MY_FLOAT stretching;
+00090     MY_FLOAT pluckAmplitude;
+00091     MY_FLOAT pickupPosition;
+00092 
+00093 };
+00094 
+00095 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Stk_8h-source.html b/doc/html/Stk_8h-source.html new file mode 100644 index 0000000..95c9339 --- /dev/null +++ b/doc/html/Stk_8h-source.html @@ -0,0 +1,151 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Stk.h

00001 /***************************************************/
+00013 /***************************************************/
+00014 
+00015 #if !defined(__STK_H)
+00016 #define __STK_H
+00017 
+00018 // Most data in STK is passed and calculated with the following
+00019 // user-definable floating-point type.  You can change this to "float"
+00020 // if you prefer or perhaps a "long double" in the future.
+00021 typedef double MY_FLOAT;
+00022 
+00024 
+00029 class StkError
+00030 {
+00031 public:
+00032   enum TYPE { 
+00033     WARNING,
+00034     DEBUG_WARNING,
+00035     FUNCTION_ARGUMENT,
+00036     FILE_NOT_FOUND,
+00037     FILE_UNKNOWN_FORMAT,
+00038     FILE_ERROR,
+00039     PROCESS_THREAD,
+00040     PROCESS_SOCKET,
+00041     PROCESS_SOCKET_IPADDR,
+00042     AUDIO_SYSTEM,
+00043     MIDI_SYSTEM,
+00044     UNSPECIFIED
+00045   };
+00046 
+00047 protected:
+00048   char message[256];
+00049   TYPE type;
+00050 
+00051 public:
+00053   StkError(const char *p, TYPE tipe = StkError::UNSPECIFIED);
+00054 
+00056   virtual ~StkError(void);
+00057 
+00059   virtual void printMessage(void);
+00060 
+00062   virtual const TYPE& getType(void) { return type; }
+00063 
+00065   virtual const char *getMessage(void) const { return message; }
+00066 };
+00067 
+00068 
+00069 class Stk
+00070 {
+00071  public:
+00072 
+00073   typedef unsigned long STK_FORMAT;
+00074   static const STK_FORMAT STK_SINT8;   
+00075   static const STK_FORMAT STK_SINT16;  
+00076   static const STK_FORMAT STK_SINT32;  
+00077   static const STK_FORMAT STK_FLOAT32; 
+00078   static const STK_FORMAT STK_FLOAT64; 
+00079 
+00081   static MY_FLOAT sampleRate(void);
+00082 
+00084 
+00092   static void setSampleRate(MY_FLOAT newRate);
+00093 
+00095   static void swap16(unsigned char *ptr);
+00096 
+00098   static void swap32(unsigned char *ptr);
+00099 
+00101   static void swap64(unsigned char *ptr);
+00102 
+00104   static void sleep(unsigned long milliseconds);
+00105 
+00106  private:
+00107   static MY_FLOAT srate;
+00108 
+00109  protected:
+00110 
+00112   Stk(void);
+00113 
+00115   virtual ~Stk(void);
+00116 
+00118   static void handleError( const char *message, StkError::TYPE type );
+00119 
+00120 };
+00121 
+00122 // Here are a few other useful typedefs.
+00123 typedef signed short SINT16;
+00124 typedef signed int SINT32;
+00125 typedef float FLOAT32;
+00126 typedef double FLOAT64;
+00127 
+00128 // Boolean values
+00129 #define FALSE 0
+00130 #define TRUE 1
+00131 
+00132 // The default sampling rate.
+00133 #define SRATE (MY_FLOAT) 22050.0
+00134 
+00135 // Real-time audio input and output buffer size.  If clicks are
+00136 // occuring in the input and/or output sound stream, a larger buffer
+00137 // size may help.  Larger buffer sizes, however, produce more latency.
+00138 
+00139 #define RT_BUFFER_SIZE 512
+00140 
+00141 // The RAWWAVE_PATH definition is concatenated to the beginning of all
+00142 // references to rawwave files in the various STK core classes
+00143 // (ex. Clarinet.cpp).  If you wish to move the rawwaves directory to
+00144 // a different location in your file system, you will need to set this
+00145 // path definition appropriately.  The current definition is a
+00146 // relative reference that will work "out of the box" for the STK
+00147 // distribution.
+00148 #define RAWWAVE_PATH "../../"
+00149 
+00150 #define PI (MY_FLOAT) 3.14159265359
+00151 #define TWO_PI (MY_FLOAT) (MY_FLOAT) (2 * PI)
+00152 
+00153 #define ONE_OVER_128 (MY_FLOAT) 0.0078125
+00154 
+00155 #if defined(__WINDOWS_DS__)
+00156   #define __OS_WINDOWS__
+00157   #define __STK_REALTIME__
+00158 #elif defined(__LINUX_OSS__) || defined(__LINUX_ALSA__)
+00159   #define __OS_LINUX__
+00160   #define __STK_REALTIME__
+00161 #elif defined(__IRIX_AL__)
+00162   #define __OS_IRIX__
+00163   #define __STK_REALTIME__
+00164 #endif
+00165 
+00166 //#define _STK_DEBUG_
+00167 
+00168 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/SubNoise_8h-source.html b/doc/html/SubNoise_8h-source.html new file mode 100644 index 0000000..cd4de9d --- /dev/null +++ b/doc/html/SubNoise_8h-source.html @@ -0,0 +1,49 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

SubNoise.h

00001 /***************************************************/
+00011 /***************************************************/
+00012 
+00013 #if !defined(__SUBNOISE_H)
+00014 #define __SUBNOISE_H
+00015 
+00016 #include "Noise.h"
+00017 
+00018 class SubNoise : public Noise
+00019 {
+00020  public:
+00021 
+00023   SubNoise(int subRate = 16);
+00024 
+00026   ~SubNoise();
+00027 
+00029   int subRate(void) const;
+00030 
+00032   void setRate(int subRate);
+00033 
+00035   MY_FLOAT tick();
+00036 
+00037  protected:  
+00038   int counter;
+00039   int rate;
+00040 
+00041 };
+00042 
+00043 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Table_8h-source.html b/doc/html/Table_8h-source.html new file mode 100644 index 0000000..ba138c0 --- /dev/null +++ b/doc/html/Table_8h-source.html @@ -0,0 +1,52 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Table.h

00001 /***************************************************/
+00015 /***************************************************/
+00016 
+00017 #if !defined(__TABLE_H)
+00018 #define __TABLE_H
+00019 
+00020 #include "Stk.h"
+00021 
+00022 class Table : public Stk
+00023 {
+00024 public:
+00026   Table(char *fileName);
+00027 
+00029   ~Table();
+00030 
+00032   long getLength() const;
+00033 
+00035   MY_FLOAT lastOut() const;
+00036 
+00038 
+00042   MY_FLOAT tick(MY_FLOAT index);
+00043 
+00045   MY_FLOAT *tick(MY_FLOAT *vector, unsigned int vectorSize);
+00046 
+00047 protected:  
+00048   long length;
+00049   MY_FLOAT *data;
+00050   MY_FLOAT lastOutput;
+00051 
+00052 };
+00053 
+00054 #endif // defined(__TABLE_H)
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/TcpWvIn_8h-source.html b/doc/html/TcpWvIn_8h-source.html new file mode 100644 index 0000000..ff1b831 --- /dev/null +++ b/doc/html/TcpWvIn_8h-source.html @@ -0,0 +1,91 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

TcpWvIn.h

00001 /***************************************************/
+00027 /***************************************************/
+00028 
+00029 #if !defined(__TCPWVIN_H)
+00030 #define __TCPWVIN_H
+00031 
+00032 #include "WvIn.h"
+00033 #include "Socket.h"
+00034 #include "Thread.h"
+00035 
+00036 typedef struct {
+00037   bool finished;
+00038   void *object;
+00039 } thread_info;
+00040 
+00041 class TcpWvIn : protected WvIn
+00042 {
+00043 public:
+00045 
+00048   TcpWvIn( int port = 2006 );
+00049 
+00051   ~TcpWvIn();
+00052 
+00054 
+00057   void listen(unsigned int nChannels = 1, Stk::STK_FORMAT format = STK_SINT16);
+00058 
+00060 
+00064   bool isConnected(void);
+00065 
+00067   MY_FLOAT lastOut(void) const;
+00068 
+00070   MY_FLOAT tick(void);
+00071 
+00073   MY_FLOAT *tick(MY_FLOAT *vector, unsigned int vectorSize);
+00074 
+00076   const MY_FLOAT *lastFrame(void) const;
+00077 
+00079   const MY_FLOAT *tickFrame(void);
+00080 
+00082   MY_FLOAT *tickFrame(MY_FLOAT *frameVector, unsigned int frames);
+00083 
+00084   // Called by the thread routine to receive data via the socket connection
+00085   // and fill the socket buffer.  This is not intended for general use but
+00086   // had to be made public for access from the thread.
+00087   void receive(void);
+00088 
+00089 protected:
+00090 
+00091   // Initialize class variables.
+00092   void init( int port );
+00093 
+00094   // Read buffered socket data into the data buffer ... will block if none available.
+00095   int readData( void );
+00096 
+00097   Socket *soket;
+00098   Thread *thread;
+00099   Mutex mutex;
+00100   char *buffer;
+00101   long bufferBytes;
+00102   long bytesFilled;
+00103   long writePoint;
+00104   long readPoint;
+00105   long counter;
+00106   int dataSize;
+00107   bool connected;
+00108   int fd;
+00109   thread_info threadInfo;
+00110 
+00111 };
+00112 
+00113 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/TcpWvOut_8h-source.html b/doc/html/TcpWvOut_8h-source.html new file mode 100644 index 0000000..43da805 --- /dev/null +++ b/doc/html/TcpWvOut_8h-source.html @@ -0,0 +1,69 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

TcpWvOut.h

00001 /***************************************************/
+00026 /***************************************************/
+00027 
+00028 #if !defined(__TCPWVOUT_H)
+00029 #define __TCPWVOUT_H
+00030 
+00031 #include "WvOut.h"
+00032 #include "Socket.h"
+00033 
+00034 class TcpWvOut : protected WvOut
+00035 {
+00036  public:
+00038   TcpWvOut();
+00039 
+00041 
+00044   TcpWvOut(int port, const char *hostname = "localhost", unsigned int nChannels = 1, Stk::STK_FORMAT format = STK_SINT16);
+00045 
+00047   ~TcpWvOut();
+00048 
+00050 
+00053   void connect(int port, const char *hostname = "localhost", unsigned int nChannels = 1, Stk::STK_FORMAT format = STK_SINT16);
+00054 
+00056   void disconnect(void);
+00057 
+00059   unsigned long getFrames( void ) const;
+00060 
+00062   MY_FLOAT getTime( void ) const;
+00063 
+00065 
+00068   void tick(MY_FLOAT sample);
+00069 
+00071 
+00074   void tick(const MY_FLOAT *vector, unsigned int vectorSize);
+00075 
+00077 
+00080   void tickFrame(const MY_FLOAT *frameVector, unsigned int frames = 1);
+00081 
+00082  protected:
+00083 
+00084   // Write a buffer of length \e frames via the socket connection.
+00085   void writeData( long frames );
+00086 
+00087   char msg[256];
+00088   char *buffer;
+00089   Socket *soket;
+00090   int dataSize;
+00091 };
+00092 
+00093 #endif // defined(__TCPWVOUT_H)
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Thread_8h-source.html b/doc/html/Thread_8h-source.html new file mode 100644 index 0000000..d6cfeb0 --- /dev/null +++ b/doc/html/Thread_8h-source.html @@ -0,0 +1,88 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Thread.h

00001 /***************************************************/
+00012 /***************************************************/
+00013 
+00014 #if !defined(__THREAD_H)
+00015 #define __THREAD_H
+00016 
+00017 #include "Stk.h"
+00018 
+00019 #if (defined(__OS_IRIX__) || defined(__OS_LINUX__))
+00020 
+00021   #include <pthread.h>
+00022   #define THREAD_TYPE
+00023   typedef pthread_t THREAD_HANDLE;
+00024   typedef void * THREAD_RETURN;
+00025   typedef void * (*THREAD_FUNCTION)(void *);
+00026   typedef pthread_mutex_t MUTEX;
+00027 
+00028 #elif defined(__OS_WINDOWS__)
+00029 
+00030   #include <windows.h>
+00031   #include <process.h>
+00032   #define THREAD_TYPE __stdcall
+00033   typedef unsigned long THREAD_HANDLE;
+00034   typedef unsigned THREAD_RETURN;
+00035   typedef unsigned (__stdcall *THREAD_FUNCTION)(void *);
+00036   typedef CRITICAL_SECTION MUTEX;
+00037 
+00038 #endif
+00039 
+00040 class Thread : public Stk
+00041 {
+00042  public:
+00044   Thread();
+00045 
+00047   ~Thread();
+00048 
+00050 
+00054   bool start( THREAD_FUNCTION routine, void * ptr = NULL );
+00055 
+00057 
+00063   bool wait( long milliseconds = -1 );
+00064 
+00066   static void test(void);
+00067 
+00068  protected:
+00069 
+00070   THREAD_HANDLE thread;
+00071 
+00072 };
+00073 
+00074 class Mutex : public Stk
+00075 {
+00076  public:
+00078   Mutex();
+00079 
+00081   ~Mutex();
+00082 
+00084   void lock(void);
+00085 
+00087   void unlock(void);
+00088 
+00089  protected:
+00090 
+00091   MUTEX mutex;
+00092 
+00093 };
+00094 
+00095 #endif // defined(__THREAD_H)
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/TubeBell_8h-source.html b/doc/html/TubeBell_8h-source.html new file mode 100644 index 0000000..1d569f3 --- /dev/null +++ b/doc/html/TubeBell_8h-source.html @@ -0,0 +1,41 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

TubeBell.h

00001 /***************************************************/
+00031 /***************************************************/
+00032 
+00033 #if !defined(__TUBEBELL_H)
+00034 #define __TUBEBELL_H
+00035 
+00036 #include "FM.h"
+00037 
+00038 class TubeBell : public FM
+00039 {
+00040  public:
+00042   TubeBell();
+00043 
+00045   ~TubeBell();
+00046 
+00048   void noteOn(MY_FLOAT frequency, MY_FLOAT amplitude);
+00049 
+00051   MY_FLOAT tick();
+00052 };
+00053 
+00054 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/TwoPole_8h-source.html b/doc/html/TwoPole_8h-source.html new file mode 100644 index 0000000..f1223c0 --- /dev/null +++ b/doc/html/TwoPole_8h-source.html @@ -0,0 +1,60 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

TwoPole.h

00001 /***************************************************/
+00013 /***************************************************/
+00014 
+00015 #if !defined(__TWOPOLE_H)
+00016 #define __TWOPOLE_H
+00017 
+00018 #include "Filter.h"
+00019 
+00020 class TwoPole : protected Filter
+00021 {
+00022  public:
+00023 
+00025   TwoPole();
+00026 
+00028   ~TwoPole();
+00029 
+00031   void clear(void);
+00032 
+00034   void setB0(MY_FLOAT b0);
+00035 
+00037   void setA1(MY_FLOAT a1);
+00038 
+00040   void setA2(MY_FLOAT a2);
+00041 
+00043 
+00056   void setResonance(MY_FLOAT frequency, MY_FLOAT radius, bool normalize = FALSE);
+00057 
+00059 
+00063   void setGain(MY_FLOAT theGain);
+00064 
+00066   MY_FLOAT getGain(void) const;
+00067 
+00069   MY_FLOAT lastOut(void) const;
+00070 
+00072   MY_FLOAT tick(MY_FLOAT sample);
+00073 
+00075   MY_FLOAT *tick(MY_FLOAT *vector, unsigned int vectorSize);
+00076 };
+00077 
+00078 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/TwoZero_8h-source.html b/doc/html/TwoZero_8h-source.html new file mode 100644 index 0000000..3be4a22 --- /dev/null +++ b/doc/html/TwoZero_8h-source.html @@ -0,0 +1,59 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

TwoZero.h

00001 /***************************************************/
+00013 /***************************************************/
+00014 
+00015 #if !defined(__TWOZERO_H)
+00016 #define __TWOZERO_H
+00017 
+00018 #include "Filter.h"
+00019 
+00020 class TwoZero : protected Filter
+00021 {
+00022  public:
+00024   TwoZero();
+00025 
+00027   ~TwoZero();
+00028 
+00030   void clear(void);
+00031 
+00033   void setB0(MY_FLOAT b0);
+00034 
+00036   void setB1(MY_FLOAT b1);
+00037 
+00039   void setB2(MY_FLOAT b2);
+00040 
+00042 
+00052   void setNotch(MY_FLOAT frequency, MY_FLOAT radius);
+00053 
+00055 
+00059   void setGain(MY_FLOAT theGain);
+00060 
+00062   MY_FLOAT getGain(void) const;
+00063 
+00065   MY_FLOAT lastOut(void) const;
+00066 
+00068   MY_FLOAT tick(MY_FLOAT sample);
+00069 
+00071   MY_FLOAT *tick(MY_FLOAT *vector, unsigned int vectorSize);
+00072 };
+00073 
+00074 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/WaveLoop_8h-source.html b/doc/html/WaveLoop_8h-source.html new file mode 100644 index 0000000..fb98b6e --- /dev/null +++ b/doc/html/WaveLoop_8h-source.html @@ -0,0 +1,59 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

WaveLoop.h

00001 /***************************************************/
+00019 /***************************************************/
+00020 
+00021 #if !defined(__WAVELOOP_H)
+00022 #define __WAVELOOP_H
+00023 
+00024 #include "WvIn.h"
+00025 #include <stdio.h>
+00026 
+00027 class WaveLoop : public WvIn
+00028 {
+00029 public:
+00031   WaveLoop( const char *fileName, bool raw = FALSE );
+00032 
+00034   virtual ~WaveLoop();
+00035 
+00037 
+00043   void setFrequency(MY_FLOAT aFrequency);
+00044 
+00046   void addTime(MY_FLOAT aTime);
+00047 
+00049 
+00054   void addPhase(MY_FLOAT anAngle);
+00055 
+00057 
+00062   void addPhaseOffset(MY_FLOAT anAngle);
+00063 
+00065   const MY_FLOAT *tickFrame(void);
+00066 
+00067 protected:
+00068 
+00069   // Read file data.
+00070   void readData(unsigned long index);
+00071 
+00072   MY_FLOAT phaseOffset;
+00073 
+00074 };
+00075 
+00076 #endif // defined(__WAVELOOP_H)
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/Wurley_8h-source.html b/doc/html/Wurley_8h-source.html new file mode 100644 index 0000000..2a03cbf --- /dev/null +++ b/doc/html/Wurley_8h-source.html @@ -0,0 +1,43 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Wurley.h

00001 /***************************************************/
+00031 /***************************************************/
+00032 
+00033 #if !defined(__WURLEY_H)
+00034 #define __WURLEY_H
+00035 
+00036 #include "FM.h"
+00037 
+00038 class Wurley : public FM
+00039 {
+00040  public:
+00042   Wurley();
+00043 
+00045   ~Wurley();
+00046 
+00048   void setFrequency(MY_FLOAT frequency);
+00049 
+00051   void noteOn(MY_FLOAT frequency, MY_FLOAT amplitude);
+00052 
+00054   MY_FLOAT tick();
+00055 };
+00056 
+00057 #endif
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/WvIn_8h-source.html b/doc/html/WvIn_8h-source.html new file mode 100644 index 0000000..075a649 --- /dev/null +++ b/doc/html/WvIn_8h-source.html @@ -0,0 +1,136 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

WvIn.h

00001 /***************************************************/
+00037 /***************************************************/
+00038 
+00039 #if !defined(__WVIN_H)
+00040 #define __WVIN_H
+00041 
+00042 // Files larger than CHUNK_THRESHOLD will be copied into memory
+00043 // in CHUNK_SIZE increments, rather than completely loaded into
+00044 // a buffer at once.
+00045 
+00046 #define CHUNK_THRESHOLD 5000000  // 5 Mb
+00047 #define CHUNK_SIZE 1024          // sample frames
+00048 
+00049 #include "Stk.h"
+00050 #include <stdio.h>
+00051 
+00052 class WvIn : public Stk
+00053 {
+00054 public:
+00056   WvIn();
+00057 
+00059 
+00063   WvIn( const char *fileName, bool raw = FALSE );
+00064 
+00066   virtual ~WvIn();
+00067 
+00069 
+00073   void openFile( const char *fileName, bool raw = FALSE );
+00074 
+00076   void closeFile(void);
+00077 
+00079   void reset(void);
+00080 
+00082 
+00088   void normalize(void);
+00089 
+00091 
+00097   void normalize(MY_FLOAT peak);
+00098 
+00100   unsigned long getSize(void) const;
+00101 
+00103   unsigned int getChannels(void) const;
+00104 
+00106 
+00111   MY_FLOAT getFileRate(void) const;
+00112 
+00114   bool isFinished(void) const;
+00115 
+00117 
+00120   void setRate(MY_FLOAT aRate);
+00121 
+00123   virtual void addTime(MY_FLOAT aTime);
+00124 
+00126 
+00132   void setInterpolate(bool doInterpolate);
+00133 
+00135   virtual MY_FLOAT lastOut(void) const;
+00136 
+00138 
+00141   virtual MY_FLOAT tick(void);
+00142 
+00144 
+00147   virtual MY_FLOAT *tick(MY_FLOAT *vector, unsigned int vectorSize);
+00148 
+00150   virtual const MY_FLOAT *lastFrame(void) const;
+00151 
+00153 
+00156   virtual const MY_FLOAT *tickFrame(void);
+00157 
+00159 
+00162   virtual MY_FLOAT *tickFrame(MY_FLOAT *frameVector, unsigned int frames);
+00163 
+00164 protected:
+00165 
+00166   // Initialize class variables.
+00167   void init( void );
+00168 
+00169   // Read file data.
+00170   virtual void readData(unsigned long index);
+00171 
+00172   // Get STK RAW file information.
+00173   bool getRawInfo( const char *fileName );
+00174 
+00175   // Get WAV file header information.
+00176   bool getWavInfo( const char *fileName );
+00177 
+00178   // Get SND (AU) file header information.
+00179   bool getSndInfo( const char *fileName );
+00180 
+00181   // Get AIFF file header information.
+00182   bool getAifInfo( const char *fileName );
+00183 
+00184   // Get MAT-file header information.
+00185   bool getMatInfo( const char *fileName );
+00186 
+00187   char msg[256];
+00188   FILE *fd;
+00189   MY_FLOAT *data;
+00190   MY_FLOAT *lastOutput;
+00191   bool chunking;
+00192   bool finished;
+00193   bool interpolate;
+00194   bool byteswap;
+00195   unsigned long fileSize;
+00196   unsigned long bufferSize;
+00197   unsigned long dataOffset;
+00198   unsigned int channels;
+00199   long chunkPointer;
+00200   STK_FORMAT dataType;
+00201   MY_FLOAT fileRate;
+00202   MY_FLOAT gain;
+00203   MY_FLOAT time;
+00204   MY_FLOAT rate;
+00205 };
+00206 
+00207 #endif // defined(__WVIN_H)
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/WvOut_8h-source.html b/doc/html/WvOut_8h-source.html new file mode 100644 index 0000000..bc8bd1b --- /dev/null +++ b/doc/html/WvOut_8h-source.html @@ -0,0 +1,117 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

WvOut.h

00001 /***************************************************/
+00034 /***************************************************/
+00035 
+00036 #if !defined(__WVOUT_H)
+00037 #define __WVOUT_H
+00038 
+00039 #include "Stk.h"
+00040 #include <stdio.h>
+00041 
+00042 #define BUFFER_SIZE 1024  // sample frames
+00043 
+00044 class WvOut : public Stk
+00045 {
+00046  public:
+00047 
+00048   typedef unsigned long FILE_TYPE;
+00049 
+00050   static const FILE_TYPE WVOUT_RAW; 
+00051   static const FILE_TYPE WVOUT_WAV; 
+00052   static const FILE_TYPE WVOUT_SND; 
+00053   static const FILE_TYPE WVOUT_AIF; 
+00054   static const FILE_TYPE WVOUT_MAT; 
+00055 
+00057   WvOut();
+00058 
+00060 
+00063   WvOut( const char *fileName, unsigned int nChannels = 1, FILE_TYPE type = WVOUT_WAV, Stk::STK_FORMAT format = STK_SINT16 );
+00064 
+00066   virtual ~WvOut();
+00067 
+00069 
+00072   void openFile( const char *fileName, unsigned int nChannels = 1,
+00073                  WvOut::FILE_TYPE type = WVOUT_WAV, Stk::STK_FORMAT format = STK_SINT16 );
+00074 
+00076   void closeFile( void );
+00077 
+00079   unsigned long getFrames( void ) const;
+00080 
+00082   MY_FLOAT getTime( void ) const;
+00083 
+00085 
+00088   virtual void tick(const MY_FLOAT sample);
+00089 
+00091 
+00094   virtual void tick(const MY_FLOAT *vector, unsigned int vectorSize);
+00095 
+00097 
+00100   virtual void tickFrame(const MY_FLOAT *frameVector, unsigned int frames = 1);
+00101 
+00102  protected:
+00103 
+00104   // Initialize class variables.
+00105   void init( void );
+00106 
+00107   // Write data to output file;
+00108   virtual void writeData( unsigned long frames );
+00109 
+00110   // Write STK RAW file header.
+00111   bool setRawFile( const char *fileName );
+00112 
+00113   // Write WAV file header.
+00114   bool setWavFile( const char *fileName );
+00115 
+00116   // Close WAV file, updating the header.
+00117   void closeWavFile( void );
+00118 
+00119   // Write SND (AU) file header.
+00120   bool setSndFile( const char *fileName );
+00121 
+00122   // Close SND file, updating the header.
+00123   void closeSndFile( void );
+00124 
+00125   // Write AIFF file header.
+00126   bool setAifFile( const char *fileName );
+00127 
+00128   // Close AIFF file, updating the header.
+00129   void closeAifFile( void );
+00130 
+00131   // Write MAT-file header.
+00132   bool setMatFile( const char *fileName );
+00133 
+00134   // Close MAT-file, updating the header.
+00135   void closeMatFile( void );
+00136 
+00137   char msg[256];
+00138   FILE *fd;
+00139   MY_FLOAT *data;
+00140   FILE_TYPE fileType;
+00141   STK_FORMAT dataType;
+00142   bool byteswap;
+00143   unsigned int channels;
+00144   unsigned long counter;
+00145   unsigned long totalCount;
+00146 
+00147 };
+00148 
+00149 #endif // defined(__WVOUT_H)
+

+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/annotated.html b/doc/html/annotated.html new file mode 100644 index 0000000..fb3f549 --- /dev/null +++ b/doc/html/annotated.html @@ -0,0 +1,95 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

STK Compound List

Here are the classes, structs, unions and interfaces with brief descriptions: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/ccrma.gif b/doc/html/ccrma.gif new file mode 100644 index 0000000..f8a1385 Binary files /dev/null and b/doc/html/ccrma.gif differ diff --git a/doc/html/classADSR-members.html b/doc/html/classADSR-members.html new file mode 100644 index 0000000..04de919 --- /dev/null +++ b/doc/html/classADSR-members.html @@ -0,0 +1,58 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

ADSR Member List

This is the complete list of members for ADSR, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classADSR.gif b/doc/html/classADSR.gif new file mode 100644 index 0000000..dcccb30 Binary files /dev/null and b/doc/html/classADSR.gif differ diff --git a/doc/html/classADSR.html b/doc/html/classADSR.html new file mode 100644 index 0000000..e73c60d --- /dev/null +++ b/doc/html/classADSR.html @@ -0,0 +1,105 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

ADSR Class Reference

STK ADSR envelope class. +More... +

+#include <ADSR.h> +

+

Inheritance diagram for ADSR:: +

+ +Envelope +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Public Types

enum  {
+  ATTACK, +DECAY, +SUSTAIN, +RELEASE, +
+  DONE +
+ }
 Envelope states.


Public Methods

ADSR (void)
 Default constructor.

~ADSR (void)
 Class destructor.

+void keyOn (void)
 Set target = 1, state = ADSR::ATTACK.

+void keyOff (void)
 Set target = 0, state = ADSR::RELEASE.

+void setAttackRate (MY_FLOAT aRate)
 Set the attack rate.

+void setDecayRate (MY_FLOAT aRate)
 Set the decay rate.

+void setSustainLevel (MY_FLOAT aLevel)
 Set the sustain level.

+void setReleaseRate (MY_FLOAT aRate)
 Set the release rate.

+void setAttackTime (MY_FLOAT aTime)
 Set the attack rate based on a time duration.

+void setDecayTime (MY_FLOAT aTime)
 Set the decay rate based on a time duration.

+void setReleaseTime (MY_FLOAT aTime)
 Set the release rate based on a time duration.

+void setAllTimes (MY_FLOAT aTime, MY_FLOAT dTime, MY_FLOAT sLevel, MY_FLOAT rTime)
 Set sustain level and attack, decay, and release state rates based on time durations.

+void setTarget (MY_FLOAT aTarget)
 Set the target value.

+int getState (void) const
 Return the current envelope state (ATTACK, DECAY, SUSTAIN, RELEASE, DONE).

+void setValue (MY_FLOAT aValue)
 Set to state = ADSR::SUSTAIN with current and target values of aValue.

+MY_FLOAT tick (void)
 Return one envelope output value.

+MY_FLOAT* tick (MY_FLOAT *vector, unsigned int vectorSize)
 Return vectorSize envelope outputs in vector.

+

Detailed Description

+STK ADSR envelope class. +

+This Envelope subclass implements a traditional ADSR (Attack, Decay, Sustain, Release) envelope. It responds to simple keyOn and keyOff messages, keeping track of its state. The state = ADSR::DONE after the envelope value reaches 0.0 in the ADSR::RELEASE state. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classBandedWG-members.html b/doc/html/classBandedWG-members.html new file mode 100644 index 0000000..e76925e --- /dev/null +++ b/doc/html/classBandedWG-members.html @@ -0,0 +1,53 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

BandedWG Member List

This is the complete list of members for BandedWG, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classBandedWG.gif b/doc/html/classBandedWG.gif new file mode 100644 index 0000000..a0075ea Binary files /dev/null and b/doc/html/classBandedWG.gif differ diff --git a/doc/html/classBandedWG.html b/doc/html/classBandedWG.html new file mode 100644 index 0000000..4636836 --- /dev/null +++ b/doc/html/classBandedWG.html @@ -0,0 +1,86 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

BandedWG Class Reference

Banded waveguide modeling class. +More... +

+#include <BandedWG.h> +

+

Inheritance diagram for BandedWG:: +

+ +Instrmnt +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Public Methods

BandedWG ()
 Class constructor.

~BandedWG ()
 Class destructor.

+void clear ()
 Reset and clear all internal state.

+void setStrikePosition (MY_FLOAT position)
 Set strike position (0.0 - 1.0).

+void setPreset (int preset)
 Select a preset.

+void setFrequency (MY_FLOAT frequency)
 Set instrument parameters for a particular frequency.

+void startBowing (MY_FLOAT amplitude, MY_FLOAT rate)
 Apply bow velocity/pressure to instrument with given amplitude and rate of increase.

+void stopBowing (MY_FLOAT rate)
 Decrease bow velocity/breath pressure with given rate of decrease.

+void pluck (MY_FLOAT amp)
 Pluck the instrument with given amplitude.

+void noteOn (MY_FLOAT frequency, MY_FLOAT amplitude)
 Start a note with the given frequency and amplitude.

+void noteOff (MY_FLOAT amplitude)
 Stop a note with the given amplitude (speed of decay).

+MY_FLOAT tick ()
 Compute one output sample.

+void controlChange (int number, MY_FLOAT value)
 Perform the control change specified by number and value (0.0 - 128.0).

+

Detailed Description

+Banded waveguide modeling class. +

+This class uses banded waveguide techniques to model a variety of sounds, including bowed bars, glasses, and bowls. For more information, see Essl, G. and Cook, P. "Banded Waveguides: Towards Physical Modelling of Bar Percussion Instruments", Proceedings of the 1999 International Computer Music Conference. +

+Control Change Numbers:

+by Georg Essl, 1999 - 2002. Modified for Stk 4.0 by Gary Scavone. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classBeeThree-members.html b/doc/html/classBeeThree-members.html new file mode 100644 index 0000000..55e94e9 --- /dev/null +++ b/doc/html/classBeeThree-members.html @@ -0,0 +1,59 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

BeeThree Member List

This is the complete list of members for BeeThree, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classBeeThree.gif b/doc/html/classBeeThree.gif new file mode 100644 index 0000000..4a1d130 Binary files /dev/null and b/doc/html/classBeeThree.gif differ diff --git a/doc/html/classBeeThree.html b/doc/html/classBeeThree.html new file mode 100644 index 0000000..9a59d6a --- /dev/null +++ b/doc/html/classBeeThree.html @@ -0,0 +1,67 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

BeeThree Class Reference

STK Hammond-oid organ FM synthesis instrument. +More... +

+#include <BeeThree.h> +

+

Inheritance diagram for BeeThree:: +

+ +FM +Instrmnt +Stk + +List of all members. + + + + + + + + + +

Public Methods

BeeThree ()
 Class constructor.

~BeeThree ()
 Class destructor.

+void noteOn (MY_FLOAT frequency, MY_FLOAT amplitude)
 Start a note with the given frequency and amplitude.

+MY_FLOAT tick ()
 Compute one output sample.

+

Detailed Description

+STK Hammond-oid organ FM synthesis instrument. +

+This class implements a simple 4 operator topology, also referred to as algorithm 8 of the TX81Z. +

+

    Algorithm 8 is :
+                     1 --.
+                     2 -\|
+                         +-> Out
+                     3 -/|
+                     4 --
+

+Control Change Numbers:

+The basic Chowning/Stanford FM patent expired in 1995, but there exist follow-on patents, mostly assigned to Yamaha. If you are of the type who should worry about this (making money) worry away. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classBiQuad-members.html b/doc/html/classBiQuad-members.html new file mode 100644 index 0000000..a965196 --- /dev/null +++ b/doc/html/classBiQuad-members.html @@ -0,0 +1,58 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

BiQuad Member List

This is the complete list of members for BiQuad, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classBiQuad.gif b/doc/html/classBiQuad.gif new file mode 100644 index 0000000..9b26e9a Binary files /dev/null and b/doc/html/classBiQuad.gif differ diff --git a/doc/html/classBiQuad.html b/doc/html/classBiQuad.html new file mode 100644 index 0000000..1489785 --- /dev/null +++ b/doc/html/classBiQuad.html @@ -0,0 +1,233 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

BiQuad Class Reference

STK biquad (two-pole, two-zero) filter class. +More... +

+#include <BiQuad.h> +

+

Inheritance diagram for BiQuad:: +

+ +Filter +Stk +FormSwep + +List of all members. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Public Methods

BiQuad ()
 Default constructor creates a second-order pass-through filter.

+virtual ~BiQuad ()
 Class destructor.

+void clear (void)
 Clears all internal states of the filter.

+void setB0 (MY_FLOAT b0)
 Set the b[0] coefficient value.

+void setB1 (MY_FLOAT b1)
 Set the b[1] coefficient value.

+void setB2 (MY_FLOAT b2)
 Set the b[2] coefficient value.

+void setA1 (MY_FLOAT a1)
 Set the a[1] coefficient value.

+void setA2 (MY_FLOAT a2)
 Set the a[2] coefficient value.

void setResonance (MY_FLOAT frequency, MY_FLOAT radius, bool normalize=FALSE)
 Sets the filter coefficients for a resonance at frequency (in Hz). More...

void setNotch (MY_FLOAT frequency, MY_FLOAT radius)
 Set the filter coefficients for a notch at frequency (in Hz). More...

void setEqualGainZeroes ()
 Sets the filter zeroes for equal resonance gain. More...

void setGain (MY_FLOAT theGain)
 Set the filter gain. More...

+MY_FLOAT getGain (void) const
 Return the current filter gain.

+MY_FLOAT lastOut (void) const
 Return the last computed output value.

+MY_FLOAT tick (MY_FLOAT sample)
 Input one sample to the filter and return one output.

+MY_FLOAT* tick (MY_FLOAT *vector, unsigned int vectorSize)
 Input vectorSize samples to the filter and return an equal number of outputs in vector.

+

Detailed Description

+STK biquad (two-pole, two-zero) filter class. +

+This protected Filter subclass implements a two-pole, two-zero digital filter. A method is provided for creating a resonance in the frequency response while maintaining a constant filter gain. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Member Function Documentation

+

+ + + + +
+ + + + + + + + + + + + + + +
+void BiQuad::setResonance ( + +MY_FLOAT frequency, +
+MY_FLOAT radius, +
+bool normalize = FALSE ) +
+
+ + + + + +
+   + + +

+Sets the filter coefficients for a resonance at frequency (in Hz). +

+This method determines the filter coefficients corresponding to two complex-conjugate poles with the given frequency (in Hz) and radius from the z-plane origin. If normalize is true, the filter zeros are placed at z = 1, z = -1, and the coefficients are then normalized to produce a constant unity peak gain (independent of the filter gain parameter). The resulting filter frequency response has a resonance at the given frequency. The closer the poles are to the unit-circle (radius close to one), the narrower the resulting resonance width.

+

+ + + + +
+ + + + + + + + + + +
+void BiQuad::setNotch ( + +MY_FLOAT frequency, +
+MY_FLOAT radius ) +
+
+ + + + + +
+   + + +

+Set the filter coefficients for a notch at frequency (in Hz). +

+This method determines the filter coefficients corresponding to two complex-conjugate zeros with the given frequency (in Hz) and radius from the z-plane origin. No filter normalization is attempted.

+

+ + + + +
+ + + + + + +
+void BiQuad::setEqualGainZeroes ( + +) +
+
+ + + + + +
+   + + +

+Sets the filter zeroes for equal resonance gain. +

+When using the filter as a resonator, zeroes places at z = 1, z = -1 will result in a constant gain at resonance of 1 / (1 - R), where R is the pole radius setting.

+

+ + + + +
+ + + + + + +
+void BiQuad::setGain ( + +MY_FLOAT theGain ) [virtual] +
+
+ + + + + +
+   + + +

+Set the filter gain. +

+The gain is applied at the filter input and does not affect the coefficient values. The default gain value is 1.0. +

+Reimplemented from Filter.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classBlowBotl-members.html b/doc/html/classBlowBotl-members.html new file mode 100644 index 0000000..ca22ab9 --- /dev/null +++ b/doc/html/classBlowBotl-members.html @@ -0,0 +1,50 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

BlowBotl Member List

This is the complete list of members for BlowBotl, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classBlowBotl.gif b/doc/html/classBlowBotl.gif new file mode 100644 index 0000000..bb32084 Binary files /dev/null and b/doc/html/classBlowBotl.gif differ diff --git a/doc/html/classBlowBotl.html b/doc/html/classBlowBotl.html new file mode 100644 index 0000000..657cf19 --- /dev/null +++ b/doc/html/classBlowBotl.html @@ -0,0 +1,75 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

BlowBotl Class Reference

STK blown bottle instrument class. +More... +

+#include <BlowBotl.h> +

+

Inheritance diagram for BlowBotl:: +

+ +Instrmnt +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + + + +

Public Methods

BlowBotl ()
 Class constructor.

~BlowBotl ()
 Class destructor.

+void clear ()
 Reset and clear all internal state.

+void setFrequency (MY_FLOAT frequency)
 Set instrument parameters for a particular frequency.

+void startBlowing (MY_FLOAT amplitude, MY_FLOAT rate)
 Apply breath velocity to instrument with given amplitude and rate of increase.

+void stopBlowing (MY_FLOAT rate)
 Decrease breath velocity with given rate of decrease.

+void noteOn (MY_FLOAT frequency, MY_FLOAT amplitude)
 Start a note with the given frequency and amplitude.

+void noteOff (MY_FLOAT amplitude)
 Stop a note with the given amplitude (speed of decay).

+MY_FLOAT tick ()
 Compute one output sample.

+void controlChange (int number, MY_FLOAT value)
 Perform the control change specified by number and value (0.0 - 128.0).

+

Detailed Description

+STK blown bottle instrument class. +

+This class implements a helmholtz resonator (biquad filter) with a polynomial jet excitation (a la Cook). +

+Control Change Numbers:

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classBlowHole-members.html b/doc/html/classBlowHole-members.html new file mode 100644 index 0000000..1c43ab6 --- /dev/null +++ b/doc/html/classBlowHole-members.html @@ -0,0 +1,52 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

BlowHole Member List

This is the complete list of members for BlowHole, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classBlowHole.gif b/doc/html/classBlowHole.gif new file mode 100644 index 0000000..36b3e5d Binary files /dev/null and b/doc/html/classBlowHole.gif differ diff --git a/doc/html/classBlowHole.html b/doc/html/classBlowHole.html new file mode 100644 index 0000000..805cfdf --- /dev/null +++ b/doc/html/classBlowHole.html @@ -0,0 +1,85 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

BlowHole Class Reference

STK clarinet physical model with one register hole and one tonehole. +More... +

+#include <BlowHole.h> +

+

Inheritance diagram for BlowHole:: +

+ +Instrmnt +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + + + + + + + +

Public Methods

BlowHole (MY_FLOAT lowestFrequency)
 Class constructor.

~BlowHole ()
 Class destructor.

+void clear ()
 Reset and clear all internal state.

+void setFrequency (MY_FLOAT frequency)
 Set instrument parameters for a particular frequency.

+void setTonehole (MY_FLOAT newValue)
 Set the tonehole state (0.0 = closed, 1.0 = fully open).

+void setVent (MY_FLOAT newValue)
 Set the register hole state (0.0 = closed, 1.0 = fully open).

+void startBlowing (MY_FLOAT amplitude, MY_FLOAT rate)
 Apply breath pressure to instrument with given amplitude and rate of increase.

+void stopBlowing (MY_FLOAT rate)
 Decrease breath pressure with given rate of decrease.

+void noteOn (MY_FLOAT frequency, MY_FLOAT amplitude)
 Start a note with the given frequency and amplitude.

+void noteOff (MY_FLOAT amplitude)
 Stop a note with the given amplitude (speed of decay).

+MY_FLOAT tick ()
 Compute one output sample.

+void controlChange (int number, MY_FLOAT value)
 Perform the control change specified by number and value (0.0 - 128.0).

+

Detailed Description

+STK clarinet physical model with one register hole and one tonehole. +

+This class is based on the clarinet model, with the addition of a two-port register hole and a three-port dynamic tonehole implementation, as discussed by Scavone and Cook (1998). +

+In this implementation, the distances between the reed/register hole and tonehole/bell are fixed. As a result, both the tonehole and register hole will have variable influence on the playing frequency, which is dependent on the length of the air column. In addition, the highest playing freqeuency is limited by these fixed lengths. +

+This is a digital waveguide model, making its use possibly subject to patents held by Stanford University, Yamaha, and others. +

+Control Change Numbers:

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classBowTabl-members.html b/doc/html/classBowTabl-members.html new file mode 100644 index 0000000..c793e58 --- /dev/null +++ b/doc/html/classBowTabl-members.html @@ -0,0 +1,43 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

BowTabl Member List

This is the complete list of members for BowTabl, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classBowTabl.gif b/doc/html/classBowTabl.gif new file mode 100644 index 0000000..4a54348 Binary files /dev/null and b/doc/html/classBowTabl.gif differ diff --git a/doc/html/classBowTabl.html b/doc/html/classBowTabl.html new file mode 100644 index 0000000..733cf25 --- /dev/null +++ b/doc/html/classBowTabl.html @@ -0,0 +1,154 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

BowTabl Class Reference

STK bowed string table class. +More... +

+#include <BowTabl.h> +

+

Inheritance diagram for BowTabl:: +

+ +Stk + +List of all members. + + + + + + + + + + + + + + + +

Public Methods

BowTabl ()
 Default constructor.

~BowTabl ()
 Class destructor.

void setOffset (MY_FLOAT aValue)
 Set the table offset value. More...

void setSlope (MY_FLOAT aValue)
 Set the table slope value. More...

+MY_FLOAT lastOut (void) const
 Return the last output value.

MY_FLOAT tick (const MY_FLOAT input)
 Return the function value for input. More...

+MY_FLOAT* tick (MY_FLOAT *vector, unsigned int vectorSize)
 Take vectorSize inputs and return the corresponding function values in vector.

+

Detailed Description

+STK bowed string table class. +

+This class implements a simple bowed string non-linear function, as described by Smith (1986). +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Member Function Documentation

+

+ + + + +
+ + + + + + +
+void BowTabl::setOffset ( + +MY_FLOAT aValue ) +
+
+ + + + + +
+   + + +

+Set the table offset value. +

+The table offset is a bias which controls the symmetry of the friction. If you want the friction to vary with direction, use a non-zero value for the offset. The default value is zero.

+

+ + + + +
+ + + + + + +
+void BowTabl::setSlope ( + +MY_FLOAT aValue ) +
+
+ + + + + +
+   + + +

+Set the table slope value. +

+The table slope controls the width of the friction pulse, which is related to bow force.

+

+ + + + +
+ + + + + + +
+MY_FLOAT BowTabl::tick ( + +const MY_FLOAT input ) +
+
+ + + + + +
+   + + +

+Return the function value for input. +

+The function input represents differential string-to-bow velocity.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classBowed-members.html b/doc/html/classBowed-members.html new file mode 100644 index 0000000..108ccad --- /dev/null +++ b/doc/html/classBowed-members.html @@ -0,0 +1,51 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Bowed Member List

This is the complete list of members for Bowed, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classBowed.gif b/doc/html/classBowed.gif new file mode 100644 index 0000000..4b7bd7f Binary files /dev/null and b/doc/html/classBowed.gif differ diff --git a/doc/html/classBowed.html b/doc/html/classBowed.html new file mode 100644 index 0000000..fcca347 --- /dev/null +++ b/doc/html/classBowed.html @@ -0,0 +1,80 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Bowed Class Reference

STK bowed string instrument class. +More... +

+#include <Bowed.h> +

+

Inheritance diagram for Bowed:: +

+ +Instrmnt +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + + + + + +

Public Methods

Bowed (MY_FLOAT lowestFrequency)
 Class constructor, taking the lowest desired playing frequency.

~Bowed ()
 Class destructor.

+void clear ()
 Reset and clear all internal state.

+void setFrequency (MY_FLOAT frequency)
 Set instrument parameters for a particular frequency.

+void setVibrato (MY_FLOAT gain)
 Set vibrato gain.

+void startBowing (MY_FLOAT amplitude, MY_FLOAT rate)
 Apply breath pressure to instrument with given amplitude and rate of increase.

+void stopBowing (MY_FLOAT rate)
 Decrease breath pressure with given rate of decrease.

+void noteOn (MY_FLOAT frequency, MY_FLOAT amplitude)
 Start a note with the given frequency and amplitude.

+void noteOff (MY_FLOAT amplitude)
 Stop a note with the given amplitude (speed of decay).

+MY_FLOAT tick ()
 Compute one output sample.

+void controlChange (int number, MY_FLOAT value)
 Perform the control change specified by number and value (0.0 - 128.0).

+

Detailed Description

+STK bowed string instrument class. +

+This class implements a bowed string model, a la Smith (1986), after McIntyre, Schumacher, Woodhouse (1983). +

+This is a digital waveguide model, making its use possibly subject to patents held by Stanford University, Yamaha, and others. +

+Control Change Numbers:

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classBrass-members.html b/doc/html/classBrass-members.html new file mode 100644 index 0000000..1ff1cb0 --- /dev/null +++ b/doc/html/classBrass-members.html @@ -0,0 +1,51 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Brass Member List

This is the complete list of members for Brass, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classBrass.gif b/doc/html/classBrass.gif new file mode 100644 index 0000000..917cc7a Binary files /dev/null and b/doc/html/classBrass.gif differ diff --git a/doc/html/classBrass.html b/doc/html/classBrass.html new file mode 100644 index 0000000..33f5a1f --- /dev/null +++ b/doc/html/classBrass.html @@ -0,0 +1,80 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Brass Class Reference

STK simple brass instrument class. +More... +

+#include <Brass.h> +

+

Inheritance diagram for Brass:: +

+ +Instrmnt +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + + + + + +

Public Methods

Brass (MY_FLOAT lowestFrequency)
 Class constructor, taking the lowest desired playing frequency.

~Brass ()
 Class destructor.

+void clear ()
 Reset and clear all internal state.

+void setFrequency (MY_FLOAT frequency)
 Set instrument parameters for a particular frequency.

+void setLip (MY_FLOAT frequency)
 Set the lips frequency.

+void startBlowing (MY_FLOAT amplitude, MY_FLOAT rate)
 Apply breath pressure to instrument with given amplitude and rate of increase.

+void stopBlowing (MY_FLOAT rate)
 Decrease breath pressure with given rate of decrease.

+void noteOn (MY_FLOAT frequency, MY_FLOAT amplitude)
 Start a note with the given frequency and amplitude.

+void noteOff (MY_FLOAT amplitude)
 Stop a note with the given amplitude (speed of decay).

+MY_FLOAT tick ()
 Compute one output sample.

+void controlChange (int number, MY_FLOAT value)
 Perform the control change specified by number and value (0.0 - 128.0).

+

Detailed Description

+STK simple brass instrument class. +

+This class implements a simple brass instrument waveguide model, a la Cook (TBone, HosePlayer). +

+This is a digital waveguide model, making its use possibly subject to patents held by Stanford University, Yamaha, and others. +

+Control Change Numbers:

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classChorus-members.html b/doc/html/classChorus-members.html new file mode 100644 index 0000000..28fccd2 --- /dev/null +++ b/doc/html/classChorus-members.html @@ -0,0 +1,47 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Chorus Member List

This is the complete list of members for Chorus, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classChorus.gif b/doc/html/classChorus.gif new file mode 100644 index 0000000..a723777 Binary files /dev/null and b/doc/html/classChorus.gif differ diff --git a/doc/html/classChorus.html b/doc/html/classChorus.html new file mode 100644 index 0000000..4ec5577 --- /dev/null +++ b/doc/html/classChorus.html @@ -0,0 +1,75 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Chorus Class Reference

STK chorus effect class. +More... +

+#include <Chorus.h> +

+

Inheritance diagram for Chorus:: +

+ +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + + + + + +

Public Methods

Chorus (MY_FLOAT baseDelay)
 Class constructor, taking the longest desired delay length.

~Chorus ()
 Class destructor.

+void clear ()
 Reset and clear all internal state.

+void setModDepth (MY_FLOAT depth)
 Set modulation depth.

+void setModFrequency (MY_FLOAT frequency)
 Set modulation frequency.

+void setEffectMix (MY_FLOAT mix)
 Set the mixture of input and processed levels in the output (0.0 = input only, 1.0 = processed only).

+MY_FLOAT lastOut () const
 Return the last output value.

+MY_FLOAT lastOutLeft () const
 Return the last left output value.

+MY_FLOAT lastOutRight () const
 Return the last right output value.

+MY_FLOAT tick (MY_FLOAT input)
 Compute one output sample.

+MY_FLOAT* tick (MY_FLOAT *vector, unsigned int vectorSize)
 Take vectorSize inputs, compute the same number of outputs and return them in vector.

+

Detailed Description

+STK chorus effect class. +

+This class implements a chorus effect. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classClarinet-members.html b/doc/html/classClarinet-members.html new file mode 100644 index 0000000..7def156 --- /dev/null +++ b/doc/html/classClarinet-members.html @@ -0,0 +1,50 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Clarinet Member List

This is the complete list of members for Clarinet, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classClarinet.gif b/doc/html/classClarinet.gif new file mode 100644 index 0000000..9acbefb Binary files /dev/null and b/doc/html/classClarinet.gif differ diff --git a/doc/html/classClarinet.html b/doc/html/classClarinet.html new file mode 100644 index 0000000..bfb4851 --- /dev/null +++ b/doc/html/classClarinet.html @@ -0,0 +1,77 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Clarinet Class Reference

STK clarinet physical model class. +More... +

+#include <Clarinet.h> +

+

Inheritance diagram for Clarinet:: +

+ +Instrmnt +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + + + +

Public Methods

Clarinet (MY_FLOAT lowestFrequency)
 Class constructor, taking the lowest desired playing frequency.

~Clarinet ()
 Class destructor.

+void clear ()
 Reset and clear all internal state.

+void setFrequency (MY_FLOAT frequency)
 Set instrument parameters for a particular frequency.

+void startBlowing (MY_FLOAT amplitude, MY_FLOAT rate)
 Apply breath pressure to instrument with given amplitude and rate of increase.

+void stopBlowing (MY_FLOAT rate)
 Decrease breath pressure with given rate of decrease.

+void noteOn (MY_FLOAT frequency, MY_FLOAT amplitude)
 Start a note with the given frequency and amplitude.

+void noteOff (MY_FLOAT amplitude)
 Stop a note with the given amplitude (speed of decay).

+MY_FLOAT tick ()
 Compute one output sample.

+void controlChange (int number, MY_FLOAT value)
 Perform the control change specified by number and value (0.0 - 128.0).

+

Detailed Description

+STK clarinet physical model class. +

+This class implements a simple clarinet physical model, as discussed by Smith (1986), McIntyre, Schumacher, Woodhouse (1983), and others. +

+This is a digital waveguide model, making its use possibly subject to patents held by Stanford University, Yamaha, and others. +

+Control Change Numbers:

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classDelay-members.html b/doc/html/classDelay-members.html new file mode 100644 index 0000000..9b467ef --- /dev/null +++ b/doc/html/classDelay-members.html @@ -0,0 +1,55 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Delay Member List

This is the complete list of members for Delay, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classDelay.gif b/doc/html/classDelay.gif new file mode 100644 index 0000000..b9755de Binary files /dev/null and b/doc/html/classDelay.gif differ diff --git a/doc/html/classDelay.html b/doc/html/classDelay.html new file mode 100644 index 0000000..d36581c --- /dev/null +++ b/doc/html/classDelay.html @@ -0,0 +1,141 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Delay Class Reference

STK non-interpolating delay line class. +More... +

+#include <Delay.h> +

+

Inheritance diagram for Delay:: +

+ +Filter +Stk +DelayA +DelayL + +List of all members. + + + + + + + + + + + + + + + + + + + + + + + +

Public Methods

Delay ()
 Default constructor creates a delay-line with maximum length of 4095 samples and zero delay.

Delay (long theDelay, long maxDelay)
 Overloaded constructor which specifies the current and maximum delay-line lengths.

+virtual ~Delay ()
 Class destructor.

+void clear ()
 Clears the internal state of the delay line.

void setDelay (long theDelay)
 Set the delay-line length. More...

+long getDelay (void) const
 Return the current delay-line length.

+MY_FLOAT energy (void) const
 Calculate and return the signal energy in the delay-line.

MY_FLOAT contentsAt (long tapDelay) const
 Return the value at tapDelay samples from the delay-line input. More...

+MY_FLOAT lastOut (void) const
 Return the last computed output value.

+virtual MY_FLOAT tick (MY_FLOAT sample)
 Input one sample to the delay-line and return one output.

+virtual MY_FLOAT* tick (MY_FLOAT *vector, unsigned int vectorSize)
 Input vectorSize samples to the delay-line and return an equal number of outputs in vector.

+

Detailed Description

+STK non-interpolating delay line class. +

+This protected Filter subclass implements a non-interpolating digital delay-line. A fixed maximum length of 4095 and a delay of zero is set using the default constructor. Alternatively, the delay and maximum length can be set during instantiation with an overloaded constructor. +

+A non-interpolating delay line is typically used in fixed delay-length applications, such as for reverberation. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Member Function Documentation

+

+ + + + +
+ + + + + + +
+void Delay::setDelay ( + +long theDelay ) +
+
+ + + + + +
+   + + +

+Set the delay-line length. +

+The valid range for theDelay is from 0 to the maximum delay-line length.

+

+ + + + +
+ + + + + + +
+MY_FLOAT Delay::contentsAt ( + +long tapDelay ) const +
+
+ + + + + +
+   + + +

+Return the value at tapDelay samples from the delay-line input. +

+The valid range for tapDelay is 1 to the delay-line length.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classDelayA-members.html b/doc/html/classDelayA-members.html new file mode 100644 index 0000000..d3d1764 --- /dev/null +++ b/doc/html/classDelayA-members.html @@ -0,0 +1,60 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

DelayA Member List

This is the complete list of members for DelayA, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classDelayA.gif b/doc/html/classDelayA.gif new file mode 100644 index 0000000..79254b1 Binary files /dev/null and b/doc/html/classDelayA.gif differ diff --git a/doc/html/classDelayA.html b/doc/html/classDelayA.html new file mode 100644 index 0000000..18a24e9 --- /dev/null +++ b/doc/html/classDelayA.html @@ -0,0 +1,98 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

DelayA Class Reference

STK allpass interpolating delay line class. +More... +

+#include <DelayA.h> +

+

Inheritance diagram for DelayA:: +

+ +Delay +Filter +Stk + +List of all members. + + + + + + + + + + + + + + + +

Public Methods

DelayA ()
 Default constructor creates a delay-line with maximum length of 4095 samples and zero delay.

DelayA (MY_FLOAT theDelay, long maxDelay)
 Overloaded constructor which specifies the current and maximum delay-line lengths.

~DelayA ()
 Class destructor.

+void clear ()
 Clears the internal state of the delay line.

void setDelay (MY_FLOAT theDelay)
 Set the delay-line length. More...

+MY_FLOAT getDelay (void)
 Return the current delay-line length.

+MY_FLOAT tick (MY_FLOAT sample)
 Input one sample to the delay-line and return one output.

+

Detailed Description

+STK allpass interpolating delay line class. +

+This Delay subclass implements a fractional- length digital delay-line using a first-order allpass filter. A fixed maximum length of 4095 and a delay of 0.5 is set using the default constructor. Alternatively, the delay and maximum length can be set during instantiation with an overloaded constructor. +

+An allpass filter has unity magnitude gain but variable phase delay properties, making it useful in achieving fractional delays without affecting a signal's frequency magnitude response. In order to achieve a maximally flat phase delay response, the minimum delay possible in this implementation is limited to a value of 0.5. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Member Function Documentation

+

+ + + + +
+ + + + + + +
+void DelayA::setDelay ( + +MY_FLOAT theDelay ) +
+
+ + + + + +
+   + + +

+Set the delay-line length. +

+The valid range for theDelay is from 0.5 to the maximum delay-line length.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classDelayL-members.html b/doc/html/classDelayL-members.html new file mode 100644 index 0000000..14e4c65 --- /dev/null +++ b/doc/html/classDelayL-members.html @@ -0,0 +1,59 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

DelayL Member List

This is the complete list of members for DelayL, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classDelayL.gif b/doc/html/classDelayL.gif new file mode 100644 index 0000000..0a01225 Binary files /dev/null and b/doc/html/classDelayL.gif differ diff --git a/doc/html/classDelayL.html b/doc/html/classDelayL.html new file mode 100644 index 0000000..7e5fe5d --- /dev/null +++ b/doc/html/classDelayL.html @@ -0,0 +1,95 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

DelayL Class Reference

STK linear interpolating delay line class. +More... +

+#include <DelayL.h> +

+

Inheritance diagram for DelayL:: +

+ +Delay +Filter +Stk + +List of all members. + + + + + + + + + + + + + +

Public Methods

DelayL ()
 Default constructor creates a delay-line with maximum length of 4095 samples and zero delay.

DelayL (MY_FLOAT theDelay, long maxDelay)
 Overloaded constructor which specifies the current and maximum delay-line lengths.

~DelayL ()
 Class destructor.

void setDelay (MY_FLOAT theDelay)
 Set the delay-line length. More...

+MY_FLOAT getDelay (void) const
 Return the current delay-line length.

+MY_FLOAT tick (MY_FLOAT sample)
 Input one sample to the delay-line and return one output.

+

Detailed Description

+STK linear interpolating delay line class. +

+This Delay subclass implements a fractional- length digital delay-line using first-order linear interpolation. A fixed maximum length of 4095 and a delay of zero is set using the default constructor. Alternatively, the delay and maximum length can be set during instantiation with an overloaded constructor. +

+Linear interpolation is an efficient technique for achieving fractional delay lengths, though it does introduce high-frequency signal attenuation to varying degrees depending on the fractional delay setting. The use of higher order Lagrange interpolators can typically improve (minimize) this attenuation characteristic. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Member Function Documentation

+

+ + + + +
+ + + + + + +
+void DelayL::setDelay ( + +MY_FLOAT theDelay ) +
+
+ + + + + +
+   + + +

+Set the delay-line length. +

+The valid range for theDelay is from 0 to the maximum delay-line length.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classDrummer-members.html b/doc/html/classDrummer-members.html new file mode 100644 index 0000000..0847f23 --- /dev/null +++ b/doc/html/classDrummer-members.html @@ -0,0 +1,47 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Drummer Member List

This is the complete list of members for Drummer, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classDrummer.gif b/doc/html/classDrummer.gif new file mode 100644 index 0000000..a615dbd Binary files /dev/null and b/doc/html/classDrummer.gif differ diff --git a/doc/html/classDrummer.html b/doc/html/classDrummer.html new file mode 100644 index 0000000..8c9dfac --- /dev/null +++ b/doc/html/classDrummer.html @@ -0,0 +1,97 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Drummer Class Reference

STK drum sample player class. +More... +

+#include <Drummer.h> +

+

Inheritance diagram for Drummer:: +

+ +Instrmnt +Stk + +List of all members. + + + + + + + + + + + +

Public Methods

Drummer ()
 Class constructor.

~Drummer ()
 Class destructor.

void noteOn (MY_FLOAT instrument, MY_FLOAT amplitude)
 Start a note with the given drum type and amplitude. More...

+void noteOff (MY_FLOAT amplitude)
 Stop a note with the given amplitude (speed of decay).

+MY_FLOAT tick ()
 Compute one output sample.

+

Detailed Description

+STK drum sample player class. +

+This class implements a drum sampling synthesizer using WvIn objects and one-pole filters. The drum rawwave files are sampled at 22050 Hz, but will be appropriately interpolated for other sample rates. You can specify the maximum polyphony (maximum number of simultaneous voices) via a define in the Drummer.h. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Member Function Documentation

+

+ + + + +
+ + + + + + + + + + +
+void Drummer::noteOn ( + +MY_FLOAT instrument, +
+MY_FLOAT amplitude ) [virtual] +
+
+ + + + + +
+   + + +

+Start a note with the given drum type and amplitude. +

+Use general MIDI drum instrument numbers, converted to frequency values as if MIDI note numbers, to select a particular instrument. +

+Reimplemented from Instrmnt.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classEcho-members.html b/doc/html/classEcho-members.html new file mode 100644 index 0000000..7d867ae --- /dev/null +++ b/doc/html/classEcho-members.html @@ -0,0 +1,44 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Echo Member List

This is the complete list of members for Echo, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classEcho.gif b/doc/html/classEcho.gif new file mode 100644 index 0000000..7364a21 Binary files /dev/null and b/doc/html/classEcho.gif differ diff --git a/doc/html/classEcho.html b/doc/html/classEcho.html new file mode 100644 index 0000000..76ec0a3 --- /dev/null +++ b/doc/html/classEcho.html @@ -0,0 +1,66 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Echo Class Reference

STK echo effect class. +More... +

+#include <Echo.h> +

+

Inheritance diagram for Echo:: +

+ +Stk + +List of all members. + + + + + + + + + + + + + + + + + +

Public Methods

Echo (MY_FLOAT longestDelay)
 Class constructor, taking the longest desired delay length.

~Echo ()
 Class destructor.

+void clear ()
 Reset and clear all internal state.

+void setDelay (MY_FLOAT delay)
 Set the delay line length in samples.

+void setEffectMix (MY_FLOAT mix)
 Set the mixture of input and processed levels in the output (0.0 = input only, 1.0 = processed only).

+MY_FLOAT lastOut () const
 Return the last output value.

+MY_FLOAT tick (MY_FLOAT input)
 Compute one output sample.

+MY_FLOAT* tick (MY_FLOAT *vector, unsigned int vectorSize)
 Input vectorSize samples to the filter and return an equal number of outputs in vector.

+

Detailed Description

+STK echo effect class. +

+This class implements a echo effect. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classEnvelope-members.html b/doc/html/classEnvelope-members.html new file mode 100644 index 0000000..fdd978f --- /dev/null +++ b/doc/html/classEnvelope-members.html @@ -0,0 +1,48 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Envelope Member List

This is the complete list of members for Envelope, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classEnvelope.gif b/doc/html/classEnvelope.gif new file mode 100644 index 0000000..795b594 Binary files /dev/null and b/doc/html/classEnvelope.gif differ diff --git a/doc/html/classEnvelope.html b/doc/html/classEnvelope.html new file mode 100644 index 0000000..a98051c --- /dev/null +++ b/doc/html/classEnvelope.html @@ -0,0 +1,79 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Envelope Class Reference

STK envelope base class. +More... +

+#include <Envelope.h> +

+

Inheritance diagram for Envelope:: +

+ +Stk +ADSR + +List of all members. + + + + + + + + + + + + + + + + + + + + + + + + + +

Public Methods

Envelope (void)
 Default constructor.

+virtual ~Envelope (void)
 Class destructor.

+virtual void keyOn (void)
 Set target = 1.

+virtual void keyOff (void)
 Set target = 0.

+void setRate (MY_FLOAT aRate)
 Set the rate.

+void setTime (MY_FLOAT aTime)
 Set the rate based on a time duration.

+virtual void setTarget (MY_FLOAT aTarget)
 Set the target value.

+virtual void setValue (MY_FLOAT aValue)
 Set current and target values to aValue.

+virtual int getState (void) const
 Return the current envelope state (0 = at target, 1 otherwise).

+virtual MY_FLOAT tick (void)
 Return one envelope output value.

+virtual MY_FLOAT* tick (MY_FLOAT *vector, unsigned int vectorSize)
 Return vectorSize envelope outputs in vector.

+MY_FLOAT lastOut (void) const
 Return the last computed output value.

+

Detailed Description

+STK envelope base class. +

+This class implements a simple envelope generator which is capable of ramping to a target value by a specified rate. It also responds to simple keyOn and keyOff messages, ramping to 1.0 on keyOn and to 0.0 on keyOff. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classFM-members.html b/doc/html/classFM-members.html new file mode 100644 index 0000000..a4d2d9c --- /dev/null +++ b/doc/html/classFM-members.html @@ -0,0 +1,57 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

FM Member List

This is the complete list of members for FM, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classFM.gif b/doc/html/classFM.gif new file mode 100644 index 0000000..1bdb621 Binary files /dev/null and b/doc/html/classFM.gif differ diff --git a/doc/html/classFM.html b/doc/html/classFM.html new file mode 100644 index 0000000..9a28fba --- /dev/null +++ b/doc/html/classFM.html @@ -0,0 +1,102 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

FM Class Reference

STK abstract FM synthesis base class. +More... +

+#include <FM.h> +

+

Inheritance diagram for FM:: +

+ +Instrmnt +Stk +BeeThree +FMVoices +HevyMetl +PercFlut +Rhodey +TubeBell +Wurley + +List of all members. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Public Methods

FM (int operators=4)
 Class constructor, taking the number of wave/envelope operators to control.

+virtual ~FM ()
 Class destructor.

+void clear ()
 Reset and clear all wave and envelope states.

+void loadWaves (const char **filenames)
 Load the rawwave filenames in waves.

+virtual void setFrequency (MY_FLOAT frequency)
 Set instrument parameters for a particular frequency.

+void setRatio (int waveIndex, MY_FLOAT ratio)
 Set the frequency ratio for the specified wave.

+void setGain (int waveIndex, MY_FLOAT gain)
 Set the gain for the specified wave.

+void setModulationSpeed (MY_FLOAT mSpeed)
 Set the modulation speed in Hz.

+void setModulationDepth (MY_FLOAT mDepth)
 Set the modulation depth.

+void setControl1 (MY_FLOAT cVal)
 Set the value of control1.

+void setControl2 (MY_FLOAT cVal)
 Set the value of control1.

+void keyOn ()
 Start envelopes toward "on" targets.

+void keyOff ()
 Start envelopes toward "off" targets.

+void noteOff (MY_FLOAT amplitude)
 Stop a note with the given amplitude (speed of decay).

+virtual MY_FLOAT tick ()=0
 Pure virtual function ... must be defined in subclasses.

+virtual void controlChange (int number, MY_FLOAT value)
 Perform the control change specified by number and value (0.0 - 128.0).

+

Detailed Description

+STK abstract FM synthesis base class. +

+This class controls an arbitrary number of waves and envelopes, determined via a constructor argument. +

+Control Change Numbers:

+The basic Chowning/Stanford FM patent expired in 1995, but there exist follow-on patents, mostly assigned to Yamaha. If you are of the type who should worry about this (making money) worry away. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classFMVoices-members.html b/doc/html/classFMVoices-members.html new file mode 100644 index 0000000..f46bbbf --- /dev/null +++ b/doc/html/classFMVoices-members.html @@ -0,0 +1,59 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

FMVoices Member List

This is the complete list of members for FMVoices, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classFMVoices.gif b/doc/html/classFMVoices.gif new file mode 100644 index 0000000..9aeb809 Binary files /dev/null and b/doc/html/classFMVoices.gif differ diff --git a/doc/html/classFMVoices.html b/doc/html/classFMVoices.html new file mode 100644 index 0000000..a32b727 --- /dev/null +++ b/doc/html/classFMVoices.html @@ -0,0 +1,71 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

FMVoices Class Reference

STK singing FM synthesis instrument. +More... +

+#include <FMVoices.h> +

+

Inheritance diagram for FMVoices:: +

+ +FM +Instrmnt +Stk + +List of all members. + + + + + + + + + + + + + +

Public Methods

FMVoices ()
 Class constructor.

~FMVoices ()
 Class destructor.

+virtual void setFrequency (MY_FLOAT frequency)
 Set instrument parameters for a particular frequency.

+void noteOn (MY_FLOAT frequency, MY_FLOAT amplitude)
 Start a note with the given frequency and amplitude.

+MY_FLOAT tick ()
 Compute one output sample.

+virtual void controlChange (int number, MY_FLOAT value)
 Perform the control change specified by number and value (0.0 - 128.0).

+

Detailed Description

+STK singing FM synthesis instrument. +

+This class implements 3 carriers and a common modulator, also referred to as algorithm 6 of the TX81Z. +

+

    Algorithm 6 is :
+                        /->1 -\
+                     4-|-->2 - +-> Out
+                        \->3 -/
+

+Control Change Numbers:

+The basic Chowning/Stanford FM patent expired in 1995, but there exist follow-on patents, mostly assigned to Yamaha. If you are of the type who should worry about this (making money) worry away. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classFilter-members.html b/doc/html/classFilter-members.html new file mode 100644 index 0000000..612810c --- /dev/null +++ b/doc/html/classFilter-members.html @@ -0,0 +1,48 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Filter Member List

This is the complete list of members for Filter, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classFilter.gif b/doc/html/classFilter.gif new file mode 100644 index 0000000..33eb4f6 Binary files /dev/null and b/doc/html/classFilter.gif differ diff --git a/doc/html/classFilter.html b/doc/html/classFilter.html new file mode 100644 index 0000000..8908edf --- /dev/null +++ b/doc/html/classFilter.html @@ -0,0 +1,298 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Filter Class Reference

STK filter class. +More... +

+#include <Filter.h> +

+

Inheritance diagram for Filter:: +

+ +Stk +BiQuad +Delay +OnePole +OneZero +PoleZero +TwoPole +TwoZero +FormSwep +DelayA +DelayL + +List of all members. + + + + + + + + + + + + + + + + + + + + + + + + + +

Public Methods

Filter (void)
 Default constructor creates a zero-order pass-through "filter".

 Filter (int nb, MY_FLOAT *bCoefficients, int na, MY_FLOAT *aCoefficients)
 Overloaded constructor which takes filter coefficients. More...

+virtual ~Filter (void)
 Class destructor.

+void clear (void)
 Clears all internal states of the filter.

void setCoefficients (int nb, MY_FLOAT *bCoefficients, int na, MY_FLOAT *aCoefficients)
 Set filter coefficients. More...

void setNumerator (int nb, MY_FLOAT *bCoefficients)
 Set numerator coefficients. More...

void setDenominator (int na, MY_FLOAT *aCoefficients)
 Set denominator coefficients. More...

virtual void setGain (MY_FLOAT theGain)
 Set the filter gain. More...

+virtual MY_FLOAT getGain (void) const
 Return the current filter gain.

+virtual MY_FLOAT lastOut (void) const
 Return the last computed output value.

+virtual MY_FLOAT tick (MY_FLOAT sample)
 Input one sample to the filter and return one output.

+virtual MY_FLOAT* tick (MY_FLOAT *vector, unsigned int vectorSize)
 Input vectorSize samples to the filter and return an equal number of outputs in vector.

+

Detailed Description

+STK filter class. +

+This class implements a generic structure which can be used to create a wide range of filters. It can function independently or be subclassed to provide more specific controls based on a particular filter type. +

+In particular, this class implements the standard difference equation: +

+a[0]*y[n] = b[0]*x[n] + ... + b[nb]*x[n-nb] - a[1]*y[n-1] - ... - a[na]*y[n-na] +

+If a[0] is not equal to 1, the filter coeffcients are normalized by a[0]. +

+The gain parameter is applied at the filter input and does not affect the coefficient values. The default gain value is 1.0. This structure results in one extra multiply per computed sample, but allows easy control of the overall filter gain. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Constructor & Destructor Documentation

+

+ + + + +
+ + + + + + + + + + + + + + + + + + +
+Filter::Filter ( + +int nb, +
+MY_FLOAT * bCoefficients, +
+int na, +
+MY_FLOAT * aCoefficients ) +
+
+ + + + + +
+   + + +

+Overloaded constructor which takes filter coefficients. +

+An StkError can be thrown if either nb or na is less than one, or if the a[0] coefficient is equal to zero.

+


Member Function Documentation

+

+ + + + +
+ + + + + + + + + + + + + + + + + + +
+void Filter::setCoefficients ( + +int nb, +
+MY_FLOAT * bCoefficients, +
+int na, +
+MY_FLOAT * aCoefficients ) +
+
+ + + + + +
+   + + +

+Set filter coefficients. +

+An StkError can be thrown if either nb or na is less than one, or if the a[0] coefficient is equal to zero. If a[0] is not equal to 1, the filter coeffcients are normalized by a[0].

+

+ + + + +
+ + + + + + + + + + +
+void Filter::setNumerator ( + +int nb, +
+MY_FLOAT * bCoefficients ) +
+
+ + + + + +
+   + + +

+Set numerator coefficients. +

+An StkError can be thrown if nb is less than one. Any previously set denominator coefficients are left unaffected. Note that the default constructor sets the single denominator coefficient a[0] to 1.0.

+

+ + + + +
+ + + + + + + + + + +
+void Filter::setDenominator ( + +int na, +
+MY_FLOAT * aCoefficients ) +
+
+ + + + + +
+   + + +

+Set denominator coefficients. +

+An StkError can be thrown if na is less than one or if the a[0] coefficient is equal to zero. Previously set numerator coefficients are unaffected unless a[0] is not equal to 1, in which case all coeffcients are normalized by a[0]. Note that the default constructor sets the single numerator coefficient b[0] to 1.0.

+

+ + + + +
+ + + + + + +
+void Filter::setGain ( + +MY_FLOAT theGain ) [virtual] +
+
+ + + + + +
+   + + +

+Set the filter gain. +

+The gain is applied at the filter input and does not affect the coefficient values. The default gain value is 1.0. +

+Reimplemented in BiQuad, OnePole, OneZero, PoleZero, TwoPole, and TwoZero.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classFlute-members.html b/doc/html/classFlute-members.html new file mode 100644 index 0000000..04f343d --- /dev/null +++ b/doc/html/classFlute-members.html @@ -0,0 +1,53 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Flute Member List

This is the complete list of members for Flute, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classFlute.gif b/doc/html/classFlute.gif new file mode 100644 index 0000000..8744a14 Binary files /dev/null and b/doc/html/classFlute.gif differ diff --git a/doc/html/classFlute.html b/doc/html/classFlute.html new file mode 100644 index 0000000..bf92013 --- /dev/null +++ b/doc/html/classFlute.html @@ -0,0 +1,86 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Flute Class Reference

STK flute physical model class. +More... +

+#include <Flute.h> +

+

Inheritance diagram for Flute:: +

+ +Instrmnt +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Public Methods

Flute (MY_FLOAT lowestFrequency)
 Class constructor, taking the lowest desired playing frequency.

~Flute ()
 Class destructor.

+void clear ()
 Reset and clear all internal state.

+void setFrequency (MY_FLOAT frequency)
 Set instrument parameters for a particular frequency.

+void setJetReflection (MY_FLOAT coefficient)
 Set the reflection coefficient for the jet delay (-1.0 - 1.0).

+void setEndReflection (MY_FLOAT coefficient)
 Set the reflection coefficient for the air column delay (-1.0 - 1.0).

+void setJetDelay (MY_FLOAT aRatio)
 Set the length of the jet delay in terms of a ratio of jet delay to air column delay lengths.

+void startBlowing (MY_FLOAT amplitude, MY_FLOAT rate)
 Apply breath velocity to instrument with given amplitude and rate of increase.

+void stopBlowing (MY_FLOAT rate)
 Decrease breath velocity with given rate of decrease.

+void noteOn (MY_FLOAT frequency, MY_FLOAT amplitude)
 Start a note with the given frequency and amplitude.

+void noteOff (MY_FLOAT amplitude)
 Stop a note with the given amplitude (speed of decay).

+MY_FLOAT tick ()
 Compute one output sample.

+void controlChange (int number, MY_FLOAT value)
 Perform the control change specified by number and value (0.0 - 128.0).

+

Detailed Description

+STK flute physical model class. +

+This class implements a simple flute physical model, as discussed by Karjalainen, Smith, Waryznyk, etc. The jet model uses a polynomial, a la Cook. +

+This is a digital waveguide model, making its use possibly subject to patents held by Stanford University, Yamaha, and others. +

+Control Change Numbers:

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classFormSwep-members.html b/doc/html/classFormSwep-members.html new file mode 100644 index 0000000..1bda810 --- /dev/null +++ b/doc/html/classFormSwep-members.html @@ -0,0 +1,65 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

FormSwep Member List

This is the complete list of members for FormSwep, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classFormSwep.gif b/doc/html/classFormSwep.gif new file mode 100644 index 0000000..afb379e Binary files /dev/null and b/doc/html/classFormSwep.gif differ diff --git a/doc/html/classFormSwep.html b/doc/html/classFormSwep.html new file mode 100644 index 0000000..96caa30 --- /dev/null +++ b/doc/html/classFormSwep.html @@ -0,0 +1,168 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

FormSwep Class Reference

STK sweepable formant filter class. +More... +

+#include <FormSwep.h> +

+

Inheritance diagram for FormSwep:: +

+ +BiQuad +Filter +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + +

Public Methods

FormSwep ()
 Default constructor creates a second-order pass-through filter.

~FormSwep ()
 Class destructor.

void setResonance (MY_FLOAT aFrequency, MY_FLOAT aRadius)
 Sets the filter coefficients for a resonance at frequency (in Hz). More...

+void setStates (MY_FLOAT aFrequency, MY_FLOAT aRadius, MY_FLOAT aGain=1.0)
 Set both the current and target resonance parameters.

+void setTargets (MY_FLOAT aFrequency, MY_FLOAT aRadius, MY_FLOAT aGain=1.0)
 Set target resonance parameters.

void setSweepRate (MY_FLOAT aRate)
 Set the sweep rate (between 0.0 - 1.0). More...

void setSweepTime (MY_FLOAT aTime)
 Set the sweep rate in terms of a time value in seconds. More...

+MY_FLOAT tick (MY_FLOAT sample)
 Input one sample to the filter and return one output.

+MY_FLOAT* tick (MY_FLOAT *vector, unsigned int vectorSize)
 Input vectorSize samples to the filter and return an equal number of outputs in vector.

+

Detailed Description

+STK sweepable formant filter class. +

+This public BiQuad filter subclass implements a formant (resonance) which can be "swept" over time from one frequency setting to another. It provides methods for controlling the sweep rate and target frequency. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Member Function Documentation

+

+ + + + +
+ + + + + + + + + + +
+void FormSwep::setResonance ( + +MY_FLOAT aFrequency, +
+MY_FLOAT aRadius ) +
+
+ + + + + +
+   + + +

+Sets the filter coefficients for a resonance at frequency (in Hz). +

+This method determines the filter coefficients corresponding to two complex-conjugate poles with the given frequency (in Hz) and radius from the z-plane origin. The filter zeros are placed at z = 1, z = -1, and the coefficients are then normalized to produce a constant unity gain (independent of the filter gain parameter). The resulting filter frequency response has a resonance at the given frequency. The closer the poles are to the unit-circle (radius close to one), the narrower the resulting resonance width.

+

+ + + + +
+ + + + + + +
+void FormSwep::setSweepRate ( + +MY_FLOAT aRate ) +
+
+ + + + + +
+   + + +

+Set the sweep rate (between 0.0 - 1.0). +

+The formant parameters are varied in increments of the sweep rate between their current and target values. A sweep rate of 1.0 will produce an immediate change in resonance parameters from their current values to the target values. A sweep rate of 0.0 will produce no change in resonance parameters.

+

+ + + + +
+ + + + + + +
+void FormSwep::setSweepTime ( + +MY_FLOAT aTime ) +
+
+ + + + + +
+   + + +

+Set the sweep rate in terms of a time value in seconds. +

+This method adjusts the sweep rate based on a given time for the formant parameters to reach their target values.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classHevyMetl-members.html b/doc/html/classHevyMetl-members.html new file mode 100644 index 0000000..0095623 --- /dev/null +++ b/doc/html/classHevyMetl-members.html @@ -0,0 +1,59 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

HevyMetl Member List

This is the complete list of members for HevyMetl, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classHevyMetl.gif b/doc/html/classHevyMetl.gif new file mode 100644 index 0000000..d2ce076 Binary files /dev/null and b/doc/html/classHevyMetl.gif differ diff --git a/doc/html/classHevyMetl.html b/doc/html/classHevyMetl.html new file mode 100644 index 0000000..1386ed2 --- /dev/null +++ b/doc/html/classHevyMetl.html @@ -0,0 +1,63 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

HevyMetl Class Reference

STK heavy metal FM synthesis instrument. +More... +

+#include <HevyMetl.h> +

+

Inheritance diagram for HevyMetl:: +

+ +FM +Instrmnt +Stk + +List of all members. + + + + + + + + + +

Public Methods

HevyMetl ()
 Class constructor.

~HevyMetl ()
 Class destructor.

+void noteOn (MY_FLOAT frequency, MY_FLOAT amplitude)
 Start a note with the given frequency and amplitude.

+MY_FLOAT tick ()
 Compute one output sample.

+

Detailed Description

+STK heavy metal FM synthesis instrument. +

+This class implements 3 cascade operators with feedback modulation, also referred to as algorithm 3 of the TX81Z. +

+

    Algorithm 3 is :    4--\
+                    3-->2-- + -->1-->Out
+

+Control Change Numbers:

+The basic Chowning/Stanford FM patent expired in 1995, but there exist follow-on patents, mostly assigned to Yamaha. If you are of the type who should worry about this (making money) worry away. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classInstrmnt-members.html b/doc/html/classInstrmnt-members.html new file mode 100644 index 0000000..d988c73 --- /dev/null +++ b/doc/html/classInstrmnt-members.html @@ -0,0 +1,45 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Instrmnt Member List

This is the complete list of members for Instrmnt, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classInstrmnt.gif b/doc/html/classInstrmnt.gif new file mode 100644 index 0000000..7dde962 Binary files /dev/null and b/doc/html/classInstrmnt.gif differ diff --git a/doc/html/classInstrmnt.html b/doc/html/classInstrmnt.html new file mode 100644 index 0000000..57f7057 --- /dev/null +++ b/doc/html/classInstrmnt.html @@ -0,0 +1,89 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Instrmnt Class Reference

STK instrument abstract base class. +More... +

+#include <Instrmnt.h> +

+

Inheritance diagram for Instrmnt:: +

+ +Stk +BandedWG +BlowBotl +BlowHole +Bowed +Brass +Clarinet +Drummer +Flute +FM +Mesh2D +Modal +Plucked +PluckTwo +Resonate +Sampler +Saxofony +Shakers +Simple +Sitar +StifKarp + +List of all members. + + + + + + + + + + + + + + + + + + + +

Public Methods

Instrmnt ()
 Default constructor.

+virtual ~Instrmnt ()
 Class destructor.

+virtual void noteOn (MY_FLOAT frequency, MY_FLOAT amplitude)=0
 Start a note with the given frequency and amplitude.

+virtual void noteOff (MY_FLOAT amplitude)=0
 Stop a note with the given amplitude (speed of decay).

+virtual void setFrequency (MY_FLOAT frequency)
 Set instrument parameters for a particular frequency.

+MY_FLOAT lastOut () const
 Return the last output value.

+virtual MY_FLOAT tick ()=0
 Compute one output sample.

+virtual MY_FLOAT* tick (MY_FLOAT *vector, unsigned int vectorSize)
 Computer vectorSize outputs and return them in vector.

+virtual void controlChange (int number, MY_FLOAT value)
 Perform the control change specified by number and value (0.0 - 128.0).

+

Detailed Description

+STK instrument abstract base class. +

+This class provides a common interface for all STK instruments. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classJCRev-members.html b/doc/html/classJCRev-members.html new file mode 100644 index 0000000..c0cb79a --- /dev/null +++ b/doc/html/classJCRev-members.html @@ -0,0 +1,45 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

JCRev Member List

This is the complete list of members for JCRev, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classJCRev.gif b/doc/html/classJCRev.gif new file mode 100644 index 0000000..ee58685 Binary files /dev/null and b/doc/html/classJCRev.gif differ diff --git a/doc/html/classJCRev.html b/doc/html/classJCRev.html new file mode 100644 index 0000000..5ab1b80 --- /dev/null +++ b/doc/html/classJCRev.html @@ -0,0 +1,49 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

JCRev Class Reference

John Chowning's reverberator class. +More... +

+#include <JCRev.h> +

+

Inheritance diagram for JCRev:: +

+ +Reverb +Stk + +List of all members. + + + + + +

Public Methods

+void clear ()
 Reset and clear all internal state.

+MY_FLOAT tick (MY_FLOAT input)
 Compute one output sample.

+

Detailed Description

+John Chowning's reverberator class. +

+This class is derived from the CLM JCRev function, which is based on the use of networks of simple allpass and comb delay filters. This class implements three series allpass units, followed by four parallel comb filters, and two decorrelation delay lines in parallel at the output. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classJetTabl-members.html b/doc/html/classJetTabl-members.html new file mode 100644 index 0000000..2d7e115 --- /dev/null +++ b/doc/html/classJetTabl-members.html @@ -0,0 +1,41 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

JetTabl Member List

This is the complete list of members for JetTabl, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classJetTabl.gif b/doc/html/classJetTabl.gif new file mode 100644 index 0000000..ad9c8ff Binary files /dev/null and b/doc/html/classJetTabl.gif differ diff --git a/doc/html/classJetTabl.html b/doc/html/classJetTabl.html new file mode 100644 index 0000000..1467089 --- /dev/null +++ b/doc/html/classJetTabl.html @@ -0,0 +1,59 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

JetTabl Class Reference

STK jet table class. +More... +

+#include <JetTabl.h> +

+

Inheritance diagram for JetTabl:: +

+ +Stk + +List of all members. + + + + + + + + + + + +

Public Methods

JetTabl ()
 Default constructor.

~JetTabl ()
 Class destructor.

+MY_FLOAT lastOut () const
 Return the last output value.

+MY_FLOAT tick (MY_FLOAT input)
 Return the function value for input.

+MY_FLOAT* tick (MY_FLOAT *vector, unsigned int vectorSize)
 Take vectorSize inputs and return the corresponding function values in vector.

+

Detailed Description

+STK jet table class. +

+This class implements a flue jet non-linear function, computed by a polynomial calculation. Contrary to the name, this is not a "table". +

+Consult Fletcher and Rossing, Karjalainen, Cook, and others for more information. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classMandolin-members.html b/doc/html/classMandolin-members.html new file mode 100644 index 0000000..d6ace00 --- /dev/null +++ b/doc/html/classMandolin-members.html @@ -0,0 +1,57 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Mandolin Member List

This is the complete list of members for Mandolin, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classMandolin.gif b/doc/html/classMandolin.gif new file mode 100644 index 0000000..9edb0fb Binary files /dev/null and b/doc/html/classMandolin.gif differ diff --git a/doc/html/classMandolin.html b/doc/html/classMandolin.html new file mode 100644 index 0000000..32759f0 --- /dev/null +++ b/doc/html/classMandolin.html @@ -0,0 +1,72 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Mandolin Class Reference

STK mandolin instrument model class. +More... +

+#include <Mandolin.h> +

+

Inheritance diagram for Mandolin:: +

+ +PluckTwo +Instrmnt +Stk + +List of all members. + + + + + + + + + + + + + + + + + +

Public Methods

Mandolin (MY_FLOAT lowestFrequency)
 Class constructor, taking the lowest desired playing frequency.

+virtual ~Mandolin ()
 Class destructor.

+void pluck (MY_FLOAT amplitude)
 Pluck the strings with the given amplitude (0.0 - 1.0) using the current frequency.

+void pluck (MY_FLOAT amplitude, MY_FLOAT position)
 Pluck the strings with the given amplitude (0.0 - 1.0) and position (0.0 - 1.0).

+virtual void noteOn (MY_FLOAT frequency, MY_FLOAT amplitude)
 Start a note with the given frequency and amplitude (0.0 - 1.0).

+void setBodySize (MY_FLOAT size)
 Set the body size (a value of 1.0 produces the "default" size).

+virtual MY_FLOAT tick ()
 Compute one output sample.

+virtual void controlChange (int number, MY_FLOAT value)
 Perform the control change specified by number and value (0.0 - 128.0).

+

Detailed Description

+STK mandolin instrument model class. +

+This class inherits from PluckTwo and uses "commuted synthesis" techniques to model a mandolin instrument. +

+This is a digital waveguide model, making its use possibly subject to patents held by Stanford University, Yamaha, and others. Commuted Synthesis, in particular, is covered by patents, granted, pending, and/or applied-for. All are assigned to the Board of Trustees, Stanford University. For information, contact the Office of Technology Licensing, Stanford University. +

+Control Change Numbers:

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classMesh2D-members.html b/doc/html/classMesh2D-members.html new file mode 100644 index 0000000..c90de7c --- /dev/null +++ b/doc/html/classMesh2D-members.html @@ -0,0 +1,54 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Mesh2D Member List

This is the complete list of members for Mesh2D, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classMesh2D.gif b/doc/html/classMesh2D.gif new file mode 100644 index 0000000..e300e20 Binary files /dev/null and b/doc/html/classMesh2D.gif differ diff --git a/doc/html/classMesh2D.html b/doc/html/classMesh2D.html new file mode 100644 index 0000000..2a811ea --- /dev/null +++ b/doc/html/classMesh2D.html @@ -0,0 +1,86 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Mesh2D Class Reference

Two-dimensional rectilinear waveguide mesh class. +More... +

+#include <Mesh2D.h> +

+

Inheritance diagram for Mesh2D:: +

+ +Instrmnt +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Public Methods

Mesh2D (short nX, short nY)
 Class constructor, taking the x and y dimensions in samples.

~Mesh2D ()
 Class destructor.

+void clear ()
 Reset and clear all internal state.

+void setNX (short lenX)
 Set the x dimension size in samples.

+void setNY (short lenY)
 Set the y dimension size in samples.

+void setInputPosition (MY_FLOAT xFactor, MY_FLOAT yFactor)
 Set the x, y input position on a 0.0 - 1.0 scale.

+void setDecay (MY_FLOAT decayFactor)
 Set the loss filters gains (0.0 - 1.0).

+void noteOn (MY_FLOAT frequency, MY_FLOAT amplitude)
 Impulse the mesh with the given amplitude (frequency ignored).

+void noteOff (MY_FLOAT amplitude)
 Stop a note with the given amplitude (speed of decay) ... currently ignored.

+MY_FLOAT energy ()
 Calculate and return the signal energy stored in the mesh.

+MY_FLOAT tick ()
 Compute one output sample, without adding energy to the mesh.

+MY_FLOAT tick (MY_FLOAT input)
 Input a sample to the mesh and compute one output sample.

+void controlChange (int number, MY_FLOAT value)
 Perform the control change specified by number and value (0.0 - 128.0).

+

Detailed Description

+Two-dimensional rectilinear waveguide mesh class. +

+This class implements a rectilinear, two-dimensional digital waveguide mesh structure. For details, see Van Duyne and Smith, "Physical Modeling with the 2-D Digital Waveguide Mesh", Proceedings of the 1993 International Computer Music Conference. +

+This is a digital waveguide model, making its use possibly subject to patents held by Stanford University, Yamaha, and others. +

+Control Change Numbers:

+by Julius Smith, 2000 - 2002. Revised by Gary Scavone for STK, 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classMessager-members.html b/doc/html/classMessager-members.html new file mode 100644 index 0000000..84c456e --- /dev/null +++ b/doc/html/classMessager-members.html @@ -0,0 +1,45 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Messager Member List

This is the complete list of members for Messager, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classMessager.gif b/doc/html/classMessager.gif new file mode 100644 index 0000000..41d10d3 Binary files /dev/null and b/doc/html/classMessager.gif differ diff --git a/doc/html/classMessager.html b/doc/html/classMessager.html new file mode 100644 index 0000000..b854c8f --- /dev/null +++ b/doc/html/classMessager.html @@ -0,0 +1,137 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Messager Class Reference

STK input control message parser. +More... +

+#include <Messager.h> +

+

Inheritance diagram for Messager:: +

+ +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + +

Public Methods

 Messager (int inputMask=0)
 Constructor performs initialization based on an input mask. More...

~Messager ()
 Class destructor.

long nextMessage (void)
 Check for a new input message and return the message type. More...

+void setRtDelta (long nSamples)
 Set the delta time (in samples) returned between valid realtime messages. This setting has no affect for scorefile messages.

+long getDelta (void) const
 Return the current message "delta time" in samples.

+long getType () const
 Return the current message type.

+MY_FLOAT getByteTwo () const
 Return the byte two value for the current message.

+MY_FLOAT getByteThree () const
 Return the byte three value for the current message.

+long getChannel () const
 Return the channel number for the current message.

+

Detailed Description

+STK input control message parser. +

+This class reads and parses control messages from a variety of sources, such as a MIDI port, scorefile, socket connection, or pipe. MIDI messages are retrieved using the RtMidi class. All other input sources (scorefile, socket, or pipe) are assumed to provide SKINI formatted messages. +

+For each call to nextMessage(), the active input sources are queried to see if a new control message is available. +

+This class is primarily for use in STK main() event loops. +

+One of the original goals in creating this class was to simplify the message acquisition process by removing all threads. If the windoze select() function behaved just like the unix one, that would have been possible. Since it does not (it can't be used to poll STDIN), I am using a thread to acquire messages from STDIN, which sends these messages via a socket connection to the message socket server. Perhaps in the future, it will be possible to simplify things. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Constructor & Destructor Documentation

+

+ + + + +
+ + + + + + +
+Messager::Messager ( + +int inputMask = 0 ) +
+
+ + + + + +
+   + + +

+Constructor performs initialization based on an input mask. +

+The default constructor is set to read input from a SKINI scorefile. The flags STK_MIDI, STK_PIPE, and STK_SOCKET can be OR'ed together in any combination for multiple "realtime" input source parsing. For realtime input types, an StkError can be thrown during instantiation.

+


Member Function Documentation

+

+ + + + +
+ + + + + + +
+long Messager::nextMessage ( + +void ) +
+
+ + + + + +
+   + + +

+Check for a new input message and return the message type. +

+Return type values greater than zero represent valid messages. If an input scorefile has been completely read or all realtime input sources have closed, a negative value is returned. If the return type is zero, no valid messages are present.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classModal-members.html b/doc/html/classModal-members.html new file mode 100644 index 0000000..abdee16 --- /dev/null +++ b/doc/html/classModal-members.html @@ -0,0 +1,54 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Modal Member List

This is the complete list of members for Modal, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classModal.gif b/doc/html/classModal.gif new file mode 100644 index 0000000..f1a0c32 Binary files /dev/null and b/doc/html/classModal.gif differ diff --git a/doc/html/classModal.html b/doc/html/classModal.html new file mode 100644 index 0000000..7d4292a --- /dev/null +++ b/doc/html/classModal.html @@ -0,0 +1,86 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Modal Class Reference

STK resonance model instrument. +More... +

+#include <Modal.h> +

+

Inheritance diagram for Modal:: +

+ +Instrmnt +Stk +ModalBar + +List of all members. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Public Methods

Modal (int modes=4)
 Class constructor, taking the desired number of modes to create.

+virtual ~Modal ()
 Class destructor.

+void clear ()
 Reset and clear all internal state.

+virtual void setFrequency (MY_FLOAT frequency)
 Set instrument parameters for a particular frequency.

+void setRatioAndRadius (int modeIndex, MY_FLOAT ratio, MY_FLOAT radius)
 Set the ratio and radius for a specified mode filter.

+void setMasterGain (MY_FLOAT aGain)
 Set the master gain.

+void setDirectGain (MY_FLOAT aGain)
 Set the direct gain.

+void setModeGain (int modeIndex, MY_FLOAT gain)
 Set the gain for a specified mode filter.

+virtual void strike (MY_FLOAT amplitude)
 Initiate a strike with the given amplitude (0.0 - 1.0).

+void damp (MY_FLOAT amplitude)
 Damp modes with a given decay factor (0.0 - 1.0).

+void noteOn (MY_FLOAT frequency, MY_FLOAT amplitude)
 Start a note with the given frequency and amplitude.

+void noteOff (MY_FLOAT amplitude)
 Stop a note with the given amplitude (speed of decay).

+virtual MY_FLOAT tick ()
 Compute one output sample.

+virtual void controlChange (int number, MY_FLOAT value)=0
 Perform the control change specified by number and value (0.0 - 128.0).

+

Detailed Description

+STK resonance model instrument. +

+This class contains an excitation wavetable, an envelope, an oscillator, and N resonances (non-sweeping BiQuad filters), where N is set during instantiation. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classModalBar-members.html b/doc/html/classModalBar-members.html new file mode 100644 index 0000000..2afbd11 --- /dev/null +++ b/doc/html/classModalBar-members.html @@ -0,0 +1,60 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

ModalBar Member List

This is the complete list of members for ModalBar, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classModalBar.gif b/doc/html/classModalBar.gif new file mode 100644 index 0000000..371c365 Binary files /dev/null and b/doc/html/classModalBar.gif differ diff --git a/doc/html/classModalBar.html b/doc/html/classModalBar.html new file mode 100644 index 0000000..fc651d7 --- /dev/null +++ b/doc/html/classModalBar.html @@ -0,0 +1,69 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

ModalBar Class Reference

STK resonant bar instrument class. +More... +

+#include <ModalBar.h> +

+

Inheritance diagram for ModalBar:: +

+ +Modal +Instrmnt +Stk + +List of all members. + + + + + + + + + + + + + + + +

Public Methods

ModalBar ()
 Class constructor.

~ModalBar ()
 Class destructor.

+void setStickHardness (MY_FLOAT hardness)
 Set stick hardness (0.0 - 1.0).

+void setStrikePosition (MY_FLOAT position)
 Set stick position (0.0 - 1.0).

+void setPreset (int preset)
 Select a bar preset (currently modulo 9).

+void setModulationDepth (MY_FLOAT mDepth)
 Set the modulation (vibrato) depth.

+void controlChange (int number, MY_FLOAT value)
 Perform the control change specified by number and value (0.0 - 128.0).

+

Detailed Description

+STK resonant bar instrument class. +

+This class implements a number of different struck bar instruments. It inherits from the Modal class. +

+Control Change Numbers:

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classModulate-members.html b/doc/html/classModulate-members.html new file mode 100644 index 0000000..2de70b6 --- /dev/null +++ b/doc/html/classModulate-members.html @@ -0,0 +1,45 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Modulate Member List

This is the complete list of members for Modulate, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classModulate.gif b/doc/html/classModulate.gif new file mode 100644 index 0000000..3418cf6 Binary files /dev/null and b/doc/html/classModulate.gif differ diff --git a/doc/html/classModulate.html b/doc/html/classModulate.html new file mode 100644 index 0000000..b95315b --- /dev/null +++ b/doc/html/classModulate.html @@ -0,0 +1,69 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Modulate Class Reference

STK periodic/random modulator. +More... +

+#include <Modulate.h> +

+

Inheritance diagram for Modulate:: +

+ +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + +

Public Methods

Modulate ()
 Class constructor.

~Modulate ()
 Class destructor.

+void reset ()
 Reset internal state.

+void setVibratoRate (MY_FLOAT aRate)
 Set the periodic (vibrato) rate or frequency in Hz.

+void setVibratoGain (MY_FLOAT aGain)
 Set the periodic (vibrato) gain.

+void setRandomGain (MY_FLOAT aGain)
 Set the random modulation gain.

+MY_FLOAT tick ()
 Compute one output sample.

+virtual MY_FLOAT* tick (MY_FLOAT *vector, unsigned int vectorSize)
 Return vectorSize outputs in vector.

+MY_FLOAT lastOut () const
 Return the last computed output value.

+

Detailed Description

+STK periodic/random modulator. +

+This class combines random and periodic modulations to give a nice, natural human modulation function. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classMoog-members.html b/doc/html/classMoog-members.html new file mode 100644 index 0000000..6229988 --- /dev/null +++ b/doc/html/classMoog-members.html @@ -0,0 +1,54 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Moog Member List

This is the complete list of members for Moog, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classMoog.gif b/doc/html/classMoog.gif new file mode 100644 index 0000000..64dff02 Binary files /dev/null and b/doc/html/classMoog.gif differ diff --git a/doc/html/classMoog.html b/doc/html/classMoog.html new file mode 100644 index 0000000..5b494e7 --- /dev/null +++ b/doc/html/classMoog.html @@ -0,0 +1,70 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Moog Class Reference

STK moog-like swept filter sampling synthesis class. +More... +

+#include <Moog.h> +

+

Inheritance diagram for Moog:: +

+ +Sampler +Instrmnt +Stk + +List of all members. + + + + + + + + + + + + + + + + + +

Public Methods

Moog ()
 Class constructor.

~Moog ()
 Class destructor.

+virtual void setFrequency (MY_FLOAT frequency)
 Set instrument parameters for a particular frequency.

+virtual void noteOn (MY_FLOAT frequency, MY_FLOAT amplitude)
 Start a note with the given frequency and amplitude.

+void setModulationSpeed (MY_FLOAT mSpeed)
 Set the modulation (vibrato) speed in Hz.

+void setModulationDepth (MY_FLOAT mDepth)
 Set the modulation (vibrato) depth.

+virtual MY_FLOAT tick ()
 Compute one output sample.

+virtual void controlChange (int number, MY_FLOAT value)
 Perform the control change specified by number and value (0.0 - 128.0).

+

Detailed Description

+STK moog-like swept filter sampling synthesis class. +

+This instrument uses one attack wave, one looped wave, and an ADSR envelope (inherited from the Sampler class) and adds two sweepable formant (FormSwep) filters. +

+Control Change Numbers:

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classNRev-members.html b/doc/html/classNRev-members.html new file mode 100644 index 0000000..31735fa --- /dev/null +++ b/doc/html/classNRev-members.html @@ -0,0 +1,45 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

NRev Member List

This is the complete list of members for NRev, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classNRev.gif b/doc/html/classNRev.gif new file mode 100644 index 0000000..4f9a676 Binary files /dev/null and b/doc/html/classNRev.gif differ diff --git a/doc/html/classNRev.html b/doc/html/classNRev.html new file mode 100644 index 0000000..8d2d680 --- /dev/null +++ b/doc/html/classNRev.html @@ -0,0 +1,49 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

NRev Class Reference

CCRMA's NRev reverberator class. +More... +

+#include <NRev.h> +

+

Inheritance diagram for NRev:: +

+ +Reverb +Stk + +List of all members. + + + + + +

Public Methods

+void clear ()
 Reset and clear all internal state.

+MY_FLOAT tick (MY_FLOAT input)
 Compute one output sample.

+

Detailed Description

+CCRMA's NRev reverberator class. +

+This class is derived from the CLM NRev function, which is based on the use of networks of simple allpass and comb delay filters. This particular arrangement consists of 6 comb filters in parallel, followed by 3 allpass filters, a lowpass filter, and another allpass in series, followed by two allpass filters in parallel with corresponding right and left outputs. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classNoise-members.html b/doc/html/classNoise-members.html new file mode 100644 index 0000000..7f79d4c --- /dev/null +++ b/doc/html/classNoise-members.html @@ -0,0 +1,41 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Noise Member List

This is the complete list of members for Noise, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classNoise.gif b/doc/html/classNoise.gif new file mode 100644 index 0000000..2f1fe74 Binary files /dev/null and b/doc/html/classNoise.gif differ diff --git a/doc/html/classNoise.html b/doc/html/classNoise.html new file mode 100644 index 0000000..95ed659 --- /dev/null +++ b/doc/html/classNoise.html @@ -0,0 +1,58 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Noise Class Reference

STK noise generator. +More... +

+#include <Noise.h> +

+

Inheritance diagram for Noise:: +

+ +Stk +SubNoise + +List of all members. + + + + + + + + + + + +

Public Methods

Noise ()
 Default constructor.

+virtual ~Noise ()
 Class destructor.

+virtual MY_FLOAT tick ()
 Return a random number between -1.0 and 1.0 using rand().

+virtual MY_FLOAT* tick (MY_FLOAT *vector, unsigned int vectorSize)
 Return vectorSize random numbers between -1.0 and 1.0 in vector.

+MY_FLOAT lastOut () const
 Return the last computed value.

+

Detailed Description

+STK noise generator. +

+Generic random number generation using the C rand() function. The quality of the rand() function varies from one OS to another. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classOnePole-members.html b/doc/html/classOnePole-members.html new file mode 100644 index 0000000..3f94a40 --- /dev/null +++ b/doc/html/classOnePole-members.html @@ -0,0 +1,54 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

OnePole Member List

This is the complete list of members for OnePole, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classOnePole.gif b/doc/html/classOnePole.gif new file mode 100644 index 0000000..832e4f9 Binary files /dev/null and b/doc/html/classOnePole.gif differ diff --git a/doc/html/classOnePole.html b/doc/html/classOnePole.html new file mode 100644 index 0000000..6a203f9 --- /dev/null +++ b/doc/html/classOnePole.html @@ -0,0 +1,142 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

OnePole Class Reference

STK one-pole filter class. +More... +

+#include <OnePole.h> +

+

Inheritance diagram for OnePole:: +

+ +Filter +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + + + + + + + +

Public Methods

OnePole ()
 Default constructor creates a first-order low-pass filter.

OnePole (MY_FLOAT thePole)
 Overloaded constructor which sets the pole position during instantiation.

~OnePole ()
 Class destructor.

+void clear (void)
 Clears the internal state of the filter.

+void setB0 (MY_FLOAT b0)
 Set the b[0] coefficient value.

+void setA1 (MY_FLOAT a1)
 Set the a[1] coefficient value.

void setPole (MY_FLOAT thePole)
 Set the pole position in the z-plane. More...

void setGain (MY_FLOAT theGain)
 Set the filter gain. More...

+MY_FLOAT getGain (void) const
 Return the current filter gain.

+MY_FLOAT lastOut (void) const
 Return the last computed output value.

+MY_FLOAT tick (MY_FLOAT sample)
 Input one sample to the filter and return one output.

+MY_FLOAT* tick (MY_FLOAT *vector, unsigned int vectorSize)
 Input vectorSize samples to the filter and return an equal number of outputs in vector.

+

Detailed Description

+STK one-pole filter class. +

+This protected Filter subclass implements a one-pole digital filter. A method is provided for setting the pole position along the real axis of the z-plane while maintaining a constant peak filter gain. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Member Function Documentation

+

+ + + + +
+ + + + + + +
+void OnePole::setPole ( + +MY_FLOAT thePole ) +
+
+ + + + + +
+   + + +

+Set the pole position in the z-plane. +

+This method sets the pole position along the real-axis of the z-plane and normalizes the coefficients for a maximum gain of one. A positive pole value produces a low-pass filter, while a negative pole value produces a high-pass filter. This method does not affect the filter gain value.

+

+ + + + +
+ + + + + + +
+void OnePole::setGain ( + +MY_FLOAT theGain ) [virtual] +
+
+ + + + + +
+   + + +

+Set the filter gain. +

+The gain is applied at the filter input and does not affect the coefficient values. The default gain value is 1.0. +

+Reimplemented from Filter.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classOneZero-members.html b/doc/html/classOneZero-members.html new file mode 100644 index 0000000..3447971 --- /dev/null +++ b/doc/html/classOneZero-members.html @@ -0,0 +1,54 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

OneZero Member List

This is the complete list of members for OneZero, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classOneZero.gif b/doc/html/classOneZero.gif new file mode 100644 index 0000000..71d0fcc Binary files /dev/null and b/doc/html/classOneZero.gif differ diff --git a/doc/html/classOneZero.html b/doc/html/classOneZero.html new file mode 100644 index 0000000..09223a0 --- /dev/null +++ b/doc/html/classOneZero.html @@ -0,0 +1,142 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

OneZero Class Reference

STK one-zero filter class. +More... +

+#include <OneZero.h> +

+

Inheritance diagram for OneZero:: +

+ +Filter +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + + + + + + + +

Public Methods

OneZero ()
 Default constructor creates a first-order low-pass filter.

OneZero (MY_FLOAT theZero)
 Overloaded constructor which sets the zero position during instantiation.

~OneZero ()
 Class destructor.

+void clear (void)
 Clears the internal state of the filter.

+void setB0 (MY_FLOAT b0)
 Set the b[0] coefficient value.

+void setB1 (MY_FLOAT b1)
 Set the b[1] coefficient value.

void setZero (MY_FLOAT theZero)
 Set the zero position in the z-plane. More...

void setGain (MY_FLOAT theGain)
 Set the filter gain. More...

+MY_FLOAT getGain (void) const
 Return the current filter gain.

+MY_FLOAT lastOut (void) const
 Return the last computed output value.

+MY_FLOAT tick (MY_FLOAT sample)
 Input one sample to the filter and return one output.

+MY_FLOAT* tick (MY_FLOAT *vector, unsigned int vectorSize)
 Input vectorSize samples to the filter and return an equal number of outputs in vector.

+

Detailed Description

+STK one-zero filter class. +

+This protected Filter subclass implements a one-zero digital filter. A method is provided for setting the zero position along the real axis of the z-plane while maintaining a constant filter gain. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Member Function Documentation

+

+ + + + +
+ + + + + + +
+void OneZero::setZero ( + +MY_FLOAT theZero ) +
+
+ + + + + +
+   + + +

+Set the zero position in the z-plane. +

+This method sets the zero position along the real-axis of the z-plane and normalizes the coefficients for a maximum gain of one. A positive zero value produces a high-pass filter, while a negative zero value produces a low-pass filter. This method does not affect the filter gain value.

+

+ + + + +
+ + + + + + +
+void OneZero::setGain ( + +MY_FLOAT theGain ) [virtual] +
+
+ + + + + +
+   + + +

+Set the filter gain. +

+The gain is applied at the filter input and does not affect the coefficient values. The default gain value is 1.0. +

+Reimplemented from Filter.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classPRCRev-members.html b/doc/html/classPRCRev-members.html new file mode 100644 index 0000000..9bf210a --- /dev/null +++ b/doc/html/classPRCRev-members.html @@ -0,0 +1,45 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

PRCRev Member List

This is the complete list of members for PRCRev, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classPRCRev.gif b/doc/html/classPRCRev.gif new file mode 100644 index 0000000..e7bffc3 Binary files /dev/null and b/doc/html/classPRCRev.gif differ diff --git a/doc/html/classPRCRev.html b/doc/html/classPRCRev.html new file mode 100644 index 0000000..0eddf97 --- /dev/null +++ b/doc/html/classPRCRev.html @@ -0,0 +1,49 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

PRCRev Class Reference

Perry's simple reverberator class. +More... +

+#include <PRCRev.h> +

+

Inheritance diagram for PRCRev:: +

+ +Reverb +Stk + +List of all members. + + + + + +

Public Methods

+void clear ()
 Reset and clear all internal state.

+MY_FLOAT tick (MY_FLOAT input)
 Compute one output sample.

+

Detailed Description

+Perry's simple reverberator class. +

+This class is based on some of the famous Stanford/CCRMA reverbs (NRev, KipRev), which were based on the Chowning/Moorer/Schroeder reverberators using networks of simple allpass and comb delay filters. This class implements two series allpass units and two parallel comb filters. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classPercFlut-members.html b/doc/html/classPercFlut-members.html new file mode 100644 index 0000000..0aa6f9e --- /dev/null +++ b/doc/html/classPercFlut-members.html @@ -0,0 +1,59 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

PercFlut Member List

This is the complete list of members for PercFlut, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classPercFlut.gif b/doc/html/classPercFlut.gif new file mode 100644 index 0000000..37d8332 Binary files /dev/null and b/doc/html/classPercFlut.gif differ diff --git a/doc/html/classPercFlut.html b/doc/html/classPercFlut.html new file mode 100644 index 0000000..77f7264 --- /dev/null +++ b/doc/html/classPercFlut.html @@ -0,0 +1,66 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

PercFlut Class Reference

STK percussive flute FM synthesis instrument. +More... +

+#include <PercFlut.h> +

+

Inheritance diagram for PercFlut:: +

+ +FM +Instrmnt +Stk + +List of all members. + + + + + + + + + + + +

Public Methods

PercFlut ()
 Class constructor.

~PercFlut ()
 Class destructor.

+void setFrequency (MY_FLOAT frequency)
 Set instrument parameters for a particular frequency.

+void noteOn (MY_FLOAT frequency, MY_FLOAT amplitude)
 Start a note with the given frequency and amplitude.

+MY_FLOAT tick ()
 Compute one output sample.

+

Detailed Description

+STK percussive flute FM synthesis instrument. +

+This class implements algorithm 4 of the TX81Z. +

+

    Algorithm 4 is :   4->3--\
+                          2-- + -->1-->Out
+

+Control Change Numbers:

+The basic Chowning/Stanford FM patent expired in 1995, but there exist follow-on patents, mostly assigned to Yamaha. If you are of the type who should worry about this (making money) worry away. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classPitShift-members.html b/doc/html/classPitShift-members.html new file mode 100644 index 0000000..b9981de --- /dev/null +++ b/doc/html/classPitShift-members.html @@ -0,0 +1,44 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

PitShift Member List

This is the complete list of members for PitShift, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classPitShift.gif b/doc/html/classPitShift.gif new file mode 100644 index 0000000..0fcef00 Binary files /dev/null and b/doc/html/classPitShift.gif differ diff --git a/doc/html/classPitShift.html b/doc/html/classPitShift.html new file mode 100644 index 0000000..f1203ef --- /dev/null +++ b/doc/html/classPitShift.html @@ -0,0 +1,66 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

PitShift Class Reference

STK simple pitch shifter effect class. +More... +

+#include <PitShift.h> +

+

Inheritance diagram for PitShift:: +

+ +Stk + +List of all members. + + + + + + + + + + + + + + + + + +

Public Methods

PitShift ()
 Class constructor.

~PitShift ()
 Class destructor.

+void clear ()
 Reset and clear all internal state.

+void setShift (MY_FLOAT shift)
 Set the pitch shift factor (1.0 produces no shift).

+void setEffectMix (MY_FLOAT mix)
 Set the mixture of input and processed levels in the output (0.0 = input only, 1.0 = processed only).

+MY_FLOAT lastOut () const
 Return the last output value.

+MY_FLOAT tick (MY_FLOAT input)
 Compute one output sample.

+MY_FLOAT* tick (MY_FLOAT *vector, unsigned int vectorSize)
 Input vectorSize samples to the filter and return an equal number of outputs in vector.

+

Detailed Description

+STK simple pitch shifter effect class. +

+This class implements a simple pitch shifter using delay lines. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classPluckTwo-members.html b/doc/html/classPluckTwo-members.html new file mode 100644 index 0000000..5c65e21 --- /dev/null +++ b/doc/html/classPluckTwo-members.html @@ -0,0 +1,52 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

PluckTwo Member List

This is the complete list of members for PluckTwo, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classPluckTwo.gif b/doc/html/classPluckTwo.gif new file mode 100644 index 0000000..d284bb7 Binary files /dev/null and b/doc/html/classPluckTwo.gif differ diff --git a/doc/html/classPluckTwo.html b/doc/html/classPluckTwo.html new file mode 100644 index 0000000..1bae13c --- /dev/null +++ b/doc/html/classPluckTwo.html @@ -0,0 +1,109 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

PluckTwo Class Reference

STK enhanced plucked string model class. +More... +

+#include <PluckTwo.h> +

+

Inheritance diagram for PluckTwo:: +

+ +Instrmnt +Stk +Mandolin + +List of all members. + + + + + + + + + + + + + + + + + + + + + +

Public Methods

PluckTwo (MY_FLOAT lowestFrequency)
 Class constructor, taking the lowest desired playing frequency.

+virtual ~PluckTwo ()
 Class destructor.

+void clear ()
 Reset and clear all internal state.

+virtual void setFrequency (MY_FLOAT frequency)
 Set instrument parameters for a particular frequency.

+void setDetune (MY_FLOAT detune)
 Detune the two strings by the given factor. A value of 1.0 produces unison strings.

+void setFreqAndDetune (MY_FLOAT frequency, MY_FLOAT detune)
 Efficient combined setting of frequency and detuning.

+void setPluckPosition (MY_FLOAT position)
 Set the pluck or "excitation" position along the string (0.0 - 1.0).

void setBaseLoopGain (MY_FLOAT aGain)
 Set the base loop gain. More...

+virtual void noteOff (MY_FLOAT amplitude)
 Stop a note with the given amplitude (speed of decay).

+virtual MY_FLOAT tick ()=0
 Virtual (abstract) tick function is implemented by subclasses.

+

Detailed Description

+STK enhanced plucked string model class. +

+This class implements an enhanced two-string, plucked physical model, a la Jaffe-Smith, Smith, and others. +

+PluckTwo is an abstract class, with no excitation specified. Therefore, it can't be directly instantiated. +

+This is a digital waveguide model, making its use possibly subject to patents held by Stanford University, Yamaha, and others. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Member Function Documentation

+

+ + + + +
+ + + + + + +
+void PluckTwo::setBaseLoopGain ( + +MY_FLOAT aGain ) +
+
+ + + + + +
+   + + +

+Set the base loop gain. +

+The actual loop gain is set according to the frequency. Because of high-frequency loop filter roll-off, higher frequency settings have greater loop gains.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classPlucked-members.html b/doc/html/classPlucked-members.html new file mode 100644 index 0000000..18fbe2c --- /dev/null +++ b/doc/html/classPlucked-members.html @@ -0,0 +1,49 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Plucked Member List

This is the complete list of members for Plucked, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classPlucked.gif b/doc/html/classPlucked.gif new file mode 100644 index 0000000..f89d129 Binary files /dev/null and b/doc/html/classPlucked.gif differ diff --git a/doc/html/classPlucked.html b/doc/html/classPlucked.html new file mode 100644 index 0000000..85ccce0 --- /dev/null +++ b/doc/html/classPlucked.html @@ -0,0 +1,69 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Plucked Class Reference

STK plucked string model class. +More... +

+#include <Plucked.h> +

+

Inheritance diagram for Plucked:: +

+ +Instrmnt +Stk + +List of all members. + + + + + + + + + + + + + + + + + +

Public Methods

Plucked (MY_FLOAT lowestFrequency)
 Class constructor, taking the lowest desired playing frequency.

~Plucked ()
 Class destructor.

+void clear ()
 Reset and clear all internal state.

+virtual void setFrequency (MY_FLOAT frequency)
 Set instrument parameters for a particular frequency.

+void pluck (MY_FLOAT amplitude)
 Pluck the string with the given amplitude using the current frequency.

+virtual void noteOn (MY_FLOAT frequency, MY_FLOAT amplitude)
 Start a note with the given frequency and amplitude.

+virtual void noteOff (MY_FLOAT amplitude)
 Stop a note with the given amplitude (speed of decay).

+virtual MY_FLOAT tick ()
 Compute one output sample.

+

Detailed Description

+STK plucked string model class. +

+This class implements a simple plucked string physical model based on the Karplus-Strong algorithm. +

+This is a digital waveguide model, making its use possibly subject to patents held by Stanford University, Yamaha, and others. There exist at least two patents, assigned to Stanford, bearing the names of Karplus and/or Strong. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classPoleZero-members.html b/doc/html/classPoleZero-members.html new file mode 100644 index 0000000..064b036 --- /dev/null +++ b/doc/html/classPoleZero-members.html @@ -0,0 +1,55 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

PoleZero Member List

This is the complete list of members for PoleZero, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classPoleZero.gif b/doc/html/classPoleZero.gif new file mode 100644 index 0000000..be89c61 Binary files /dev/null and b/doc/html/classPoleZero.gif differ diff --git a/doc/html/classPoleZero.html b/doc/html/classPoleZero.html new file mode 100644 index 0000000..c1edb09 --- /dev/null +++ b/doc/html/classPoleZero.html @@ -0,0 +1,175 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

PoleZero Class Reference

STK one-pole, one-zero filter class. +More... +

+#include <PoleZero.h> +

+

Inheritance diagram for PoleZero:: +

+ +Filter +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Public Methods

PoleZero ()
 Default constructor creates a first-order pass-through filter.

~PoleZero ()
 Class destructor.

+void clear (void)
 Clears the internal states of the filter.

+void setB0 (MY_FLOAT b0)
 Set the b[0] coefficient value.

+void setB1 (MY_FLOAT b1)
 Set the b[1] coefficient value.

+void setA1 (MY_FLOAT a1)
 Set the a[1] coefficient value.

void setAllpass (MY_FLOAT coefficient)
 Set the filter for allpass behavior using coefficient. More...

void setBlockZero (MY_FLOAT thePole=0.99)
 Create a DC blocking filter with the given pole position in the z-plane. More...

void setGain (MY_FLOAT theGain)
 Set the filter gain. More...

+MY_FLOAT getGain (void) const
 Return the current filter gain.

+MY_FLOAT lastOut (void) const
 Return the last computed output value.

+MY_FLOAT tick (MY_FLOAT sample)
 Input one sample to the filter and return one output.

+MY_FLOAT* tick (MY_FLOAT *vector, unsigned int vectorSize)
 Input vectorSize samples to the filter and return an equal number of outputs in vector.

+

Detailed Description

+STK one-pole, one-zero filter class. +

+This protected Filter subclass implements a one-pole, one-zero digital filter. A method is provided for creating an allpass filter with a given coefficient. Another method is provided to create a DC blocking filter. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Member Function Documentation

+

+ + + + +
+ + + + + + +
+void PoleZero::setAllpass ( + +MY_FLOAT coefficient ) +
+
+ + + + + +
+   + + +

+Set the filter for allpass behavior using coefficient. +

+This method uses coefficient to create an allpass filter, which has unity gain at all frequencies. Note that the coefficient magnitude must be less than one to maintain stability.

+

+ + + + +
+ + + + + + +
+void PoleZero::setBlockZero ( + +MY_FLOAT thePole = 0.99 ) +
+
+ + + + + +
+   + + +

+Create a DC blocking filter with the given pole position in the z-plane. +

+This method sets the given pole position, together with a zero at z=1, to create a DC blocking filter. thePole should be close to one to minimize low-frequency attenuation.

+

+ + + + +
+ + + + + + +
+void PoleZero::setGain ( + +MY_FLOAT theGain ) [virtual] +
+
+ + + + + +
+   + + +

+Set the filter gain. +

+The gain is applied at the filter input and does not affect the coefficient values. The default gain value is 1.0. +

+Reimplemented from Filter.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classReedTabl-members.html b/doc/html/classReedTabl-members.html new file mode 100644 index 0000000..43ea104 --- /dev/null +++ b/doc/html/classReedTabl-members.html @@ -0,0 +1,43 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

ReedTabl Member List

This is the complete list of members for ReedTabl, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classReedTabl.gif b/doc/html/classReedTabl.gif new file mode 100644 index 0000000..21f4de1 Binary files /dev/null and b/doc/html/classReedTabl.gif differ diff --git a/doc/html/classReedTabl.html b/doc/html/classReedTabl.html new file mode 100644 index 0000000..796091e --- /dev/null +++ b/doc/html/classReedTabl.html @@ -0,0 +1,156 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

ReedTabl Class Reference

STK reed table class. +More... +

+#include <ReedTabl.h> +

+

Inheritance diagram for ReedTabl:: +

+ +Stk + +List of all members. + + + + + + + + + + + + + + + +

Public Methods

ReedTabl ()
 Default constructor.

~ReedTabl ()
 Class destructor.

void setOffset (MY_FLOAT aValue)
 Set the table offset value. More...

void setSlope (MY_FLOAT aValue)
 Set the table slope value. More...

+MY_FLOAT lastOut () const
 Return the last output value.

MY_FLOAT tick (MY_FLOAT input)
 Return the function value for input. More...

+MY_FLOAT* tick (MY_FLOAT *vector, unsigned int vectorSize)
 Take vectorSize inputs and return the corresponding function values in vector.

+

Detailed Description

+STK reed table class. +

+This class implements a simple one breakpoint, non-linear reed function, as described by Smith (1986). This function is based on a memoryless non-linear spring model of the reed (the reed mass is ignored) which saturates when the reed collides with the mouthpiece facing. +

+See McIntyre, Schumacher, & Woodhouse (1983), Smith (1986), Hirschman, Cook, Scavone, and others for more information. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Member Function Documentation

+

+ + + + +
+ + + + + + +
+void ReedTabl::setOffset ( + +MY_FLOAT aValue ) +
+
+ + + + + +
+   + + +

+Set the table offset value. +

+The table offset roughly corresponds to the size of the initial reed tip opening (a greater offset represents a smaller opening).

+

+ + + + +
+ + + + + + +
+void ReedTabl::setSlope ( + +MY_FLOAT aValue ) +
+
+ + + + + +
+   + + +

+Set the table slope value. +

+The table slope roughly corresponds to the reed stiffness (a greater slope represents a harder reed).

+

+ + + + +
+ + + + + + +
+MY_FLOAT ReedTabl::tick ( + +MY_FLOAT input ) +
+
+ + + + + +
+   + + +

+Return the function value for input. +

+The function input represents the differential pressure across the reeds.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classResonate-members.html b/doc/html/classResonate-members.html new file mode 100644 index 0000000..04cdcdd --- /dev/null +++ b/doc/html/classResonate-members.html @@ -0,0 +1,53 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Resonate Member List

This is the complete list of members for Resonate, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classResonate.gif b/doc/html/classResonate.gif new file mode 100644 index 0000000..483f1d7 Binary files /dev/null and b/doc/html/classResonate.gif differ diff --git a/doc/html/classResonate.html b/doc/html/classResonate.html new file mode 100644 index 0000000..5a9f816 --- /dev/null +++ b/doc/html/classResonate.html @@ -0,0 +1,81 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Resonate Class Reference

STK noise driven formant filter. +More... +

+#include <Resonate.h> +

+

Inheritance diagram for Resonate:: +

+ +Instrmnt +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + + + + + + + +

Public Methods

Resonate ()
 Class constructor.

~Resonate ()
 Class destructor.

+void clear ()
 Reset and clear all internal state.

+void setResonance (MY_FLOAT frequency, MY_FLOAT radius)
 Set the filter for a resonance at the given frequency (Hz) and radius.

+void setNotch (MY_FLOAT frequency, MY_FLOAT radius)
 Set the filter for a notch at the given frequency (Hz) and radius.

+void setEqualGainZeroes ()
 Set the filter zero coefficients for contant resonance gain.

+void keyOn ()
 Initiate the envelope with a key-on event.

+void keyOff ()
 Signal a key-off event to the envelope.

+void noteOn (MY_FLOAT frequency, MY_FLOAT amplitude)
 Start a note with the given frequency and amplitude.

+void noteOff (MY_FLOAT amplitude)
 Stop a note with the given amplitude (speed of decay).

+MY_FLOAT tick ()
 Compute one output sample.

+virtual void controlChange (int number, MY_FLOAT value)
 Perform the control change specified by number and value (0.0 - 128.0).

+

Detailed Description

+STK noise driven formant filter. +

+This instrument contains a noise source, which excites a biquad resonance filter, with volume controlled by an ADSR. +

+Control Change Numbers:

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classReverb-members.html b/doc/html/classReverb-members.html new file mode 100644 index 0000000..b67e70f --- /dev/null +++ b/doc/html/classReverb-members.html @@ -0,0 +1,45 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Reverb Member List

This is the complete list of members for Reverb, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classReverb.gif b/doc/html/classReverb.gif new file mode 100644 index 0000000..df85ece Binary files /dev/null and b/doc/html/classReverb.gif differ diff --git a/doc/html/classReverb.html b/doc/html/classReverb.html new file mode 100644 index 0000000..d8efac1 --- /dev/null +++ b/doc/html/classReverb.html @@ -0,0 +1,72 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Reverb Class Reference

STK abstract reverberator parent class. +More... +

+#include <Reverb.h> +

+

Inheritance diagram for Reverb:: +

+ +Stk +JCRev +NRev +PRCRev + +List of all members. + + + + + + + + + + + + + + + + + + + +

Public Methods

Reverb ()
 Class constructor.

+virtual ~Reverb ()
 Class destructor.

+virtual void clear ()=0
 Reset and clear all internal state.

+void setEffectMix (MY_FLOAT mix)
 Set the mixture of input and "reverberated" levels in the output (0.0 = input only, 1.0 = reverb only).

+MY_FLOAT lastOut () const
 Return the last output value.

+MY_FLOAT lastOutLeft () const
 Return the last left output value.

+MY_FLOAT lastOutRight () const
 Return the last right output value.

+virtual MY_FLOAT tick (MY_FLOAT input)=0
 Abstract tick function ... must be implemented in subclasses.

+virtual MY_FLOAT* tick (MY_FLOAT *vector, unsigned int vectorSize)
 Take vectorSize inputs, compute the same number of outputs and return them in vector.

+

Detailed Description

+STK abstract reverberator parent class. +

+This class provides common functionality for STK reverberator subclasses. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classRhodey-members.html b/doc/html/classRhodey-members.html new file mode 100644 index 0000000..b072021 --- /dev/null +++ b/doc/html/classRhodey-members.html @@ -0,0 +1,59 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Rhodey Member List

This is the complete list of members for Rhodey, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classRhodey.gif b/doc/html/classRhodey.gif new file mode 100644 index 0000000..804454e Binary files /dev/null and b/doc/html/classRhodey.gif differ diff --git a/doc/html/classRhodey.html b/doc/html/classRhodey.html new file mode 100644 index 0000000..1d4848e --- /dev/null +++ b/doc/html/classRhodey.html @@ -0,0 +1,67 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Rhodey Class Reference

STK Fender Rhodes electric piano FM synthesis instrument. +More... +

+#include <Rhodey.h> +

+

Inheritance diagram for Rhodey:: +

+ +FM +Instrmnt +Stk + +List of all members. + + + + + + + + + + + +

Public Methods

Rhodey ()
 Class constructor.

~Rhodey ()
 Class destructor.

+void setFrequency (MY_FLOAT frequency)
 Set instrument parameters for a particular frequency.

+void noteOn (MY_FLOAT frequency, MY_FLOAT amplitude)
 Start a note with the given frequency and amplitude.

+MY_FLOAT tick ()
 Compute one output sample.

+

Detailed Description

+STK Fender Rhodes electric piano FM synthesis instrument. +

+This class implements two simple FM Pairs summed together, also referred to as algorithm 5 of the TX81Z. +

+

    Algorithm 5 is :  4->3--\
+                             + --> Out
+                      2->1--/
+

+Control Change Numbers:

+The basic Chowning/Stanford FM patent expired in 1995, but there exist follow-on patents, mostly assigned to Yamaha. If you are of the type who should worry about this (making money) worry away. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classRtDuplex-members.html b/doc/html/classRtDuplex-members.html new file mode 100644 index 0000000..54186ad --- /dev/null +++ b/doc/html/classRtDuplex-members.html @@ -0,0 +1,45 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

RtDuplex Member List

This is the complete list of members for RtDuplex, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classRtDuplex.gif b/doc/html/classRtDuplex.gif new file mode 100644 index 0000000..6ef2fbd Binary files /dev/null and b/doc/html/classRtDuplex.gif differ diff --git a/doc/html/classRtDuplex.html b/doc/html/classRtDuplex.html new file mode 100644 index 0000000..b3e06a4 --- /dev/null +++ b/doc/html/classRtDuplex.html @@ -0,0 +1,289 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

RtDuplex Class Reference

STK realtime audio input/output class. +More... +

+#include <RtDuplex.h> +

+

Inheritance diagram for RtDuplex:: +

+ +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + +

Public Methods

 RtDuplex (int nChannels=1, MY_FLOAT sampleRate=Stk::sampleRate(), int device=0, int bufferFrames=RT_BUFFER_SIZE, int nBuffers=2)
 Default constructor. More...

~RtDuplex ()
 Class destructor.

void start (void)
 Start the audio input/output stream. More...

void stop (void)
 Stop the audio input/output stream. More...

+MY_FLOAT lastOut (void) const
 Return the average across the last output sample frame.

MY_FLOAT tick (const MY_FLOAT sample)
 Output a single sample to all channels in a sample frame and return the average across one new input sample frame of data. More...

MY_FLOAT* tick (MY_FLOAT *vector, unsigned int vectorSize)
 Output each sample in \vector to all channels per frame and return averaged input sample frames of new data in vector. More...

+const MY_FLOAT* lastFrame (void) const
 Return a pointer to the last output sample frame.

MY_FLOAT* tickFrame (MY_FLOAT *frameVector, unsigned int frames=1)
 Output sample frames from frameVector and return new input frames in frameVector. More...

+

Detailed Description

+STK realtime audio input/output class. +

+This class provides a simplified interface to RtAudio for realtime audio input/output. It is also possible to achieve duplex operation using separate RtWvIn and RtWvOut classes, but this class ensures better input/output syncronization. +

+RtDuplex supports multi-channel data in interleaved format. It is important to distinguish the tick() methods, which output single samples to all channels in a sample frame and return samples produced by averaging across sample frames, from the tickFrame() methods, which take/return pointers to multi-channel sample frames. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Constructor & Destructor Documentation

+

+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + +
+RtDuplex::RtDuplex ( + +int nChannels = 1, +
+MY_FLOAT sampleRate = Stk::sampleRate(), +
+int device = 0, +
+int bufferFrames = RT_BUFFER_SIZE, +
+int nBuffers = 2 ) +
+
+ + + + + +
+   + + +

+Default constructor. +

+The device argument is passed to RtAudio during instantiation. The default value (zero) will select the default device on your system or the first device found meeting the specified parameters. On systems with multiple soundcards/devices, values greater than zero can be specified in accordance with the order that the devices are enumerated by the underlying audio API. The default buffer size of RT_BUFFER_SIZE is defined in Stk.h. An StkError will be thrown if an error occurs duing instantiation.

+


Member Function Documentation

+

+ + + + +
+ + + + + + +
+void RtDuplex::start ( + +void ) +
+
+ + + + + +
+   + + +

+Start the audio input/output stream. +

+The stream is started automatically, if necessary, when a tick() or tickFrame method is called.

+

+ + + + +
+ + + + + + +
+void RtDuplex::stop ( + +void ) +
+
+ + + + + +
+   + + +

+Stop the audio input/output stream. +

+It may be necessary to use this method to avoid audio overflow/underflow problems if you wish to temporarily stop the audio stream.

+

+ + + + +
+ + + + + + +
+MY_FLOAT RtDuplex::tick ( + +const MY_FLOAT sample ) +
+
+ + + + + +
+   + + +

+Output a single sample to all channels in a sample frame and return the average across one new input sample frame of data. +

+An StkError will be thrown if an error occurs during input/output.

+

+ + + + +
+ + + + + + + + + + +
+MY_FLOAT * RtDuplex::tick ( + +MY_FLOAT * vector, +
+unsigned int vectorSize ) +
+
+ + + + + +
+   + + +

+Output each sample in \vector to all channels per frame and return averaged input sample frames of new data in vector. +

+An StkError will be thrown if an error occurs during input/output.

+

+ + + + +
+ + + + + + + + + + +
+MY_FLOAT * RtDuplex::tickFrame ( + +MY_FLOAT * frameVector, +
+unsigned int frames = 1 ) +
+
+ + + + + +
+   + + +

+Output sample frames from frameVector and return new input frames in frameVector. +

+An StkError will be thrown if an error occurs during input/output.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classRtMidi-members.html b/doc/html/classRtMidi-members.html new file mode 100644 index 0000000..e0b0f93 --- /dev/null +++ b/doc/html/classRtMidi-members.html @@ -0,0 +1,45 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

RtMidi Member List

This is the complete list of members for RtMidi, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classRtMidi.gif b/doc/html/classRtMidi.gif new file mode 100644 index 0000000..f4c632c Binary files /dev/null and b/doc/html/classRtMidi.gif differ diff --git a/doc/html/classRtMidi.html b/doc/html/classRtMidi.html new file mode 100644 index 0000000..37c0165 --- /dev/null +++ b/doc/html/classRtMidi.html @@ -0,0 +1,106 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

RtMidi Class Reference

STK realtime MIDI class. +More... +

+#include <RtMidi.h> +

+

Inheritance diagram for RtMidi:: +

+ +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + +

Public Methods

RtMidi (int device=0)
 Default constructor with optional device argument.

~RtMidi ()
 Class destructor.

+void printMessage (void) const
 Print out the current message values.

int nextMessage (void)
 Check for and parse a new MIDI message in the queue, returning its type. More...

+int getType () const
 Return the current message type.

+int getChannel () const
 Return the current message channel value.

+MY_FLOAT getByteTwo () const
 Return the current message byte two value.

+MY_FLOAT getByteThree () const
 Return the current message byte three value.

+MY_FLOAT getDeltaTime () const
 Return the current message delta time value in seconds.

+

Detailed Description

+STK realtime MIDI class. +

+At the moment, this object only handles MIDI input, though MIDI output code can go here when someone decides they need it (and writes it). +

+This object opens a MIDI input device and parses MIDI messages into a MIDI buffer. Time stamp info is converted to a delta-time value. MIDI data is stored as MY_FLOAT to conform with SKINI. System exclusive messages are currently ignored. +

+An optional argument to the constructor can be used to specify a device or card. When no argument is given, a default device is opened. If a device argument fails, a list of available devices is printed to allow selection by the user. +

+This code is based in part on work of Perry Cook (SGI), Paul Leonard (Linux), the RoseGarden team (Linux), and Bill Putnam (Windows). +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Member Function Documentation

+

+ + + + +
+ + + + + + +
+int RtMidi::nextMessage ( + +void ) +
+
+ + + + + +
+   + + +

+Check for and parse a new MIDI message in the queue, returning its type. +

+If a new message is found, the return value is greater than zero.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classRtWvIn-members.html b/doc/html/classRtWvIn-members.html new file mode 100644 index 0000000..5f90d87 --- /dev/null +++ b/doc/html/classRtWvIn-members.html @@ -0,0 +1,61 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

RtWvIn Member List

This is the complete list of members for RtWvIn, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classRtWvIn.gif b/doc/html/classRtWvIn.gif new file mode 100644 index 0000000..ee001e6 Binary files /dev/null and b/doc/html/classRtWvIn.gif differ diff --git a/doc/html/classRtWvIn.html b/doc/html/classRtWvIn.html new file mode 100644 index 0000000..de00255 --- /dev/null +++ b/doc/html/classRtWvIn.html @@ -0,0 +1,331 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

RtWvIn Class Reference

STK realtime audio input class. +More... +

+#include <RtWvIn.h> +

+

Inheritance diagram for RtWvIn:: +

+ +WvIn +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + + + +

Public Methods

 RtWvIn (int nChannels=1, MY_FLOAT sampleRate=Stk::sampleRate(), int device=0, int bufferFrames=RT_BUFFER_SIZE, int nBuffers=2)
 Default constructor. More...

~RtWvIn ()
 Class destructor.

void start (void)
 Start the audio input stream. More...

void stop (void)
 Stop the audio input stream. More...

+MY_FLOAT lastOut (void) const
 Return the average across the last output sample frame.

MY_FLOAT tick (void)
 Read out the average across one sample frame of data. More...

MY_FLOAT* tick (MY_FLOAT *vector, unsigned int vectorSize)
 Read out vectorSize averaged sample frames of data in vector. More...

+const MY_FLOAT* lastFrame (void) const
 Return a pointer to the last output sample frame.

const MY_FLOAT* tickFrame (void)
 Return a pointer to the next sample frame of data. More...

MY_FLOAT* tickFrame (MY_FLOAT *frameVector, unsigned int frames)
 Read out sample frames of data to frameVector. More...

+

Detailed Description

+STK realtime audio input class. +

+This class provides a simplified interface to RtAudio for realtime audio input. It is a protected subclass of WvIn. +

+RtWvIn supports multi-channel data in interleaved format. It is important to distinguish the tick() methods, which return samples produced by averaging across sample frames, from the tickFrame() methods, which return pointers to multi-channel sample frames. For single-channel data, these methods return equivalent values. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Constructor & Destructor Documentation

+

+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + +
+RtWvIn::RtWvIn ( + +int nChannels = 1, +
+MY_FLOAT sampleRate = Stk::sampleRate(), +
+int device = 0, +
+int bufferFrames = RT_BUFFER_SIZE, +
+int nBuffers = 2 ) +
+
+ + + + + +
+   + + +

+Default constructor. +

+The device argument is passed to RtAudio during instantiation. The default value (zero) will select the default device on your system or the first device found meeting the specified parameters. On systems with multiple soundcards/devices, values greater than zero can be specified in accordance with the order that the devices are enumerated by the underlying audio API. The default buffer size of RT_BUFFER_SIZE is defined in Stk.h. An StkError will be thrown if an error occurs duing instantiation.

+


Member Function Documentation

+

+ + + + +
+ + + + + + +
+void RtWvIn::start ( + +void ) +
+
+ + + + + +
+   + + +

+Start the audio input stream. +

+The stream is started automatically, if necessary, when a tick() or tickFrame method is called.

+

+ + + + +
+ + + + + + +
+void RtWvIn::stop ( + +void ) +
+
+ + + + + +
+   + + +

+Stop the audio input stream. +

+It may be necessary to use this method to avoid audio underflow problems if you wish to temporarily stop audio input.

+

+ + + + +
+ + + + + + +
+MY_FLOAT RtWvIn::tick ( + +void ) [virtual] +
+
+ + + + + +
+   + + +

+Read out the average across one sample frame of data. +

+An StkError will be thrown if an error occurs during input. +

+Reimplemented from WvIn.

+

+ + + + +
+ + + + + + + + + + +
+MY_FLOAT * RtWvIn::tick ( + +MY_FLOAT * vector, +
+unsigned int vectorSize ) [virtual] +
+
+ + + + + +
+   + + +

+Read out vectorSize averaged sample frames of data in vector. +

+An StkError will be thrown if an error occurs during input. +

+Reimplemented from WvIn.

+

+ + + + +
+ + + + + + +
+const MY_FLOAT * RtWvIn::tickFrame ( + +void ) [virtual] +
+
+ + + + + +
+   + + +

+Return a pointer to the next sample frame of data. +

+An StkError will be thrown if an error occurs during input. +

+Reimplemented from WvIn.

+

+ + + + +
+ + + + + + + + + + +
+MY_FLOAT * RtWvIn::tickFrame ( + +MY_FLOAT * frameVector, +
+unsigned int frames ) [virtual] +
+
+ + + + + +
+   + + +

+Read out sample frames of data to frameVector. +

+An StkError will be thrown if an error occurs during input. +

+Reimplemented from WvIn.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classRtWvOut-members.html b/doc/html/classRtWvOut-members.html new file mode 100644 index 0000000..8ec416c --- /dev/null +++ b/doc/html/classRtWvOut-members.html @@ -0,0 +1,55 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

RtWvOut Member List

This is the complete list of members for RtWvOut, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classRtWvOut.gif b/doc/html/classRtWvOut.gif new file mode 100644 index 0000000..b8bc142 Binary files /dev/null and b/doc/html/classRtWvOut.gif differ diff --git a/doc/html/classRtWvOut.html b/doc/html/classRtWvOut.html new file mode 100644 index 0000000..9aff07a --- /dev/null +++ b/doc/html/classRtWvOut.html @@ -0,0 +1,296 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

RtWvOut Class Reference

STK realtime audio output class. +More... +

+#include <RtWvOut.h> +

+

Inheritance diagram for RtWvOut:: +

+ +WvOut +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + +

Public Methods

 RtWvOut (unsigned int nChannels=1, MY_FLOAT sampleRate=Stk::sampleRate(), int device=0, int bufferFrames=RT_BUFFER_SIZE, int nBuffers=4)
 Default constructor. More...

~RtWvOut ()
 Class destructor.

void start (void)
 Start the audio output stream. More...

void stop (void)
 Stop the audio output stream. More...

+unsigned long getFrames (void) const
 Return the number of sample frames output.

+MY_FLOAT getTime (void) const
 Return the number of seconds of data output.

void tick (const MY_FLOAT sample)
 Output a single sample to all channels in a sample frame. More...

void tick (const MY_FLOAT *vector, unsigned int vectorSize)
 Output each sample in vector to all channels in vectorSize sample frames. More...

void tickFrame (const MY_FLOAT *frameVector, unsigned int frames=1)
 Output the frameVector of sample frames of the given length. More...

+

Detailed Description

+STK realtime audio output class. +

+This class provides a simplified interface to RtAudio for realtime audio output. It is a protected subclass of WvOut. +

+RtWvOut supports multi-channel data in interleaved format. It is important to distinguish the tick() methods, which output single samples to all channels in a sample frame, from the tickFrame() method, which takes a pointer to multi-channel sample frame data. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Constructor & Destructor Documentation

+

+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + +
+RtWvOut::RtWvOut ( + +unsigned int nChannels = 1, +
+MY_FLOAT sampleRate = Stk::sampleRate(), +
+int device = 0, +
+int bufferFrames = RT_BUFFER_SIZE, +
+int nBuffers = 4 ) +
+
+ + + + + +
+   + + +

+Default constructor. +

+The device argument is passed to RtAudio during instantiation. The default value (zero) will select the default device on your system or the first device found meeting the specified parameters. On systems with multiple soundcards/devices, values greater than zero can be specified in accordance with the order that the devices are enumerated by the underlying audio API. The default buffer size of RT_BUFFER_SIZE is defined in Stk.h. An StkError will be thrown if an error occurs duing instantiation.

+


Member Function Documentation

+

+ + + + +
+ + + + + + +
+void RtWvOut::start ( + +void ) +
+
+ + + + + +
+   + + +

+Start the audio output stream. +

+The stream is started automatically, if necessary, when a tick() or tickFrame method is called.

+

+ + + + +
+ + + + + + +
+void RtWvOut::stop ( + +void ) +
+
+ + + + + +
+   + + +

+Stop the audio output stream. +

+It may be necessary to use this method to avoid undesireable audio buffer cycling if you wish to temporarily stop audio output.

+

+ + + + +
+ + + + + + +
+void RtWvOut::tick ( + +const MY_FLOAT sample ) [virtual] +
+
+ + + + + +
+   + + +

+Output a single sample to all channels in a sample frame. +

+An StkError will be thrown if an error occurs during output. +

+Reimplemented from WvOut.

+

+ + + + +
+ + + + + + + + + + +
+void RtWvOut::tick ( + +const MY_FLOAT * vector, +
+unsigned int vectorSize ) [virtual] +
+
+ + + + + +
+   + + +

+Output each sample in vector to all channels in vectorSize sample frames. +

+An StkError will be thrown if an error occurs during output. +

+Reimplemented from WvOut.

+

+ + + + +
+ + + + + + + + + + +
+void RtWvOut::tickFrame ( + +const MY_FLOAT * frameVector, +
+unsigned int frames = 1 ) [virtual] +
+
+ + + + + +
+   + + +

+Output the frameVector of sample frames of the given length. +

+An StkError will be thrown if an error occurs during output. +

+Reimplemented from WvOut.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classSKINI-members.html b/doc/html/classSKINI-members.html new file mode 100644 index 0000000..eafcf82 --- /dev/null +++ b/doc/html/classSKINI-members.html @@ -0,0 +1,52 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

SKINI Member List

This is the complete list of members for SKINI, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classSKINI.gif b/doc/html/classSKINI.gif new file mode 100644 index 0000000..7e546f2 Binary files /dev/null and b/doc/html/classSKINI.gif differ diff --git a/doc/html/classSKINI.html b/doc/html/classSKINI.html new file mode 100644 index 0000000..58dbcec --- /dev/null +++ b/doc/html/classSKINI.html @@ -0,0 +1,159 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

SKINI Class Reference

STK SKINI parsing class. +More... +

+#include <SKINI.h> +

+

Inheritance diagram for SKINI:: +

+ +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Public Methods

SKINI ()
 Default constructor used for parsing messages received externally.

SKINI (char *fileName)
 Overloaded constructor taking a SKINI formatted scorefile.

~SKINI ()
 Class destructor.

long parseThis (char *aString)
 Attempt to parse the given string, returning the message type. More...

long nextMessage ()
 Parse the next message (if a file is loaded) and return the message type. More...

+long getType () const
 Return the current message type.

+long getChannel () const
 Return the current message channel value.

+MY_FLOAT getDelta () const
 Return the current message delta time value (in seconds).

+MY_FLOAT getByteTwo () const
 Return the current message byte two value.

+MY_FLOAT getByteThree () const
 Return the current message byte three value.

+long getByteTwoInt () const
 Return the current message byte two value (integer).

+long getByteThreeInt () const
 Return the current message byte three value (integer).

+const char* getRemainderString ()
 Return remainder string after parsing.

+const char* getMessageTypeString ()
 Return the message type as a string.

+const char* whatsThisType (long type)
 Return the SKINI type string for the given type value.

+const char* whatsThisController (long number)
 Return the SKINI controller string for the given controller number.

+

Detailed Description

+STK SKINI parsing class. +

+This class parses SKINI formatted text messages. It can be used to parse individual messages or it can be passed an entire file. The file specification is Perry's and his alone, but it's all text so it shouldn't be to hard to figure out. +

+SKINI (Synthesis toolKit Instrument Network Interface) is like MIDI, but allows for floating-point control changes, note numbers, etc. The following example causes a sharp middle C to be played with a velocity of 111.132: +

+

    noteOn  60.01  111.13
+

+

+See also:
+Synthesis toolKit Instrument Network Interface (SKINI) +

+

by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Member Function Documentation

+

+ + + + +
+ + + + + + +
+long SKINI::parseThis ( + +char * aString ) +
+
+ + + + + +
+   + + +

+Attempt to parse the given string, returning the message type. +

+A type value equal to zero indicates an invalid message.

+

+ + + + +
+ + + + + + +
+long SKINI::nextMessage ( + +void ) +
+
+ + + + + +
+   + + +

+Parse the next message (if a file is loaded) and return the message type. +

+A negative value is returned when the file end is reached.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classSampler-members.html b/doc/html/classSampler-members.html new file mode 100644 index 0000000..065c611 --- /dev/null +++ b/doc/html/classSampler-members.html @@ -0,0 +1,50 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Sampler Member List

This is the complete list of members for Sampler, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classSampler.gif b/doc/html/classSampler.gif new file mode 100644 index 0000000..d4c25c3 Binary files /dev/null and b/doc/html/classSampler.gif differ diff --git a/doc/html/classSampler.html b/doc/html/classSampler.html new file mode 100644 index 0000000..381b373 --- /dev/null +++ b/doc/html/classSampler.html @@ -0,0 +1,71 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Sampler Class Reference

STK sampling synthesis abstract base class. +More... +

+#include <Sampler.h> +

+

Inheritance diagram for Sampler:: +

+ +Instrmnt +Stk +Moog + +List of all members. + + + + + + + + + + + + + + + + + + + +

Public Methods

Sampler ()
 Default constructor.

+virtual ~Sampler ()
 Class destructor.

+void clear ()
 Reset and clear all internal state.

+virtual void setFrequency (MY_FLOAT frequency)=0
 Set instrument parameters for a particular frequency.

+void keyOn ()
 Initiate the envelopes with a key-on event and reset the attack waves.

+void keyOff ()
 Signal a key-off event to the envelopes.

+virtual void noteOff (MY_FLOAT amplitude)
 Stop a note with the given amplitude (speed of decay).

+virtual MY_FLOAT tick ()
 Compute one output sample.

+virtual void controlChange (int number, MY_FLOAT value)=0
 Perform the control change specified by number and value (0.0 - 128.0).

+

Detailed Description

+STK sampling synthesis abstract base class. +

+This instrument contains up to 5 attack waves, 5 looped waves, and an ADSR envelope. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classSaxofony-members.html b/doc/html/classSaxofony-members.html new file mode 100644 index 0000000..c06fea9 --- /dev/null +++ b/doc/html/classSaxofony-members.html @@ -0,0 +1,51 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Saxofony Member List

This is the complete list of members for Saxofony, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classSaxofony.gif b/doc/html/classSaxofony.gif new file mode 100644 index 0000000..4ae4537 Binary files /dev/null and b/doc/html/classSaxofony.gif differ diff --git a/doc/html/classSaxofony.html b/doc/html/classSaxofony.html new file mode 100644 index 0000000..89ec0cb --- /dev/null +++ b/doc/html/classSaxofony.html @@ -0,0 +1,80 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Saxofony Class Reference

STK faux conical bore reed instrument class. +More... +

+#include <Saxofony.h> +

+

Inheritance diagram for Saxofony:: +

+ +Instrmnt +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + + + + + +

Public Methods

Saxofony (MY_FLOAT lowestFrequency)
 Class constructor, taking the lowest desired playing frequency.

~Saxofony ()
 Class destructor.

+void clear ()
 Reset and clear all internal state.

+void setFrequency (MY_FLOAT frequency)
 Set instrument parameters for a particular frequency.

+void setBlowPosition (MY_FLOAT aPosition)
 Set the "blowing" position between the air column terminations (0.0 - 1.0).

+void startBlowing (MY_FLOAT amplitude, MY_FLOAT rate)
 Apply breath pressure to instrument with given amplitude and rate of increase.

+void stopBlowing (MY_FLOAT rate)
 Decrease breath pressure with given rate of decrease.

+void noteOn (MY_FLOAT frequency, MY_FLOAT amplitude)
 Start a note with the given frequency and amplitude.

+void noteOff (MY_FLOAT amplitude)
 Stop a note with the given amplitude (speed of decay).

+MY_FLOAT tick ()
 Compute one output sample.

+void controlChange (int number, MY_FLOAT value)
 Perform the control change specified by number and value (0.0 - 128.0).

+

Detailed Description

+STK faux conical bore reed instrument class. +

+This class implements a "hybrid" digital waveguide instrument that can generate a variety of wind-like sounds. It has also been referred to as the "blowed string" model. The waveguide section is essentially that of a string, with one rigid and one lossy termination. The non-linear function is a reed table. The string can be "blown" at any point between the terminations, though just as with strings, it is impossible to excite the system at either end. If the excitation is placed at the string mid-point, the sound is that of a clarinet. At points closer to the "bridge", the sound is closer to that of a saxophone. See Scavone (2002) for more details. +

+This is a digital waveguide model, making its use possibly subject to patents held by Stanford University, Yamaha, and others. +

+Control Change Numbers:

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classShakers-members.html b/doc/html/classShakers-members.html new file mode 100644 index 0000000..604eff9 --- /dev/null +++ b/doc/html/classShakers-members.html @@ -0,0 +1,47 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Shakers Member List

This is the complete list of members for Shakers, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classShakers.gif b/doc/html/classShakers.gif new file mode 100644 index 0000000..96f6a24 Binary files /dev/null and b/doc/html/classShakers.gif differ diff --git a/doc/html/classShakers.html b/doc/html/classShakers.html new file mode 100644 index 0000000..7324f76 --- /dev/null +++ b/doc/html/classShakers.html @@ -0,0 +1,106 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Shakers Class Reference

PhISEM and PhOLIES class. +More... +

+#include <Shakers.h> +

+

Inheritance diagram for Shakers:: +

+ +Instrmnt +Stk + +List of all members. + + + + + + + + + + + + + +

Public Methods

Shakers ()
 Class constructor.

~Shakers ()
 Class destructor.

virtual void noteOn (MY_FLOAT instrument, MY_FLOAT amplitude)
 Start a note with the given instrument and amplitude. More...

+virtual void noteOff (MY_FLOAT amplitude)
 Stop a note with the given amplitude (speed of decay).

+MY_FLOAT tick ()
 Compute one output sample.

+virtual void controlChange (int number, MY_FLOAT value)
 Perform the control change specified by number and value (0.0 - 128.0).

+

Detailed Description

+PhISEM and PhOLIES class. +

+PhISEM (Physically Informed Stochastic Event Modeling) is an algorithmic approach for simulating collisions of multiple independent sound producing objects. This class is a meta-model that can simulate a Maraca, Sekere, Cabasa, Bamboo Wind Chimes, Water Drops, Tambourine, Sleighbells, and a Guiro. +

+PhOLIES (Physically-Oriented Library of Imitated Environmental Sounds) is a similar approach for the synthesis of environmental sounds. This class implements simulations of breaking sticks, crunchy snow (or not), a wrench, sandpaper, and more. +

+Control Change Numbers:

+by Perry R. Cook, 1996 - 1999. +

+


Member Function Documentation

+

+ + + + +
+ + + + + + + + + + +
+void Shakers::noteOn ( + +MY_FLOAT instrument, +
+MY_FLOAT amplitude ) [virtual] +
+
+ + + + + +
+   + + +

+Start a note with the given instrument and amplitude. +

+Use the instrument numbers above, converted to frequency values as if MIDI note numbers, to select a particular instrument. +

+Reimplemented from Instrmnt.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classSimple-members.html b/doc/html/classSimple-members.html new file mode 100644 index 0000000..724f832 --- /dev/null +++ b/doc/html/classSimple-members.html @@ -0,0 +1,50 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Simple Member List

This is the complete list of members for Simple, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classSimple.gif b/doc/html/classSimple.gif new file mode 100644 index 0000000..784e2b0 Binary files /dev/null and b/doc/html/classSimple.gif differ diff --git a/doc/html/classSimple.html b/doc/html/classSimple.html new file mode 100644 index 0000000..497dda3 --- /dev/null +++ b/doc/html/classSimple.html @@ -0,0 +1,75 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Simple Class Reference

STK wavetable/noise instrument. +More... +

+#include <Simple.h> +

+

Inheritance diagram for Simple:: +

+ +Instrmnt +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + + + +

Public Methods

Simple ()
 Class constructor.

+virtual ~Simple ()
 Class destructor.

+void clear ()
 Clear internal states.

+virtual void setFrequency (MY_FLOAT frequency)
 Set instrument parameters for a particular frequency.

+void keyOn ()
 Start envelope toward "on" target.

+void keyOff ()
 Start envelope toward "off" target.

+virtual void noteOn (MY_FLOAT frequency, MY_FLOAT amplitude)
 Start a note with the given frequency and amplitude.

+virtual void noteOff (MY_FLOAT amplitude)
 Stop a note with the given amplitude (speed of decay).

+virtual MY_FLOAT tick ()
 Compute one output sample.

+virtual void controlChange (int number, MY_FLOAT value)
 Perform the control change specified by number and value (0.0 - 128.0).

+

Detailed Description

+STK wavetable/noise instrument. +

+This class combines a looped wave, a noise source, a biquad resonance filter, a one-pole filter, and an ADSR envelope to create some interesting sounds. +

+Control Change Numbers:

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classSitar-members.html b/doc/html/classSitar-members.html new file mode 100644 index 0000000..14f55ac --- /dev/null +++ b/doc/html/classSitar-members.html @@ -0,0 +1,49 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Sitar Member List

This is the complete list of members for Sitar, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classSitar.gif b/doc/html/classSitar.gif new file mode 100644 index 0000000..756ec73 Binary files /dev/null and b/doc/html/classSitar.gif differ diff --git a/doc/html/classSitar.html b/doc/html/classSitar.html new file mode 100644 index 0000000..5cd7b6d --- /dev/null +++ b/doc/html/classSitar.html @@ -0,0 +1,69 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Sitar Class Reference

STK sitar string model class. +More... +

+#include <Sitar.h> +

+

Inheritance diagram for Sitar:: +

+ +Instrmnt +Stk + +List of all members. + + + + + + + + + + + + + + + + + +

Public Methods

Sitar (MY_FLOAT lowestFrequency)
 Class constructor, taking the lowest desired playing frequency.

~Sitar ()
 Class destructor.

+void clear ()
 Reset and clear all internal state.

+void setFrequency (MY_FLOAT frequency)
 Set instrument parameters for a particular frequency.

+void pluck (MY_FLOAT amplitude)
 Pluck the string with the given amplitude using the current frequency.

+void noteOn (MY_FLOAT frequency, MY_FLOAT amplitude)
 Start a note with the given frequency and amplitude.

+void noteOff (MY_FLOAT amplitude)
 Stop a note with the given amplitude (speed of decay).

+MY_FLOAT tick ()
 Compute one output sample.

+

Detailed Description

+STK sitar string model class. +

+This class implements a sitar plucked string physical model based on the Karplus-Strong algorithm. +

+This is a digital waveguide model, making its use possibly subject to patents held by Stanford University, Yamaha, and others. There exist at least two patents, assigned to Stanford, bearing the names of Karplus and/or Strong. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classSocket-members.html b/doc/html/classSocket-members.html new file mode 100644 index 0000000..184534b --- /dev/null +++ b/doc/html/classSocket-members.html @@ -0,0 +1,51 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Socket Member List

This is the complete list of members for Socket, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classSocket.gif b/doc/html/classSocket.gif new file mode 100644 index 0000000..cc50026 Binary files /dev/null and b/doc/html/classSocket.gif differ diff --git a/doc/html/classSocket.html b/doc/html/classSocket.html new file mode 100644 index 0000000..d07cffb --- /dev/null +++ b/doc/html/classSocket.html @@ -0,0 +1,226 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Socket Class Reference

STK TCP socket client/server class. +More... +

+#include <Socket.h> +

+

Inheritance diagram for Socket:: +

+ +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Public Methods

 Socket (int port=2006)
 Default constructor which creates a local socket server on port 2006 (or the specified port number). More...

 Socket (int port, const char *hostname)
 Class constructor which creates a socket client connection to the specified host and port. More...

~Socket ()
 The class destructor closes the socket instance, breaking any existing connections.

int connect (int port, const char *hostname="localhost")
 Connect a socket client to the specified host and port and returns the resulting socket descriptor. More...

+void close (void)
 Close this socket.

+int socket (void) const
 Return the server/client socket descriptor.

+int port (void) const
 Return the server/client port number.

int accept (void)
 If this is a socket server, extract the first pending connection request from the queue and create a new connection, returning the descriptor for the accepted socket. More...

+int writeBuffer (const void *buffer, long bufferSize, int flags=0)
 Write a buffer over the socket connection. Returns the number of bytes written or -1 if an error occurs.

+int readBuffer (void *buffer, long bufferSize, int flags=0)
 Read a buffer from the socket connection, up to length bufferSize. Returns the number of bytes read or -1 if an error occurs.


Static Public Methods

+void setBlocking (int socket, bool enable)
 If enable = false, the socket is set to non-blocking mode. When first created, sockets are by default in blocking mode.

+void close (int socket)
 Close the socket with the given descriptor.

+bool isValid (int socket)
 Returns TRUE is the socket descriptor is valid.

+int writeBuffer (int socket, const void *buffer, long bufferSize, int flags)
 Write a buffer via the specified socket. Returns the number of bytes written or -1 if an error occurs.

+int readBuffer (int socket, void *buffer, long bufferSize, int flags)
 Read a buffer via the specified socket. Returns the number of bytes read or -1 if an error occurs.

+

Detailed Description

+STK TCP socket client/server class. +

+This class provides a uniform cross-platform TCP socket client or socket server interface. Methods are provided for reading or writing data buffers to/from connections. This class also provides a number of static functions for use with external socket descriptors. +

+The user is responsible for checking the values returned by the read/write methods. Values less than or equal to zero indicate a closed or lost connection or the occurence of an error. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Constructor & Destructor Documentation

+

+ + + + +
+ + + + + + +
+Socket::Socket ( + +int port = 2006 ) +
+
+ + + + + +
+   + + +

+Default constructor which creates a local socket server on port 2006 (or the specified port number). +

+An StkError will be thrown if a socket error occurs during instantiation.

+

+ + + + +
+ + + + + + + + + + +
+Socket::Socket ( + +int port, +
+const char * hostname ) +
+
+ + + + + +
+   + + +

+Class constructor which creates a socket client connection to the specified host and port. +

+An StkError will be thrown if a socket error occurs during instantiation.

+


Member Function Documentation

+

+ + + + +
+ + + + + + + + + + +
+int Socket::connect ( + +int port, +
+const char * hostname = "localhost" ) +
+
+ + + + + +
+   + + +

+Connect a socket client to the specified host and port and returns the resulting socket descriptor. +

+This method is valid for socket clients only. If it is called for a socket server, -1 is returned. If the socket client is already connected, that connection is terminated and a new connection is attempted. Server connections are made using the accept() method. An StkError will be thrown if a socket error occurs during instantiation.

+See also:
+accept
+

+ + + + +
+ + + + + + +
+int Socket::accept ( + +void ) +
+
+ + + + + +
+   + + +

+If this is a socket server, extract the first pending connection request from the queue and create a new connection, returning the descriptor for the accepted socket. +

+If no connection requests are pending and the socket has not been set non-blocking, this function will block until a connection is present. If an error occurs or this is a socket client, -1 is returned.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classStifKarp-members.html b/doc/html/classStifKarp-members.html new file mode 100644 index 0000000..b686045 --- /dev/null +++ b/doc/html/classStifKarp-members.html @@ -0,0 +1,52 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

StifKarp Member List

This is the complete list of members for StifKarp, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classStifKarp.gif b/doc/html/classStifKarp.gif new file mode 100644 index 0000000..07ee5a2 Binary files /dev/null and b/doc/html/classStifKarp.gif differ diff --git a/doc/html/classStifKarp.html b/doc/html/classStifKarp.html new file mode 100644 index 0000000..be21326 --- /dev/null +++ b/doc/html/classStifKarp.html @@ -0,0 +1,114 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

StifKarp Class Reference

STK plucked stiff string instrument. +More... +

+#include <StifKarp.h> +

+

Inheritance diagram for StifKarp:: +

+ +Instrmnt +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + + + + + + + +

Public Methods

StifKarp (MY_FLOAT lowestFrequency)
 Class constructor, taking the lowest desired playing frequency.

~StifKarp ()
 Class destructor.

+void clear ()
 Reset and clear all internal state.

+void setFrequency (MY_FLOAT frequency)
 Set instrument parameters for a particular frequency.

+void setStretch (MY_FLOAT stretch)
 Set the stretch "factor" of the string (0.0 - 1.0).

+void setPickupPosition (MY_FLOAT position)
 Set the pluck or "excitation" position along the string (0.0 - 1.0).

void setBaseLoopGain (MY_FLOAT aGain)
 Set the base loop gain. More...

+void pluck (MY_FLOAT amplitude)
 Pluck the string with the given amplitude using the current frequency.

+void noteOn (MY_FLOAT frequency, MY_FLOAT amplitude)
 Start a note with the given frequency and amplitude.

+void noteOff (MY_FLOAT amplitude)
 Stop a note with the given amplitude (speed of decay).

+MY_FLOAT tick ()
 Compute one output sample.

+void controlChange (int number, MY_FLOAT value)
 Perform the control change specified by number and value (0.0 - 128.0).

+

Detailed Description

+STK plucked stiff string instrument. +

+This class implements a simple plucked string algorithm (Karplus Strong) with enhancements (Jaffe-Smith, Smith, and others), including string stiffness and pluck position controls. The stiffness is modeled with allpass filters. +

+This is a digital waveguide model, making its use possibly subject to patents held by Stanford University, Yamaha, and others. +

+Control Change Numbers:

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Member Function Documentation

+

+ + + + +
+ + + + + + +
+void StifKarp::setBaseLoopGain ( + +MY_FLOAT aGain ) +
+
+ + + + + +
+   + + +

+Set the base loop gain. +

+The actual loop gain is set according to the frequency. Because of high-frequency loop filter roll-off, higher frequency settings have greater loop gains.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classStk-members.html b/doc/html/classStk-members.html new file mode 100644 index 0000000..d6b4ef0 --- /dev/null +++ b/doc/html/classStk-members.html @@ -0,0 +1,36 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Stk Member List

This is the complete list of members for Stk, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classStk.gif b/doc/html/classStk.gif new file mode 100644 index 0000000..9005787 Binary files /dev/null and b/doc/html/classStk.gif differ diff --git a/doc/html/classStk.html b/doc/html/classStk.html new file mode 100644 index 0000000..cbac2cc --- /dev/null +++ b/doc/html/classStk.html @@ -0,0 +1,259 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Stk Class Reference

STK base class. +More... +

+#include <Stk.h> +

+

Inheritance diagram for Stk:: +

+ +BowTabl +Chorus +Echo +Envelope +Filter +Instrmnt +JetTabl +Messager +Modulate +Noise +PitShift +ReedTabl +Reverb +RtDuplex +RtMidi +SKINI +Socket +Table +Thread +WvIn +WvOut + +List of all members. + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Static Public Methods

+MY_FLOAT sampleRate (void)
 Static method which returns the current STK sample rate.

void setSampleRate (MY_FLOAT newRate)
 Static method which sets the STK sample rate. More...

+void swap16 (unsigned char *ptr)
 Static method which byte-swaps a 16-bit data type.

+void swap32 (unsigned char *ptr)
 Static method which byte-swaps a 32-bit data type.

+void swap64 (unsigned char *ptr)
 Static method which byte-swaps a 64-bit data type.

+void sleep (unsigned long milliseconds)
 Static cross-platform method to sleep for a number of milliseconds.


Static Public Attributes

const STK_FORMAT STK_SINT8
const STK_FORMAT STK_SINT16
const STK_FORMAT STK_SINT32
const STK_FORMAT STK_FLOAT32
const STK_FORMAT STK_FLOAT64

Protected Methods

Stk (void)
 Default constructor.

+virtual ~Stk (void)
 Class destructor.


Static Protected Methods

+void handleError (const char *message, StkError::TYPE type)
 Function for error reporting and handling.

+

Detailed Description

+STK base class. +

+Nearly all STK classes inherit from this class. The global sample rate can be queried and modified via Stk. In addition, this class provides error handling and byte-swapping functions. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Member Function Documentation

+

+ + + + +
+ + + + + + +
+void Stk::setSampleRate ( + +MY_FLOAT newRate ) [static] +
+
+ + + + + +
+   + + +

+Static method which sets the STK sample rate. +

+The sample rate set using this method is queried by all STK classes which depend on its value. It is initialized to the default SRATE set in Stk.h. Many STK classes use the sample rate during instantiation. Therefore, if you wish to use a rate which is different from the default rate, it is imperative that it be set BEFORE STK objects are instantiated.

+


Member Data Documentation

+

+ + + + +
+ + + + + +
+const STK_FORMAT Stk::STK_SINT8 [static] +
+
+ + + + + +
+   + + +

+-128 to +127

+

+ + + + +
+ + + + + +
+const STK_FORMAT Stk::STK_SINT16 [static] +
+
+ + + + + +
+   + + +

+-32768 to +32767

+

+ + + + +
+ + + + + +
+const STK_FORMAT Stk::STK_SINT32 [static] +
+
+ + + + + +
+   + + +

+-2147483648 to +2147483647.

+

+ + + + +
+ + + + + +
+const STK_FORMAT Stk::STK_FLOAT32 [static] +
+
+ + + + + +
+   + + +

+Normalized between plus/minus 1.0.

+

+ + + + +
+ + + + + +
+const STK_FORMAT Stk::STK_FLOAT64 [static] +
+
+ + + + + +
+   + + +

+Normalized between plus/minus 1.0.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classStkError-members.html b/doc/html/classStkError-members.html new file mode 100644 index 0000000..0567317 --- /dev/null +++ b/doc/html/classStkError-members.html @@ -0,0 +1,27 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

StkError Member List

This is the complete list of members for StkError, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classStkError.html b/doc/html/classStkError.html new file mode 100644 index 0000000..be54c99 --- /dev/null +++ b/doc/html/classStkError.html @@ -0,0 +1,50 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

StkError Class Reference

STK error handling class. +More... +

+#include <Stk.h> +

+List of all members. + + + + + + + + + + + +

Public Methods

StkError (const char *p, TYPE tipe=StkError::UNSPECIFIED)
 The constructor.

+virtual ~StkError (void)
 The destructor.

+virtual void printMessage (void)
 Prints "thrown" error message to stdout.

+virtual const TYPE& getType (void)
 Returns the "thrown" error message TYPE.

+virtual const char* getMessage (void) const
 Returns the "thrown" error message string.

+


Detailed Description

+STK error handling class. +

+This is a fairly abstract exception handling class. There could be sub-classes to take care of more specific error conditions ... or not. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classSubNoise-members.html b/doc/html/classSubNoise-members.html new file mode 100644 index 0000000..5a88c8c --- /dev/null +++ b/doc/html/classSubNoise-members.html @@ -0,0 +1,45 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

SubNoise Member List

This is the complete list of members for SubNoise, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classSubNoise.gif b/doc/html/classSubNoise.gif new file mode 100644 index 0000000..51121cf Binary files /dev/null and b/doc/html/classSubNoise.gif differ diff --git a/doc/html/classSubNoise.html b/doc/html/classSubNoise.html new file mode 100644 index 0000000..a32ac24 --- /dev/null +++ b/doc/html/classSubNoise.html @@ -0,0 +1,58 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

SubNoise Class Reference

STK sub-sampled noise generator. +More... +

+#include <SubNoise.h> +

+

Inheritance diagram for SubNoise:: +

+ +Noise +Stk + +List of all members. + + + + + + + + + + + +

Public Methods

SubNoise (int subRate=16)
 Default constructor sets sub-sample rate to 16.

~SubNoise ()
 Class destructor.

+int subRate (void) const
 Return the current sub-sampling rate.

+void setRate (int subRate)
 Set the sub-sampling rate.

+MY_FLOAT tick ()
 Return a sub-sampled random number between -1.0 and 1.0.

+

Detailed Description

+STK sub-sampled noise generator. +

+Generates a new random number every "rate" ticks using the C rand() function. The quality of the rand() function varies from one OS to another. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classTable-members.html b/doc/html/classTable-members.html new file mode 100644 index 0000000..2468137 --- /dev/null +++ b/doc/html/classTable-members.html @@ -0,0 +1,42 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Table Member List

This is the complete list of members for Table, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classTable.gif b/doc/html/classTable.gif new file mode 100644 index 0000000..14b49d6 Binary files /dev/null and b/doc/html/classTable.gif differ diff --git a/doc/html/classTable.html b/doc/html/classTable.html new file mode 100644 index 0000000..a809a9f --- /dev/null +++ b/doc/html/classTable.html @@ -0,0 +1,93 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Table Class Reference

STK table lookup class. +More... +

+#include <Table.h> +

+

Inheritance diagram for Table:: +

+ +Stk + +List of all members. + + + + + + + + + + + + + +

Public Methods

Table (char *fileName)
 Constructor loads the data from fileName.

~Table ()
 Class destructor.

+long getLength () const
 Return the number of elements in the table.

+MY_FLOAT lastOut () const
 Return the last output value.

MY_FLOAT tick (MY_FLOAT index)
 Return the table value at position index. More...

+MY_FLOAT* tick (MY_FLOAT *vector, unsigned int vectorSize)
 Take vectorSize index positions and return the corresponding table values in vector.

+

Detailed Description

+STK table lookup class. +

+This class loads a table of floating-point doubles, which are assumed to be in big-endian format. Linear interpolation is performed for fractional lookup indexes. +

+An StkError will be thrown if the table file is not found. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Member Function Documentation

+

+ + + + +
+ + + + + + +
+MY_FLOAT Table::tick ( + +MY_FLOAT index ) +
+
+ + + + + +
+   + + +

+Return the table value at position index. +

+Linear interpolation is performed if index is fractional.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classTcpWvIn-members.html b/doc/html/classTcpWvIn-members.html new file mode 100644 index 0000000..361607d --- /dev/null +++ b/doc/html/classTcpWvIn-members.html @@ -0,0 +1,61 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

TcpWvIn Member List

This is the complete list of members for TcpWvIn, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classTcpWvIn.gif b/doc/html/classTcpWvIn.gif new file mode 100644 index 0000000..0a27d18 Binary files /dev/null and b/doc/html/classTcpWvIn.gif differ diff --git a/doc/html/classTcpWvIn.html b/doc/html/classTcpWvIn.html new file mode 100644 index 0000000..eb2a451 --- /dev/null +++ b/doc/html/classTcpWvIn.html @@ -0,0 +1,175 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

TcpWvIn Class Reference

STK internet streaming input class. +More... +

+#include <TcpWvIn.h> +

+

Inheritance diagram for TcpWvIn:: +

+ +WvIn +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + + + +

Public Methods

 TcpWvIn (int port=2006)
 Default constructor starts a socket server. If not specified, the server is associated with port 2006. More...

~TcpWvIn ()
 Class destructor.

void listen (unsigned int nChannels=1, Stk::STK_FORMAT format=STK_SINT16)
 Listen for a (new) connection with specified data channels and format. More...

bool isConnected (void)
 Returns TRUE is an input connection exists or input data remains in the queue. More...

+MY_FLOAT lastOut (void) const
 Return the average across the last output sample frame.

+MY_FLOAT tick (void)
 Read out the average across one sample frame of data.

+MY_FLOAT* tick (MY_FLOAT *vector, unsigned int vectorSize)
 Read out vectorSize averaged sample frames of data in vector.

+const MY_FLOAT* lastFrame (void) const
 Return a pointer to the last output sample frame.

+const MY_FLOAT* tickFrame (void)
 Return a pointer to the next sample frame of data.

+MY_FLOAT* tickFrame (MY_FLOAT *frameVector, unsigned int frames)
 Read out sample frames of data to frameVector.

+

Detailed Description

+STK internet streaming input class. +

+This protected Wvin subclass can read streamed data over a network via a TCP socket connection. The data is assumed in big-endian, or network, byte order. +

+TcpWvIn supports multi-channel data in interleaved format. It is important to distinguish the tick() methods, which return samples produced by averaging across sample frames, from the tickFrame() methods, which return pointers to multi-channel sample frames. For single-channel data, these methods return equivalent values. +

+This class starts a socket server, which waits for a single remote connection. The default data type for the incoming stream is signed 16-bit integers, though any of the defined STK_FORMATs are permissible. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Constructor & Destructor Documentation

+

+ + + + +
+ + + + + + +
+TcpWvIn::TcpWvIn ( + +int port = 2006 ) +
+
+ + + + + +
+   + + +

+Default constructor starts a socket server. If not specified, the server is associated with port 2006. +

+An StkError will be thrown if an error occurs while initializing the input thread or starting the socket server.

+


Member Function Documentation

+

+ + + + +
+ + + + + + + + + + +
+void TcpWvIn::listen ( + +unsigned int nChannels = 1, +
+Stk::STK_FORMAT format = STK_SINT16 ) +
+
+ + + + + +
+   + + +

+Listen for a (new) connection with specified data channels and format. +

+An StkError will be thrown a socket error or an invalid function argument.

+

+ + + + +
+ + + + + + +
+bool TcpWvIn::isConnected ( + +void ) +
+
+ + + + + +
+   + + +

+Returns TRUE is an input connection exists or input data remains in the queue. +

+This method will not return FALSE after an input connection has been closed until all buffered input data has been read out.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classTcpWvOut-members.html b/doc/html/classTcpWvOut-members.html new file mode 100644 index 0000000..376c6d3 --- /dev/null +++ b/doc/html/classTcpWvOut-members.html @@ -0,0 +1,56 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

TcpWvOut Member List

This is the complete list of members for TcpWvOut, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classTcpWvOut.gif b/doc/html/classTcpWvOut.gif new file mode 100644 index 0000000..359e464 Binary files /dev/null and b/doc/html/classTcpWvOut.gif differ diff --git a/doc/html/classTcpWvOut.html b/doc/html/classTcpWvOut.html new file mode 100644 index 0000000..78990fb --- /dev/null +++ b/doc/html/classTcpWvOut.html @@ -0,0 +1,283 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

TcpWvOut Class Reference

STK internet streaming output class. +More... +

+#include <TcpWvOut.h> +

+

Inheritance diagram for TcpWvOut:: +

+ +WvOut +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + + + +

Public Methods

TcpWvOut ()
 Default constructor ... the socket is not instantiated.

 TcpWvOut (int port, const char *hostname="localhost", unsigned int nChannels=1, Stk::STK_FORMAT format=STK_SINT16)
 Overloaded constructor which opens a network connection during instantiation. More...

~TcpWvOut ()
 Class destructor.

void connect (int port, const char *hostname="localhost", unsigned int nChannels=1, Stk::STK_FORMAT format=STK_SINT16)
 Connect to the specified host and port and prepare to stream nChannels of data in the given data format. More...

+void disconnect (void)
 If a connection is open, write out remaining samples in the queue and then disconnect.

+unsigned long getFrames (void) const
 Return the number of sample frames output.

+MY_FLOAT getTime (void) const
 Return the number of seconds of data output.

void tick (MY_FLOAT sample)
 Output a single sample to all channels in a sample frame. More...

void tick (const MY_FLOAT *vector, unsigned int vectorSize)
 Output each sample in vector to all channels in vectorSize sample frames. More...

void tickFrame (const MY_FLOAT *frameVector, unsigned int frames=1)
 Output the frameVector of sample frames of the given length. More...

+

Detailed Description

+STK internet streaming output class. +

+This protected WvOut subclass can stream data over a network via a TCP socket connection. The data is converted to big-endian byte order, if necessary, before being transmitted. +

+TcpWvOut supports multi-channel data in interleaved format. It is important to distinguish the tick() methods, which output single samples to all channels in a sample frame, from the tickFrame() method, which takes a pointer to multi-channel sample frame data. +

+This class connects to a socket server, the port and IP address of which must be specified as constructor arguments. The default data type is signed 16-bit integers but any of the defined STK_FORMATs are permissible. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Constructor & Destructor Documentation

+

+ + + + +
+ + + + + + + + + + + + + + + + + + +
+TcpWvOut::TcpWvOut ( + +int port, +
+const char * hostname = "localhost", +
+unsigned int nChannels = 1, +
+Stk::STK_FORMAT format = STK_SINT16 ) +
+
+ + + + + +
+   + + +

+Overloaded constructor which opens a network connection during instantiation. +

+An StkError is thrown if a socket error occurs or an invalid argument is specified.

+


Member Function Documentation

+

+ + + + +
+ + + + + + + + + + + + + + + + + + +
+void TcpWvOut::connect ( + +int port, +
+const char * hostname = "localhost", +
+unsigned int nChannels = 1, +
+Stk::STK_FORMAT format = STK_SINT16 ) +
+
+ + + + + +
+   + + +

+Connect to the specified host and port and prepare to stream nChannels of data in the given data format. +

+An StkError is thrown if a socket error occurs or an invalid argument is specified.

+

+ + + + +
+ + + + + + +
+void TcpWvOut::tick ( + +MY_FLOAT sample ) [virtual] +
+
+ + + + + +
+   + + +

+Output a single sample to all channels in a sample frame. +

+An StkError is thrown if a socket write error occurs. +

+Reimplemented from WvOut.

+

+ + + + +
+ + + + + + + + + + +
+void TcpWvOut::tick ( + +const MY_FLOAT * vector, +
+unsigned int vectorSize ) [virtual] +
+
+ + + + + +
+   + + +

+Output each sample in vector to all channels in vectorSize sample frames. +

+An StkError is thrown if a socket write error occurs. +

+Reimplemented from WvOut.

+

+ + + + +
+ + + + + + + + + + +
+void TcpWvOut::tickFrame ( + +const MY_FLOAT * frameVector, +
+unsigned int frames = 1 ) [virtual] +
+
+ + + + + +
+   + + +

+Output the frameVector of sample frames of the given length. +

+An StkError is thrown if a socket write error occurs. +

+Reimplemented from WvOut.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classThread-members.html b/doc/html/classThread-members.html new file mode 100644 index 0000000..54631c1 --- /dev/null +++ b/doc/html/classThread-members.html @@ -0,0 +1,41 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Thread Member List

This is the complete list of members for Thread, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classThread.gif b/doc/html/classThread.gif new file mode 100644 index 0000000..980980d Binary files /dev/null and b/doc/html/classThread.gif differ diff --git a/doc/html/classThread.html b/doc/html/classThread.html new file mode 100644 index 0000000..f173139 --- /dev/null +++ b/doc/html/classThread.html @@ -0,0 +1,125 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Thread Class Reference

STK thread class. +More... +

+#include <Thread.h> +

+

Inheritance diagram for Thread:: +

+ +Stk + +List of all members. + + + + + + + + + + + + +

Public Methods

Thread ()
 Default constructor.

~Thread ()
 The class destructor waits indefinitely for the thread to end before returning.

bool start (THREAD_FUNCTION routine, void *ptr=NULL)
 Begin execution of the thread routine. Upon success, TRUE is returned. More...

bool wait (long milliseconds=-1)
 Wait the specified number of milliseconds for the thread to terminate. Return TRUE on success. More...


Static Public Methods

+void test (void)
 Test for a thread cancellation request.

+

Detailed Description

+STK thread class. +

+This class provides a uniform interface for cross-platform threads. On unix systems, the pthread library is used. Under Windows, the C runtime threadex functions are used. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Member Function Documentation

+

+ + + + +
+ + + + + + + + + + +
+bool Thread::start ( + +THREAD_FUNCTION routine, +
+void * ptr = NULL ) +
+
+ + + + + +
+   + + +

+Begin execution of the thread routine. Upon success, TRUE is returned. +

+The thread routine can be passed an argument via ptr. If the thread cannot be created, the return value is FALSE.

+

+ + + + +
+ + + + + + +
+bool Thread::wait ( + +long milliseconds = -1 ) +
+
+ + + + + +
+   + + +

+Wait the specified number of milliseconds for the thread to terminate. Return TRUE on success. +

+If the specified time value is negative, the function will block indefinitely. Otherwise, the function will block up to a maximum of the specified time. A return value of FALSE indicates the thread did not terminate within the specified time limit.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classTubeBell-members.html b/doc/html/classTubeBell-members.html new file mode 100644 index 0000000..89e917b --- /dev/null +++ b/doc/html/classTubeBell-members.html @@ -0,0 +1,59 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

TubeBell Member List

This is the complete list of members for TubeBell, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classTubeBell.gif b/doc/html/classTubeBell.gif new file mode 100644 index 0000000..86bee5b Binary files /dev/null and b/doc/html/classTubeBell.gif differ diff --git a/doc/html/classTubeBell.html b/doc/html/classTubeBell.html new file mode 100644 index 0000000..15fe839 --- /dev/null +++ b/doc/html/classTubeBell.html @@ -0,0 +1,64 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

TubeBell Class Reference

STK tubular bell (orchestral chime) FM synthesis instrument. +More... +

+#include <TubeBell.h> +

+

Inheritance diagram for TubeBell:: +

+ +FM +Instrmnt +Stk + +List of all members. + + + + + + + + + +

Public Methods

TubeBell ()
 Class constructor.

~TubeBell ()
 Class destructor.

+void noteOn (MY_FLOAT frequency, MY_FLOAT amplitude)
 Start a note with the given frequency and amplitude.

+MY_FLOAT tick ()
 Compute one output sample.

+

Detailed Description

+STK tubular bell (orchestral chime) FM synthesis instrument. +

+This class implements two simple FM Pairs summed together, also referred to as algorithm 5 of the TX81Z. +

+

    Algorithm 5 is :  4->3--\
+                             + --> Out
+                      2->1--/
+

+Control Change Numbers:

+The basic Chowning/Stanford FM patent expired in 1995, but there exist follow-on patents, mostly assigned to Yamaha. If you are of the type who should worry about this (making money) worry away. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classTwoPole-members.html b/doc/html/classTwoPole-members.html new file mode 100644 index 0000000..e6b8f01 --- /dev/null +++ b/doc/html/classTwoPole-members.html @@ -0,0 +1,54 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

TwoPole Member List

This is the complete list of members for TwoPole, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classTwoPole.gif b/doc/html/classTwoPole.gif new file mode 100644 index 0000000..a9f898a Binary files /dev/null and b/doc/html/classTwoPole.gif differ diff --git a/doc/html/classTwoPole.html b/doc/html/classTwoPole.html new file mode 100644 index 0000000..128b4f9 --- /dev/null +++ b/doc/html/classTwoPole.html @@ -0,0 +1,156 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

TwoPole Class Reference

STK two-pole filter class. +More... +

+#include <TwoPole.h> +

+

Inheritance diagram for TwoPole:: +

+ +Filter +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + + + + + + + +

Public Methods

TwoPole ()
 Default constructor creates a second-order pass-through filter.

~TwoPole ()
 Class destructor.

+void clear (void)
 Clears the internal states of the filter.

+void setB0 (MY_FLOAT b0)
 Set the b[0] coefficient value.

+void setA1 (MY_FLOAT a1)
 Set the a[1] coefficient value.

+void setA2 (MY_FLOAT a2)
 Set the a[2] coefficient value.

void setResonance (MY_FLOAT frequency, MY_FLOAT radius, bool normalize=FALSE)
 Sets the filter coefficients for a resonance at frequency (in Hz). More...

void setGain (MY_FLOAT theGain)
 Set the filter gain. More...

+MY_FLOAT getGain (void) const
 Return the current filter gain.

+MY_FLOAT lastOut (void) const
 Return the last computed output value.

+MY_FLOAT tick (MY_FLOAT sample)
 Input one sample to the filter and return one output.

+MY_FLOAT* tick (MY_FLOAT *vector, unsigned int vectorSize)
 Input vectorSize samples to the filter and return an equal number of outputs in vector.

+

Detailed Description

+STK two-pole filter class. +

+This protected Filter subclass implements a two-pole digital filter. A method is provided for creating a resonance in the frequency response while maintaining a nearly constant filter gain. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Member Function Documentation

+

+ + + + +
+ + + + + + + + + + + + + + +
+void TwoPole::setResonance ( + +MY_FLOAT frequency, +
+MY_FLOAT radius, +
+bool normalize = FALSE ) +
+
+ + + + + +
+   + + +

+Sets the filter coefficients for a resonance at frequency (in Hz). +

+This method determines the filter coefficients corresponding to two complex-conjugate poles with the given frequency (in Hz) and radius from the z-plane origin. If normalize is true, the coefficients are then normalized to produce unity gain at frequency (the actual maximum filter gain tends to be slightly greater than unity when radius is not close to one). The resulting filter frequency response has a resonance at the given frequency. The closer the poles are to the unit-circle (radius close to one), the narrower the resulting resonance width. An unstable filter will result for radius >= 1.0. For a better resonance filter, use a BiQuad filter.

+See also:
+BiQuad filter class
+

+ + + + +
+ + + + + + +
+void TwoPole::setGain ( + +MY_FLOAT theGain ) [virtual] +
+
+ + + + + +
+   + + +

+Set the filter gain. +

+The gain is applied at the filter input and does not affect the coefficient values. The default gain value is 1.0. +

+Reimplemented from Filter.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classTwoZero-members.html b/doc/html/classTwoZero-members.html new file mode 100644 index 0000000..4402c99 --- /dev/null +++ b/doc/html/classTwoZero-members.html @@ -0,0 +1,54 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

TwoZero Member List

This is the complete list of members for TwoZero, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classTwoZero.gif b/doc/html/classTwoZero.gif new file mode 100644 index 0000000..a811b1f Binary files /dev/null and b/doc/html/classTwoZero.gif differ diff --git a/doc/html/classTwoZero.html b/doc/html/classTwoZero.html new file mode 100644 index 0000000..838941c --- /dev/null +++ b/doc/html/classTwoZero.html @@ -0,0 +1,148 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

TwoZero Class Reference

STK two-zero filter class. +More... +

+#include <TwoZero.h> +

+

Inheritance diagram for TwoZero:: +

+ +Filter +Stk + +List of all members. + + + + + + + + + + + + + + + + + + + + + + + + + +

Public Methods

TwoZero ()
 Default constructor creates a second-order pass-through filter.

~TwoZero ()
 Class destructor.

+void clear (void)
 Clears the internal states of the filter.

+void setB0 (MY_FLOAT b0)
 Set the b[0] coefficient value.

+void setB1 (MY_FLOAT b1)
 Set the b[1] coefficient value.

+void setB2 (MY_FLOAT b2)
 Set the b[2] coefficient value.

void setNotch (MY_FLOAT frequency, MY_FLOAT radius)
 Sets the filter coefficients for a "notch" at frequency (in Hz). More...

void setGain (MY_FLOAT theGain)
 Set the filter gain. More...

+MY_FLOAT getGain (void) const
 Return the current filter gain.

+MY_FLOAT lastOut (void) const
 Return the last computed output value.

+MY_FLOAT tick (MY_FLOAT sample)
 Input one sample to the filter and return one output.

+MY_FLOAT* tick (MY_FLOAT *vector, unsigned int vectorSize)
 Input vectorSize samples to the filter and return an equal number of outputs in vector.

+

Detailed Description

+STK two-zero filter class. +

+This protected Filter subclass implements a two-zero digital filter. A method is provided for creating a "notch" in the frequency response while maintaining a constant filter gain. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Member Function Documentation

+

+ + + + +
+ + + + + + + + + + +
+void TwoZero::setNotch ( + +MY_FLOAT frequency, +
+MY_FLOAT radius ) +
+
+ + + + + +
+   + + +

+Sets the filter coefficients for a "notch" at frequency (in Hz). +

+This method determines the filter coefficients corresponding to two complex-conjugate zeros with the given frequency (in Hz) and radius from the z-plane origin. The coefficients are then normalized to produce a maximum filter gain of one (independent of the filter gain parameter). The resulting filter frequency response has a "notch" or anti-resonance at the given frequency. The closer the zeros are to the unit-circle (radius close to or equal to one), the narrower the resulting notch width.

+

+ + + + +
+ + + + + + +
+void TwoZero::setGain ( + +MY_FLOAT theGain ) [virtual] +
+
+ + + + + +
+   + + +

+Set the filter gain. +

+The gain is applied at the filter input and does not affect the coefficient values. The default gain value is 1.0. +

+Reimplemented from Filter.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classWaveLoop-members.html b/doc/html/classWaveLoop-members.html new file mode 100644 index 0000000..22370d7 --- /dev/null +++ b/doc/html/classWaveLoop-members.html @@ -0,0 +1,62 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

WaveLoop Member List

This is the complete list of members for WaveLoop, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classWaveLoop.gif b/doc/html/classWaveLoop.gif new file mode 100644 index 0000000..cd3f161 Binary files /dev/null and b/doc/html/classWaveLoop.gif differ diff --git a/doc/html/classWaveLoop.html b/doc/html/classWaveLoop.html new file mode 100644 index 0000000..6f702c2 --- /dev/null +++ b/doc/html/classWaveLoop.html @@ -0,0 +1,157 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

WaveLoop Class Reference

STK waveform oscillator class. +More... +

+#include <WaveLoop.h> +

+

Inheritance diagram for WaveLoop:: +

+ +WvIn +Stk + +List of all members. + + + + + + + + + + + + + + + +

Public Methods

WaveLoop (const char *fileName, bool raw=FALSE)
 Class constructor.

+virtual ~WaveLoop ()
 Class destructor.

void setFrequency (MY_FLOAT aFrequency)
 Set the data interpolation rate based on a looping frequency. More...

+void addTime (MY_FLOAT aTime)
 Increment the read pointer by aTime samples, modulo file size.

void addPhase (MY_FLOAT anAngle)
 Increment current read pointer by anAngle, relative to a looping frequency. More...

void addPhaseOffset (MY_FLOAT anAngle)
 Add a phase offset to the current read pointer. More...

+const MY_FLOAT* tickFrame (void)
 Return a pointer to the next sample frame of data.

+

Detailed Description

+STK waveform oscillator class. +

+This class inherits from WvIn and provides audio file looping functionality. +

+WaveLoop supports multi-channel data in interleaved format. It is important to distinguish the tick() methods, which return samples produced by averaging across sample frames, from the tickFrame() methods, which return pointers to multi-channel sample frames. For single-channel data, these methods return equivalent values. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Member Function Documentation

+

+ + + + +
+ + + + + + +
+void WaveLoop::setFrequency ( + +MY_FLOAT aFrequency ) +
+
+ + + + + +
+   + + +

+Set the data interpolation rate based on a looping frequency. +

+This function determines the interpolation rate based on the file size and the current Stk::sampleRate. The aFrequency value corresponds to file cycles per second. The frequency can be negative, in which case the loop is read in reverse order.

+

+ + + + +
+ + + + + + +
+void WaveLoop::addPhase ( + +MY_FLOAT anAngle ) +
+
+ + + + + +
+   + + +

+Increment current read pointer by anAngle, relative to a looping frequency. +

+This function increments the read pointer based on the file size and the current Stk::sampleRate. The anAngle value is a multiple of file size.

+

+ + + + +
+ + + + + + +
+void WaveLoop::addPhaseOffset ( + +MY_FLOAT anAngle ) +
+
+ + + + + +
+   + + +

+Add a phase offset to the current read pointer. +

+This function determines a time offset based on the file size and the current Stk::sampleRate. The anAngle value is a multiple of file size.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classWurley-members.html b/doc/html/classWurley-members.html new file mode 100644 index 0000000..5670fd3 --- /dev/null +++ b/doc/html/classWurley-members.html @@ -0,0 +1,59 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Wurley Member List

This is the complete list of members for Wurley, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classWurley.gif b/doc/html/classWurley.gif new file mode 100644 index 0000000..b39d978 Binary files /dev/null and b/doc/html/classWurley.gif differ diff --git a/doc/html/classWurley.html b/doc/html/classWurley.html new file mode 100644 index 0000000..392cd2d --- /dev/null +++ b/doc/html/classWurley.html @@ -0,0 +1,67 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Wurley Class Reference

STK Wurlitzer electric piano FM synthesis instrument. +More... +

+#include <Wurley.h> +

+

Inheritance diagram for Wurley:: +

+ +FM +Instrmnt +Stk + +List of all members. + + + + + + + + + + + +

Public Methods

Wurley ()
 Class constructor.

~Wurley ()
 Class destructor.

+void setFrequency (MY_FLOAT frequency)
 Set instrument parameters for a particular frequency.

+void noteOn (MY_FLOAT frequency, MY_FLOAT amplitude)
 Start a note with the given frequency and amplitude.

+MY_FLOAT tick ()
 Compute one output sample.

+

Detailed Description

+STK Wurlitzer electric piano FM synthesis instrument. +

+This class implements two simple FM Pairs summed together, also referred to as algorithm 5 of the TX81Z. +

+

    Algorithm 5 is :  4->3--\
+                             + --> Out
+                      2->1--/
+

+Control Change Numbers:

+The basic Chowning/Stanford FM patent expired in 1995, but there exist follow-on patents, mostly assigned to Yamaha. If you are of the type who should worry about this (making money) worry away. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classWvIn-members.html b/doc/html/classWvIn-members.html new file mode 100644 index 0000000..1fa6eca --- /dev/null +++ b/doc/html/classWvIn-members.html @@ -0,0 +1,57 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

WvIn Member List

This is the complete list of members for WvIn, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classWvIn.gif b/doc/html/classWvIn.gif new file mode 100644 index 0000000..591de1e Binary files /dev/null and b/doc/html/classWvIn.gif differ diff --git a/doc/html/classWvIn.html b/doc/html/classWvIn.html new file mode 100644 index 0000000..989689a --- /dev/null +++ b/doc/html/classWvIn.html @@ -0,0 +1,480 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

WvIn Class Reference

STK audio data input base class. +More... +

+#include <WvIn.h> +

+

Inheritance diagram for WvIn:: +

+ +Stk +RtWvIn +TcpWvIn +WaveLoop + +List of all members. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Public Methods

WvIn ()
 Default constructor.

 WvIn (const char *fileName, bool raw=FALSE)
 Overloaded constructor for file input. More...

+virtual ~WvIn ()
 Class destructor.

void openFile (const char *fileName, bool raw=FALSE)
 Open the specified file and load its data. More...

+void closeFile (void)
 If a file is open, close it.

+void reset (void)
 Clear outputs and reset time (file pointer) to zero.

void normalize (void)
 Normalize data to a maximum of +-1.0. More...

void normalize (MY_FLOAT peak)
 Normalize data to a maximum of +-peak. More...

+unsigned long getSize (void) const
 Return the file size in sample frames.

+unsigned int getChannels (void) const
 Return the number of audio channels in the file.

MY_FLOAT getFileRate (void) const
 Return the input file sample rate in Hz (not the data read rate). More...

+bool isFinished (void) const
 Query whether reading is complete.

void setRate (MY_FLOAT aRate)
 Set the data read rate in samples. The rate can be negative. More...

+virtual void addTime (MY_FLOAT aTime)
 Increment the read pointer by aTime samples.

void setInterpolate (bool doInterpolate)
 Turn linear interpolation on/off. More...

+virtual MY_FLOAT lastOut (void) const
 Return the average across the last output sample frame.

virtual MY_FLOAT tick (void)
 Read out the average across one sample frame of data. More...

virtual MY_FLOAT* tick (MY_FLOAT *vector, unsigned int vectorSize)
 Read out vectorSize averaged sample frames of data in vector. More...

+virtual const MY_FLOAT* lastFrame (void) const
 Return a pointer to the last output sample frame.

virtual const MY_FLOAT* tickFrame (void)
 Return a pointer to the next sample frame of data. More...

virtual MY_FLOAT* tickFrame (MY_FLOAT *frameVector, unsigned int frames)
 Read out sample frames of data to frameVector. More...

+

Detailed Description

+STK audio data input base class. +

+This class provides input support for various audio file formats. It also serves as a base class for "realtime" streaming subclasses. +

+WvIn loads the contents of an audio file for subsequent output. Linear interpolation is used for fractional "read rates". +

+WvIn supports multi-channel data in interleaved format. It is important to distinguish the tick() methods, which return samples produced by averaging across sample frames, from the tickFrame() methods, which return pointers to multi-channel sample frames. For single-channel data, these methods return equivalent values. +

+Small files are completely read into local memory during instantiation. Large files are read incrementally from disk. The file size threshold and the increment size values are defined in WvIn.h. +

+WvIn currently supports WAV, AIFF, SND (AU), MAT-file (Matlab), and STK RAW file formats. Signed integer (8-, 16-, and 32-bit) and floating- point (32- and 64-bit) data types are supported. Uncompressed data types are not supported. If using MAT-files, data should be saved in an array with each data channel filling a matrix row. +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Constructor & Destructor Documentation

+

+ + + + +
+ + + + + + + + + + +
+WvIn::WvIn ( + +const char * fileName, +
+bool raw = FALSE ) +
+
+ + + + + +
+   + + +

+Overloaded constructor for file input. +

+An StkError will be thrown if the file is not found, its format is unknown, or a read error occurs.

+


Member Function Documentation

+

+ + + + +
+ + + + + + + + + + +
+void WvIn::openFile ( + +const char * fileName, +
+bool raw = FALSE ) +
+
+ + + + + +
+   + + +

+Open the specified file and load its data. +

+An StkError will be thrown if the file is not found, its format is unknown, or a read error occurs.

+

+ + + + +
+ + + + + + +
+void WvIn::normalize ( + +void ) +
+
+ + + + + +
+   + + +

+Normalize data to a maximum of +-1.0. +

+For large, incrementally loaded files with integer data types, normalization is computed relative to the data type maximum. No normalization is performed for incrementally loaded files with floating-point data types.

+

+ + + + +
+ + + + + + +
+void WvIn::normalize ( + +MY_FLOAT peak ) +
+
+ + + + + +
+   + + +

+Normalize data to a maximum of +-peak. +

+For large, incrementally loaded files with integer data types, normalization is computed relative to the data type maximum (peak/maximum). For incrementally loaded files with floating- point data types, direct scaling by peak is performed.

+

+ + + + +
+ + + + + + +
+MY_FLOAT WvIn::getFileRate ( + +void ) const +
+
+ + + + + +
+   + + +

+Return the input file sample rate in Hz (not the data read rate). +

+WAV, SND, and AIF formatted files specify a sample rate in their headers. STK RAW files have a sample rate of 22050 Hz by definition. MAT-files are assumed to have a rate of 44100 Hz.

+

+ + + + +
+ + + + + + +
+void WvIn::setRate ( + +MY_FLOAT aRate ) +
+
+ + + + + +
+   + + +

+Set the data read rate in samples. The rate can be negative. +

+If the rate value is negative, the data is read in reverse order.

+

+ + + + +
+ + + + + + +
+void WvIn::setInterpolate ( + +bool doInterpolate ) +
+
+ + + + + +
+   + + +

+Turn linear interpolation on/off. +

+Interpolation is automatically off when the read rate is an integer value. If interpolation is turned off for a fractional rate, the time index is truncated to an integer value.

+

+ + + + +
+ + + + + + +
+MY_FLOAT WvIn::tick ( + +void ) [virtual] +
+
+ + + + + +
+   + + +

+Read out the average across one sample frame of data. +

+An StkError will be thrown if a file is read incrementally and a read error occurs. +

+Reimplemented in RtWvIn, and TcpWvIn.

+

+ + + + +
+ + + + + + + + + + +
+MY_FLOAT * WvIn::tick ( + +MY_FLOAT * vector, +
+unsigned int vectorSize ) [virtual] +
+
+ + + + + +
+   + + +

+Read out vectorSize averaged sample frames of data in vector. +

+An StkError will be thrown if a file is read incrementally and a read error occurs. +

+Reimplemented in RtWvIn, and TcpWvIn.

+

+ + + + +
+ + + + + + +
+const MY_FLOAT * WvIn::tickFrame ( + +void ) [virtual] +
+
+ + + + + +
+   + + +

+Return a pointer to the next sample frame of data. +

+An StkError will be thrown if a file is read incrementally and a read error occurs. +

+Reimplemented in RtWvIn, TcpWvIn, and WaveLoop.

+

+ + + + +
+ + + + + + + + + + +
+MY_FLOAT * WvIn::tickFrame ( + +MY_FLOAT * frameVector, +
+unsigned int frames ) [virtual] +
+
+ + + + + +
+   + + +

+Read out sample frames of data to frameVector. +

+An StkError will be thrown if a file is read incrementally and a read error occurs. +

+Reimplemented in RtWvIn, and TcpWvIn.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classWvOut-members.html b/doc/html/classWvOut-members.html new file mode 100644 index 0000000..3306dd8 --- /dev/null +++ b/doc/html/classWvOut-members.html @@ -0,0 +1,51 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

WvOut Member List

This is the complete list of members for WvOut, including all inherited members. +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classWvOut.gif b/doc/html/classWvOut.gif new file mode 100644 index 0000000..9343b74 Binary files /dev/null and b/doc/html/classWvOut.gif differ diff --git a/doc/html/classWvOut.html b/doc/html/classWvOut.html new file mode 100644 index 0000000..78dba47 --- /dev/null +++ b/doc/html/classWvOut.html @@ -0,0 +1,423 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

WvOut Class Reference

STK audio data output base class. +More... +

+#include <WvOut.h> +

+

Inheritance diagram for WvOut:: +

+ +Stk +RtWvOut +TcpWvOut + +List of all members. + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Public Methods

WvOut ()
 Default constructor.

 WvOut (const char *fileName, unsigned int nChannels=1, FILE_TYPE type=WVOUT_WAV, Stk::STK_FORMAT format=STK_SINT16)
 Overloaded constructor used to specify a file name, type, and data format with this object. More...

+virtual ~WvOut ()
 Class destructor.

void openFile (const char *fileName, unsigned int nChannels=1, WvOut::FILE_TYPE type=WVOUT_WAV, Stk::STK_FORMAT format=STK_SINT16)
 Create a file of the specified type and name and output samples to it in the given data format. More...

+void closeFile (void)
 If a file is open, write out samples in the queue and then close it.

+unsigned long getFrames (void) const
 Return the number of sample frames output.

+MY_FLOAT getTime (void) const
 Return the number of seconds of data output.

virtual void tick (const MY_FLOAT sample)
 Output a single sample to all channels in a sample frame. More...

virtual void tick (const MY_FLOAT *vector, unsigned int vectorSize)
 Output each sample in vector to all channels in vectorSize sample frames. More...

virtual void tickFrame (const MY_FLOAT *frameVector, unsigned int frames=1)
 Output the frameVector of sample frames of the given length. More...


Static Public Attributes

const FILE_TYPE WVOUT_RAW
const FILE_TYPE WVOUT_WAV
const FILE_TYPE WVOUT_SND
const FILE_TYPE WVOUT_AIF
const FILE_TYPE WVOUT_MAT
+

Detailed Description

+STK audio data output base class. +

+This class provides output support for various audio file formats. It also serves as a base class for "realtime" streaming subclasses. +

+WvOut writes samples to an audio file. It supports multi-channel data in interleaved format. It is important to distinguish the tick() methods, which output single samples to all channels in a sample frame, from the tickFrame() method, which takes a pointer to multi-channel sample frame data. +

+WvOut currently supports WAV, AIFF, AIFC, SND (AU), MAT-file (Matlab), and STK RAW file formats. Signed integer (8-, 16-, and 32-bit) and floating- point (32- and 64-bit) data types are supported. STK RAW files use 16-bit integers by definition. MAT-files will always be written as 64-bit floats. If a data type specification does not match the specified file type, the data type will automatically be modified. Uncompressed data types are not supported. +

+Currently, WvOut is non-interpolating and the output rate is always Stk::sampleRate(). +

+by Perry R. Cook and Gary P. Scavone, 1995 - 2002. +

+


Constructor & Destructor Documentation

+

+ + + + +
+ + + + + + + + + + + + + + + + + + +
+WvOut::WvOut ( + +const char * fileName, +
+unsigned int nChannels = 1, +
+FILE_TYPE type = WVOUT_WAV, +
+Stk::STK_FORMAT format = STK_SINT16 ) +
+
+ + + + + +
+   + + +

+Overloaded constructor used to specify a file name, type, and data format with this object. +

+An StkError is thrown for invalid argument values or if an error occurs when initializing the output file.

+


Member Function Documentation

+

+ + + + +
+ + + + + + + + + + + + + + + + + + +
+void WvOut::openFile ( + +const char * fileName, +
+unsigned int nChannels = 1, +
+WvOut::FILE_TYPE type = WVOUT_WAV, +
+Stk::STK_FORMAT format = STK_SINT16 ) +
+
+ + + + + +
+   + + +

+Create a file of the specified type and name and output samples to it in the given data format. +

+An StkError is thrown for invalid argument values or if an error occurs when initializing the output file.

+

+ + + + +
+ + + + + + +
+void WvOut::tick ( + +const MY_FLOAT sample ) [virtual] +
+
+ + + + + +
+   + + +

+Output a single sample to all channels in a sample frame. +

+An StkError is thrown if a file read error occurs. +

+Reimplemented in RtWvOut, and TcpWvOut.

+

+ + + + +
+ + + + + + + + + + +
+void WvOut::tick ( + +const MY_FLOAT * vector, +
+unsigned int vectorSize ) [virtual] +
+
+ + + + + +
+   + + +

+Output each sample in vector to all channels in vectorSize sample frames. +

+An StkError is thrown if a file read error occurs. +

+Reimplemented in RtWvOut, and TcpWvOut.

+

+ + + + +
+ + + + + + + + + + +
+void WvOut::tickFrame ( + +const MY_FLOAT * frameVector, +
+unsigned int frames = 1 ) [virtual] +
+
+ + + + + +
+   + + +

+Output the frameVector of sample frames of the given length. +

+An StkError is thrown if a file read error occurs. +

+Reimplemented in RtWvOut, and TcpWvOut.

+


Member Data Documentation

+

+ + + + +
+ + + + + +
+const FILE_TYPE WvOut::WVOUT_RAW [static] +
+
+ + + + + +
+   + + +

+STK RAW file type.

+

+ + + + +
+ + + + + +
+const FILE_TYPE WvOut::WVOUT_WAV [static] +
+
+ + + + + +
+   + + +

+WAV file type.

+

+ + + + +
+ + + + + +
+const FILE_TYPE WvOut::WVOUT_SND [static] +
+
+ + + + + +
+   + + +

+SND (AU) file type.

+

+ + + + +
+ + + + + +
+const FILE_TYPE WvOut::WVOUT_AIF [static] +
+
+ + + + + +
+   + + +

+AIFF file type.

+

+ + + + +
+ + + + + +
+const FILE_TYPE WvOut::WVOUT_MAT [static] +
+
+ + + + + +
+   + + +

+Matlab MAT-file type.

+


The documentation for this class was generated from the following file: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/classes.html b/doc/html/classes.html new file mode 100644 index 0000000..03a676d --- /dev/null +++ b/doc/html/classes.html @@ -0,0 +1,25 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Class Documentation

+ + +

+


+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/download.html b/doc/html/download.html new file mode 100644 index 0000000..4b47bc0 --- /dev/null +++ b/doc/html/download.html @@ -0,0 +1,74 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Download and Release Notes

+ Version 4.0, 30 April 2002 +

+ STK Version 4.0: Source distribution (1.64 MB tar/gzipped)
+ STK Version 4.0: Source distribution with precompiled windows binaries (2.26 MB tar/gzipped)
+ +

+ +

+

Release Notes:

+ +

+

Version 4.0

+ +

+

+ +

+

Version 3.2

+ +

+

+ +

+

Version 3.1

+ +

+

+ +

+

Version 3.0

+ +

+

+ +

+

Version 2.02

+ +

+

+ +

+

Version 2

+ +

+

+ +

+


+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/doxygen.css b/doc/html/doxygen.css new file mode 100644 index 0000000..7f8e5b8 --- /dev/null +++ b/doc/html/doxygen.css @@ -0,0 +1,20 @@ +H1 { text-align: center; } +A.qindex {} +A.qindexRef {} +A.el { text-decoration: none; font-weight: bold } +A.elRef { font-weight: bold } +A.code { text-decoration: none; font-weight: normal; color: #4444ee } +A.codeRef { font-weight: normal; color: #4444ee } +DL.el { margin-left: -1cm } +DIV.fragment { width: 100%; border: none; background-color: #eeeeee } +DIV.ah { background-color: black; margin-bottom: 3; margin-top: 3 } +TD.md { background-color: #f2f2ff } +DIV.groupHeader { margin-left: 16; margin-top: 12; margin-bottom: 6; font-weight: bold } +DIV.groupText { margin-left: 16; font-style: italic; font-size: smaller } +FONT.keyword { color: #008000 } +FONT.keywordtype { color: #604020 } +FONT.keywordflow { color: #e08000 } +FONT.comment { color: #800000 } +FONT.preprocessor { color: #806020 } +FONT.stringliteral { color: #002080 } +FONT.charliteral { color: #008080 } diff --git a/doc/html/doxygen.gif b/doc/html/doxygen.gif new file mode 100644 index 0000000..192c83c Binary files /dev/null and b/doc/html/doxygen.gif differ diff --git a/doc/html/files.html b/doc/html/files.html new file mode 100644 index 0000000..4d9c11f --- /dev/null +++ b/doc/html/files.html @@ -0,0 +1,22 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

STK File List

Here is a list of all documented files with brief descriptions: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/functions.html b/doc/html/functions.html new file mode 100644 index 0000000..df85719 --- /dev/null +++ b/doc/html/functions.html @@ -0,0 +1,392 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

STK Compound Members

+a | b | c | d | e | f | g | h | i | j | k | l | m | n | o | p | r | s | t | w | ~
+ +

+Here is a list of all documented class members with links to the classes they belong to:

- a -

+ +

- b -

+ +

- c -

+ +

- d -

+ +

- e -

+ +

- f -

+ +

- g -

+ +

- h -

+ +

- i -

+ +

- j -

+ +

- k -

+ +

- l -

+ +

- m -

+ +

- n -

+ +

- o -

+ +

- p -

+ +

- r -

+ +

- s -

+ +

- t -

+ +

- w -

+ +

- ~ -

+ +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/hierarchy.html b/doc/html/hierarchy.html new file mode 100644 index 0000000..e965085 --- /dev/null +++ b/doc/html/hierarchy.html @@ -0,0 +1,123 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

STK Class Hierarchy

This inheritance list is sorted roughly, but not completely, alphabetically: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/index.html b/doc/html/index.html new file mode 100644 index 0000000..4514239 --- /dev/null +++ b/doc/html/index.html @@ -0,0 +1,28 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

The Synthesis ToolKit in C++ (STK)

+

+ +

+The Synthesis ToolKit in C++ (STK) is a set of audio signal processing and synthesis classes and algorithms written in C++. You can use these classes to create programs that make sounds with a variety of synthesis techniques. This is not a terribly novel concept, except that the Synthesis ToolKit is extremely portable (it's mostly platform-independent C and C++ code), and it's completely user-extensible (no libraries, no hidden drivers, and all source code is included). We like to think that this increases the chances that our programs will still work in another 5-10 years. In fact, the ToolKit has been working continuously for nearly 8 years now. STK currently runs with "realtime" support (audio and MIDI) on SGI (Irix), Linux, and Windows computer platforms. Generic, non-realtime support has been tested under NeXTStep, Sun, and other platforms and should work with any standard C++ compiler. +

+

+
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/information.html b/doc/html/information.html new file mode 100644 index 0000000..5834d6a --- /dev/null +++ b/doc/html/information.html @@ -0,0 +1,68 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

General Information

+

References

+ + +

+

What is the Synthesis ToolKit?

+ +

+The Synthesis ToolKit in C++ (STK) is a set of audio signal processing and synthesis classes and algorithms written in C++. You can use these classes to create programs that make sounds with a variety of synthesis techniques. This is not a terribly novel concept, except that the Synthesis ToolKit is extremely portable (it's mostly platform-independent C and C++ code), and it's completely user-extensible (no libraries, no hidden drivers, and all source code is included). We like to think that this increases the chances that our programs will still work in another 5-10 years. In fact, the ToolKit has been working continuously for nearly 8 years now. STK currently runs with "realtime" support (audio and MIDI) on SGI (Irix), Linux, and Windows computer platforms. Generic, non-realtime support has been tested under NeXTStep, Sun, and other platforms and should work with any standard C++ compiler. +

+The Synthesis ToolKit is free for non-commercial use. The only parts of the Synthesis ToolKit that are platform-dependent concern real-time audio and MIDI input and output, and that is taken care of with a few special classes. The interface for MIDI input and the simple Tcl/Tk graphical user interfaces (GUIs) provided is the same, so it's easy to experiment in real time using either the GUIs or MIDI. The Synthesis ToolKit can generate simultaneous SND (AU), WAV, AIFF, and MAT-file output soundfile formats (as well as realtime sound output), so you can view your results using one of a large variety of sound/signal analysis tools already available (e.g. Snd, Cool Edit, Matlab). +

+

What the Synthesis ToolKit is not.

+ +

+The Synthesis Toolkit is not one particular program. Rather, it is a set of C++ classes that you can use to create your own programs. A few example applications are provided to demonstrate some of the ways to use the classes. If you have specific needs, you will probably have to either modify the example programs or write a new program altogether. Further, the example programs don't have a fancy GUI wrapper. If you feel the need to have a "drag and drop" graphical patching GUI, you probably don't want to use the ToolKit. Spending hundreds of hours making platform-dependent graphics code would go against one of the fundamental design goals of the ToolKit - platform independence. +

+For those instances where a simple GUI with sliders and buttons is helpful, we use Tcl/Tk (which is freely distributed for all the supported ToolKit platforms). A number of Tcl/Tk GUI scripts are distributed with the ToolKit release. For control, the Synthesis Toolkit uses raw MIDI (on supported platforms), and SKINI (Synthesis ToolKit Instrument Network Interface, a MIDI-like text message synthesis control format). +

+

A brief history of the Synthesis ToolKit in C++.

+ +

+Perry Cook began developing a pre-cursor to the Synthesis ToolKit (also called STK) under NeXTStep at the Center for Computer Research in Music and Acoustics (CCRMA) at Stanford University in the early-1990s. With his move to Princeton University in 1996, he ported everything to C++ on SGI hardware, added real-time capabilities, and greatly expanded the synthesis techniques available. With the help of Bill Putnam, Perry also made a port of STK to Windows95. Gary Scavone began using STK extensively in the summer of 1997 and completed a full port of STK to Linux early in 1998. He finished the fully compatable Windows port (using Direct Sound API) in June 1998. Numerous improvements and extensions have been made since then. +

+The Toolkit has been distributed continuously since 1996 via the Princeton Sound Kitchen, Perry Cook's home page at Princeton, Gary Scavone's home page at Stanford's Center for Computer Research in Music and Acoustics (CCRMA), and the Synthesis ToolKit home page. The ToolKit has been in included in various collections of software. Much of it has also been ported to MAX/MSP on Macintosh computers by Dan Trueman and Luke Dubois of Columbia University, and is distributed as PeRColate. Help on real-time sound and MIDI has been provided by Tim Stilson, Bill Putnam, and Gabriel Maldonado. +

+

Legal and Ethical Notes

+ +

+This software was designed and created to be made publicly available for free, primarily for academic purposes, so if you use it, pass it on with this documentation, and for free. If you make a million dollars with it, give us some. If you make compositions with it, put us in the program notes. +

+ +

+Some of the concepts are covered by various patents, some known to us and likely others which are unknown. Many of the ones known to us are administered by the Stanford Office of Technology and Licensing. The good news is that large hunks of the techniques used here are public domain. To avoid subtle legal issues, we will not state what's freely useable here, but we will try to note within the various classes where certain things are likely to be protected by patents. +

+

Disclaimer

+ +

+STK is free and we do not guarantee anything. We've been hacking on this code for a while now and most of it seems to work pretty well. But, there surely are some bugs floating around. Sometimes things work fine on one computer platform but not so fine on another. FPU overflows and underflows cause very weird behavior which also depends on the particular CPU and OS. Let us know about bugs you find and we'll do our best to correct them. +

+


+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/maillist.html b/doc/html/maillist.html new file mode 100644 index 0000000..668d04f --- /dev/null +++ b/doc/html/maillist.html @@ -0,0 +1,29 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

The Mail List

+ An STK mailing list has been set up to facilitate communication among STK users. Subscribing to this list is your best way of keeping on top of new releases, bug fixes, and various user developments. +

+ To join send a message to <stk-request@ccrma.stanford.edu> with the contents: subscribe +

+ +

+ To be removed from the list send a message to <stk-request@ccrma.stanford.edu> with the contents: unsubscribe +

+


+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/pages.html b/doc/html/pages.html new file mode 100644 index 0000000..78dc4ec --- /dev/null +++ b/doc/html/pages.html @@ -0,0 +1,38 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

STK Related Pages

Here is a list of all related documentation pages: +
+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/princeton.gif b/doc/html/princeton.gif new file mode 100644 index 0000000..165d455 Binary files /dev/null and b/doc/html/princeton.gif differ diff --git a/doc/html/skini.html b/doc/html/skini.html new file mode 100644 index 0000000..dcaa9c5 --- /dev/null +++ b/doc/html/skini.html @@ -0,0 +1,230 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Synthesis toolKit Instrument Network Interface (SKINI)

+ This describes the latest (version 1.1) implementation of SKINI for the Synthesis Toolkit in C++ (STK) by Perry R. Cook. +

+

        Too good to be true?
+    Have control and read it too?
+          A SKINI haiku.
+

+Profound thanks to Dan Trueman, Brad Garton, and Gary Scavone for input on this revision. Thanks also to MIDI, the NeXT MusicKit, ZIPI and all the creators and modifiers of these for good bases upon/from which to build and depart. +

+

MIDI Compatibility

+ +

+SKINI was designed to be MIDI compatible wherever possible, and extend MIDI in incremental, then maybe profound ways. +

+Differences from MIDI, and motivations, include: +

+

+ +

Why SKINI?

+ +

+SKINI was designed to be extensable and hackable for a number of applications: imbedded synthesis in a game or VR simulation, scoring and mixing tasks, real-time and non-real time applications which could benefit from controllable sound synthesis, JAVA controlled synthesis, or eventually maybe JAVA synthesis, etc. SKINI is not intended to be "the mother of scorefiles," but since the entire system is based on text representations of names, floats, and ints, converters from one scorefile language to SKINI, or back, should be easily created. +

+I am basically a bottom-up designer with an awareness of top-down design ideas, so SKINI above all reflects the needs of my particular research and creative projects as they have arisen and developed. SKINI 1.1 represents a profound advance beyond versions 0.8 and 0.9 (the first versions), future SKINI's might reflect some changes. Compatibility with prior scorefiles will be attempted, but there aren't that many scorefiles out there yet. +

+

SKINI Messages

+ +

+A basic SKINI message is a line of text. There are only three required fields, the message type (an ASCII name), the time (either delta or absolute), and the channel number. Don't freak out and think that this is MIDI channel 0-15 (which is supported), because the channel number is scanned as a long int. Channels could be socket numbers, machine IDs, serial numbers, or even unique tags for each event in a synthesis. Other fields might be used, as specified in the SKINI.tbl file. This is described in more detail later. +

+Fields in a SKINI line are delimited by spaces, commas, or tabs. The SKINI parser only operates on a line at a time, so a newline means the message is over. Multiple messages are NOT allowed directly on a single line (by use of the ; for example in C). This could be supported, but it isn't in version 1.1. +

+Message types include standard MIDI types like NoteOn, NoteOff, ControlChange, etc. MIDI extension message types (messages which look better than MIDI but actually get turned into MIDI-like messages) include LipTension, StringDamping, etc. Non-MIDI message types include SetPath (sets a path for file use later), and OpenReadFile (for streaming, mixing, and applying effects to soundfiles along with synthesis, for example). Other non-MIDI message types include Trilling, HammerOn, etc. (these translate to gestures, behaviors, and contexts for use by intellegent players and instruments using SKINI). Where possible I will still use these as MIDI extension messages, so foot switches, etc. can be used to control them in real time. +

+All fields other than type, time, and channel are optional, and the types and useage of the additional fields is defined in the file SKINI.tbl. +

+The other important file used by SKINI is SKINI.msg, which is a set of defines to make C code more readable, and to allow reasonably quick re-mapping of control numbers, etc.. All of these defined symbols are assigned integer values. For Java, the defines could be replaced by declaration and assignment statements, preserving the look and behavior of the rest of the code. +

+

C Files Used To Implement SKINI

+ +

+SKINI.cpp is an object which can either open a SKINI file, and successively read and parse lines of text as SKINI strings, or accept strings from another object and parse them. The latter functionality would be used by a socket, pipe, or other connection receiving SKINI messages a line at a time, usually in real time, but not restricted to real time. +

+SKINI.msg should be included by anything wanting to use the SKINI.cpp object. This is not mandatory, but use of the __SK_blah_ symbols which are defined in the .msg file will help to ensure clarity and consistency when messages are added and changed. +

+SKINI.tbl is used only by the SKINI parser object (SKINI.cpp). In the file SKINI.tbl, an array of structures is declared and assigned values which instruct the parser as to what the message types are, and what the fields mean for those message types. This table is compiled and linked into applications using SKINI, but could be dynamically loaded and changed in a future version of SKINI. +

+

SKINI Messages and the SKINI Parser:

+ +

+The parser isn't all that smart, but neither am I. Here are the basic rules governing a valid SKINI message: +

+

+ + + + + + +

A Short SKINI File:

+ +

+

        /*  Howdy!!! Welcome to SKINI, by P. Cook 1999
+
+        NoteOn          0.000082 2 55 82
+        NoteOff         1.000000 2 55 0
+        NoteOn          0.000082 2 69 82
+        StringDetune    0.100000 2    10
+        StringDetune    0.100000 2    30
+        StringDetune    0.100000 2    50
+        NoteOn          0.000000 2 69 82
+        StringDetune    0.100000 2    40
+        StringDetune    0.100000 2    22
+        StringDetune    0.100000 2    12
+        //
+        StringDamping   0.000100 2     0.0
+        NoteOn          0.000082 2 55 82
+        NoteOn          0.200000 2 62 82
+        NoteOn          0.100000 2 71 82
+        NoteOn          0.200000 2 79 82
+        NoteOff         1.000000 2 55 82
+        NoteOff         0.000000 2 62 82
+        NoteOff         0.000000 2 71 82
+        NoteOff         0.000000 2 79 82
+        StringDamping  =4.000000 2       0.0
+        NoteOn          0.000082 2 55 82
+        NoteOn          0.200000 2 62 82
+        NoteOn          0.100000 2 71 82
+        NoteOn          0.200000 2 79 82
+        NoteOff         1.000000 2 55 82
+        NoteOff         0.000000 2 62 82
+        NoteOff         0.000000 2 71 82
+        NoteOff         0.000000 2 79 82
+

+

The SKINI.tbl File and Message Parsing:

+ +

+The SKINI.tbl file contains an array of structures which are accessed by the parser object SKINI.cpp. The struct is: +

+

struct SKINISpec {
+   char messageString[32];
+   long  type;
+   long data2;
+   long data3;
+};
+

+so an assignment of one of these structs looks like: +

+

        MessageStr$      ,type, data2, data3,
+

+type is the message type sent back from the SKINI line parser. +

+data<n> is either: +

+

+ + + +Here's a couple of lines from the SKINI.tbl file +

+

 {"NoteOff"          ,        __SK_NoteOff_,               SK_DBL,  SK_DBL},
+ {"NoteOn"           ,         __SK_NoteOn_,               SK_DBL,  SK_DBL},
+
+ {"ControlChange"    ,  __SK_ControlChange_,               SK_INT,  SK_DBL},
+ {"Volume"           ,  __SK_ControlChange_, __SK_Volume_        ,  SK_DBL},
+
+ {"StringDamping"    ,   __SK_ControlChange_, __SK_StringDamping_,  SK_DBL},
+ {"StringDetune"     ,    __SK_ControlChange_, __SK_StringDetune_,  SK_DBL},
+

+The first three are basic MIDI messages. The first two would cause the parser, after recognizing a match of the string "NoteOff" or "NoteOn", to set the message type to 128 or 144 (__SK_NoteOff_ and __SK_NoteOn_ are defined in the file SKINI.msg to be the MIDI byte value, without channel, of the actual MIDI messages for NoteOn and NoteOff). The parser would then set the time or delta time (this is always done and is therefore not described in the SKINI Message Struct). The next two fields would be scanned as double-precision floats and assigned to the byteTwo and byteThree variables of the SKINI parser. The remainder of the line is stashed in the remainderString variable. +

+The ControlChange spec is basically the same as NoteOn and NoteOff, but the second data byte is set to an integer (for checking later as to what MIDI control is being changed). +

+The Volume spec is a MIDI Extension message, which behaves like a ControlChange message with the controller number set explicitly to the value for MIDI Volume (7). Thus the following two lines would accomplish the same changing of MIDI volume on channel 2: +

+

    ControlChange  0.000000 2 7 64.1
+    Volume         0.000000 2   64.1
+

+I like the 2nd line better, thus my motivation for SKINI in the first place. +

+The StringDamping and StringDetune messages behave the same as the Volume message, but use Control Numbers which aren't specifically nailed-down in MIDI. Note that these Control Numbers are carried around as long ints, so we're not limited to 0-127. If, however, you want to use a MIDI controller to play an instrument, using controller numbers in the 0-127 range might make sense. +

+

Using SKINI:

+ +

+Here's a simple example of code which uses the SKINI object to read a SKINI file and control a single instrument. +

+

        instrument = new Mandolin(50.0);
+        score = new SKINI(argv[1]);
+        while(score->getType() > 0) {
+            tempDouble = score->getDelta();
+            if (tempDouble < 0)     {
+                tempDouble = - tempDouble;
+                tempDouble = tempDouble - output.getTime();
+                if (tempDouble < 0) {
+                   printf("Bad News Here!!!  Backward Absolute Time Required.\n");
+                   tempDouble = 0.0;
+                }
+            }
+            tempLong = (long) (tempDouble * Stk::sampleRate());
+            for (i=0;i<tempLong;i++)   {
+                output.tick(instrument->tick());
+            }
+            tempDouble3 = score->getByteThree();
+            if (score->getType()== __SK_NoteOn_ )        {
+                tempDouble3 *= NORM_MIDI;
+                if (score->getByteThree() == 0)  {
+                    tempDouble3 = 0.5;
+                    instrument->noteOff(tempDouble3);
+                }
+                else {
+                    tempLong = (int) score->getByteTwo();
+                    tempDouble2 = Midi2Pitch[tempLong];
+                    instrument->noteOn(tempDouble2,tempDouble3);
+                }
+            }
+            else if (score->getType() == __SK_NoteOff_) {
+                tempDouble3 *= NORM_MIDI;
+                instrument->noteOff(tempDouble3);
+            }
+            else if (score->getType() == __SK_ControlChange_)        {
+                tempLong = score->getByteTwoInt();
+                instrument->controlChange(tempLong,temp3.0);
+            }
+            score->nextMessage();
+        }
+

+When the score (SKINI object) object is created from the filename in argv[1], the first valid command line is read from the file and parsed. +

+The score->getType() retrieves the messageType. If this is -1, there are no more valid messages in the file and the synthesis loop terminates. Otherwise, the message type is returned. +

+getDelta() retrieves the deltaTime until the current message should occur. If this is greater than 0, synthesis occurs until the deltaTime has elapsed. If deltaTime is less than zero, the time is interpreted as absolute time and the output device is queried as to what time it is now. That is used to form a deltaTime, and if it's positive we synthesize. If it's negative, we print an error and pretend this never happened and we hang around hoping to eventually catch up. +

+The rest of the code sorts out message types NoteOn, NoteOff (including NoteOn with velocity 0), and ControlChange. The code implicitly takes into account the integer type of the control number, but all other data is treated as double float. +

+The last line reads and parses the next message in the file. +

+


+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/system.html b/doc/html/system.html new file mode 100644 index 0000000..10284ea --- /dev/null +++ b/doc/html/system.html @@ -0,0 +1,41 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

System Requirements

+ General + Linux (specific) + +

+Windows95/98/2000/XP (specific)

+ +

+WindowsNT (specific)

+ +

+ +

+ +

+


+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/tutorial.html b/doc/html/tutorial.html new file mode 100644 index 0000000..bc6de17 --- /dev/null +++ b/doc/html/tutorial.html @@ -0,0 +1,155 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Tutorial

+ +

Introduction

+ +

+First and foremost, the Synthesis ToolKit is a set of C++ classes. That means you need to know some basics about programming in C++ to make use of STK (beyond the example programs we provide). STK's "target audience" is people who:

+ +

+Most ToolKit programmers will likely end up writing a class or two for their own particular needs, but this task is typically simplified by making use of pre-existing STK classes (filters, oscillators, etc.). +

+

Getting Started

+ +

+We'll begin our introduction to the Synthesis ToolKit with a simple sine-wave oscillator program. STK doesn't provide a specific oscillator for sine waves. Instead, it provides a generic waveform oscillator class, WaveLoop, which can load a variety of common file types. In this example, we load a sine "table" from an STK RAW file. The class RtWvOut will send "realtime" samples to the audio output hardware on your computer. +

+

// sineosc.cpp
+
+#include "WaveLoop.h"
+#include "RtWvOut.h"
+
+int main()
+{
+  // Set the global sample rate before creating class instances.
+  Stk::setSampleRate( 44100.0 );
+
+  // Define and load the sine wave file
+  WaveLoop *input = new WaveLoop("sinewave.raw", TRUE);
+  input->setFrequency(440.0);
+
+  // Define and open the default realtime output device for one-channel playback
+  RtWvOut *output = new RtWvOut(1);
+
+  // Play the oscillator for 40000 samples
+  for (int i=0; i<40000; i++) {
+    output->tick( input->tick() );
+  }
+
+  // Clean up
+  delete input;
+  delete output;
+
+  return 0;
+}
+

+WaveLoop is a subclass of WvIn, which supports WAV, SND (AU), AIFF, MAT-file (Matlab), and RAW file formats with 8-, 16-, and 32-bit integer and 32- and 64-bit floating-point data types. WvIn provides interpolating, read once ("oneshot") functionality, as well as methods for setting the read rate and read position. +

+Nearly all STK classes implement tick() methods which take and/or return sample values. Within the tick() method, the fundamental sample calculations are performed for a given class. Most STK classes consume/generate a single sample per operation and their tick() method takes/returns each sample "by value". In addition, every class implementing a tick() method also provides an overloaded tick() function taking pointer and size arguments which can be used for vectorized computations. +

+The WvIn and WvOut classes support multi-channel sample frames. To distinguish single-sample frame operations from multi-channel frame operations, these classes also implement tickFrame() functions. When a tick() method is called for multi-channel data, frame averages are returned or the input sample is distributed across all channels of a sample frame. +

+Nearly all STK classes inherit from the Stk base class. Stk provides a static sample rate which is queried by subclasses as needed. Because many classes use the current sample rate value during instantiation, it is important that the desired value be set at the beginning of a program. The default STK sample rate is 22050 Hz. +

+Another primary concept that is somewhat obscurred in this example concerns the data format in which sample values are passed and received. Audio and control signals throughout STK use a floating-point data type, the exact precision of which can be controlled via the MY_FLOAT #define statement in Stk.h. Thus, the ToolKit can use any normalization scheme desired. The base instruments and algorithms are implemented with a general audio sample dynamic maximum of +/-1.0, and the WvIn and WvOut classes and subclasses scale appropriately for DAC or soundfile input and output. +

+Finally, STK has some basic C++ error handling functionality built in. Classes which access files and/or hardware are most prone to runtime errors. To properly "catch" such errors, the above example should be rewritten as shown below. +

+

// sineosc.cpp
+
+#include "WaveLoop.h"
+#include "RtWvOut.h"
+
+int main()
+{
+  // Set the global sample rate before creating class instances.
+  Stk::setSampleRate( 44100.0 );
+
+  WaveLoop *input = 0;
+  RtWvOut *output = 0;
+
+  try {
+    // Define and load the sine wave file
+    input = new WaveLoop( "sinewave.raw", TRUE );
+
+    // Define and open the default realtime output device for one-channel playback
+    output = new RtWvOut(1);
+  }
+  catch (StkError &) {
+    goto cleanup;
+  }
+
+  input->setFrequency(440.0);
+
+  // Play the oscillator for 40000 samples
+  for (int i=0; i<40000; i++) {
+    try {
+      output->tick(input->tick());
+    }
+    catch (StkError &) {
+      goto cleanup;
+    }
+  }
+
+ cleanup:
+  delete input;
+  delete output;
+
+  return 0;
+}
+

+In this particular case, we simply exit the program if an error occurs (an error message is automatically printed to stderr). A more refined program might attempt to recover from or fix a particular problem and, if successful, continue processing. +

+

Compiling

+ +

+

Linux

+ +

+In general, you will probably want to use a Makefile for your STK programs and projects. For this particular program, however, the following will suffice (on a linux system):

g++ -Wall -D__LINUX_OSS__ -D__LITTLE_ENDIAN__ -o sineosc Stk.cpp WvIn.cpp WaveLoop.cpp WvOut.cpp RtWvOut.cpp RtAudio.cpp sineosc.cpp -lpthread
+

+This assumes you've set up a directory that includes the files sineosc.cpp, the rawwave file sinewave.raw, and the header and source files for the classes Stk, WvIn, WaveLoop, WvOut, RtWvOut, and RtAudio. There are other, more convenient, means for structuring projects that will be discussed later. +

+Most linux systems currently come installed with the OSS audio hardware drivers. If your system instead has ALSA audio drivers installed and you wish to make use of native ALSA API calls, a link to the ALSA library must be specified in the above compile statement (-lasound) and the preprocessor definition should instead be __LINUX_ALSA__. +

+

Irix

+ +

+The irix (SGI) and linux operating systems are both flavors of unix and thus behave similarly. Making the same assumptions as in the linux case, the following compile statement should work:

CC -Wall -D__IRIX_AL__ -o sineosc Stk.cpp WvIn.cpp WaveLoop.cpp WvOut.cpp RtWvOut.cpp RtAudio.cpp sineosc.cpp -lpthread
+

+

Windows

+ +

+I have personally only worked with Visual C++ when compiling programs under windoze. I'll assume you've become familiar with Visual C+ and don't need a tutorial on its particular idiosyncrasies. In creating the VC++ project, add the Stk, WvIn, WaveLoop, WvOut, RtWvOut, and RtAudio class files, as well as the sineosc.cpp and sinewave.raw files. You will also need to link to the DirectSound library (dsound.lib), select the multithreaded library, and provide the __WINDOWS_DS__ and __LITTLE_ENDIAN__ preprocessor definitions. +

+

"Realtime" vs. "Non-Realtime"

+ +

+Most of the Synthesis ToolKit classes are platform independent. That means that they should compile on any reasonably current C++ compiler. The functionality needed for realtime audio and MIDI input/output, as well as realtime control message acquistion, is inherently platform and operating-system (OS) dependent. STK classes which require specific platform/OS support include RtAudio, RtWvOut, RtWvIn, RtDuplex, RtMidi, TcpWvIn, TcpWvOut, Socket, and Thread. These classes currently can only be compiled on Linux, Irix, and Windows (except Windows NT) systems using the __LINUX_OSS__, __LINUX_ALSA__, __IRIX_AL__, or __WINDOWS_DS__ preprocessor definitions. +

+Without the "realtime" classes, it is still possible to read SKINI scorefiles for control input and to read and write to/from a variety of audio file formats (WAV, SND, AIFF, MAT-file, and RAW). If compiling for a "little-endian" host processor, the __LITTLE_ENDIAN__ preprocessor definition should be provided. +

+

To Be Continued ...

+ +

+


+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/html/usage.html b/doc/html/usage.html new file mode 100644 index 0000000..c8865d8 --- /dev/null +++ b/doc/html/usage.html @@ -0,0 +1,161 @@ + + +The Synthesis ToolKit in C++ (STK) + + + +
+  

+Home   Information   Classes   Download   Usage   Mail List   Requirements   Tutorial

+
+ +

Usage Documentation

+ +
+

+

Directory Structure:

+ +

+The top level distribution contains the following directories: +

+

+ +

+This release of STK comes with four separate "project" directories: +

+

    +
  1. The demo project is used to demonstrate nearly all of the STK instruments. The demo program has been written to allow a variety of control input and sound data output options. Simple graphical user interfaces (GUIs) are also provided. +

    + +

    +

  2. The effects project demonstrates realtime duplex mode (simultaneous audio input and output) operation, when available, as well as various delay-line based effects algorithms. +

    + +

    +

  3. The ragamatic project is just cool. Fire it up and be enlightened. +

    + +

    +

  4. The examples project contains several simple programs which demonstrate audio input/output, as well as the use of the audio internet streaming classes.
+ +

+

Compiling:

+ +

+

+ +

+

Control Data:

+ +

+All STK programs in this distribution take input control data in the form of SKINI or MIDI messages only. The Messager class unifies the various means of acquiring control data under a single, easy to use set of functions. The way that SKINI messages can be sent to the programs is dependent upon the operating system in use, as well as whether the program is running in realtime or not. In general, it is possible to: +

+

    +
  1. Redirect or pipe SKINI scorefiles to an executable.
  2. Pipe realtime SKINI input messages to an executable (not possible under Windows95/98).
  3. Socket realtime SKINI input messages to an executable.
  4. Acquire realtime MIDI messages from a MIDI port on your computer.
+ +

+Tcl/Tk graphical user interfaces (GUI) are provided with this distribution which can generate realtime SKINI messages. Note that the Messager class allows multiple simultaneous socket client connections, together with MIDI and/or piped input. The Md2Skini program (in the demo directory) is mostly obsolete but can be used to create SKINI scorefiles from realtime MIDI input. +

+

Demo: STK Instruments

+ +

+The demo project demonstrates the behavior of all the distributed STK instruments. The instruments available with this release include:

+ +

+

Demo: Non-Realtime Use

+ +

+See the information above with respect to compiling STK for non-realtime use. +

+In non-realtime mode, it is assumed that input control messages are provided from a SKINI scorefile and that audio output is written to a soundfile (.snd, .wav, .aif, .mat, .raw). A number of SKINI scorefiles are provided in the scores directory of the demo project. Assuming a successful compilation of the demo program, typing: +

+

cat scores/bookert.ski | demo BeeThree -w myfile.wav
+

+or (on WindowsXX and/or Unix) +

+

demo BeeThree -w myfile.wav < scores\bookert.ski
+

+from the demo directory will play the scorefile bookert.ski using the STK BeeThree instrument and write the resulting audio data to a WAV formatted soundfile called "myfile.wav". Typing demo without any arguments will provide a full program usage description. +

+

Demo: Realtime Use

+ +

+STK realtime audio and MIDI input/output and realtime SKINI control input via socketing support is provided for Linux, SGI, and Windows95/98/2000/XP operating systems. STK realtime SKINI control input via piping is possible under Linux, SGI, and Windows2000/XP only. +

+ Control input and audio output options are typically specified as command-line arguments to STK programs. For example, the demo program is invoked as: +

+

demo instrument flags
+

+where instruments include those described above and flags can be any or all of:

+ The <-ip> and <-is> flags must be used when piping or socketing realtime SKINI control data to an STK program. The <-im> flag must be used to read MIDI control input from your MIDI port. Note that you can use all three input types simultaneously. +

+Assuming a successful compilation of the demo program, typing: +

+

cat scores/bookert.ski | demo BeeThree -or
+

+or (on WindowsXX and/or Unix) +

+

demo BeeThree -or < scores\bookert.ski
+

+from the demo directory will play the scorefile bookert.ski using the STK BeeThree instrument and stream the resulting audio data in realtime to the audio output channel of your computer. Typing demo without any arguments will provide a full program usage description. +

+

Realtime Control Input using Tcl/Tk Graphical User Interfaces:

+ +

+There are a number of Tcl/Tk GUIs supplied with the STK projects. These scripts require Tcl/Tk version 8.0 or later, which can be downloaded for free over the WWW. On Unix and Windows2000/XP platforms, you can run the various executable scripts (e.g. StkDemo.bat) provided with each project to start everything up (you may need to symbolically link the wish80 executable to the name wish). The PhysicalDemo script just implements the following command-line sequence: +

+

wish < tcl/Physical.tcl | demo Clarinet -or -ip
+

+On WindowsXX and Unix platforms, the following operations are necessary to establish a socket connection between the Tcl/Tk GUI and the STK program:

    +
  1. Open a DOS shell and start the STK program with the -is flag (ex. demo Clarinet -or -is).
  2. Open the Tcl/Tk GUI (e.g. tcl/Physical.tcl) by double-clicking on it, or type wish < tcl/Physical.tcl in another DOS shell.
  3. Establish the socket connection by selecting Socket under the Communications menu item in the Tcl/Tk GUI.
+ +

+Note that it is possible to specify a hostname when establishing the socket connection from the socket client. Thus, the STK socket server program and the Tcl/Tk GUI need not necessarily reside on the same computer. +

+

Realtime MIDI Control Input:

+ +

+On all supported realtime platforms, you can direct realtime MIDI input to the STK Clarinet by typing: +

+

demo Clarinet -or -im
+

+


+ + + + +
The Synthesis ToolKit in C++ (STK)
©1995-2002 Perry R. Cook and Gary P. Scavone. All Rights Reserved.
+ + + diff --git a/doc/manual.pdf b/doc/manual.pdf new file mode 100644 index 0000000..43e828e --- /dev/null +++ b/doc/manual.pdf @@ -0,0 +1,40942 @@ +%PDF-1.3 +5 0 obj +<< /S /GoTo /D (chapter.1) >> +endobj +8 0 obj +(STK Hierarchical Index) +endobj +9 0 obj +<< /S /GoTo /D (section.1.1) >> +endobj +12 0 obj +(STK Class Hierarchy) +endobj +13 0 obj +<< /S /GoTo /D (chapter.2) >> +endobj +16 0 obj +(STK Compound Index) +endobj +17 0 obj +<< /S /GoTo /D (section.2.1) >> +endobj +20 0 obj +(STK Compound List) +endobj +21 0 obj +<< /S /GoTo /D (chapter.3) >> +endobj +24 0 obj +(STK Page Index) +endobj +25 0 obj +<< /S /GoTo /D (section.3.1) >> +endobj +28 0 obj +(STK Related Pages) +endobj +29 0 obj +<< /S /GoTo /D (chapter.4) >> +endobj +32 0 obj +(STK Class Documentation) +endobj +33 0 obj +<< /S /GoTo /D (section.4.1) >> +endobj +36 0 obj +(ADSR Class Reference) +endobj +37 0 obj +<< /S /GoTo /D (section.4.2) >> +endobj +40 0 obj +(BandedWG Class Reference) +endobj +41 0 obj +<< /S /GoTo /D (section.4.3) >> +endobj +44 0 obj +(BeeThree Class Reference) +endobj +45 0 obj +<< /S /GoTo /D (section.4.4) >> +endobj +48 0 obj +(BiQuad Class Reference) +endobj +49 0 obj +<< /S /GoTo /D (section.4.5) >> +endobj +52 0 obj +(BlowBotl Class Reference) +endobj +53 0 obj +<< /S /GoTo /D (section.4.6) >> +endobj +56 0 obj +(BlowHole Class Reference) +endobj +57 0 obj +<< /S /GoTo /D (section.4.7) >> +endobj +60 0 obj +(Bowed Class Reference) +endobj +61 0 obj +<< /S /GoTo /D (section.4.8) >> +endobj +64 0 obj +(BowTabl Class Reference) +endobj +65 0 obj +<< /S /GoTo /D (section.4.9) >> +endobj +68 0 obj +(Brass Class Reference) +endobj +69 0 obj +<< /S /GoTo /D (section.4.10) >> +endobj +72 0 obj +(Chorus Class Reference) +endobj +73 0 obj +<< /S /GoTo /D (section.4.11) >> +endobj +76 0 obj +(Clarinet Class Reference) +endobj +77 0 obj +<< /S /GoTo /D (section.4.12) >> +endobj +80 0 obj +(Delay Class Reference) +endobj +81 0 obj +<< /S /GoTo /D (section.4.13) >> +endobj +84 0 obj +(DelayA Class Reference) +endobj +85 0 obj +<< /S /GoTo /D (section.4.14) >> +endobj +88 0 obj +(DelayL Class Reference) +endobj +89 0 obj +<< /S /GoTo /D (section.4.15) >> +endobj +92 0 obj +(Drummer Class Reference) +endobj +93 0 obj +<< /S /GoTo /D (section.4.16) >> +endobj +96 0 obj +(Echo Class Reference) +endobj +97 0 obj +<< /S /GoTo /D (section.4.17) >> +endobj +100 0 obj +(Envelope Class Reference) +endobj +101 0 obj +<< /S /GoTo /D (section.4.18) >> +endobj +104 0 obj +(Filter Class Reference) +endobj +105 0 obj +<< /S /GoTo /D (section.4.19) >> +endobj +108 0 obj +(Flute Class Reference) +endobj +109 0 obj +<< /S /GoTo /D (section.4.20) >> +endobj +112 0 obj +(FM Class Reference) +endobj +113 0 obj +<< /S /GoTo /D (section.4.21) >> +endobj +116 0 obj +(FMVoices Class Reference) +endobj +117 0 obj +<< /S /GoTo /D (section.4.22) >> +endobj +120 0 obj +(FormSwep Class Reference) +endobj +121 0 obj +<< /S /GoTo /D (section.4.23) >> +endobj +124 0 obj +(HevyMetl Class Reference) +endobj +125 0 obj +<< /S /GoTo /D (section.4.24) >> +endobj +128 0 obj +(Instrmnt Class Reference) +endobj +129 0 obj +<< /S /GoTo /D (section.4.25) >> +endobj +132 0 obj +(JCRev Class Reference) +endobj +133 0 obj +<< /S /GoTo /D (section.4.26) >> +endobj +136 0 obj +(JetTabl Class Reference) +endobj +137 0 obj +<< /S /GoTo /D (section.4.27) >> +endobj +140 0 obj +(Mandolin Class Reference) +endobj +141 0 obj +<< /S /GoTo /D (section.4.28) >> +endobj +144 0 obj +(Mesh2D Class Reference) +endobj +145 0 obj +<< /S /GoTo /D (section.4.29) >> +endobj +148 0 obj +(Messager Class Reference) +endobj +149 0 obj +<< /S /GoTo /D (section.4.30) >> +endobj +152 0 obj +(Modal Class Reference) +endobj +153 0 obj +<< /S /GoTo /D (section.4.31) >> +endobj +156 0 obj +(ModalBar Class Reference) +endobj +157 0 obj +<< /S /GoTo /D (section.4.32) >> +endobj +160 0 obj +(Modulate Class Reference) +endobj +161 0 obj +<< /S /GoTo /D (section.4.33) >> +endobj +164 0 obj +(Moog Class Reference) +endobj +165 0 obj +<< /S /GoTo /D (section.4.34) >> +endobj +168 0 obj +(Noise Class Reference) +endobj +169 0 obj +<< /S /GoTo /D (section.4.35) >> +endobj +172 0 obj +(NRev Class Reference) +endobj +173 0 obj +<< /S /GoTo /D (section.4.36) >> +endobj +176 0 obj +(OnePole Class Reference) +endobj +177 0 obj +<< /S /GoTo /D (section.4.37) >> +endobj +180 0 obj +(OneZero Class Reference) +endobj +181 0 obj +<< /S /GoTo /D (section.4.38) >> +endobj +184 0 obj +(PercFlut Class Reference) +endobj +185 0 obj +<< /S /GoTo /D (section.4.39) >> +endobj +188 0 obj +(PitShift Class Reference) +endobj +189 0 obj +<< /S /GoTo /D (section.4.40) >> +endobj +192 0 obj +(Plucked Class Reference) +endobj +193 0 obj +<< /S /GoTo /D (section.4.41) >> +endobj +196 0 obj +(PluckTwo Class Reference) +endobj +197 0 obj +<< /S /GoTo /D (section.4.42) >> +endobj +200 0 obj +(PoleZero Class Reference) +endobj +201 0 obj +<< /S /GoTo /D (section.4.43) >> +endobj +204 0 obj +(PRCRev Class Reference) +endobj +205 0 obj +<< /S /GoTo /D (section.4.44) >> +endobj +208 0 obj +(ReedTabl Class Reference) +endobj +209 0 obj +<< /S /GoTo /D (section.4.45) >> +endobj +212 0 obj +(Resonate Class Reference) +endobj +213 0 obj +<< /S /GoTo /D (section.4.46) >> +endobj +216 0 obj +(Reverb Class Reference) +endobj +217 0 obj +<< /S /GoTo /D (section.4.47) >> +endobj +220 0 obj +(Rhodey Class Reference) +endobj +221 0 obj +<< /S /GoTo /D (section.4.48) >> +endobj +224 0 obj +(RtDuplex Class Reference) +endobj +225 0 obj +<< /S /GoTo /D (section.4.49) >> +endobj +228 0 obj +(RtMidi Class Reference) +endobj +229 0 obj +<< /S /GoTo /D (section.4.50) >> +endobj +232 0 obj +(RtWvIn Class Reference) +endobj +233 0 obj +<< /S /GoTo /D (section.4.51) >> +endobj +236 0 obj +(RtWvOut Class Reference) +endobj +237 0 obj +<< /S /GoTo /D (section.4.52) >> +endobj +240 0 obj +(Sampler Class Reference) +endobj +241 0 obj +<< /S /GoTo /D (section.4.53) >> +endobj +244 0 obj +(Saxofony Class Reference) +endobj +245 0 obj +<< /S /GoTo /D (section.4.54) >> +endobj +248 0 obj +(Shakers Class Reference) +endobj +249 0 obj +<< /S /GoTo /D (section.4.55) >> +endobj +252 0 obj +(Simple Class Reference) +endobj +253 0 obj +<< /S /GoTo /D (section.4.56) >> +endobj +256 0 obj +(Sitar Class Reference) +endobj +257 0 obj +<< /S /GoTo /D (section.4.57) >> +endobj +260 0 obj +(SKINI Class Reference) +endobj +261 0 obj +<< /S /GoTo /D (section.4.58) >> +endobj +264 0 obj +(Socket Class Reference) +endobj +265 0 obj +<< /S /GoTo /D (section.4.59) >> +endobj +268 0 obj +(StifKarp Class Reference) +endobj +269 0 obj +<< /S /GoTo /D (section.4.60) >> +endobj +272 0 obj +(Stk Class Reference) +endobj +273 0 obj +<< /S /GoTo /D (section.4.61) >> +endobj +276 0 obj +(StkError Class Reference) +endobj +277 0 obj +<< /S /GoTo /D (section.4.62) >> +endobj +280 0 obj +(SubNoise Class Reference) +endobj +281 0 obj +<< /S /GoTo /D (section.4.63) >> +endobj +284 0 obj +(Table Class Reference) +endobj +285 0 obj +<< /S /GoTo /D (section.4.64) >> +endobj +288 0 obj +(TcpWvIn Class Reference) +endobj +289 0 obj +<< /S /GoTo /D (section.4.65) >> +endobj +292 0 obj +(TcpWvOut Class Reference) +endobj +293 0 obj +<< /S /GoTo /D (section.4.66) >> +endobj +296 0 obj +(Thread Class Reference) +endobj +297 0 obj +<< /S /GoTo /D (section.4.67) >> +endobj +300 0 obj +(TubeBell Class Reference) +endobj +301 0 obj +<< /S /GoTo /D (section.4.68) >> +endobj +304 0 obj +(TwoPole Class Reference) +endobj +305 0 obj +<< /S /GoTo /D (section.4.69) >> +endobj +308 0 obj +(TwoZero Class Reference) +endobj +309 0 obj +<< /S /GoTo /D (section.4.70) >> +endobj +312 0 obj +(WaveLoop Class Reference) +endobj +313 0 obj +<< /S /GoTo /D (section.4.71) >> +endobj +316 0 obj +(Wurley Class Reference) +endobj +317 0 obj +<< /S /GoTo /D (section.4.72) >> +endobj +320 0 obj +(WvIn Class Reference) +endobj +321 0 obj +<< /S /GoTo /D (section.4.73) >> +endobj +324 0 obj +(WvOut Class Reference) +endobj +325 0 obj +<< /S /GoTo /D (chapter.5) >> +endobj +328 0 obj +(STK Page Documentation) +endobj +329 0 obj +<< /S /GoTo /D (section.5.1) >> +endobj +332 0 obj +(General Information) +endobj +333 0 obj +<< /S /GoTo /D (section.5.2) >> +endobj +336 0 obj +(Class Documentation) +endobj +337 0 obj +<< /S /GoTo /D (section.5.3) >> +endobj +340 0 obj +(Download and Release Notes) +endobj +341 0 obj +<< /S /GoTo /D (section.5.4) >> +endobj +344 0 obj +(Release Notes:) +endobj +345 0 obj +<< /S /GoTo /D (section.5.5) >> +endobj +348 0 obj +(Usage Documentation) +endobj +349 0 obj +<< /S /GoTo /D (section.5.6) >> +endobj +352 0 obj +(Directory Structure:) +endobj +353 0 obj +<< /S /GoTo /D (section.5.7) >> +endobj +356 0 obj +(Compiling:) +endobj +357 0 obj +<< /S /GoTo /D (section.5.8) >> +endobj +360 0 obj +(Control Data:) +endobj +361 0 obj +<< /S /GoTo /D (section.5.9) >> +endobj +364 0 obj +(Demo: STK Instruments) +endobj +365 0 obj +<< /S /GoTo /D (section.5.10) >> +endobj +368 0 obj +(Demo: Non-Realtime Use) +endobj +369 0 obj +<< /S /GoTo /D (section.5.11) >> +endobj +372 0 obj +(Demo: Realtime Use) +endobj +373 0 obj +<< /S /GoTo /D (section.5.12) >> +endobj +376 0 obj +(Realtime Control Input using Tcl/Tk Graphical User Interfaces:) +endobj +377 0 obj +<< /S /GoTo /D (section.5.13) >> +endobj +380 0 obj +(Realtime MIDI Control Input:) +endobj +381 0 obj +<< /S /GoTo /D (section.5.14) >> +endobj +384 0 obj +(The Mail List) +endobj +385 0 obj +<< /S /GoTo /D (section.5.15) >> +endobj +388 0 obj +(System Requirements) +endobj +389 0 obj +<< /S /GoTo /D (section.5.16) >> +endobj +392 0 obj +(Tutorial) +endobj +393 0 obj +<< /S /GoTo /D (section.5.17) >> +endobj +396 0 obj +(Introduction) +endobj +397 0 obj +<< /S /GoTo /D (section.5.18) >> +endobj +400 0 obj +(Getting Started) +endobj +401 0 obj +<< /S /GoTo /D (section.5.19) >> +endobj +404 0 obj +(Compiling) +endobj +405 0 obj +<< /S /GoTo /D (section.5.20) >> +endobj +408 0 obj +(`\250Realtime`\250 vs. `\250Non-Realtime`\250) +endobj +409 0 obj +<< /S /GoTo /D (section.5.21) >> +endobj +412 0 obj +(To Be Continued ...) +endobj +413 0 obj +<< /S /GoTo /D (section.5.22) >> +endobj +416 0 obj +(Synthesis toolKit Instrument Network Interface \(SKINI\)) +endobj +417 0 obj +<< /S /GoTo /D (section.5.23) >> +endobj +420 0 obj +(MIDI Compatibility) +endobj +421 0 obj +<< /S /GoTo /D (section.5.24) >> +endobj +424 0 obj +(Why SKINI?) +endobj +425 0 obj +<< /S /GoTo /D (section.5.25) >> +endobj +428 0 obj +(SKINI Messages) +endobj +429 0 obj +<< /S /GoTo /D (section.5.26) >> +endobj +432 0 obj +(C Files Used To Implement SKINI) +endobj +433 0 obj +<< /S /GoTo /D (section.5.27) >> +endobj +436 0 obj +(SKINI Messages and the SKINI Parser:) +endobj +437 0 obj +<< /S /GoTo /D (section.5.28) >> +endobj +440 0 obj +(A Short SKINI File:) +endobj +441 0 obj +<< /S /GoTo /D (section.5.29) >> +endobj +444 0 obj +(The SKINI.tbl File and Message Parsing:) +endobj +445 0 obj +<< /S /GoTo /D (section.5.30) >> +endobj +448 0 obj +(Using SKINI:) +endobj +449 0 obj +<< /S /GoTo /D [450 0 R /Fit ] >> +endobj +452 0 obj << +/Length 272 +/Filter /FlateDecode +>> +stream +xÚeMKÄ0†ïý9&,3“¯æª¨ âÆ“zX»•-®]hWañÏ›¢Ée2yæ}ß 2•2ÒÈ{f4‚·†uÍylήÐ34 cñ­ qûÄç~R“çw|©úÜìÅK¼aÒ:0ä˜$–|á㮯øú”Ø–wý<̵E‹ü ÎûÛᘻŽc}½X­²jͬÍ9¤2–I£ ¼æ§:zŸë~š–ëC +‹X¶ñÉ ù{í”ôÛZ_çËô+Ò.cޝ;!1¡)ø—XæÇ~‰X Á•íøPûòq²5WW)R”$°i; +œ …yVhÿ‹ph˜*…!ØoJÎJQ¦›ËØü†‚fZendstream +endobj +450 0 obj << +/Type /Page +/Contents 452 0 R +/Resources 451 0 R +/MediaBox [0 0 612 792] +/Parent 464 0 R +>> endobj +453 0 obj << +/D [450 0 R /XYZ 106.869 686.127 null] +>> endobj +454 0 obj << +/D [450 0 R /XYZ 106.869 667.729 null] +>> endobj +451 0 obj << +/Font << /F17 457 0 R /F19 460 0 R /F20 463 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +467 0 obj << +/Length 8 +/Filter /FlateDecode +>> +stream +xÚendstream +endobj +466 0 obj << +/Type /Page +/Contents 467 0 R +/Resources 465 0 R +/MediaBox [0 0 612 792] +/Parent 464 0 R +>> endobj +468 0 obj << +/D [466 0 R /XYZ 160.667 686.127 null] +>> endobj +465 0 obj << +/ProcSet [ /PDF ] +>> endobj +471 0 obj << +/Length 763 +/Filter /FlateDecode +>> +stream +xÚÕ˜Is›0Çï| +Žâ€ª}9&NÛ4Í! 39dr ¶R{›Öˤýö}`;„¸vÚ̘ñâ=ÿo‘€Æ~4¦Da£l¬ŒÄšÙx8~F÷$E$¾ˆæÖÄO0&˜ZO#¡%fÔÔçEt]G´6ægÛ8¥”cÍ™·ušE>13µÑqöff£{4H(*g §h #—¤ÁCËEò]ÀC<¶Ø*îŸIkÃJc­Xxœ&©eÝf_“”ŽÎ'Þ‚›çs°6ô†ÆáÊ0/ª _f#÷+Iá–ÀÓÁ‡Ù¸ [!à¿k¬Œ­\`pB cèlfÞšwÆ9ùbá‡ü®}2Æ 3èw’ +˜„á`­?HB^þë½4F¥ “gÜ*LcK+ð¬~PNÀˆ¡r5µP[Á‘Ü5{u0TËÜ À×ådáç,A4½#-ÿFš(¼EúÊKþÝ=‡,ˆÈî„\1æ¯2¾qE¾t£êäʧ0x©óû0¾7b»bÑN溰axV†¬®¦®êKù24èY)5‚D÷ê"býä̃¿©¸nµ÷èæn6„À +mކãNÆÄ7Œ ÚùV’ Ìjµ§9kÝØýàÎçÕçMÿô×Mþù“ÇfvÍBR~œ²Å¶ìu”y£;hpÙxÞèq»"®Œ8ê«N±¢;¹öm9í×Í:ï—ËŠŒ2ª©n:1ÈCQúì~: bY¼Ø%l\wÀYgQ«–Ðó²èÊêCÃ}|êygœu#¿Rïwzîí)ï׎Þ4y&;‰˜‘Ôï(`ÕÌ¿ÐâÍh¬:îâÐ0lc¾®…ËÂXÑ£”°]-‚˜ ãÒK\-v­zV°å´3ܰ穀ù|â_JܲNxͯ‡›¼&[ÞÙÝM²Jö¼-Ô¯¹]U2º½—ÓV÷'¿ywË£¼¥ÿä€Í¬·Œ(ו-ZÂ/ne/BZZô1[Êj>9 %±oü.öÕ]õYendstream +endobj +470 0 obj << +/Type /Page +/Contents 471 0 R +/Resources 469 0 R +/MediaBox [0 0 612 792] +/Parent 464 0 R +/Annots [ 476 0 R 480 0 R 484 0 R 485 0 R 486 0 R 487 0 R 488 0 R 489 0 R 490 0 R 491 0 R 492 0 R 493 0 R 494 0 R 495 0 R 496 0 R 497 0 R 498 0 R 499 0 R 500 0 R 501 0 R 502 0 R ] +>> endobj +476 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [105.873 503.239 242.706 512.15] +/Subtype /Link +/A << /S /GoTo /D (chapter.1) >> +>> endobj +480 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 483.612 237.767 494.461] +/Subtype /Link +/A << /S /GoTo /D (section.1.1) >> +>> endobj +484 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [105.873 455.701 237.192 466.549] +/Subtype /Link +/A << /S /GoTo /D (chapter.2) >> +>> endobj +485 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 438.012 237.518 448.86] +/Subtype /Link +/A << /S /GoTo /D (section.2.1) >> +>> endobj +486 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [105.873 410.1 206.198 420.948] +/Subtype /Link +/A << /S /GoTo /D (chapter.3) >> +>> endobj +487 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 392.411 231.015 403.259] +/Subtype /Link +/A << /S /GoTo /D (section.3.1) >> +>> endobj +488 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [105.873 366.437 256.719 375.348] +/Subtype /Link +/A << /S /GoTo /D (chapter.4) >> +>> endobj +489 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 348.747 245.073 357.658] +/Subtype /Link +/A << /S /GoTo /D (section.4.1) >> +>> endobj +490 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 331.058 267.974 339.969] +/Subtype /Link +/A << /S /GoTo /D (section.4.2) >> +>> endobj +491 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 313.369 258.523 322.28] +/Subtype /Link +/A << /S /GoTo /D (section.4.3) >> +>> endobj +492 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 293.742 250.747 304.591] +/Subtype /Link +/A << /S /GoTo /D (section.4.4) >> +>> endobj +493 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 277.99 257.527 286.901] +/Subtype /Link +/A << /S /GoTo /D (section.4.5) >> +>> endobj +494 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 260.301 258.495 269.212] +/Subtype /Link +/A << /S /GoTo /D (section.4.6) >> +>> endobj +495 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 242.612 245.765 251.523] +/Subtype /Link +/A << /S /GoTo /D (section.4.7) >> +>> endobj +496 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 224.923 255.728 233.834] +/Subtype /Link +/A << /S /GoTo /D (section.4.8) >> +>> endobj +497 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 207.233 240.922 216.144] +/Subtype /Link +/A << /S /GoTo /D (section.4.9) >> +>> endobj +498 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 189.544 248.201 198.455] +/Subtype /Link +/A << /S /GoTo /D (section.4.10) >> +>> endobj +499 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 171.855 252.573 180.766] +/Subtype /Link +/A << /S /GoTo /D (section.4.11) >> +>> endobj +500 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 152.228 241.891 163.077] +/Subtype /Link +/A << /S /GoTo /D (section.4.12) >> +>> endobj +501 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 134.539 249.363 145.387] +/Subtype /Link +/A << /S /GoTo /D (section.4.13) >> +>> endobj +502 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 116.85 248.118 127.698] +/Subtype /Link +/A << /S /GoTo /D (section.4.14) >> +>> endobj +475 0 obj << +/D [470 0 R /XYZ 106.869 532.147 null] +>> endobj +469 0 obj << +/Font << /F22 474 0 R /F23 479 0 R /F8 483 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +505 0 obj << +/Length 1090 +/Filter /FlateDecode +>> +stream +xÚÝZKoÛF¾óWðH"%³ïÇ5ŠÓÖ…U"zh’#щL)Y†‘?ßåJ–¬•ì*-@Ì]r9æ÷ÍcgfCd~pHtʹ…Ò©Ä,œ.ƒ7Yðú¡¡Nµ avkf³QYÆŸ²ë!R)ÜÍÁûG7ÙÕM6§ÁU`':A)Õ*LhªÉ>¡p ð:hŸÝ›1J±Öá2`’§+7_“à÷(ÌDÊx˜i?jû•êø#YŠyœpB¢·ù²»å2NpT4qB)‹|µ‚!‹Æ<¸5kì Ù*3˜ÚwâD¥FBpaZïÍ/ÿøÙ +ÃH±ˆa«&ØðBé–Ñp5‰ŠæõEÐ)§ÿ:æÿœêçC:>ª˜èh¤X¸ ·þ'íˆÀ­|wTÝMQMÍ¥p§Áóðd ^µàß•€mí~l09ê‘Æ¥_ãÚ^Ü9Эv}xµ`ýÁË‘/Aïðœf5•½siNü€ñ0ŽþˆêrZìüÖ0°uðSÞÌé4n¿7âpÇfMÝ,'÷»höíœê‰îôFÆýnLh‹ö—bó0,Ö‹‹62.:¶Å f-ô_«ÕºYV åõ ?¬µì4àí²¶ëA«ÔÍ9s¦´G!L0¿+»,íºXgÀòÏ‹såA¼ê,VîW®ËÀ†9ꬆÀ\V¹³ì8'"™Ë†ÅjNÞ>ßÛ±^ž)Ñ#Ð~ôŽ‹;ÿ²_•ab›—Ò.ƒ–ØëåÔefCS…Íò 71Äû𤿠£ø)oòËÊrÖí-]úƒ %‡ø¡4Yä'‹“£^„ìtÂ*ýÒÐõ—s¥˜êÓ¶.µßá]âvS—+ŸjŸ·nEXPþuÙÜ͸ØìHˆm„÷¶VH›:Þ\>÷¾Ú*uí¦zq™0¤úÀós!ŸrñgÑÔ§=”ö!íQÂ\ê7²•z3u=©4ÉAÆÓYØÊo.Û•€v2‡Œÿv}®Â÷®ö×ëÌåy#Pèm¼ݵffÿØþªácØÙ} ;ýåEÎAC¶{LøËyFöÜܸOãÞsIŒp§7ZøMÀex£1 I÷#Òm[÷ׯÌevãÂ95ŽÎ4n^p¸xPÌw‰nHÀèD ã[¬×€È_Ä<Ï€’¼Ó £íí94ç8%Dýà¡6¥)ÑÂHÅ©æüñì…"Õ’íkgsˆŒ”G“‡*6—õ¼å¿\Ámf,#aƒ.‡ß&ÒüV®ÛGeK»^ÁäU;ù ‚Úñ(69VZjÜqê^¡Fô×všWnGƒÉ϶ӾA ŒÚ&øÎiâ7 ·¶ï?Yƒ"¥œSÃÁÒb›Â}›?ÂNHʃÿ XØEænÝ=˜u€,jØ…e†eø[ü;1ök;þ „´˜endstream +endobj +504 0 obj << +/Type /Page +/Contents 505 0 R +/Resources 503 0 R +/MediaBox [0 0 612 792] +/Parent 464 0 R +/Annots [ 506 0 R 507 0 R 508 0 R 509 0 R 510 0 R 511 0 R 512 0 R 513 0 R 514 0 R 515 0 R 516 0 R 517 0 R 518 0 R 519 0 R 520 0 R 521 0 R 522 0 R 523 0 R 524 0 R 525 0 R 526 0 R 527 0 R 528 0 R 529 0 R 530 0 R 531 0 R 532 0 R 533 0 R 534 0 R 535 0 R 536 0 R ] +>> endobj +506 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 656.77 312.902 665.681] +/Subtype /Link +/A << /S /GoTo /D (section.4.15) >> +>> endobj +507 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 638.837 292.368 647.748] +/Subtype /Link +/A << /S /GoTo /D (section.4.16) >> +>> endobj +508 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 618.967 310.356 629.815] +/Subtype /Link +/A << /S /GoTo /D (section.4.17) >> +>> endobj +509 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 602.971 295.163 611.882] +/Subtype /Link +/A << /S /GoTo /D (section.4.18) >> +>> endobj +510 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 585.039 294.029 593.95] +/Subtype /Link +/A << /S /GoTo /D (section.4.19) >> +>> endobj +511 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 567.106 286.557 576.017] +/Subtype /Link +/A << /S /GoTo /D (section.4.20) >> +>> endobj +512 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 549.173 313.733 558.084] +/Subtype /Link +/A << /S /GoTo /D (section.4.21) >> +>> endobj +513 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 529.303 316.196 540.151] +/Subtype /Link +/A << /S /GoTo /D (section.4.22) >> +>> endobj +514 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 511.37 313.539 522.219] +/Subtype /Link +/A << /S /GoTo /D (section.4.23) >> +>> endobj +515 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 495.375 309.194 504.286] +/Subtype /Link +/A << /S /GoTo /D (section.4.24) >> +>> endobj +516 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 477.442 300.255 486.353] +/Subtype /Link +/A << /S /GoTo /D (section.4.25) >> +>> endobj +517 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 459.509 303.991 468.42] +/Subtype /Link +/A << /S /GoTo /D (section.4.26) >> +>> endobj +518 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 441.577 312.155 450.488] +/Subtype /Link +/A << /S /GoTo /D (section.4.27) >> +>> endobj +519 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 423.644 306.537 432.555] +/Subtype /Link +/A << /S /GoTo /D (section.4.28) >> +>> endobj +520 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 403.774 310.633 414.622] +/Subtype /Link +/A << /S /GoTo /D (section.4.29) >> +>> endobj +521 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 387.778 298.595 396.689] +/Subtype /Link +/A << /S /GoTo /D (section.4.30) >> +>> endobj +522 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 369.846 314.535 378.757] +/Subtype /Link +/A << /S /GoTo /D (section.4.31) >> +>> endobj +523 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 351.913 312.432 360.824] +/Subtype /Link +/A << /S /GoTo /D (section.4.32) >> +>> endobj +524 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 332.043 295.274 342.891] +/Subtype /Link +/A << /S /GoTo /D (section.4.33) >> +>> endobj +525 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 316.047 294.499 324.958] +/Subtype /Link +/A << /S /GoTo /D (section.4.34) >> +>> endobj +526 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 298.115 295.412 307.026] +/Subtype /Link +/A << /S /GoTo /D (section.4.35) >> +>> endobj +527 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 280.182 307.312 289.093] +/Subtype /Link +/A << /S /GoTo /D (section.4.36) >> +>> endobj +528 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 262.249 308.032 271.16] +/Subtype /Link +/A << /S /GoTo /D (section.4.37) >> +>> endobj +529 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 244.316 308.862 253.227] +/Subtype /Link +/A << /S /GoTo /D (section.4.38) >> +>> endobj +530 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 226.384 305.098 235.295] +/Subtype /Link +/A << /S /GoTo /D (section.4.39) >> +>> endobj +531 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 208.451 305.098 217.362] +/Subtype /Link +/A << /S /GoTo /D (section.4.40) >> +>> endobj +532 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 190.518 314.507 199.429] +/Subtype /Link +/A << /S /GoTo /D (section.4.41) >> +>> endobj +533 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 172.585 309 181.496] +/Subtype /Link +/A << /S /GoTo /D (section.4.42) >> +>> endobj +534 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 154.653 308.973 163.564] +/Subtype /Link +/A << /S /GoTo /D (section.4.43) >> +>> endobj +535 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 136.72 312.294 145.631] +/Subtype /Link +/A << /S /GoTo /D (section.4.44) >> +>> endobj +536 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 118.787 310.412 127.698] +/Subtype /Link +/A << /S /GoTo /D (section.4.45) >> +>> endobj +503 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +545 0 obj << +/Length 1138 +/Filter /FlateDecode +>> +stream +xÚÕY]oÛ6}÷¯Ð£„Î,¿?^›f…›-éÖöA¶åYˆceŠ6èŸß¥(ÙòL9‰—  X”H‘<çÞCÞ+’Ã+D¥¤6HLnïâÁÛ_) 2’ñ¬lO¿„' /ÎãÓóø2ú ¸äˆ+QÕfY4$afk§ñ€T 1bÆC†Œ¶û¿_¾á`:ÀÁÇ­ÓÁw(cD ÕÍúC”èê~1¸ü±éŠpd8†T•3«§ª÷g +ó’ÑPP~Nï#ªÃÔέGCÆ(à€›€IîléÎ>åÐr–érM6!‚÷1n\¸ñ<Ë—Öy½6¢Ë–¦-Êæ[ óäºÜÑ‹ +ÜÎsÛ-∜¶ˆ\lQg;þíÅ]Ú—±×óÄ—ÇíßÊ…là^%…ÇŸ_Ò˜[Þ_S™/χ‹jËÇÙè|tÈþ\éî`z /Ã~¼z‹×ưŒ +¬“ýªF`Qç÷Çè¬EüfKÂ*›Y¸ÅíqRÀº<(/7x¸~b&C…üŸÜøåi0ÞXG’& §ÖÎE~ÜÊH0!]f€û!ÑÞz|žgQiyçáOq +e§aûÓyYÅxq¤Y˜ŒÛ€Ù‹={k)ûãþÜÈ*Œ'uôXz'¹èòÖÇý[½û8ÿÛ=CêÕ'Ρþ0_V_<ß I¦‡³™>äð¢EÙª¡ì5—±Nú®¾Xn°é²w‹W]üÝÆsù§ˆš0oÍgšyU}X¼D‹¨Íì?Ó"?JÍFuzI“Ũ*€»Š Qbp_äs¡}~{ÈÏwíÞ9ƒK¿²i@^‹Ú˜m_fö ML¼]úE®ª8íê´§}‹Ó;qiÇsWé׺b ôGnÛJ³Ø_•qúîQá°>£cQr¡"¼ŒÏ€ö)bà¥îî½] +i8YߤË +«dUž#æà4DcfÇQnœÆ9_=JƒzˆMm€úé2-’jûY^gyqýÚ>•ê_JèØ9T­ ‚ Jõ;W­Nh AFˆí 0$2Š7ÏUã¹ýºÂÀš`-®æi©åìÎ>æÊH²¬I…ý¹Ÿe+W•-Ý›'oÞ¸ÂØvðà*Á'$¤.6©­ž|Fîzb;ƒ.¯ÝmbÝ"œº›e€hßÚtC° xí'‰áÞv]zS˜þRJ–Œ„`›ç;“Ê‘Åñ"…=½–Äíd_1U»3„"^öe)´Í€^;–øI±½bZÛî‚k;endstream +endobj +544 0 obj << +/Type /Page +/Contents 545 0 R +/Resources 543 0 R +/MediaBox [0 0 612 792] +/Parent 464 0 R +/Annots [ 547 0 R 548 0 R 549 0 R 550 0 R 551 0 R 552 0 R 553 0 R 554 0 R 555 0 R 556 0 R 557 0 R 558 0 R 559 0 R 560 0 R 561 0 R 562 0 R 563 0 R 564 0 R 565 0 R 566 0 R 567 0 R 568 0 R 569 0 R 570 0 R 571 0 R 572 0 R 573 0 R 574 0 R 575 0 R 576 0 R ] +>> endobj +547 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 656.77 247.73 665.681] +/Subtype /Link +/A << /S /GoTo /D (section.4.46) >> +>> endobj +548 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 636.696 250.47 647.544] +/Subtype /Link +/A << /S /GoTo /D (section.4.47) >> +>> endobj +549 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 618.559 259.187 629.407] +/Subtype /Link +/A << /S /GoTo /D (section.4.48) >> +>> endobj +550 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 602.359 248.256 611.27] +/Subtype /Link +/A << /S /GoTo /D (section.4.49) >> +>> endobj +551 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 584.222 252.684 593.133] +/Subtype /Link +/A << /S /GoTo /D (section.4.50) >> +>> endobj +552 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 566.085 260.709 574.996] +/Subtype /Link +/A << /S /GoTo /D (section.4.51) >> +>> endobj +553 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 546.011 252.573 556.859] +/Subtype /Link +/A << /S /GoTo /D (section.4.52) >> +>> endobj +554 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 527.874 256.42 538.722] +/Subtype /Link +/A << /S /GoTo /D (section.4.53) >> +>> endobj +555 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 511.675 250.414 520.586] +/Subtype /Link +/A << /S /GoTo /D (section.4.54) >> +>> endobj +556 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 491.601 246.457 502.449] +/Subtype /Link +/A << /S /GoTo /D (section.4.55) >> +>> endobj +557 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 475.401 238.183 484.312] +/Subtype /Link +/A << /S /GoTo /D (section.4.56) >> +>> endobj +558 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 457.264 245.073 466.175] +/Subtype /Link +/A << /S /GoTo /D (section.4.57) >> +>> endobj +559 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 439.127 245.35 448.038] +/Subtype /Link +/A << /S /GoTo /D (section.4.58) >> +>> endobj +560 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 419.053 254.51 429.901] +/Subtype /Link +/A << /S /GoTo /D (section.4.59) >> +>> endobj +561 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 402.853 231.79 411.764] +/Subtype /Link +/A << /S /GoTo /D (section.4.60) >> +>> endobj +562 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 384.716 255.257 393.627] +/Subtype /Link +/A << /S /GoTo /D (section.4.61) >> +>> endobj +563 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 366.58 257.305 375.491] +/Subtype /Link +/A << /S /GoTo /D (section.4.62) >> +>> endobj +564 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 348.443 241.199 357.354] +/Subtype /Link +/A << /S /GoTo /D (section.4.63) >> +>> endobj +565 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 328.369 258.91 339.217] +/Subtype /Link +/A << /S /GoTo /D (section.4.64) >> +>> endobj +566 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 310.232 266.936 321.08] +/Subtype /Link +/A << /S /GoTo /D (section.4.65) >> +>> endobj +567 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 294.032 248.699 302.943] +/Subtype /Link +/A << /S /GoTo /D (section.4.66) >> +>> endobj +568 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 275.895 256.281 284.806] +/Subtype /Link +/A << /S /GoTo /D (section.4.67) >> +>> endobj +569 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 257.758 254.898 266.669] +/Subtype /Link +/A << /S /GoTo /D (section.4.68) >> +>> endobj +570 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 239.621 255.617 248.532] +/Subtype /Link +/A << /S /GoTo /D (section.4.69) >> +>> endobj +571 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 219.547 262.646 230.395] +/Subtype /Link +/A << /S /GoTo /D (section.4.70) >> +>> endobj +572 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 201.41 248.422 212.259] +/Subtype /Link +/A << /S /GoTo /D (section.4.71) >> +>> endobj +573 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 185.211 241.753 194.122] +/Subtype /Link +/A << /S /GoTo /D (section.4.72) >> +>> endobj +574 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 167.074 249.778 175.985] +/Subtype /Link +/A << /S /GoTo /D (section.4.73) >> +>> endobj +575 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [105.873 134.987 254.717 145.835] +/Subtype /Link +/A << /S /GoTo /D (chapter.5) >> +>> endobj +576 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [120.817 118.787 234.405 127.698] +/Subtype /Link +/A << /S /GoTo /D (section.5.1) >> +>> endobj +546 0 obj << +/D [544 0 R /XYZ 106.869 686.127 null] +>> endobj +543 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +579 0 obj << +/Length 1304 +/Filter /FlateDecode +>> +stream +xÚåY]oÛ6}÷¯ò$¡“ÊO‰ì˰¦Màfõ:[ÁÚ>¨Ž’‘­TVRûó»—¤d9Ö¶]>ì!@D‰Ò5Ͻ‡—ç’Ô#ðG=¦#)µ+%TxóÅèu:zyĸ§#s/=7/¦gýâ6øœ¾óÑOb÷ðð·€ú“ôí$aïèm:¢ÎtH"®•òH+‰–¿Ž>~&ÞÙˆxïF¶ï´IDµö#‘ȈQåîËÑlô{gŠŠ8Ò YbÕŽRml!%Œù‡e¶Z!çÂS!Sþüf‘/h4YSTKèÔ‚PhIÈöå?íûQcJøTâ…4‰b&jîPTømYVÙ‚g~¶4 îOó2ÏÀ#ÔÏ­[&U˜êÃc¥ø3CJ7J‡T8¤‡ž­Öprï¾A’ljé#{¡·t^8]eù?³\QµCpå`Ðã–ÞEÝRvÞTõeö ž5õ üŸcOƒ­:…ÐÅî\ÏÚ¦'3(Û|1>4ø÷ã7ckx(‡×À<“ìy…I“á0 ‹4½Ì-´÷Yá|ùk±‚`ÈG^‡ÜâŒJë‡Ù]—uq¶b`§ùWŒjQÛé»NÃ÷ðçœ (" {«ºÀéëøé#þàNáó"±N÷¦¹Qègk¥Š ”©D‰úx¦£‹²ž9Λ¦ÀŒç’ô¬Éê®$…ªUð=÷ƒ¶~èkzü^îód‰' s‚î`½ZRÿÀÒâvY±sú.œÚª—òÞ{‚ÆÏà°be´—"+ ìõ=AS˜ËMoàNiëøß8„õK‹ÿ²ÛŽ*ÜÎ]ƒ3ytR4­[ÙR߆Þ~h»&yc6¿üÓíÕ†6d–clb×y6wÎÿD$Á’éd<CÂ$¾Cv`j˜ÊN÷õ•Þâ:kŠ/(Ì4opˆw¸ç¶ƒá®O˜Ó€\¢£ï¬o[¿þ Pãd¿òØpÅÂZ xйý±*Ì.°‚ÐJï—:*85xhÙT”ùªWŸºÄÆ7Ráxq]æÝ”ÖvJ¯ U;áO…“‘á=w–|w¬±#C¥ã 7m¥4;qrÿ&¯¬^å5”~úßá ëXìÚ/n˜˜«ºi‡Œp[;ò#Ìiv7†žèÛ`d¸ cú^akÂ5˜ÉËŽÝA·¿Ôµl“`3ÆVõš8ó‡6\°q'·N×;$-‹aPñ~åjFÄÖÙd{¢(%%¢~ðx’s J Vi¤¥\Ÿ¢ +/Žt"ú”†J‚KÐ=Ë. EPñ PP›¬(ñ?ðÌHì*lv4íÃxóÂÞ|ACw¶ý!à1î]ÌqO¦‘û‚é+{ 騭²„lXj¿@–R{|fÆ9ÏÐü-Ú­Ì7ùO†SL“HJa41Øæø`Ë5ìE’< Žil^úD¨tïõÜC„mqð.¾†‹ ü–üs4X¿ü9:endstream +endobj +578 0 obj << +/Type /Page +/Contents 579 0 R +/Resources 577 0 R +/MediaBox [0 0 612 792] +/Parent 464 0 R +/Annots [ 581 0 R 582 0 R 583 0 R 584 0 R 585 0 R 586 0 R 587 0 R 588 0 R 589 0 R 590 0 R 591 0 R 592 0 R 593 0 R 594 0 R 595 0 R 596 0 R 597 0 R 598 0 R 599 0 R 600 0 R 601 0 R 602 0 R 603 0 R 604 0 R 605 0 R 606 0 R 607 0 R 608 0 R 609 0 R ] +>> endobj +581 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 656.77 292.479 665.681] +/Subtype /Link +/A << /S /GoTo /D (section.5.2) >> +>> endobj +582 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 639.145 325.826 648.056] +/Subtype /Link +/A << /S /GoTo /D (section.5.3) >> +>> endobj +583 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 621.521 262.591 630.432] +/Subtype /Link +/A << /S /GoTo /D (section.5.4) >> +>> endobj +584 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 601.959 295.468 612.697] +/Subtype /Link +/A << /S /GoTo /D (section.5.5) >> +>> endobj +585 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 584.335 287.774 595.072] +/Subtype /Link +/A << /S /GoTo /D (section.5.6) >> +>> endobj +586 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 566.711 247.121 577.559] +/Subtype /Link +/A << /S /GoTo /D (section.5.7) >> +>> endobj +587 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 551.023 260.017 559.934] +/Subtype /Link +/A << /S /GoTo /D (section.5.8) >> +>> endobj +588 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 533.399 308.004 542.199] +/Subtype /Link +/A << /S /GoTo /D (section.5.9) >> +>> endobj +589 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 515.775 311.38 524.686] +/Subtype /Link +/A << /S /GoTo /D (section.5.10) >> +>> endobj +590 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 498.15 290.071 507.061] +/Subtype /Link +/A << /S /GoTo /D (section.5.11) >> +>> endobj +591 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 478.035 480.344 489.99] +/Subtype /Link +/A << /S /GoTo /D (section.5.12) >> +>> endobj +592 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 460.964 332.108 471.813] +/Subtype /Link +/A << /S /GoTo /D (section.5.13) >> +>> endobj +593 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 445.277 259.768 454.188] +/Subtype /Link +/A << /S /GoTo /D (section.5.14) >> +>> endobj +594 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 425.716 293.614 436.453] +/Subtype /Link +/A << /S /GoTo /D (section.5.15) >> +>> endobj +595 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 410.028 234.696 418.939] +/Subtype /Link +/A << /S /GoTo /D (section.5.16) >> +>> endobj +596 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 392.404 254.067 401.315] +/Subtype /Link +/A << /S /GoTo /D (section.5.17) >> +>> endobj +597 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 372.843 268.25 383.691] +/Subtype /Link +/A << /S /GoTo /D (section.5.18) >> +>> endobj +598 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 355.218 244.354 366.066] +/Subtype /Link +/A << /S /GoTo /D (section.5.19) >> +>> endobj +599 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 339.531 338.224 348.442] +/Subtype /Link +/A << /S /GoTo /D (section.5.20) >> +>> endobj +600 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 321.907 285.45 330.818] +/Subtype /Link +/A << /S /GoTo /D (section.5.21) >> +>> endobj +601 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 301.792 446.347 313.747] +/Subtype /Link +/A << /S /GoTo /D (section.5.22) >> +>> endobj +602 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 284.721 287.11 295.569] +/Subtype /Link +/A << /S /GoTo /D (section.5.23) >> +>> endobj +603 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 267.096 256.254 277.945] +/Subtype /Link +/A << /S /GoTo /D (section.5.24) >> +>> endobj +604 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 249.472 270.533 260.209] +/Subtype /Link +/A << /S /GoTo /D (section.5.25) >> +>> endobj +605 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 231.848 350.871 242.696] +/Subtype /Link +/A << /S /GoTo /D (section.5.26) >> +>> endobj +606 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 214.223 372.07 225.071] +/Subtype /Link +/A << /S /GoTo /D (section.5.27) >> +>> endobj +607 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 198.536 287.968 207.447] +/Subtype /Link +/A << /S /GoTo /D (section.5.28) >> +>> endobj +608 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 178.974 379.874 189.823] +/Subtype /Link +/A << /S /GoTo /D (section.5.29) >> +>> endobj +609 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.615 161.35 258.246 172.088] +/Subtype /Link +/A << /S /GoTo /D (section.5.30) >> +>> endobj +580 0 obj << +/D [578 0 R /XYZ 160.667 686.127 null] +>> endobj +577 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +612 0 obj << +/Length 851 +/Filter /FlateDecode +>> +stream +xÚåY[oÓ0~ϯȣ#ãkló¶îÂHl,Ó²¶ÐŠ4)iÊØ¿ç;í6‘"@h‚T“×öùœóùÜìð˜Á9˨Í\œYMpñx}‰®®Y<‰Xü*bT:ßB›Qî\¼ˆ”ÑTpÛý.£Ëè"âÎvqÊ™¥FsÄåÑó!bÁh–É8ÿègæ“+r8+–m’r2m’TšŒðä:&+j¬ “S­©²Â‹\æ¯qª&§óäP¸)šq"9™ÍÇE‰ƒŠœU“é·-WTª ±Òîí2I•–SÀá€Ã…¾G?„βXÁÿUÏrø€%™áºwa!;ê6ú¥ÂPåüùlŽR’y5Û‚@cÞU‚@©ï”R‘»WØÑv"ÝÀ˜ï®Q°õ줩ן¶¼K¬"Ï‚ØÍº“Çê®íªËróíô",«¸IRaÉ´EFa'/PG$’ ›kh&TØF?š¤Ê9|hÆrH…†Ô÷~ •&Kmwsl@„¬8Pý³ÝµóYµj›E…Ñ ÎìMÍœ‰5sQM61ï‘—âV2÷¥‡Q®¬Fþþ°-!³flˆQðŸhê£bwbœæ}W-xSiH8"M°0Úƒ;¡ûˆhŠÕ +§‘{@€{D@®fË¢Á•j +A[>äsbŸ'5xc²Xl>U&†¨»òñ/:ηó6ßË”aT©?û0øÑ¢oendstream +endobj +611 0 obj << +/Type /Page +/Contents 612 0 R +/Resources 610 0 R +/MediaBox [0 0 612 792] +/Parent 638 0 R +/Annots [ 613 0 R 614 0 R 615 0 R 616 0 R 617 0 R 618 0 R 619 0 R 620 0 R 621 0 R 622 0 R 623 0 R 624 0 R 625 0 R 626 0 R 627 0 R 628 0 R 629 0 R 630 0 R 631 0 R 632 0 R 633 0 R 634 0 R 635 0 R 636 0 R 637 0 R ] +>> endobj +613 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [434.64 411.933 451.577 420.346] +/Subtype /Link +/A << /S /GoTo /D (section.4.60) >> +>> endobj +614 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 398.459 451.577 406.872] +/Subtype /Link +/A << /S /GoTo /D (section.4.8) >> +>> endobj +615 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 386.504 451.577 394.916] +/Subtype /Link +/A << /S /GoTo /D (section.4.10) >> +>> endobj +616 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 374.548 451.577 382.961] +/Subtype /Link +/A << /S /GoTo /D (section.4.16) >> +>> endobj +617 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 362.593 451.577 371.006] +/Subtype /Link +/A << /S /GoTo /D (section.4.17) >> +>> endobj +618 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 350.116 451.577 358.528] +/Subtype /Link +/A << /S /GoTo /D (section.4.1) >> +>> endobj +619 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 337.638 451.577 346.051] +/Subtype /Link +/A << /S /GoTo /D (section.4.18) >> +>> endobj +620 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 325.16 451.577 333.573] +/Subtype /Link +/A << /S /GoTo /D (section.4.4) >> +>> endobj +621 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 312.682 451.577 321.095] +/Subtype /Link +/A << /S /GoTo /D (section.4.22) >> +>> endobj +622 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 300.205 451.577 308.618] +/Subtype /Link +/A << /S /GoTo /D (section.4.12) >> +>> endobj +623 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 287.727 451.577 296.14] +/Subtype /Link +/A << /S /GoTo /D (section.4.13) >> +>> endobj +624 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 275.772 451.577 284.185] +/Subtype /Link +/A << /S /GoTo /D (section.4.14) >> +>> endobj +625 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 263.294 451.577 271.707] +/Subtype /Link +/A << /S /GoTo /D (section.4.36) >> +>> endobj +626 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 251.339 451.577 259.752] +/Subtype /Link +/A << /S /GoTo /D (section.4.37) >> +>> endobj +627 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 239.384 451.577 247.797] +/Subtype /Link +/A << /S /GoTo /D (section.4.42) >> +>> endobj +628 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [434.64 227.429 451.577 235.842] +/Subtype /Link +/A << /S /GoTo /D (section.4.68) >> +>> endobj +629 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [434.64 215.474 451.577 223.886] +/Subtype /Link +/A << /S /GoTo /D (section.4.69) >> +>> endobj +630 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 202.996 451.577 211.409] +/Subtype /Link +/A << /S /GoTo /D (section.4.24) >> +>> endobj +631 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 190.518 451.577 198.931] +/Subtype /Link +/A << /S /GoTo /D (section.4.2) >> +>> endobj +632 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 178.563 451.577 186.976] +/Subtype /Link +/A << /S /GoTo /D (section.4.5) >> +>> endobj +633 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 166.608 451.577 175.021] +/Subtype /Link +/A << /S /GoTo /D (section.4.6) >> +>> endobj +634 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 154.653 451.577 163.066] +/Subtype /Link +/A << /S /GoTo /D (section.4.7) >> +>> endobj +635 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 142.697 451.577 151.11] +/Subtype /Link +/A << /S /GoTo /D (section.4.9) >> +>> endobj +636 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 130.742 451.577 139.155] +/Subtype /Link +/A << /S /GoTo /D (section.4.11) >> +>> endobj +637 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 118.787 451.577 127.2] +/Subtype /Link +/A << /S /GoTo /D (section.4.15) >> +>> endobj +6 0 obj << +/D [611 0 R /XYZ 106.869 667.729 null] +>> endobj +10 0 obj << +/D [611 0 R /XYZ 106.869 481.645 null] +>> endobj +610 0 obj << +/Font << /F22 474 0 R /F8 483 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +641 0 obj << +/Length 1229 +/Filter /FlateDecode +>> +stream +xÚå[ÉrÛF½ó+pÊ2ûr•Ç’BE!QÑÁñ"!%Šp¸Yªü|ºg@-¥A|ˆ’(ƒÒÀ ßôú¦E4a¶Ò&ÊØBS‘ÌnFGåèû÷Œ'¶°Š'å•»±œLYö©Y´àåu:¯ïÀ¦-‹LnަMT@ðÍ×ûä‡å÷Þm *‘6*ñeHü‹Ìˆt·^NpX}kuŒ«¯¼øù“ˆÆãzƒ²/öžòÉN¤]Ù€Œ;ëÇ$Tz£y_zóÅä蹌+ði°/ø9:Ý,á¯3f½?˜C4 &bE°,” <†‚¦åW<½‚F‰xn g¬V ÿ¼E<šè‚ÖQ¥º×&>ÏoQþ +K`+ydkoaé) éÿ´ºùr/èM¤±ÀA@í7bAûî¤úµéú FÛkÓê4¡½C€ôÓCMcTFCv€)auíë F&b;`<À}L€àýÀÁ#ˆ×g ÿ¡bÉa±Å¬P(;&ÐCâ ¦[Ì®NÑ>Ö_¹VCÀûó„“zë(„êJ'ã9ÁøPxzrIR" ¡’v¥tõ¹+±œüïeý&šþE=ÄÒÒ¥Z’øuBë@9k› æÏVFí+pÚ—XNãÈdn/Á‘oÆDY`ÑÏ8¸xê’¬æj1ÓÐ Ú˜ÔéBÓ‡ ¢Ú‹@ƒ’0{—z»*Ôñóf@.ÄãÒKÍœ¼õÅ3r?c«D@CÎPErKÀX"*'h šÀcM@=OÙOS8¶ïv¾H½ÍreżCp+×A1n0Š4®kE Æ]Ò ‹ƒUêñÙ1> endobj +642 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 656.77 505.375 665.183] +/Subtype /Link +/A << /S /GoTo /D (section.4.19) >> +>> endobj +643 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 644.814 505.375 653.227] +/Subtype /Link +/A << /S /GoTo /D (section.4.20) >> +>> endobj +644 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 632.062 505.375 640.475] +/Subtype /Link +/A << /S /GoTo /D (section.4.3) >> +>> endobj +645 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 620.107 505.375 628.52] +/Subtype /Link +/A << /S /GoTo /D (section.4.21) >> +>> endobj +646 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 608.152 505.375 616.565] +/Subtype /Link +/A << /S /GoTo /D (section.4.23) >> +>> endobj +647 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 596.197 505.375 604.61] +/Subtype /Link +/A << /S /GoTo /D (section.4.38) >> +>> endobj +648 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 584.242 505.375 592.654] +/Subtype /Link +/A << /S /GoTo /D (section.4.47) >> +>> endobj +649 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 572.286 505.375 580.699] +/Subtype /Link +/A << /S /GoTo /D (section.4.67) >> +>> endobj +650 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 560.331 505.375 568.744] +/Subtype /Link +/A << /S /GoTo /D (section.4.71) >> +>> endobj +651 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 547.579 505.375 555.992] +/Subtype /Link +/A << /S /GoTo /D (section.4.28) >> +>> endobj +652 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 535.624 505.375 544.037] +/Subtype /Link +/A << /S /GoTo /D (section.4.30) >> +>> endobj +653 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 522.872 505.375 531.285] +/Subtype /Link +/A << /S /GoTo /D (section.4.31) >> +>> endobj +654 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 510.12 505.375 518.532] +/Subtype /Link +/A << /S /GoTo /D (section.4.40) >> +>> endobj +655 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 498.164 505.375 506.577] +/Subtype /Link +/A << /S /GoTo /D (section.4.41) >> +>> endobj +656 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 485.412 505.375 493.825] +/Subtype /Link +/A << /S /GoTo /D (section.4.27) >> +>> endobj +657 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 472.66 505.375 481.073] +/Subtype /Link +/A << /S /GoTo /D (section.4.45) >> +>> endobj +658 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 460.705 505.375 469.118] +/Subtype /Link +/A << /S /GoTo /D (section.4.52) >> +>> endobj +659 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 447.953 505.375 456.366] +/Subtype /Link +/A << /S /GoTo /D (section.4.33) >> +>> endobj +660 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 435.2 505.375 443.613] +/Subtype /Link +/A << /S /GoTo /D (section.4.53) >> +>> endobj +661 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 423.245 505.375 431.658] +/Subtype /Link +/A << /S /GoTo /D (section.4.54) >> +>> endobj +662 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 411.29 505.375 419.703] +/Subtype /Link +/A << /S /GoTo /D (section.4.55) >> +>> endobj +663 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 399.335 505.375 407.748] +/Subtype /Link +/A << /S /GoTo /D (section.4.56) >> +>> endobj +664 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 387.38 505.375 395.793] +/Subtype /Link +/A << /S /GoTo /D (section.4.59) >> +>> endobj +665 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 374.628 505.375 383.041] +/Subtype /Link +/A << /S /GoTo /D (section.4.26) >> +>> endobj +666 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 362.672 505.375 371.085] +/Subtype /Link +/A << /S /GoTo /D (section.4.29) >> +>> endobj +667 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 350.717 505.375 359.13] +/Subtype /Link +/A << /S /GoTo /D (section.4.32) >> +>> endobj +668 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 338.762 505.375 347.175] +/Subtype /Link +/A << /S /GoTo /D (section.4.34) >> +>> endobj +669 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 326.01 505.375 334.423] +/Subtype /Link +/A << /S /GoTo /D (section.4.62) >> +>> endobj +670 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 313.258 505.375 321.671] +/Subtype /Link +/A << /S /GoTo /D (section.4.39) >> +>> endobj +671 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 301.303 505.375 309.715] +/Subtype /Link +/A << /S /GoTo /D (section.4.44) >> +>> endobj +672 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 289.347 505.375 297.76] +/Subtype /Link +/A << /S /GoTo /D (section.4.46) >> +>> endobj +673 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 276.595 505.375 285.008] +/Subtype /Link +/A << /S /GoTo /D (section.4.25) >> +>> endobj +674 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 264.64 505.375 273.053] +/Subtype /Link +/A << /S /GoTo /D (section.4.35) >> +>> endobj +675 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 252.685 505.375 261.098] +/Subtype /Link +/A << /S /GoTo /D (section.4.43) >> +>> endobj +676 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 239.933 505.375 248.346] +/Subtype /Link +/A << /S /GoTo /D (section.4.48) >> +>> endobj +677 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 227.978 505.375 236.39] +/Subtype /Link +/A << /S /GoTo /D (section.4.49) >> +>> endobj +678 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 216.022 505.375 224.435] +/Subtype /Link +/A << /S /GoTo /D (section.4.57) >> +>> endobj +679 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 204.067 505.375 212.48] +/Subtype /Link +/A << /S /GoTo /D (section.4.58) >> +>> endobj +680 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 192.112 505.375 200.525] +/Subtype /Link +/A << /S /GoTo /D (section.4.63) >> +>> endobj +681 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 180.157 505.375 188.57] +/Subtype /Link +/A << /S /GoTo /D (section.4.66) >> +>> endobj +682 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 168.202 505.375 176.615] +/Subtype /Link +/A << /S /GoTo /D (section.4.72) >> +>> endobj +683 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 155.45 505.375 163.862] +/Subtype /Link +/A << /S /GoTo /D (section.4.50) >> +>> endobj +684 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 143.494 505.375 151.907] +/Subtype /Link +/A << /S /GoTo /D (section.4.64) >> +>> endobj +685 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 131.539 505.375 139.952] +/Subtype /Link +/A << /S /GoTo /D (section.4.70) >> +>> endobj +686 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 118.787 505.375 127.2] +/Subtype /Link +/A << /S /GoTo /D (section.4.73) >> +>> endobj +639 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +689 0 obj << +/Length 462 +/Filter /FlateDecode +>> +stream +xÚÝTKO1¾ûWøh <õøµöµm‡¶Äàn¶JDHÚdKõÏ×ã]RŽTU+íŒ=öçùæ…\—9êLˆ<Ä :ÞÞ³÷™½û`,O‚åù{=™ç×¥²Ñ‰i¾ ÅŠÉj¶Û ê§e·m%ŠVZ#ôÛËÛ|Î]ˆ`’1,í±³Ìpt@i°)qe!EOÏÿd×·šÏ™æçŒl‘ÿ.º,§î™k<ŒãzŦìëÊð†+ÓTÇ™Äc"—ÒDÑ_=|.îþê¥ò¡õ±p)½ŽíŸ‚¥hb¨ Ð\!Bò¾rÏ­T(~æOüCrÿq•¸2¬k +ýR\.VúÓ¾p¾;£BÝn¶¥t_•ì›RƒA ;nű¼G0&¾¬Ƕ+ï0V÷¼ó¢+~Z/¦ûµ,¢_t;ªÑ厶Èu›’+O«‹e?˜–ëáæäädP¾À~0~‘6ˆ®fzܹ„AN¬@Þ ËÙšPçÃâ#éu`ÊŒ¬¡$Û½ð@Лz­;­µf’ïm¡m°©´ZÚ/ŒýcUâ«=¼€¡ºÑèÇsÏ"ƒ\Å¢ÖÉ›½åÿMR›ÇÔýSö-‹endstream +endobj +688 0 obj << +/Type /Page +/Contents 689 0 R +/Resources 687 0 R +/MediaBox [0 0 612 792] +/Parent 638 0 R +/Annots [ 690 0 R 691 0 R 692 0 R ] +>> endobj +690 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [434.64 656.77 451.577 665.183] +/Subtype /Link +/A << /S /GoTo /D (section.4.51) >> +>> endobj +691 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [434.64 644.814 451.577 653.227] +/Subtype /Link +/A << /S /GoTo /D (section.4.65) >> +>> endobj +692 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [434.64 630.867 451.577 639.28] +/Subtype /Link +/A << /S /GoTo /D (section.4.61) >> +>> endobj +687 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +695 0 obj << +/Length 348 +/Filter /FlateDecode +>> +stream +xÚ¥’ÉNÃ0†ï~ +m·ÄW[{ê[é!$A­è"Ú +¨xy=)pCÝy@K›Y&©‹eIeœå¾´RhèŸ{ð @%Ž=endstream +endobj +694 0 obj << +/Type /Page +/Contents 695 0 R +/Resources 693 0 R +/MediaBox [0 0 612 792] +/Parent 638 0 R +>> endobj +693 0 obj << +/Font << /F23 479 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +698 0 obj << +/Length 1676 +/Filter /FlateDecode +>> +stream +xÚÍYKs£8¾ûWøˆ«ÖZ$${›W6ó:Ìĵ{˜±•˜*l<@&›ýõÛ­6™y%™©T„Púúën…OCøãSÆLÇé4ÖŠ%".7“O“ÃéjN_MB¥zz ÷!ãi:ÝLd¢˜àÚ=“‹É» w“áèt:ç¡f‰â8×ÓÅä÷3!¦"dqMWväbõ!x¶ÎvÍlÎSÍæQböqñŠK–è„Ï•bR ûÊÅâ5UÁ³rƃÍx€·7Ûu¼Ü® Îùï~..Y$cœkîVGLªÈN(¼Ìá.Tgvh,7ðƒý¼Ékxlhz=MYÚZ5šÉ(¶óž› +–E2È*î½‰‚%.±ÈêÚ®µþZk|hpüͲ±®ãš¶y¹…KífÅûõæÛ™ÐAcª+hËìÔÆ »Í›5 º„¾*7Wô´¢5Átv8~2‡½€ßr[ÿ᠋Ɔ<‰`_¦¥´>y~ñ~B„JÜþþªðæ\à'^Ó‡á-hyO«3váŸñÇ%`-’©%€cדÀöİ;l6—iІÃË7÷}ó \ð8à|ˆÎÜ™ #&ešWÏ€>`Š9KïÀ„£Û-q»z‹°d€°ë‰¯„Ú”šV¦È‘×ð,zžÐɽƒGXHζÆ,Ö•1g +ç4]γͦ´Ð̱µÌ¬/«kp{{ö¯‚üçH•¢§Ù§üà2ù¶&ßÚX,Éif-HR‡§¬Œ=Vº•÷¬ÌßÝd«FÆ#&¢cæŸpc3gŽjpu@ÄŠ5žü£,Œ…Îù$£%ÙB“Àî€Æ4†œd§O †ê»¸¸$×\ÈÚ,E9‘¾…Å<-›bˆOÊ´R_æ@c·m ’¾ÄÍk +Óî.í4·{ZÁ&» îë-}>upžåvtè‚Eá)•>ìd…ÜÞš4°ƒk´ø®Î­µYA#AÏ·­[`dÀ†rkhŠÊ\çõž/صÆ8X¸n”(X'Ø!™”®àéŠì±¡© r0áº,Z9sžˆ{Güq…_D>á‡x¨Žd DÍ¿Å3Tƒ(†ÔC޲ÝzùÞ·ЮƒÄG$f(ëù=®…NغǀGùà!k=ð,fid—9H˜ÐúG’V`~ãõ'JCB(ñi™ÛC¨Êj«eî„,IÇ’«:ßìZ‹/1Ô9"8…D¹8Í‹ÐáGùH@B©Cdu¡gV—ªD)©h‰&¯K›8\ „ÊÈâ±l¼ù“N“Ÿ!SÞ>‹SäÍAÉôN$0B œ J¢Q”ºÑvûЂa[,ƒJë‹6´x¼LR”½W­ñä!‘O˜ÉÂ.ÏM‘¡ôÜ IÃ™ŽÆ²P”•r;Ï÷)#ÅÈ6!Ë‹•Sæ~Á¢GJÌýUÔòyÈx5™¬õBódÈ”©`“¡f;ë0.ÃôÛ´eåŽr5«,Mþµ u¼/V÷£"¯“…^<Þ ¹¢ÔÁ§á@;Áå²ê¨4ÿa®(.î/õ!vxÕÖÚ×ã06¦òeªb´¾YÙtœ¦@»êlCÕ ÐÆ™jïm©ë¯X\)ûHñHútÖÜ…èÅÙ².àˆ„%| ³ÄƆ³N0²,ý¥K,ä¯Hr>MvhôÛÎÀÄÏ6Y¶v–tâ6¬ˆ$s,dœ%]fµ_Z þM"|„”O£ÉØ.PgyÑ•zÂ×h0?œTc©žñ/C¬¯'U2™øãÜQpVÜ4Cb‰”%ZŽã§0]lL/j:)Q§Òîxn;Ðá¬uô8U«GòUèsK ‡ÔÛ!LœÉpLʲËýLµ?‡nºtP ÎÕ®Vé9h«$}`n, | þš¥*(ó¥©}±Pëx´@³ê> êá¢ñD¦=–Ï¿P´9|xt_Õ©RþX‡õ0ÀÂÝÖOv9·(àf7ÄBAZ5Z¬Rõnv–8m*pESgÝÒ¬£^G9ț\W>QqVu97ŸïÞÏÁ¦ŠX4Z®ïw›Nù]¸1M+({zØsíY{fíaɉÃOÇÅ¿Ã)bŸV8›ºö¿tÇê:T‡àÝøu’dLcÇÏ&²KèÊÚ„è´ZDúÞ•ÕR!¶ú0y±Øÿ›³ýO¢LB&å÷ýËôÆõ€¼endstream +endobj +697 0 obj << +/Type /Page +/Contents 698 0 R +/Resources 696 0 R +/MediaBox [0 0 612 792] +/Parent 638 0 R +/Annots [ 700 0 R 701 0 R 702 0 R 703 0 R 704 0 R 705 0 R 706 0 R 707 0 R 708 0 R 709 0 R 710 0 R 711 0 R 712 0 R 713 0 R 714 0 R 715 0 R 716 0 R 717 0 R 718 0 R 719 0 R 720 0 R 721 0 R 722 0 R 723 0 R 724 0 R 725 0 R 726 0 R ] +>> endobj +700 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 410.767 451.577 419.179] +/Subtype /Link +/A << /S /GoTo /D (section.4.1) >> +>> endobj +701 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 398.592 451.577 407.004] +/Subtype /Link +/A << /S /GoTo /D (section.4.2) >> +>> endobj +702 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [291.985 383.926 309.613 395.881] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +703 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 386.417 451.577 394.83] +/Subtype /Link +/A << /S /GoTo /D (section.4.3) >> +>> endobj +704 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 374.242 451.577 382.655] +/Subtype /Link +/A << /S /GoTo /D (section.4.4) >> +>> endobj +705 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 362.067 451.577 370.48] +/Subtype /Link +/A << /S /GoTo /D (section.4.5) >> +>> endobj +706 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 337.937 451.577 346.349] +/Subtype /Link +/A << /S /GoTo /D (section.4.6) >> +>> endobj +707 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 325.762 451.577 334.174] +/Subtype /Link +/A << /S /GoTo /D (section.4.7) >> +>> endobj +708 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 313.587 451.577 321.999] +/Subtype /Link +/A << /S /GoTo /D (section.4.8) >> +>> endobj +709 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 301.412 451.577 309.825] +/Subtype /Link +/A << /S /GoTo /D (section.4.9) >> +>> endobj +710 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 289.237 451.577 297.65] +/Subtype /Link +/A << /S /GoTo /D (section.4.10) >> +>> endobj +711 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 277.062 451.577 285.475] +/Subtype /Link +/A << /S /GoTo /D (section.4.11) >> +>> endobj +712 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 264.887 451.577 273.3] +/Subtype /Link +/A << /S /GoTo /D (section.4.12) >> +>> endobj +713 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 252.712 451.577 261.125] +/Subtype /Link +/A << /S /GoTo /D (section.4.13) >> +>> endobj +714 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 240.537 451.577 248.95] +/Subtype /Link +/A << /S /GoTo /D (section.4.14) >> +>> endobj +715 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 228.362 451.577 236.775] +/Subtype /Link +/A << /S /GoTo /D (section.4.15) >> +>> endobj +716 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 216.187 451.577 224.6] +/Subtype /Link +/A << /S /GoTo /D (section.4.16) >> +>> endobj +717 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 204.012 451.577 212.425] +/Subtype /Link +/A << /S /GoTo /D (section.4.17) >> +>> endobj +718 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 191.837 451.577 200.25] +/Subtype /Link +/A << /S /GoTo /D (section.4.18) >> +>> endobj +719 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 179.662 451.577 188.075] +/Subtype /Link +/A << /S /GoTo /D (section.4.19) >> +>> endobj +720 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 167.487 451.577 175.9] +/Subtype /Link +/A << /S /GoTo /D (section.4.20) >> +>> endobj +721 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [234.424 152.821 252.052 164.776] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +722 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 155.312 451.577 163.725] +/Subtype /Link +/A << /S /GoTo /D (section.4.21) >> +>> endobj +723 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 143.137 451.577 151.55] +/Subtype /Link +/A << /S /GoTo /D (section.4.22) >> +>> endobj +724 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [257.295 128.471 274.924 140.427] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +725 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 130.962 451.577 139.375] +/Subtype /Link +/A << /S /GoTo /D (section.4.23) >> +>> endobj +726 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [439.621 118.787 451.577 127.2] +/Subtype /Link +/A << /S /GoTo /D (section.4.24) >> +>> endobj +699 0 obj << +/D [697 0 R /XYZ 106.869 686.127 null] +>> endobj +14 0 obj << +/D [697 0 R /XYZ 106.869 667.729 null] +>> endobj +18 0 obj << +/D [697 0 R /XYZ 106.869 476.826 null] +>> endobj +696 0 obj << +/Font << /F22 474 0 R /F8 483 0 R /F23 479 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +730 0 obj << +/Length 2688 +/Filter /FlateDecode +>> +stream +xÚÕ[]sÚJ}÷¯à튺Yó)ÍãÆ‰·œ¬¯¡êVÝd£5 V;¾÷ÏïôôFhPH‚o¥Ê ‰é£îÓݧÒ‹ô?Ò£*Bõd¢Â˜ðÞx~òftrzNYO…J²ÞèÖ|p4ù=ý?Gï{L¨Pr{h8úа„gÅ|©_Ñ X/&xèb1É>Ã%'ïF'Ä~Ý +™JzªDÀ·ý÷ä÷?£Þä$ê½?Ásúu¥zó‹’ľŸ Oþ½¹á"”úV46 íZùû³ëì–rzžlϲ8äQb?òG$¢÷Å´O‚…^>ÓM‹>M‚ÇE¾Ðï~ZÁa”úMÖàÎfåM_/À©´*J¼~4‡Oe ð) è¼Ðž•“lfý >1sÝ*aÉEb +Ö$DA" +ÙJ¯bJß¶†‡ ûG`P1€ƒáùܸ  hŒÈ x™Z ËÌØXåàH&ȩ̂SPæ^)üÁЃsw€]>É,dDsç)â‹ i_´A(tås´®áŠUz—•m04¡ +Öá `æb TÎÖˆPTeaAAÄ0˜ô÷àÁeZ®²mL>#£È &>,и…áÿ >Ð׊É06´º*&Ê îs- ÑÚpàˆž'x©óÏ‹P BÄ|¤k,Þ^ò›´í6‚…±JG +œþ­c%ß„XŸ_×q·ýôC NžÉ}|ÜjÜÎÚ€“VYrÖ••–˜ËÜ’'°Ãø´´¼=GÓçÛ“ëYZ!ÛXŠIò\ùÁðR,壀£J$Œ»r ZWÜ fù½%J8nöã†9—[Þù#"|VeÖuVé¼>$|‡¨­žlvÒ䊛¯ÜÌ´!YEÄažá#Ycœ›m>ùªíL§%Ù%°ps¥YûÝ&í4 +5ëú1Ñ’ãÛ\'ñѰ…ÁuÞJ—†$vá:;»¾üÇOöù}¼6üùPgámz Ü׋÷±3*_„ÃK¹h¦ ǧEvÕ‡PšµˆCo¡:œ¨Øx̉¥¨ë[MÔì€!"ö‹Z·!H| µ|¨ß2xÞE'RÎÃé¯ß‡!Å©øña‡HIRh»‹”ñ§¬ŸƒY`̺jC‡$JHTã5fáüÁ¡j™0u¡õ¶óKKÍ–‚§› _R %"þ*ªI|@ E.5_妇Ârrxu낆RtÅØ*Ÿ/guY›W¦òÓÈLíÙi~k¯2Ç2 3ƕߥ¾œ€¾‹{Täà m8Êl=î3Ü÷aÕØyðIH·£hÓô}ôÓ¼ßðò»›m—/kŒ¥|A +RÔîÇKCðhXÛW“Xtà•-ÀÓÅØj9[׎… NœšÈ¸­tœú0Cø|‚NœoÏæŠû«b°­Å5¨7d¿ÁzÊÂÇ5RɯLc¿ ©xÊôç‡2÷®/éï>º/¹´¬¤ŸÀæT×à;gzyu9ãJ(·{¸B l~ªõ=ÃG}Ûzro5×4u>§‘’ò¹Å-t åG tQ¹6+Ï&Æ%”P¥ó*W„ÒuÖ¡ÓÖû\UŠ'¯Fè‹5Z$Šöh[„5R¢Žn®= (WaÔ)ê4ûމ¡–­YÕï¶(ç©«õ9¡V ¦ê™ :Ö¡E"ê×v¢mçÚ*ÞuÃHhu*¤´+——AÎíC71vôãƒuõeºùh‡ž¡¸8žÏ!V^eMn`5µJFöäSÕUÒ…Ðy?áÁ¦YÔÌkîiÔ/ËRYMŶ*s”ÌàÜ27rGaïx餺'3ÞØSB.g=o”4é×ÉÁ¦ÀÄÕ[ȹKÌ]ŸÛŒCȤs¥`ge¤cXgº6ªNQ ]P ­«ÓÂÌ-9µ•®¸Gp $_líjÃqYWÉ“Ü9RÄ߯åÅÛ‹ÎBÏ7uziZ6áCˆ?|Àî6X¿>hK.0-úú¿ÊÙÊužõI$ÍÄIÀ_ÍI`o7 çžðúìgxó3¾¹=ák•¼Ò¹í%pS}ë{|«‹uláÍ?ñ׿ +¦ïA",`ãnÿ÷-Ì5Ù/†®¨ŠB +©Æ%6¶­'Š­Ù +¨Œ¢Pi}‹Ôû˜xÕÜ‹itáceø.ñ7"xAëGø?É̬endstream +endobj +729 0 obj << +/Type /Page +/Contents 730 0 R +/Resources 728 0 R +/MediaBox [0 0 612 792] +/Parent 638 0 R +/Annots [ 732 0 R 733 0 R 734 0 R 735 0 R 736 0 R 737 0 R 738 0 R 739 0 R 740 0 R 741 0 R 742 0 R 743 0 R 744 0 R 745 0 R 746 0 R 747 0 R 748 0 R 749 0 R 750 0 R 751 0 R 752 0 R 753 0 R 754 0 R 755 0 R 756 0 R 757 0 R 758 0 R 759 0 R 760 0 R 761 0 R 762 0 R 763 0 R 764 0 R 765 0 R 766 0 R 767 0 R 768 0 R 769 0 R 770 0 R 771 0 R 772 0 R 773 0 R 774 0 R 775 0 R 776 0 R 777 0 R 778 0 R 779 0 R ] +>> endobj +732 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 656.77 505.375 665.183] +/Subtype /Link +/A << /S /GoTo /D (section.4.25) >> +>> endobj +733 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 644.814 505.375 653.227] +/Subtype /Link +/A << /S /GoTo /D (section.4.26) >> +>> endobj +734 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 632.859 505.375 641.272] +/Subtype /Link +/A << /S /GoTo /D (section.4.27) >> +>> endobj +735 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 620.904 505.375 629.317] +/Subtype /Link +/A << /S /GoTo /D (section.4.28) >> +>> endobj +736 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 608.949 505.375 617.362] +/Subtype /Link +/A << /S /GoTo /D (section.4.29) >> +>> endobj +737 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 596.994 505.375 605.407] +/Subtype /Link +/A << /S /GoTo /D (section.4.30) >> +>> endobj +738 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 585.039 505.375 593.452] +/Subtype /Link +/A << /S /GoTo /D (section.4.31) >> +>> endobj +739 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 573.083 505.375 581.496] +/Subtype /Link +/A << /S /GoTo /D (section.4.32) >> +>> endobj +740 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 561.128 505.375 569.541] +/Subtype /Link +/A << /S /GoTo /D (section.4.33) >> +>> endobj +741 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 549.173 505.375 557.586] +/Subtype /Link +/A << /S /GoTo /D (section.4.34) >> +>> endobj +742 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 537.218 505.375 545.631] +/Subtype /Link +/A << /S /GoTo /D (section.4.35) >> +>> endobj +743 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 525.263 505.375 533.676] +/Subtype /Link +/A << /S /GoTo /D (section.4.36) >> +>> endobj +744 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 513.308 505.375 521.721] +/Subtype /Link +/A << /S /GoTo /D (section.4.37) >> +>> endobj +745 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [318.78 498.862 336.408 510.817] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +746 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 501.352 505.375 509.765] +/Subtype /Link +/A << /S /GoTo /D (section.4.38) >> +>> endobj +747 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 489.397 505.375 497.81] +/Subtype /Link +/A << /S /GoTo /D (section.4.39) >> +>> endobj +748 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 477.442 505.375 485.855] +/Subtype /Link +/A << /S /GoTo /D (section.4.40) >> +>> endobj +749 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 465.487 505.375 473.9] +/Subtype /Link +/A << /S /GoTo /D (section.4.41) >> +>> endobj +750 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 453.532 505.375 461.945] +/Subtype /Link +/A << /S /GoTo /D (section.4.42) >> +>> endobj +751 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [493.42 441.577 505.375 449.989] +/Subtype /Link +/A << /S /GoTo /D (section.4.43) >> +>> endobj +752 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 429.621 505.375 438.034] +/Subtype /Link +/A << /S /GoTo /D (section.4.44) >> +>> endobj +753 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 417.666 505.375 426.079] +/Subtype /Link +/A << /S /GoTo /D (section.4.45) >> +>> endobj +754 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 405.711 505.375 414.124] +/Subtype /Link +/A << /S /GoTo /D (section.4.46) >> +>> endobj +755 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [373.132 391.265 390.76 403.22] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +756 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 393.756 505.375 402.169] +/Subtype /Link +/A << /S /GoTo /D (section.4.47) >> +>> endobj +757 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 381.801 505.375 390.214] +/Subtype /Link +/A << /S /GoTo /D (section.4.48) >> +>> endobj +758 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 369.846 505.375 378.258] +/Subtype /Link +/A << /S /GoTo /D (section.4.49) >> +>> endobj +759 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 357.89 505.375 366.303] +/Subtype /Link +/A << /S /GoTo /D (section.4.50) >> +>> endobj +760 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 345.935 505.375 354.348] +/Subtype /Link +/A << /S /GoTo /D (section.4.51) >> +>> endobj +761 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 333.98 505.375 342.393] +/Subtype /Link +/A << /S /GoTo /D (section.4.52) >> +>> endobj +762 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 322.025 505.375 330.438] +/Subtype /Link +/A << /S /GoTo /D (section.4.53) >> +>> endobj +763 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 310.07 505.375 318.483] +/Subtype /Link +/A << /S /GoTo /D (section.4.54) >> +>> endobj +764 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 298.115 505.375 306.527] +/Subtype /Link +/A << /S /GoTo /D (section.4.55) >> +>> endobj +765 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 286.159 505.375 294.572] +/Subtype /Link +/A << /S /GoTo /D (section.4.56) >> +>> endobj +766 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 274.204 505.375 282.617] +/Subtype /Link +/A << /S /GoTo /D (section.4.57) >> +>> endobj +767 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 262.249 505.375 270.662] +/Subtype /Link +/A << /S /GoTo /D (section.4.58) >> +>> endobj +768 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 250.294 505.375 258.707] +/Subtype /Link +/A << /S /GoTo /D (section.4.59) >> +>> endobj +769 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 238.339 505.375 246.752] +/Subtype /Link +/A << /S /GoTo /D (section.4.60) >> +>> endobj +770 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 226.384 505.375 234.796] +/Subtype /Link +/A << /S /GoTo /D (section.4.61) >> +>> endobj +771 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 214.428 505.375 222.841] +/Subtype /Link +/A << /S /GoTo /D (section.4.62) >> +>> endobj +772 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 202.473 505.375 210.886] +/Subtype /Link +/A << /S /GoTo /D (section.4.63) >> +>> endobj +773 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 190.518 505.375 198.931] +/Subtype /Link +/A << /S /GoTo /D (section.4.64) >> +>> endobj +774 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 178.563 505.375 186.976] +/Subtype /Link +/A << /S /GoTo /D (section.4.65) >> +>> endobj +775 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 166.608 505.375 175.021] +/Subtype /Link +/A << /S /GoTo /D (section.4.66) >> +>> endobj +776 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [387.568 152.162 405.196 164.117] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +777 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 142.697 505.375 151.11] +/Subtype /Link +/A << /S /GoTo /D (section.4.67) >> +>> endobj +778 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 130.742 505.375 139.155] +/Subtype /Link +/A << /S /GoTo /D (section.4.68) >> +>> endobj +779 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [488.438 118.787 505.375 127.2] +/Subtype /Link +/A << /S /GoTo /D (section.4.69) >> +>> endobj +731 0 obj << +/D [729 0 R /XYZ 160.667 686.127 null] +>> endobj +728 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +782 0 obj << +/Length 659 +/Filter /FlateDecode +>> +stream +xÚ½•KoÛ0 €ïþ>Êè¬êmëºbÖvØ#zèzp5æØ™c§èöçGJjÒ"YeÀ`@’¢ÄÏÅc9˨0ylrK3®âj½-¢Ó™±¥Öȸ¸s–ÅâšÊ“TæŠÌ‹ HrÖ/W0¤Ÿº„“…W_°IRNÖ0“›â> endobj +784 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [434.64 656.77 451.577 665.183] +/Subtype /Link +/A << /S /GoTo /D (section.4.70) >> +>> endobj +785 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [293.292 642.324 310.921 654.279] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +786 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [434.64 644.814 451.577 653.227] +/Subtype /Link +/A << /S /GoTo /D (section.4.71) >> +>> endobj +787 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [434.64 632.859 451.577 641.272] +/Subtype /Link +/A << /S /GoTo /D (section.4.72) >> +>> endobj +788 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [434.64 620.904 451.577 629.317] +/Subtype /Link +/A << /S /GoTo /D (section.4.73) >> +>> endobj +783 0 obj << +/D [781 0 R /XYZ 106.869 686.127 null] +>> endobj +780 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +792 0 obj << +/Length 342 +/Filter /FlateDecode +>> +stream +xÚ¥RMSÂ0½çWä˜ &fóÕæ*£ŽpQÉ 9 ­#´ +øÁøçÍ6E¸;ißÛì¾í¾ P• :HçõeXºØ«H.o´¡Aoh|éc5e%ŸÅ5.HoûÐ$޹0¥aÃvó–fíGSåÐ]SÕßXB®#¾PÒ„’ +#Cé°Û;™Î­ˆ¢#’ϾVB b '5”=_“ yø“RT¸"¤øŸ#uðTÈàÜÉK½ …=· .k.¬qlrhxúì—õŽ `«†-‹”gm2ÀáØz¼Úç£Ò&ãáÉ “g:d|Ïgõ–Ûö‘GÙ— h’~ÍtÞ B•É-ây®0ITÁdÿŸ‹9Ê¢nÛÕÔÝuPiñ&9¢¡èf[`<íNc -²¸4¾KzRàú¼3{@KÛi™ä.¦%—±—ûÑJ!ÐÇ{ð öŠêendstream +endobj +791 0 obj << +/Type /Page +/Contents 792 0 R +/Resources 790 0 R +/MediaBox [0 0 612 792] +/Parent 789 0 R +>> endobj +793 0 obj << +/D [791 0 R /XYZ 160.667 686.127 null] +>> endobj +790 0 obj << +/Font << /F23 479 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +796 0 obj << +/Length 604 +/Filter /FlateDecode +>> +stream +xÚÝVKsÓ0¾ûWè(,ô~pä2¥1§Òƒ'vŽÝÚÎþ=ZÉIÉLàBdíKÚOŸvÅõCŒjbµCÚ*b¸CËMr—\]ST&%”gѽÿ§„9‡6‰4Špf§y“,’ ›‚µC£–Å Ö‹ñû¶éŠÀ,mÚ‰bžõb˜(<ïFÏ÷Ì8u +Ù²ƒluÈöÓ‹Âá‘·Áî¸8ùsVGÎ9_Oy€ªPOþ}=øò#¹ú ZT;‚Êâ›G#Vájñ¹¬î¶µ—ö ðå7’ÃÛ8fN~Œ©x뻾†F ©ýghðÄøˆŸQ$’`] õÔ0ÆX=:hÌçõ¸kŸÃØ”û.bwÝ}^¡Î¦ÜøþêM¾L.í&ø€jU,§»ú™*º€fó™ÿ÷ï¡åäg!¿äu¾í^@ÒP"åï½í¾¹¨endstream +endobj +795 0 obj << +/Type /Page +/Contents 796 0 R +/Resources 794 0 R +/MediaBox [0 0 612 792] +/Parent 789 0 R +/Annots [ 798 0 R 799 0 R 800 0 R 801 0 R 802 0 R 803 0 R 804 0 R 805 0 R ] +>> endobj +798 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [434.64 411.933 451.577 420.346] +/Subtype /Link +/A << /S /GoTo /D (section.5.1) >> +>> endobj +799 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [434.64 399.978 451.577 408.39] +/Subtype /Link +/A << /S /GoTo /D (section.5.2) >> +>> endobj +800 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [434.64 388.022 451.577 396.435] +/Subtype /Link +/A << /S /GoTo /D (section.5.3) >> +>> endobj +801 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [434.64 376.067 451.577 384.48] +/Subtype /Link +/A << /S /GoTo /D (section.5.5) >> +>> endobj +802 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [434.64 364.112 451.577 372.525] +/Subtype /Link +/A << /S /GoTo /D (section.5.14) >> +>> endobj +803 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [434.64 352.157 451.577 360.57] +/Subtype /Link +/A << /S /GoTo /D (section.5.15) >> +>> endobj +804 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [434.64 340.202 451.577 348.615] +/Subtype /Link +/A << /S /GoTo /D (section.5.16) >> +>> endobj +805 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [434.64 328.247 451.577 336.659] +/Subtype /Link +/A << /S /GoTo /D (section.5.22) >> +>> endobj +797 0 obj << +/D [795 0 R /XYZ 106.869 686.127 null] +>> endobj +22 0 obj << +/D [795 0 R /XYZ 106.869 667.729 null] +>> endobj +26 0 obj << +/D [795 0 R /XYZ 106.869 476.826 null] +>> endobj +794 0 obj << +/Font << /F22 474 0 R /F8 483 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +808 0 obj << +/Length 339 +/Filter /FlateDecode +>> +stream +xÚ¥RÉNÃ0½û+|´Ub<Þ’¹‚Ñ^€úVzM m*ÚŠEü<ž8ÐÞQ$gÞ,oüf \§¸Aå=òP¡*Áñņ]Dv~m,G…ÁòøÜ'Æf&@Ëys‹Zëç4Nda+'î¤5¢~i YqÛ5í'¥³«È`èUhe±â…UXyjõÆfsͦù˜åØG²µD¾a®ôÊ@5à5›²û?*Í _b +ÀÿxÀZe0ð@¡÷GýŽ…¥;Õ—Iœ³^L¿:™~‡e»—ˆÕžÜND :ˆm€§Äz²:äЊ`—íËQODô•í4Á Ú±<j(!ÒDýšaÝC“Á Ùu®°‰t)ÔpÏEMôïÄ»íkÚ³~…&­Ð{›&b ìµ-ÈŸdû£ìÂ(¯--@è“5ø!ïd<`”ë¹lšnÿN©—ÿ6Z“a~ßÁJt‰Mendstream +endobj +807 0 obj << +/Type /Page +/Contents 808 0 R +/Resources 806 0 R +/MediaBox [0 0 612 792] +/Parent 789 0 R +>> endobj +809 0 obj << +/D [807 0 R /XYZ 160.667 686.127 null] +>> endobj +806 0 obj << +/Font << /F23 479 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +813 0 obj << +/Length 729 +/Filter /FlateDecode +>> +stream +xÚUÛnÓ@}÷WXâÅ–ðtï— +!…$Hm¡@bPÛã8M¥$n§ˆ¿gfí$-FP¡HëÙÝã³gÆg'ÊP©6¹-·›bÕe^ožUçô”ŠÆùÁQ\ixd&Çy*~ ó1©]=ƒ{nlNÎV<ÕhÓøèÔŒˆ­q¦ižz•sðZ?õêçÝwrÜ]Ù '‹ý¼®«¶]íÔ±85+Ò,@;®·½"R°/qk ´pMàUªƒÍ»¯)û$Û³ RòòÔ ¥H†½C•áy‡ݧ3ÀÜÞ£1f=Ý·>Ã2Ù¿¹n{ú•¾oNêg—=*Í@Kù2ªÉø©­ˆtÜg“À¼xÛèÓå¸_riÑÜ{Èm»/9VÚ›¶l‚Š´‘ƳxÀ×Áêt¡µ –7.Ù6Ô:šp+¶Á±l–IÊúàE'ÕŸ,÷±jÔæX2û—áôË ÷¬!]3ÍB;ªïpq†SÞÏû'·ªË¹íÈ£j^ì– ¥jñ¦k‘Ôëm³Ù•M½ßï2µ/ÌPzñÿ2¿Ï´‰–endstream +endobj +812 0 obj << +/Type /Page +/Contents 813 0 R +/Resources 811 0 R +/MediaBox [0 0 612 792] +/Parent 789 0 R +/Annots [ 826 0 R 832 0 R ] +>> endobj +810 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 821] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 833 0 R >> +/Font << /R9 834 0 R >> +>> +/Length 835 0 R +/Filter /FlateDecode +>> +stream +xœ­‘ANÃ0E÷>Å,ÅàñÌxì%ˆ MnP¥Ú×Çiâ +6H( +ÿý¾~x¦uÛ»£»ÞÜ¿¹#Ð ÕeÛÃm[`†œ0²Ðîܸ€(¡˜* CÛ»‹›»fsÙ>ºU ë2øàR@Ê”àÓ…QhØ,*†%£(ŒIàµsÍßÔ‘Ñ8fàñ„ŠzõôÑž_ºY_…’a´ÐR $`¤è‹~Ð6ïûƨ¦Èú»Q}Ö<|õ~fýø$*šÂ¡Lž¯—™y +1dYf*#-¢Ñ29?cw5&’™P©JJ}ÆòGgI &^ï7ó|—ˆ¥7jZ”X$çg”k÷(F…™endstream +endobj +833 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +834 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +835 0 obj +270 +endobj +826 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [145.351 210.513 182.756 220.476] +/Subtype /Link +/A << /S /GoTo /D (classEnvelope) >> +>> endobj +832 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 142.347 161.121 154.302] +/Subtype /Link +/A << /S /GoTo /D (classADSR_a0) >> +>> endobj +814 0 obj << +/D [812 0 R /XYZ 106.869 686.127 null] +>> endobj +30 0 obj << +/D [812 0 R /XYZ 106.869 667.729 null] +>> endobj +815 0 obj << +/D [812 0 R /XYZ 106.869 481.645 null] +>> endobj +34 0 obj << +/D [812 0 R /XYZ 106.869 481.645 null] +>> endobj +822 0 obj << +/D [812 0 R /XYZ 106.869 242.107 null] +>> endobj +830 0 obj << +/D [812 0 R /XYZ 106.869 161.921 null] +>> endobj +831 0 obj << +/D [812 0 R /XYZ 106.869 161.921 null] +>> endobj +811 0 obj << +/Font << /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F23 479 0 R /F31 829 0 R >> +/XObject << /Im1 810 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +839 0 obj << +/Length 1451 +/Filter /FlateDecode +>> +stream +xÚÍXÛn7}×Wìã.âex_2@\[.;I+miÖÒ6,K­´r`ôç;ÃáJ²%Y.|+h9¼ ‡gf/"áð‰ôÌŸXçY!t2¸ìüTv^ŸH•xæ­JÊ?CÇrø%2ûZ¾K”æL+ûåi–+§Ó£L¤ãj>GI¥ÇSøÊt°¸¬'šªe¹H§ÔÑé– È9SÞ%¹bÞœÿïΗ¯<vxò®Cm?  szŸ\vta˜.ÊãN¿óÛR•Ж9í“\Áöv1°®ÅüÁE‘å†s()ŽF½>q«n¢8Dì{x܇Åõ`EJCwï2éÒé*‡ +­Dâ`¸Åá–ii’\hæ¹ :ŽèðX—¡XÏ›ÙbÐLgŒÆ¯[™KÍ„²ðUÌreñm;©@fF«†h§J/Pª¯?ÂLªY³|‡Ù`¯(T´Ûë†LnªYfTú­•ßâ§HÅ}çàᚊoãzüJ±7L9»‚³V½y‡™³i‰‘QbéÍ;:Ý´¬«v¡ÛÀÖ˜GB Fª wCÃ^Üì½pã÷Ç­Ø‚[¯{ÖEÔûÝ-`i¦Š;Àò’{XóºgiÆ4Õ‹=ZJ µ÷Ÿo§ºŽ ù)„eÐm¶K ¿5×cË2ÇÝfŠŸœ}D“!Ä4†z³B·û0÷TÊNü}T5°Ø *ƒ_%TÔO“¿ðq.TXÝ‚K!ù`ßÀ77Ìy TêXÞ} ºîqÑÕŒvµ´èk„t€ùR]S[Hž§¹¿ ZÆ0FFŸœÕ¡OÀ~¼ÎۇŘðâÂù¦­»è)\2.üžØž/€Œ@ÉhB cPzëñ“aß#Ãëj +7C,y¿-Ĺ5âL  @«= Ò¨Ç!ÐÉ ~¦8[kÓRu9ºÜË&8›~A¨ÉÆA psãö0ÊŠ¯WSË9y ÆÊ!UMcàW$6H—õêĶ ÆÇo4<íßrÔvÎ7/HAû¼d™0ûvÕ;xŸ¤ó ÍC·ÖYñ`»î¯ËU> QÃ(vésÑØ=rKÒñëÿšZ÷Û/öQÙÒu”37½7‰ùùr®s)¹«9ãÖ „ÝohÊïÊ68ÁJå_Ês>x.˜‰×Í·ìÎ1­ RüœÇ?ŸÛ¨jmÛùpMã\<ܼÿ>[äÒÁµÈxû€Smó³`0¢Æ”Ñ[Ü.Œv9öÙ3vV†Í(¸~GÒBHº°¼[û¡öœŽv#Ê&”ÇAÑU=&±š c¡ 'À6_FòÛäÜ‹õU›œ8ÖyJûÈ„ë”æ§[.[v˜“¸I¨kílyÈ‘—}–¶…$p¾'ãø2s0ÛŒ®ñ;o¸J±‚ƒ´gLùÄNf߈ÜvKa˜±ûΪíÓE–†ê®ª; òíã—<Ÿ¸€rnÜn¿Â„žƒø¨Ø^áîõ6Ó[Fj³˜Qô/qr‘~§…¡… ǹãìZ0aá[–¡·çgΖO(€¡KJ½IúZ†§ Ť¶|›jþÆBí:±ÌÃ=kÍÔP+“ö¯'| !Ct3š/¸Mñ…Ýà?î騡¦ðÈ>¡òÑ+^‘pŽŠ®©ük¦lZÏ0ôcMÅ!¨T_XmC~F¡š… +t^¤,Ú —ø\¡Þé$žO0¥çÌÀ¥kP(I³Zv.™ÁåÌ +Û†œ‰ýÖà’é KyÚeœËü#9Ç‚l]ø/¿²ª¶endstream +endobj +838 0 obj << +/Type /Page +/Contents 839 0 R +/Resources 837 0 R +/MediaBox [0 0 612 792] +/Parent 789 0 R +/Annots [ 842 0 R 844 0 R 846 0 R 848 0 R 850 0 R 852 0 R 854 0 R 856 0 R 858 0 R 860 0 R 862 0 R 864 0 R 866 0 R 868 0 R ] +>> endobj +842 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 654.279 222.668 666.234] +/Subtype /Link +/A << /S /GoTo /D (classADSR_a1) >> +>> endobj +844 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 615.501 236.505 627.456] +/Subtype /Link +/A << /S /GoTo /D (classADSR_a2) >> +>> endobj +846 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 576.724 236.782 588.679] +/Subtype /Link +/A << /S /GoTo /D (classADSR_a3) >> +>> endobj +848 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 537.946 270.738 549.901] +/Subtype /Link +/A << /S /GoTo /D (classADSR_a4) >> +>> endobj +850 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 499.168 267.832 511.124] +/Subtype /Link +/A << /S /GoTo /D (classADSR_a5) >> +>> endobj +852 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 460.391 275.775 472.346] +/Subtype /Link +/A << /S /GoTo /D (classADSR_a6) >> +>> endobj +854 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 421.613 273.699 433.568] +/Subtype /Link +/A << /S /GoTo /D (classADSR_a7) >> +>> endobj +856 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 382.835 272.814 394.791] +/Subtype /Link +/A << /S /GoTo /D (classADSR_a8) >> +>> endobj +858 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 344.058 269.908 356.013] +/Subtype /Link +/A << /S /GoTo /D (classADSR_a9) >> +>> endobj +860 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 305.28 275.775 317.235] +/Subtype /Link +/A << /S /GoTo /D (classADSR_a10) >> +>> endobj +862 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.617 266.502 260.47 278.458] +/Subtype /Link +/A << /S /GoTo /D (classADSR_a11) >> +>> endobj +864 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 204.811 249.319 216.766] +/Subtype /Link +/A << /S /GoTo /D (classADSR_a12) >> +>> endobj +866 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [200.197 166.033 238.166 177.988] +/Subtype /Link +/A << /S /GoTo /D (classADSR_a13) >> +>> endobj +868 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 116.297 245.14 128.252] +/Subtype /Link +/A << /S /GoTo /D (classADSR_a14) >> +>> endobj +840 0 obj << +/D [838 0 R /XYZ 160.667 686.127 null] +>> endobj +841 0 obj << +/D [838 0 R /XYZ 160.667 667.729 null] +>> endobj +843 0 obj << +/D [838 0 R /XYZ 160.667 634.89 null] +>> endobj +845 0 obj << +/D [838 0 R /XYZ 160.667 596.112 null] +>> endobj +847 0 obj << +/D [838 0 R /XYZ 160.667 557.335 null] +>> endobj +849 0 obj << +/D [838 0 R /XYZ 160.667 518.557 null] +>> endobj +851 0 obj << +/D [838 0 R /XYZ 160.667 479.78 null] +>> endobj +853 0 obj << +/D [838 0 R /XYZ 160.667 441.002 null] +>> endobj +855 0 obj << +/D [838 0 R /XYZ 160.667 402.224 null] +>> endobj +857 0 obj << +/D [838 0 R /XYZ 160.667 363.447 null] +>> endobj +859 0 obj << +/D [838 0 R /XYZ 160.667 324.669 null] +>> endobj +861 0 obj << +/D [838 0 R /XYZ 160.667 285.891 null] +>> endobj +863 0 obj << +/D [838 0 R /XYZ 160.667 224.2 null] +>> endobj +865 0 obj << +/D [838 0 R /XYZ 160.667 185.422 null] +>> endobj +867 0 obj << +/D [838 0 R /XYZ 160.667 135.685 null] +>> endobj +837 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F31 829 0 R /F19 460 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +871 0 obj << +/Length 1385 +/Filter /FlateDecode +>> +stream +xÚ½WYoÛF~ׯà#‰T›=I®<¸>‚Ü©¤(’<0m‘I•¤l8ýóc))¦Š P0wgggçøæŠ$ü©HÉLè4ÒÜ‹LÙhy;ùu1yz©Mä…OM´¸"ÎÅêCl…J¦&·ñéù|Æ«³DÅëdªâ¢ƒU‡DÏP^•mY/ËäÓâedS-\ê‚e8¹XLTÐb*…ñ>šás‡:ü5ùðIF«‰Œ^Nð,îa-…®Û‰ÍœÐ*ûõd>ùm'Êxa3¥3R°Ç¨(BzhϼìAá4û¿YÜõXÑ—L}ÆD0í™ÁÉÉÉüwÚ,’\Ƨ/Þ2Ç=’*¼yÄ%¶m›8—ux¤¨W|Útp=¼~W¬·eÇgͺæé¥ò{u!<"5&(]ü‘äi\¬á¹mÉ̇¶ÙʤWavË©Q°–ÎVÄöQªŒ9ó=#.tóæÏÇ3Bj?Èøn¼4„Õž@waÊǨ»|ý.Ñy|šÜà%cã¾Z"é î ¨ïäî›j^­ûeš +°2š*+¼µ$xFáÁPõÛ.Öަ.9tTß•„ï6‰Óq8l¶ýfÛóšˆLÇü­-„]õÃþž²£ ½DîÜÿêñ‘IÆ +i|àý(¥Ù’ #¼Žc5¶.×"ó¬ÓϘåάLìç¨U€œ\Â[IyÞ7ž_ؾmÝU×5ì +&V.¸Ðóž/#Ã.Ïá´úJÛ®2ˆ¡ïwT7Œ¹vß*Ü#ŽÛùP°¾© Öˆ,QÖwTÌ×Í&߇_ +!w?Wl” +ŸÙÃ~O‘±ÆÅó‡:OÃIŽÅØœ”L1dpÖP^U=!’ñæÙ“'¼øŒøð}bR$z>Pf‚¿gô;‚Àˆ[#G +7Ï p‘,~{Å"¨Õ>w(º¡k%[í¥p†)pHFf-Cot{‹a:t8ÒK‘†¾QsïÀ3J K²Ð…ôKÌ{|Ëý­%~¥‚÷ÅtG#endstream +endobj +870 0 obj << +/Type /Page +/Contents 871 0 R +/Resources 869 0 R +/MediaBox [0 0 612 792] +/Parent 883 0 R +/Annots [ 874 0 R 876 0 R 878 0 R 882 0 R ] +>> endobj +874 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 630.369 206.773 642.324] +/Subtype /Link +/A << /S /GoTo /D (classADSR_a15) >> +>> endobj +876 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [193.71 591.514 211.754 603.47] +/Subtype /Link +/A << /S /GoTo /D (classADSR_a16) >> +>> endobj +878 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [127.678 490.371 169.106 502.326] +/Subtype /Link +/A << /S /GoTo /D (classEnvelope) >> +>> endobj +882 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 396.153 169.424 405.064] +/Subtype /Link +/A << /S /GoTo /D (ADSR_8h-source) >> +>> endobj +872 0 obj << +/D [870 0 R /XYZ 106.869 686.127 null] +>> endobj +873 0 obj << +/D [870 0 R /XYZ 106.869 649.796 null] +>> endobj +875 0 obj << +/D [870 0 R /XYZ 106.869 610.941 null] +>> endobj +877 0 obj << +/D [870 0 R /XYZ 106.869 555.158 null] +>> endobj +869 0 obj << +/Font << /F23 479 0 R /F31 829 0 R /F19 460 0 R /F14 825 0 R /F8 483 0 R /F22 474 0 R /F32 881 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +888 0 obj << +/Length 1359 +/Filter /FlateDecode +>> +stream +xÚÍWmoÛ6þî_!`_d´bHQ”ÄbдKÐvŲÄ@1´ý Èr"Ô¶KN`ìÏï9e+uŠõ)†¢)’Ç»çž{¡ +$þ© ¶Â¤¹™J‚r1:žŒŽNbXaSLfnãdú>TÉøãäu )”ÒþãÅäÍ8Òy¾«p^´-Ítø²Áß8,7‹j9Æ +ºz©°Y’ŒÑï“‘ò +DRh›‘67tÿÍèýGLG2x=âµ;Œq§µÁb”dFÄ*÷óùèbô×N”ÒJ™Qœ9ÝwÆÄJ„NÒ¡5‰€Â1tR± 1.–ÓŠTœ¾#…O¡–öVá— ËLx^ÍÜ®uµ,+²åè$BEw'6qWC$N²T×:¼ÇyXÐÏ-ý¸¥« 6Õt9íX8˜ÆN«y½ÄÚ­$aÉðªPð½±½w±ÊDóÅ¿ÔËr¾™zý”ÚïK2!³ÄCð로LdIî—IýjúîT\Ê1±Ð²—óÛ‘’™Pqêµ2nÛ«åuÆš,î +2®¤yÅZuqµ.ŒÅ¬Yó G¾j§Ï0~ö9‘Tƒ ”Jc‘æäýà†x¢²,w{†cG´þ¨ÿpôj/0*Ø“*ÚÉM@Qßc•Ö˜!«Î6—s2¢d¶¼­ºkŠN[b²GIRƒ23ÏÜùRehò@>À)2 ŒÒi$þ+ Uã #=è¯2M¶@aí½ØÓ:Íᣜm·Þ”]³‡ÊF1dh +.À”iy 6\Ÿ)õCz§"y¾¬¶ùµJ+ûu»Èlj±å¼*Ößï9!êÌm{»;R:£DÃrÎÜÇFw­á¦sžÕËŽÃeYø/-iõ8†¶UwѹÀü´KMgãØ†K:5Vºù{ÅÛ¿CÒ,’¹ÒVH™üw:‘õíƒÉܯìÂ-?,H'üIš>£üL8ƒ¬\⼯ñÃ.s)*7ù=§]T œ¢ãŸúäèW.DÚ"±²ä}„ƒÄTHÞñgEÅÅqå"é›\u¶îYÕî¸åý‚š¯u= T«U÷Õ佨zj¢†÷´õ0¬ ö£1òdŒfbgêͦ¹Ê±eÉfLé)+tQFeÍü|6ÎøNsŒ6h¶_ £UÍÃ\¬]Z†ôRþÓÊç ú]T]µnÙ9\0Îâ}]]næ}Š™yµ7³Ü>M;\ ½¹¥ÁÒݰŸq9ÓC¿¥"‡H4’"ÏôÏw[±X¹"Þmv%ë)[ô ºJ"ëÁyòçkº.º^Ã/e9 F¥÷™õ|EYÁEø–›÷Kb¥µ;žßºèŸ7Ä”r—KÝ#—QhÕ¶›>С®áÞŸùêÉŠïwuwÍ+W½(–¿äut{*\Í n/©àË]³KDãί63÷¡–W¦ÜÙ„Ž—•r[Ûê‘ݬ¾‡Ïxccá„ÄŠîùò$G/Šwà&/9ýïÓEÑúRÈt¹ãÉ­û9W¶4:ºv$Ø!yÒ¼' Ö¯êÛÊW×ß1#~Î}_¯ÝgN¿‡|lRt$ r‰Êd?ú¾Ô"¶ô¨á¾÷HШZ<«N˜\CëD›ðb‹° »k.ÂuKŸÉ1J¦ôÎÃZã|Sw¼TssãOhò„'—$hËã³±NÊ*ãÚ9þ …èO<-ú@¢É) >¡!=P(¼žeAâoInãÎTO]œÅV +JHà”ҿÍÞìG¿‡Ç|ªÒ>´Œß7€8YÚrK”é.óOŒ>*¢¹wá¿ôùÙ´endstream +endobj +887 0 obj << +/Type /Page +/Contents 888 0 R +/Resources 886 0 R +/MediaBox [0 0 612 792] +/Parent 883 0 R +/Annots [ 893 0 R 895 0 R 897 0 R 899 0 R 901 0 R 903 0 R 905 0 R 907 0 R ] +>> endobj +885 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 722] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 908 0 R >> +/Font << /R9 909 0 R >> +>> +/Length 910 0 R +/Filter /FlateDecode +>> +stream +xœ­‘¹j1 †{?…Ê$…"ÙòÕ.„r³©Ã^ä˜ÝÈëGsxf–¤ Âÿ/ë“,Bêηµ9™ûgãÅœ€{«„m «JÍ )`”¡:˜áƒx´Îeð„¬@U››Õk³Ûï^o«wóPÁZ“ßL´hSfø2™0eqú\'´ ,Z&&8ïÍæox&‡D´Œ>÷ø§æÒžë¦ðØñчÿÀf‹,lÂ̾§nÚ@“Cv¿]ÐôC¬'š¼z¸Z C„OͼŠ?Î2û£ ~ „ݸºÖë:/.•뇻Aç":_ ž¡.u‚¡øã|³? +s^²ÃM,”ëÚÄÚ|%8‡5endstream +endobj +908 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +909 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +910 0 obj +275 +endobj +893 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 425.274 237.82 437.229] +/Subtype /Link +/A << /S /GoTo /D (classBandedWG_a0) >> +>> endobj +895 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 386.401 245.569 398.356] +/Subtype /Link +/A << /S /GoTo /D (classBandedWG_a1) >> +>> endobj +897 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 347.529 229.061 359.484] +/Subtype /Link +/A << /S /GoTo /D (classBandedWG_a2) >> +>> endobj +899 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 308.657 281.614 320.612] +/Subtype /Link +/A << /S /GoTo /D (classBandedWG_a3) >> +>> endobj +901 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 269.784 248.129 281.739] +/Subtype /Link +/A << /S /GoTo /D (classBandedWG_a4) >> +>> endobj +903 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 230.912 265.231 242.867] +/Subtype /Link +/A << /S /GoTo /D (classBandedWG_a5) >> +>> endobj +905 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 192.04 261.357 203.995] +/Subtype /Link +/A << /S /GoTo /D (classBandedWG_a6) >> +>> endobj +907 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 142.208 259.115 154.163] +/Subtype /Link +/A << /S /GoTo /D (classBandedWG_a7) >> +>> endobj +889 0 obj << +/D [887 0 R /XYZ 160.667 686.127 null] +>> endobj +890 0 obj << +/D [887 0 R /XYZ 160.667 667.729 null] +>> endobj +38 0 obj << +/D [887 0 R /XYZ 160.667 667.729 null] +>> endobj +891 0 obj << +/D [887 0 R /XYZ 160.667 444.71 null] +>> endobj +892 0 obj << +/D [887 0 R /XYZ 160.667 444.71 null] +>> endobj +894 0 obj << +/D [887 0 R /XYZ 160.667 405.837 null] +>> endobj +896 0 obj << +/D [887 0 R /XYZ 160.667 366.965 null] +>> endobj +898 0 obj << +/D [887 0 R /XYZ 160.667 328.093 null] +>> endobj +900 0 obj << +/D [887 0 R /XYZ 160.667 289.22 null] +>> endobj +902 0 obj << +/D [887 0 R /XYZ 160.667 250.348 null] +>> endobj +904 0 obj << +/D [887 0 R /XYZ 160.667 211.476 null] +>> endobj +906 0 obj << +/D [887 0 R /XYZ 160.667 161.644 null] +>> endobj +886 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im2 885 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +913 0 obj << +/Length 1907 +/Filter /FlateDecode +>> +stream +xÚÅXYoÛF~ׯòD"áfžúP«±›´nÜXMP$y )Ú"L‘2EÙ0òç;Ç’¢$;q7a»ËÙ™ù¾9Vj,áO•Œ„ãq'"Rþ8[Œ¦£ç‡ÚŒ‘„f<=§•ÓÙ{ÇÚõLì;i5s•“ÏÞ¹F;G<8‘Òõ”“®ài…ƒÆyƒùyÞäU–Ã4aà¨Àý8}5z1)«…'…I’±gD¨ÃÕèýG9žäøÕçâñ øU&?.ˆ®Ý tRªÝŸMxÀÒDí”Hú}r^7‹ôFô®«–ÒZ]2rÙˆÐ%ù¾$ ’4ªï‘)$Y[T† ¡ O*Ç2ò±¢ë’Ð¥ÅþØóˆMl;HX¬ñ¢À?Jίy›b**stG„«¬Açáè²Å+s—Æ’/Ûõ£ø™eó r Å ±œ¦.å1X±À¡š¸;ËË‚ØÎtÉÊtµÂY2 ÷×…š 1ØÛ†0¸„—šÐwÖÜõ‚vàŒ"hF†…¤Q4Ôèb]̺” 9$§®rŽŸW=S­¨Ö%Uñq*ÇNooÉÒSže¦#] šmq«[^ÂÙÙ8«zMŠ­0`#XYy½=°3+©â8Å1Ó\nzÎìíHƃL?1Îø…ôχ£Täw…•+áz±‘Î!FlÝà + fbK…O„ &J:^XNX™ìrZkœ«ÒN‰;lc=´ÄôKŠ\âjß8'¨‚À9å=ŠÃލ¸m{Dý¨¿E³òÒFqѧýÁ®:~žæÅSJ+Åå¦tö›…Ä·—›",KbÇîNY‹«KŽ) ëL m;2ø ²Š–pFP1„5w Ÿö¶VRD]ãówU ëЧL<°Rîoã±¼A§ÿå]¨f Un—ªqÍ]Œù–Ž0àlMfk~Kû’ZSב¥[^Ô`]a3,¡”Â@³…¶öo™i(Ÿ{>œ´Í¼>É9Ðù(¯K¶íjOŽ¢²„OžÍ°Rj¬ç¾?¬¶Ôƒï4ŒXhê¦c¶=ËA‹É[ 'ûršmº8¼m—$ßvŒ6Uθ‹Ã]ÓTË.iµhç…Û£••ðºfÒÎ]äUÚR';5h²d¨ÝàM.)IÄcÕí¾»(ØòHÌ÷fIñ¬páùõ›~¶?&ÛF¢ÿEÛ‡"‰üáY‘ ñMàœÞV.ÜàdÇ• [ƒçG%Cê¼¼‚{~‡ÜJSEÅ_Nž>å‡3pË“'® ñ”Ø‘7‚ïjã¡ãä×´êÚhx9²¡¯6b”Œ¨Eip»FÑ5}–?#¶éDŠ €Ã"8„£2³¡l,ö´d€?´‡*ìÐ ìºg ;û$ ]ˆËF”r‚OZâ]꼫&¤çendstream +endobj +912 0 obj << +/Type /Page +/Contents 913 0 R +/Resources 911 0 R +/MediaBox [0 0 612 792] +/Parent 883 0 R +/Annots [ 916 0 R 918 0 R 920 0 R 922 0 R 924 0 R 926 0 R 927 0 R ] +>> endobj +916 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 654.279 178.003 666.234] +/Subtype /Link +/A << /S /GoTo /D (classBandedWG_a8) >> +>> endobj +918 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 617.002 186.858 628.957] +/Subtype /Link +/A << /S /GoTo /D (classBandedWG_a9) >> +>> endobj +920 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 579.725 187.135 591.681] +/Subtype /Link +/A << /S /GoTo /D (classBandedWG_a10) >> +>> endobj +922 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 542.449 206.773 554.404] +/Subtype /Link +/A << /S /GoTo /D (classBandedWG_a11) >> +>> endobj +924 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 505.172 217.604 517.127] +/Subtype /Link +/A << /S /GoTo /D (classBandedWG_a12) >> +>> endobj +926 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [286.405 161.729 303.064 172.577] +/Subtype /Link +/A << /S /GoTo /D (classStk) >> +>> endobj +927 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 123.602 192.324 132.513] +/Subtype /Link +/A << /S /GoTo /D (BandedWG_8h-source) >> +>> endobj +914 0 obj << +/D [912 0 R /XYZ 106.869 686.127 null] +>> endobj +915 0 obj << +/D [912 0 R /XYZ 106.869 667.729 null] +>> endobj +917 0 obj << +/D [912 0 R /XYZ 106.869 635.641 null] +>> endobj +919 0 obj << +/D [912 0 R /XYZ 106.869 598.364 null] +>> endobj +921 0 obj << +/D [912 0 R /XYZ 106.869 561.087 null] +>> endobj +923 0 obj << +/D [912 0 R /XYZ 106.869 523.81 null] +>> endobj +925 0 obj << +/D [912 0 R /XYZ 106.869 470.283 null] +>> endobj +911 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F31 829 0 R /F19 460 0 R /F22 474 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +933 0 obj << +/Length 1249 +/Filter /FlateDecode +>> +stream +xÚ½WÛnÛF}×Wè ‡ë½r¹A ¶ë6Ãi¬‡¶qieI›¢íÇwfg)1•Ûia÷:{fæÌÅ"áðO$Ò1c\’ŽY¡“y=9™MŽÏ¥Js¹JfËpp¶øŠ|úqö:Qš3!T\¼š½™fªÐééT¤ër³Á™JÏZøÊt¾­}3…A_öÕ4iÛ ŒÉ³‰ˆ2Δ+’L1W|ÿnòá#Ož¼žÐÞÛÎ%õD[ä(â|=¹šü¼%”`†çI&mÀ¾SF&B3¥ó±6š`˜„4é Œ=âó³U¾0S6ZÁOPÌšô½_z:ÑÌ=êr|^ŒM…ok72RéOe]·Í¤dÁÕ×eÚv7eCGÎ/è»yh¦²H{8»ò<]mh§j6}·…õ:¥cŒH÷aY.MÀð]ÕÌ×ÛED*Äþœ¶Œ[ñý¡ˬ.âö‰G»xÏV‡rŒdŠr^X$Ü2!óˆJ‡c¯šÕ`ðUfé<˜µÕ)«*oº²&í—mGƒ®¡›—=þWN mÏTÂqf¤E&$wÈž+ÇtÃݸpüªVÉY ìJöËv‚µb–»¯&˜3f̰wÛOkTcN̹ðý +£‚§‹M4£ÞÛI ¨úH4÷¯¹°ö¤Áà–²>šíšÿ]9´‡V¡œäŸB¸"³áj^€õ‚ðD’Íû¶c‡3 2†—byn÷3Ã9Œ?@ >·B|Üœi`p@ûVd‡ÿ¤ÿdÍ{Œ¨›*EB¶½¿Œñ‰H/~=àW €®`ÿ×ì%!ɹGsWÜÙ1ª8Ì¿ço/âË)dÛp (;·…dô0…´ûŒÐ^Àò#`#Æ?9̲¾ ‘ÐoCÔ>îvHÂÏGž^õe×£ãmZҧϾTýŠÖú•§ÁMu3d˜.;$¶Ÿ™Þáòv@€& 2Êf¥×°w»F˜þÿbÕ!i2‘P"@Ž*¼ÿôî€RŒÙVÚôóžÝãœqQŒ±Åt»í£µÛ&z×·=lÐú&3„üP¦ÆY2SŽië •BiævT“ñGÄÂ|æûÑ®ý‚²èYðæ‚y(øy¢Öâ kÆÍÓÖã] ¦b7[á $ ¡Ü°ªƒ5Îoƒž55A\¼WÒÁMaäiIÓR{ _›ú®ì±@âN×Úu{ó€N‡œ s—–ëMK—v•s9.ÂZ˜ÄW#¾r}ÓR•^Õ;õ¢A½‚ÌÑ.éKaƒ +þ¥¿Eç+ -…³¡*äÌ)|#-ùæe +<ºD|)3à‘?dsœ†BŸ@Šp&]ȹŠ:SÚβý÷{2î] ¥ÿÛÃóû3G/è±Ëm€p¶:&Ž%ÔB¯lŠÿÚ«*&1 DSî: µÏAc6 +áÚT+“^áÓ¨¨†5ô2)öEoªž¶ª˜ q|z„“#š|BA4~7U9pIWÞ³x…‚èÏ4ÅèP}ÃäG—tC hôRqÎKrÛpÇ? ¦—ØÈ` +ùyL f¯v&¡‹×ø‡A.ò!Ëšxnd!™²”#•ñ-ó»ärð៣U«endstream +endobj +932 0 obj << +/Type /Page +/Contents 933 0 R +/Resources 931 0 R +/MediaBox [0 0 612 792] +/Parent 883 0 R +/Annots [ 936 0 R 939 0 R 941 0 R 943 0 R 945 0 R 947 0 R ] +>> endobj +930 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 1066] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 951 0 R >> +/Font << /R9 952 0 R >> +>> +/Length 953 0 R +/Filter /FlateDecode +>> +stream +xœ­’ËNÃ@ E÷ó^ 3¶ç¹­ ¥ùƒ*…BS©i%~“dòPÙ 5Y$¹w<çŽc‹ö÷žÛÆœÌ㛃÷³9uVylXUjfÈ„ŽS€jgú2‚È(V%/(zAÕ˜»U]Wm]ßWŸæ©‚µ.Þ›²õðmÄ1’x-wB£yLmm6ÿÃSÌN@|B›}‡~Á%ÖE |`öh£C`L>vÀ—ãùÒ6ÇË6h$dw“sf´!=廹|]3é‹–þI”®G¬¿€½µ£×ôŸÌIKºr! ~éáèAý@9Çž~0,}íLYî±{è磞V +Äë é M" ~éèèa +ác¶èÒ,ÄLYîQBDm)êl$É¢Ó)Âà—&~¦IKf&a¹ƒFX›Š‚·fendstream +endobj +951 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +952 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +953 0 obj +326 +endobj +936 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [276.207 627.342 293.835 638.191] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +939 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 397.912 228.369 409.867] +/Subtype /Link +/A << /S /GoTo /D (classBeeThree_a0) >> +>> endobj +941 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 359.544 236.118 371.5] +/Subtype /Link +/A << /S /GoTo /D (classBeeThree_a1) >> +>> endobj +943 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 321.177 240.657 333.132] +/Subtype /Link +/A << /S /GoTo /D (classBeeThree_a2) >> +>> endobj +945 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 282.809 260.571 294.764] +/Subtype /Link +/A << /S /GoTo /D (classBeeThree_a3) >> +>> endobj +947 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [276.207 200.297 293.835 211.145] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +934 0 obj << +/D [932 0 R /XYZ 160.667 686.127 null] +>> endobj +935 0 obj << +/D [932 0 R /XYZ 160.667 667.729 null] +>> endobj +42 0 obj << +/D [932 0 R /XYZ 160.667 667.729 null] +>> endobj +937 0 obj << +/D [932 0 R /XYZ 160.667 417.096 null] +>> endobj +938 0 obj << +/D [932 0 R /XYZ 160.667 417.096 null] +>> endobj +940 0 obj << +/D [932 0 R /XYZ 160.667 378.728 null] +>> endobj +942 0 obj << +/D [932 0 R /XYZ 160.667 340.361 null] +>> endobj +944 0 obj << +/D [932 0 R /XYZ 160.667 301.993 null] +>> endobj +946 0 obj << +/D [932 0 R /XYZ 160.667 246.905 null] +>> endobj +931 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F34 950 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im3 930 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +956 0 obj << +/Length 991 +/Filter /FlateDecode +>> +stream +xÚ­VÝoÛ6×_¡§B#†¢> +ìaI—bݺf‰_†¶´MÛBlË“äºB÷ÇïŽG)º¡C[¼Óý;ZÆþd,EÁU^ÆyYñBfñb]͢˥ãŠW¹Žg+o9[¾e×IªËŒ]97Û´‰dÎÑÁ5ÈÛ$•Ìv ux¨Ù¸•kÝ~v2%“Eò~ö*úyÉA*¸®ª8Õ¼* âÿ½}/âe$âWêÊø²à¬vQV®döÛè>úcrU–¼Uª +ú˜‹Îb8(ÎSDŒV,½üÃôâ%f‹i]ŠªË›ò±é€) o}ÝìU²ËÑ@ ´†rl`c÷kGÛß°Ý%ª`ó>e®íž“o(øä\®3 ¾ 7•ñ¾ß *ד PP!7rˆ•Ælß´ˆ©1 \Þ #VÎë— ŸÛûÇ’ ^ÚzOÒ´¨Ï#K 2•ŠWF~kdú?€³ïüÛ fø†|Þ‡(BÎá¤üžú +¼îÐožÂ|Ÿ¬~zqE¼#>)rýÃÙMgl–@ÚvízÚøªô GZiažÐk¶º¨L-ºz¢ê6˜Ïipõ~}‰°½Ý¯Ýí’Ìo`óšÄƒíñŸöîã¡më‚)Þ1®Ð«æDS²9vC0ï70Ø}¬»pº‚>‚yBàÍ¥c“J %£àôœìàÉ‚èÐqJÁvM×o2²×ÔkLk$ƒÊsÖ7dðgËîìÆò$Í”b¿¬È`@¿Í1¸ñÁ‚Ьhí7ä&(¤–ÃD{<:¡: øüþ¸ à' vG;üK†–¦Esìé*=XÝÑõbcïìC ­éh×LÙ ~ò ´ˆ2¥ºÂ?/ ˜:Ÿð ž«ÌãÏIë½Ü¢ì½„éÎI¾Æå¶ãXŽm~öÍ-AQkÂñÂ?èúƒrŠÿ"XCR˜/„zê“Ñ` +^²Åqç]1*`p_7aܕǒÖὂo[ë/©› +‡Ä!ÝÚí]kû3öŒ®ÚfG&¨ÃðÛÀ`h£qË ‰í]|éÈþß`¸òÎð9vŽo>{[ÇËÉ•*¿íy u èôK!‹sx]³óçÕßG¦ »ö ,ÐçԀ㰒"Ç‹]ƒŠí¯uO*œøåõ³g$ÌÑÁ@ÊÛDç@CêrÇiE +‚)ˆ[  ]n^zš’øÙÃxqaáºnügîÂSLU‚£!m%é­_ÐU馌SÅ ŽUÁs™Wf‚ÝYe`ØgÞ–Í ¼ˆe>)«PãÝýà;wendstream +endobj +955 0 obj << +/Type /Page +/Contents 956 0 R +/Resources 954 0 R +/MediaBox [0 0 612 792] +/Parent 883 0 R +/Annots [ 958 0 R 959 0 R 960 0 R ] +>> endobj +958 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 539.982 161.121 550.83] +/Subtype /Link +/A << /S /GoTo /D (classADSR) >> +>> endobj +959 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [237.669 513.834 255.298 525.789] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +960 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 431.571 182.873 440.482] +/Subtype /Link +/A << /S /GoTo /D (BeeThree_8h-source) >> +>> endobj +957 0 obj << +/D [955 0 R /XYZ 106.869 686.127 null] +>> endobj +954 0 obj << +/Font << /F23 479 0 R /F34 950 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +965 0 obj << +/Length 1092 +/Filter /FlateDecode +>> +stream +xÚÕWÛnÜ6}×Wè …D4¯’b».’ÔhïKàøA–´ÙEe)ÖÅAÚŸï Iiw½nœÂ œBÅëáÌ™Ã|<†jmÂ$34å*,®‚ÃEpp"dh¨Id¸XÚŽ‹òœð,ºX¼ ¥b”sé+ϯ¢XfŠEœÔyßcI’ãþ‚ãUÕDòaÅœ´ b¿.î ˆ•& cIM¦qþëàü‚…eÀ—kûy˜Ó˜ð*P©¦‚g¾\gÁ›ŠKN5KÂX¤ÖöÙrE¥J¶½Q V`šB~ýfÌK°:Õ“/ö®âm…Æ/¡Âfºª)*täà$Ûæ 'N²t‹)É%b_Zx¨yÏ4"‘‘O‘HIŒbü×û©ë3µgÐþÖW] ãø„ÀU ˆƒ3ÇUŽ~N¨3M˜Û8Ø&”µí§uSÔcé]à|ÓO¥”¥ÊSôó>NJS•ùæCË]ÝÂi¦&…ü²GTlš$Ú›¤m¯Íjf ò~…õÝS¤ÄêüC—_9w—­÷í°ì>ƒôÙm}q%©eÇÜp˜5CU„סհLm§í¼à4ÖW¼¸Ráq J 7b‹g`¥¨a»jãÔh½­¶×ã%Æk]8=Và +W#eïéS~¸±JP“¤ ÈÇñðtG—Ùã–Ĭ\ìÉà úZýÃJà)€Ã$Šq;ö¸Zæc=ÀÈ$ʵ„eÚÝX –â$%Ei€$Ÿe×»¶Üýz>èP`Ò6e ƒª¬<ÆÇitßÇÃʶµã‡•kt‚Žº£ûŒÄ¬–‰ýƒ‘_GÉÍ&ë†1¯÷¥ïßñ=“l •nþ+¹±Ð°‰v6; Ћ*®&r¿™§vŸX—Ó>PåÝÆÒ¹‘“¯VÄQ=Ǻ›Â áÕÎ ¤¶ññjòÚKvùÊwo—î?¬*7ÂFø[FwÇç¾Ñ¶ñûL|w{70Úw°x•0å½ç€xš;Oß2¯ûlÿÄ<ùý´òyçãÂíbxü›x´¡,1;8«ü²ô<¦äòœ]øEi®£ +ØJì^¹®šÁµÞ`h—ÕX}_Þù=¼ÇŽ­XÂ5\|ÚùÃhç? íâ@»xíâÇ¢ý9wž!å0Ýé]”k¸A=åùd®2ußù9¯.¶¯öä·”Otgä&¯¿'Çâ~ŽUÖù¬é]«$£ÊJZR¡ü˜TúËä|½TaB (lËĆOIMÎ>ÃkKc8íC`Ýc5šÍYBð©1…Uòj=¸&û*k\þè ž¸Â%}vùבLà‚s_ó–ú! +кbnÑJWøÍ®ÉÎŽ€ÁYJ¨·³Èþq[{¨žÚÇ¥0 hPðâÞQ…„è۸ʗc“IcÚ÷Û¢‡Ã%ÏbIãnÑÀ2Î¥ÿŒ¹íÓ‡ðäpOendstream +endobj +964 0 obj << +/Type /Page +/Contents 965 0 R +/Resources 963 0 R +/MediaBox [0 0 612 792] +/Parent 883 0 R +/Annots [ 970 0 R 972 0 R 974 0 R 976 0 R 978 0 R 980 0 R 982 0 R 984 0 R ] +>> endobj +962 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 1000] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 985 0 R >> +/Font << /R9 986 0 R >> +>> +/Length 987 0 R +/Filter /FlateDecode +>> +stream +xœ­’ËNÃ0E÷þŠY cã×¶ìC²C,P›VDÐPÔßgìØyP6HUEžë¹çŽÁ%ˆð¤ï¶gGvÿTÀá‹AF)¶=lj=8Í­,Ô{6¶IÒpc%(5¨{v³iËï×ÝmýÆj(ikˬä:g†Fr§ Ó–SCQXÃÑ$k CêFFèÁ`€øá±íNÍ0EÈPM½œ¶\ê‘;rò"L¡"´:½_iJJ¥®@$CZŒã} }un>/pâoÐ3HV^hËŽ©dOסõ`äA?.éÐQÛ¼ÊJ:¿YLÒM< ЉÛ1TáŒÌ²²öØßQ°1PTHˆ fÓ2Ár!éùh'=æ0. 6‡YTÖ&Vp‡À9D‚àä‘!‹ÊÚ#Còåôkf€”ìqr»endstream +endobj +985 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +986 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +987 0 obj +321 +endobj +970 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 394.679 220.593 406.635] +/Subtype /Link +/A << /S /GoTo /D (classBiQuad_a0) >> +>> endobj +972 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [217.383 354.91 260.748 366.866] +/Subtype /Link +/A << /S /GoTo /D (classBiQuad_a1) >> +>> endobj +974 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 315.141 229.061 327.097] +/Subtype /Link +/A << /S /GoTo /D (classBiQuad_a2) >> +>> endobj +976 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 275.372 232.825 287.328] +/Subtype /Link +/A << /S /GoTo /D (classBiQuad_a3) >> +>> endobj +978 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 235.603 232.825 247.559] +/Subtype /Link +/A << /S /GoTo /D (classBiQuad_a4) >> +>> endobj +980 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 195.834 232.825 207.79] +/Subtype /Link +/A << /S /GoTo /D (classBiQuad_a5) >> +>> endobj +982 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 156.065 233.24 168.021] +/Subtype /Link +/A << /S /GoTo /D (classBiQuad_a6) >> +>> endobj +984 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 116.296 233.24 128.252] +/Subtype /Link +/A << /S /GoTo /D (classBiQuad_a7) >> +>> endobj +966 0 obj << +/D [964 0 R /XYZ 160.667 686.127 null] +>> endobj +967 0 obj << +/D [964 0 R /XYZ 160.667 667.729 null] +>> endobj +46 0 obj << +/D [964 0 R /XYZ 160.667 667.729 null] +>> endobj +968 0 obj << +/D [964 0 R /XYZ 160.667 414.564 null] +>> endobj +969 0 obj << +/D [964 0 R /XYZ 160.667 414.564 null] +>> endobj +971 0 obj << +/D [964 0 R /XYZ 160.667 374.795 null] +>> endobj +973 0 obj << +/D [964 0 R /XYZ 160.667 335.026 null] +>> endobj +975 0 obj << +/D [964 0 R /XYZ 160.667 295.257 null] +>> endobj +977 0 obj << +/D [964 0 R /XYZ 160.667 255.488 null] +>> endobj +979 0 obj << +/D [964 0 R /XYZ 160.667 215.719 null] +>> endobj +981 0 obj << +/D [964 0 R /XYZ 160.667 175.95 null] +>> endobj +983 0 obj << +/D [964 0 R /XYZ 160.667 136.181 null] +>> endobj +963 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im4 962 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +990 0 obj << +/Length 2056 +/Filter /FlateDecode +>> +stream +xÚÅY[sÛ¶~ׯÐ#9P€ 3}HÓ8=mÒ¤¶_Ú4´DÛœ#“6E%c÷Ïw/ E]\çÒ:ã“ÀÅî‡o/X«©„5UÒ‰,÷ÓÜᔙί&?œN¾=Êô4ˆëéé9­<]¼MŒ0éL{“üPý¶.ø®“gËbµÂ×,9Ng*)Ï˶¬ç% eF†D…ôÝéϓ秷œI¡C˜Î´Þâ†7“·ïät1‘ÓŸ'8ç§à] +«®&ÆY‘)ÿ^NN&¿ ¢tƨ̑®½òZM= äcåOÊTÊ}Ò]¢n¹KŠ·Yª’w<:O­NšÔfIù§Tù¼*ë¸þ}±\—øöP™eF(Ã3ÁÚ>u¼ÒoâKµxŸf>i*À.ó.Y`Ýq‰ÏUS5(4§A\àAž•¯`ì÷] ½‡ÓòÃÞ‚Ë|8aœ°óûç~ôò5ªý4…£?EÅBrJµåÍ:%UU2(~‹‹žÀ¢à’W{j+)…jÉÇ׸ ‹E…¯¢~g8‡ôIš%#^7¸p†Šº2ˆ<èéL)¬%ÑWŲº#›¿‡…G©R*yúòä9ü§¥øôÇT@g@ðݹž‹«žŒŒ ¾y̲#Ñ-3tŽ|l™LJœªÈY†KΛ¸¼àGKH@O÷.r8ŒtsíÉy'Š’×à¿·û† ‘‘éVV5Kþé-?ì"¹@þÏô­u²*»_›nžÂ]òȽN1S™&¬ÞåK2­Íà Ç'¬ñAm•T"‡øñžà?YÍ‚70‰|ü0qgÊ9‘CnØ¡îN%Ú¢”®Ükã„H•z1ªà¬À«H*JHQ²…(ô²Äká|þUh²g“6Bê0.Rïã…–:.ø‚ùL¸Çæ×¾YNP‰{¯U¶PãR¡¤`ÞÑ5,–ÏëzU]Ô}BŽ•Çrø :þ˜jMøøë[¾¦ÝWÜj$‘;@ñ½ +èfM¾­d‡dmQþ j[í×¢ZØÐŸØà)X¦™è*¦¤Æï 0RŸ˜¾f‹~Bü¤èz³.°´3!©×¸Å9UÑœÇ'¹Rïõk¨.é~KÕ T¾JÂ-0žµ÷+p%² Ú¿g4b|\}ò`àJ@pxrobc „Ñ/ÈOPûÙäDz£l½,‡«yÛ߯;üÝÔ{l’d´åäôæÆ² ôÅÆe:´ä^,›Ùul”ObsÝìŽ2m³IŸ|VxT}1Ž9•a±¸@U\Ÿ2¶ðô²¢‹@NÐ6]¤9™§mrTÅ 﫾šáþD”«µ#ÛG±›^Kv‚(½àÇX}^?6o3ïFæñæ‹êwéˆT°’"8p6Í› ØÓÁÊQo„ ¬ùöÖc´Ýmǽßã&‹’æsº6ãµßç- › œY}Áƒ?Ú>ìöÊpëMÜŒ<ФËoÒþÂÈbÊÕ5·~êþ?ùpY-飱myìûTŒ4W‘~zÁd)FEU1ŽIyËÐC,9ÃooyÙò³mˆ#ÇL.zÆø61‘Ú/ŠÑ7o° ¿9é+èÒR.†ZÈ–ßfl[&evÈAq &³;œE~ìÔRXÇpN|”Œæs:Û&V“èܨP&óõ0Z#¸±Ÿo·¤ÇŽnì "2AñÃJ°¶mª˜/Œî{Öß}GôI©íJ¿¢ +êXp€{/¥ÎCÐØôp`QÚka ¿l[óÌ?6Û^‚¯ÑŒ§i°}nÕv”:3ØR }‘ÔÌ!¹õFÆ’™ëË¡'±Ãi!rc3~äÅ*%e‚PJ ˾¾íJxß÷yÈôb\Y¯öíÖR¸ÜvÓ0˜—H9…­ß=ùÀm3”ŽuÓb×w”æÇâ­*遲ïYüQª°(z‰.÷|S€ø¶“·~;aqßgÔàÖQ‚ûLÝľð&èØ ÂÁ¶¤pG~Ïœ§Öß³‚*@~Þ¢v‰¬Ú¢×¸ƒåÎîvÞäŸîú*Lì7*œ°PþͰL”æËþÿ«´a(ÓËLsj Žèuz}ýäB e B…Ò”Æ:VÉœÈañ7@ÿKÕñ%~öÍ7ür†nyòM + ³ÄèÛÆ‘cÁÏgt1¢põ(0½ c6‹QÒQšEçîðE7ôYÉ®›)¬…òáêu¹i7ÃEØJ‹ÿqËUÞß“l\7BFÝ­‰â2€÷²Aü§ÈÚÝßâ"‡Bendstream +endobj +989 0 obj << +/Type /Page +/Contents 990 0 R +/Resources 988 0 R +/MediaBox [0 0 612 792] +/Parent 1012 0 R +/Annots [ 992 0 R 993 0 R 994 0 R 995 0 R 997 0 R 999 0 R 1001 0 R 1003 0 R 1005 0 R ] +>> endobj +992 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.313 631.335 212.116 643.29] +/Subtype /Link +/A << /S /GoTo /D (classBiQuad_a8) >> +>> endobj +993 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 582.459 193.002 594.414] +/Subtype /Link +/A << /S /GoTo /D (classBiQuad_a9) >> +>> endobj +994 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 545.538 241.445 557.493] +/Subtype /Link +/A << /S /GoTo /D (classBiQuad_a10) >> +>> endobj +995 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 508.617 188.09 520.572] +/Subtype /Link +/A << /S /GoTo /D (classBiQuad_a11) >> +>> endobj +997 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 471.696 225.107 483.651] +/Subtype /Link +/A << /S /GoTo /D (classBiQuad_a12) >> +>> endobj +999 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 434.774 223.432 446.73] +/Subtype /Link +/A << /S /GoTo /D (classBiQuad_a13) >> +>> endobj +1001 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 397.853 206.773 409.809] +/Subtype /Link +/A << /S /GoTo /D (classBiQuad_a14) >> +>> endobj +1003 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [193.71 360.932 211.754 372.887] +/Subtype /Link +/A << /S /GoTo /D (classBiQuad_a15) >> +>> endobj +1005 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [172.977 251.182 199.212 262.031] +/Subtype /Link +/A << /S /GoTo /D (classFilter) >> +>> endobj +991 0 obj << +/D [989 0 R /XYZ 106.869 686.127 null] +>> endobj +996 0 obj << +/D [989 0 R /XYZ 106.869 490.156 null] +>> endobj +998 0 obj << +/D [989 0 R /XYZ 106.869 453.235 null] +>> endobj +1000 0 obj << +/D [989 0 R /XYZ 106.869 416.314 null] +>> endobj +1002 0 obj << +/D [989 0 R /XYZ 106.869 379.393 null] +>> endobj +1004 0 obj << +/D [989 0 R /XYZ 106.869 315.416 null] +>> endobj +1006 0 obj << +/D [989 0 R /XYZ 106.869 197.535 null] +>> endobj +1007 0 obj << +/D [989 0 R /XYZ 106.869 173.422 null] +>> endobj +1008 0 obj << +/D [989 0 R /XYZ 106.869 173.422 null] +>> endobj +988 0 obj << +/Font << /F23 479 0 R /F31 829 0 R /F14 825 0 R /F8 483 0 R /F19 460 0 R /F22 474 0 R /F35 1011 0 R /F32 881 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1019 0 obj << +/Length 1981 +/Filter /FlateDecode +>> +stream +xÚíXK“ÛD¾ûWø(ÑDóÒ#U@WQä líZà•6²œe—?O¿F–l/ ÅÔV­F£™žžž¯¿þÆzžÀŸž›By_ÌÓ¼P™vóÕÕìñröð‰±óB©//hàrý:2Éâíò›¹u‰ÒÚJç«å³Els}¾ÐѶÜíðÍF_´ð4ÑjU5 hôe_/bµ Ú˜}¹œiq N”-òylU‘{\ÿÝìõÛd¾ž%óofüíÚ°fQ̯f.óÊè\Þ·³W³ƒ)mµòI:MF¾‡Íä§{YnjðÔY]¡[U¿‡M­¹s]õöw PC£©h +lfSqãM¢n»¯:ž·¢=’%šÒU˜O=ÍÂäQob‹gà:š×Ñ5Ín›5tÕÍ%Ûí[yâì›/xu½ öé’y¬µ*¼§Ý®Úæ×=Œ¸,q[.ña•-m Þoê~ƒ-G¾mdÔ%ºý×ßÁôÃ'Öâ©-àÆåÕ‹ná Œõ:z·¯šÕ-OÅß9es-Ãß$>©^ö+XéŽCæ5w•ƒ“}ª’<®T®ÑËýîd- èÉŠƒk(Þì•Â…í»˜£Žèm¨ãÑI”/Ü$Œm‡+]Ö‚©ÎE__œúçŒJаÁ¦í®J<šú®: …‡Œ“FkmÔwûp¤G\µÖàÆØ„NÃA«ºV,” æ­hèZ¾õü¼ãǧüÐF½.ôÆ¡OBÔShòL剖Ȥ0ÀS>Â|À^D=xf|ÁžŸ£¡†[M;$Ø&v—Ƶü¼¦££0)ö«J òç•ð +¥¤HÉ«ò gSSÚÜŠ5ÎÎò7p ÊZü@bþ_ó†šsé´®$‹ê|Ô^0+`Q 8²Tå@²|æ—¸ì1(ŒQ: ét]âÎË+ + +ÄÔèù¢ˆ–Ø ‘§DT4l·ßö9‚3SÌ€«]õn`$¡‘[žq0¨h'‹àzåŽAPäÀ×f8›åÇèDÊ ²±—å½`ßGÐ ˜·þãÙ2Þ‡øb¤`ÁI¤`ÑÕ¶Ý ±˜8ÄØÈ…ñ“ &!½ghÁ¿ždUw![I Ç•%SAˆîÓª<óEjP¯ÓÌÈPÜ ¥¿pEË)L¡¯-‰)ЙtœOp´7ûîhÐK¸=ÆŒ€“m›rÀ‹ ¿©1+ûb_Çʾ+ï2xBaN9N9…³2ðÐ>»´µd¾Kmô¸~±/בèM­ç-®C±Æ‹ýî§cU¡¤0ä±N¬2Eúaaa•³ÙYY!_þR=ù|ûÝúlQx±Ÿ†t¨|å¡\L <¶ì2e†ƒ~ EÉfÊ™t¨Ó½Çô¢†ýû{×*ÏÝßâ{OŒ}²o¨ÚYê +AŸ¤@¬!ÏaJlœJ@»’ ­ú Ší…éíC +|± %ÆUï/m¿Â\Ù 5ô”¥2­ÒâãYÊB +û# „¶'HÉ‘k¯lŠ@ÎTjÜÿâ5É¢»a{íŽ{‚|MGÒ.ƒúÂÅåÝš&æïèV—ØÝšF_ÝÁšÞ+Xõ ?,X‹3‚5›ìŠ‹`«Uo&šìX­>oljB.x' £X­ïà¦Ö + k>jÌ„²ï«« ”{‘i::CúÉ=toÏÒ=^ÏÓý— u%ÑØþ0˜ÅVßÓé^žÇ>°;$âúîoBÿ)G#¿WÝh‹B÷iýÇ*<Äô)ÝéD•øBåÞž”xSŒøÙ@KF¼~_w=ÁÛS%`²\Y˜7‘™çÁñMÕPfq¢Î8uÆ÷t Iˆùt½ +ãš?vu.Kꜗ³# ÎÞËXÒÓkn¯yË€ Þ¦íÅ<˜³ÁUØŸÝIt~(á9êÿP¾×Uò~á¡Rm‡ëßNIÙeˆÙºº(÷ÄC£pQ+Ø‘µÐ¥VÉ9Ú{YÕCõØr!¯*ùqy¶Ãz‡VžÔÂ}÷Ÿ :Ç;åÑÖ¨ti›x58¸Ú–»\øFz¤”o—U3À£ìLJ{ìàôP!¶Û–ä SôÀ•GŒ^¸þ@ÒÎAÑ6ž~jâlÐ٠̹ÁÉ€„Œ¸V›ÝoÁ ̤é?ý1•/N£K󃛧ªÈÜô×TÒ”>zuÛ,,‘*ŘeªÂÐPR°t{ü!yV÷ü©–RˆíÏ?Á—Oøå4tËí6…ÂŒ5Gz^*™‚FÁôoüZ’µ5¿0u4 âI‰Ÿ«Í¿G»ˆ8i¾b™…â’±ürò‡mÇFy¼Ö'@Âi86/ãFásd Uƒ(ãZþ“$TÂþ ßO Bendstream +endobj +1018 0 obj << +/Type /Page +/Contents 1019 0 R +/Resources 1017 0 R +/MediaBox [0 0 612 792] +/Parent 1012 0 R +/Annots [ 1024 0 R 1025 0 R ] +>> endobj +1024 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [253.929 274.002 280.164 284.85] +/Subtype /Link +/A << /S /GoTo /D (classFilter_a7) >> +>> endobj +1025 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 230.783 228.895 241.631] +/Subtype /Link +/A << /S /GoTo /D (BiQuad_8h-source) >> +>> endobj +1020 0 obj << +/D [1018 0 R /XYZ 160.667 686.127 null] +>> endobj +1013 0 obj << +/D [1018 0 R /XYZ 449.673 586.035 null] +>> endobj +1021 0 obj << +/D [1018 0 R /XYZ 160.667 569.603 null] +>> endobj +1014 0 obj << +/D [1018 0 R /XYZ 357.568 476.921 null] +>> endobj +1022 0 obj << +/D [1018 0 R /XYZ 160.667 461.043 null] +>> endobj +1015 0 obj << +/D [1018 0 R /XYZ 160.667 379.763 null] +>> endobj +1023 0 obj << +/D [1018 0 R /XYZ 160.667 365.822 null] +>> endobj +1017 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F32 881 0 R /F35 1011 0 R /F29 818 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1031 0 obj << +/Length 1359 +/Filter /FlateDecode +>> +stream +xÚÍXmoÛ6þî_!`_$´bø"ŠR1 ¨Óeh» ]â/CÛŠ-'FmÉ‘éAÿüîx”ü"gM¶¦-‚XÔ‘<ÞÝóðŽ”8ü‰@pÃdši–3#’`¼ Gƒ£©‚œå© +FS7r4ù&LG±Ê’p8¯#%ÃÛamç$9ŽDM+h­P¨Â3”Ó²)«q "¡MJ}½ü>oBÌ™Êó V,Ï4p=øð‰“Þ °/ n¡Í™€Q‹Ab4“"óïóÁùà¯NbiœÙ2 SIºë ¾!u8DÓ½?Ь-¹¢Œ&¯Šºc’ð¬DÐ|¢KàÈÑI¶(\>ÉÝ"磷0O©ð‚Yxë&¢T‚4ImÝr•„³Š‚'BÛ@k½ •"™‡–tQ@&‰‘2ß±@–JíLøeVçë‰7TˆÍ¸Ä0n”ǯ}=†pƒºm‡4»êëÑ’)Þêù­éAöV%nØëê +œs®¡—3[ ÛÎ3‡ Š‹Ë¦X×Óº¡ÆÐÇÍyñbŸH¼ÒK%K2GæàˆÂó4qc¶šŽgÞ8ÁÑë…^Õ@¨`é¸S›(–%b‡Z‚åгE­÷ë‹9Z?&–öª†&'+½d¡™ +H#™Ì”›ÿ‘ Ó #6äŽJ~ÿA`>rÍá_ÐT%‚ ¦8Îû…IÐ –iZãxÞíÒÔ@ൠëje›õØÖ ë›KСRxBD¾±3ÖœCKñžÅ·bÏä!Úü“S–8Ê Åò€Å“ò¡ÆÊ‡ÅôÍ«g¿ÇæeÑ<*¬´ÌY¤ÑzÕòÛ’ÁE5ñ±†ÑvêQ¡€9sz›U–6EUxÉʶ| wrUÚ“rtÓšz½n[Ýn¼Ûád÷ö›Ëµˆ”ʘ„4ýÕÜ-!Åç3·ïé6WÖ/?'¾C^FPoF”(¦`VS^¯¡ÀÜÆ)ÎƒŠ±ÃÿóÒá’AÄ‘H cQV^´Dü]t0–§e"„Ž~¸×óÕiCD Á2ªwO„¢…µÁJ·³ü.sEä’âƒÐÁÛiº8ÁL57c©‘߸b±tiÒ®'mŸ“K‡™Æ¡†Šüû[Ú¶µð†‰’’;{¹\¶'"ØEÒ¬÷XïZföŠä7¥UcÏxfÝè,´5õî1»ngíÔËÙMY‘Ðqu9Çx–Ôér6·\„,¦±õ´Õ=Þ²gõT‰ÆÖËÿÄP8œ1ëÇѯ#Ÿep¸Iw€墹XJ û@D®(éj7Íá§yQHYÉz}#UÃþŠOeåŽÇå»j«.ôqƒu¤ø°QMp% ÏÐX°Ðý{z,…ØðŸ"Þ—fŒ`ZîU2—ÿ· RU?¶)d¯Ê —Ú+È}…Š&w'–íÄò´¬‚ij“âä®J™ŸªnÝW +cvˆç˜ +ï+r§Ev˜‘~ìÜJ»yb°VËH÷3ÙËN& —ÜIéœìÿ´$Ù·‚({4DpCÑçþ ~÷¤á¢Ž¹[1™üßÏôÃß»ûa7™. [öŽp+&J‡çwUØšî*?[¡}< ñƨñJæÛ™¥.¨šnæñ³gÔ¸@wÔù>RiXâa¾ñ’3FÏcT*?Ó+ܵAë„^þp_lpV§vXȼ‰ãW¸AÕµ›V>Ç02çp!†[?Ä8·Æþ ‚ÞxCõæ?î¤"mɤý¸­È@•Oœ. !ƒðâZú‹äøä²…î{yQîendstream +endobj +1030 0 obj << +/Type /Page +/Contents 1031 0 R +/Resources 1029 0 R +/MediaBox [0 0 612 792] +/Parent 1012 0 R +/Annots [ 1036 0 R 1038 0 R 1040 0 R 1042 0 R 1044 0 R 1046 0 R 1048 0 R 1050 0 R 1052 0 R ] +>> endobj +1028 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 882] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 1053 0 R >> +/Font << /R9 1054 0 R >> +>> +/Length 1055 0 R +/Filter /FlateDecode +>> +stream +xœ’Ánà †ï<Çm Øp´ÃŽ]ó•ºnKZuÔןI¡I¤®Ò¦ðoŒÿV›ü•uÓ«£z~óúý¤ŽÚŽ[uÙôºie3I"@ Q·[u9fµ÷` £&  ê¶WMw87‡¡{l?ÕK«WRü¡b´žô9÷/‡‹s^zŒÉAw ,“L"—q.Ø)B„äÄ•!»öj-6g„>ho=I#øëþ4|÷ûá +~ÕŒ ­ +p•;`BˆqDÇS™ÀcrÀ” Äùð–8¹?ƒ'á×Ã×=n6Ár宲pLjV:¬óx*Û)‡Fx9›Êȸp_~wë]1̲H$¹´÷Òp}‹sQSä4»|d‘’ +rµ³@0:…N†BqžYvÙ>ýâ[¬HÊ ä纇ZkŠœÆuEæ^Q‰gg¨³Ì²‹ ®ÔM„¼iendstream +endobj +1053 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +1054 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +1055 0 obj +343 +endobj +1036 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 425.671 173.575 437.626] +/Subtype /Link +/A << /S /GoTo /D (classBlowBotl_a0) >> +>> endobj +1038 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 386.999 181.324 398.954] +/Subtype /Link +/A << /S /GoTo /D (classBlowBotl_a1) >> +>> endobj +1040 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 348.327 175.263 360.283] +/Subtype /Link +/A << /S /GoTo /D (classBlowBotl_a2) >> +>> endobj +1042 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 309.656 211.433 321.611] +/Subtype /Link +/A << /S /GoTo /D (classBlowBotl_a3) >> +>> endobj +1044 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 270.984 210.326 282.939] +/Subtype /Link +/A << /S /GoTo /D (classBlowBotl_a4) >> +>> endobj +1046 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 232.312 208.084 244.267] +/Subtype /Link +/A << /S /GoTo /D (classBlowBotl_a5) >> +>> endobj +1048 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 193.64 186.858 205.595] +/Subtype /Link +/A << /S /GoTo /D (classBlowBotl_a6) >> +>> endobj +1050 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 154.968 187.135 166.923] +/Subtype /Link +/A << /S /GoTo /D (classBlowBotl_a7) >> +>> endobj +1052 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 116.296 206.773 128.252] +/Subtype /Link +/A << /S /GoTo /D (classBlowBotl_a8) >> +>> endobj +1032 0 obj << +/D [1030 0 R /XYZ 106.869 686.127 null] +>> endobj +1033 0 obj << +/D [1030 0 R /XYZ 106.869 667.729 null] +>> endobj +50 0 obj << +/D [1030 0 R /XYZ 106.869 667.729 null] +>> endobj +1034 0 obj << +/D [1030 0 R /XYZ 106.869 445.007 null] +>> endobj +1035 0 obj << +/D [1030 0 R /XYZ 106.869 445.007 null] +>> endobj +1037 0 obj << +/D [1030 0 R /XYZ 106.869 406.335 null] +>> endobj +1039 0 obj << +/D [1030 0 R /XYZ 106.869 367.663 null] +>> endobj +1041 0 obj << +/D [1030 0 R /XYZ 106.869 328.992 null] +>> endobj +1043 0 obj << +/D [1030 0 R /XYZ 106.869 290.32 null] +>> endobj +1045 0 obj << +/D [1030 0 R /XYZ 106.869 251.648 null] +>> endobj +1047 0 obj << +/D [1030 0 R /XYZ 106.869 212.976 null] +>> endobj +1049 0 obj << +/D [1030 0 R /XYZ 106.869 174.304 null] +>> endobj +1051 0 obj << +/D [1030 0 R /XYZ 106.869 135.632 null] +>> endobj +1029 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im5 1028 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1058 0 obj << +/Length 1181 +/Filter /FlateDecode +>> +stream +xÚ­VÛnÛF}×Wð‘DÂÍ^y)Їک$MêÖB"ÍEÑk‘”)Ê®’Ÿï\–”¹ˆÑ¨ÙÝÙ¹œ9;»*ðSÎ…syd¹H• Êfv6Ÿ½ºÐ&ÈEž˜`~MŠóåÇPëèÓüm`¬J?y5Å&³áy¤Âu±ÝâÈ„¯;ø×a¹kª6a(†:ŠUصhcöã|¦|±&ς؈Gô8&Ú‘ÇùªÆ>“RãÀiX7pR=ÛŽmÒ² ÖZ*¨Û °¢³7|æõž±è0ÈbèzžÅ’`†õºXŽ³Ê¢™a",Õ†ÖêaÅ’w¼( Õ¬÷ÈÔ®©‹õ”œ¯$÷g50œdñ/¬d hê®åU §`qíÿ¡§Ô·Âcܬoz¾ÕСÁ˜xÑŽÝæÃŽiÕo¿;myÊ c PÀ —»çµ¼]½õNÞñ|ßóŸ}¢±²+è=î™õ· ÔCÍØì6#®æÒ¬jËý#¿J}ñþwŽ!GÏþÑÑÿ”`”QÇóGáèŒ +ŽU1Ò=ªÎ‹î¿ŒèÎ@¢ú™_Ù+·> endobj +1061 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 630.369 271.402 642.324] +/Subtype /Link +/A << /S /GoTo /D (classBlowBotl_a9) >> +>> endobj +1063 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 476.542 210.547 485.342] +/Subtype /Link +/A << /S /GoTo /D (classNoise) >> +>> endobj +1064 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 368.874 235.675 377.785] +/Subtype /Link +/A << /S /GoTo /D (BlowBotl_8h-source) >> +>> endobj +1059 0 obj << +/D [1057 0 R /XYZ 160.667 686.127 null] +>> endobj +1060 0 obj << +/D [1057 0 R /XYZ 160.667 649.796 null] +>> endobj +1062 0 obj << +/D [1057 0 R /XYZ 160.667 594.012 null] +>> endobj +1056 0 obj << +/Font << /F23 479 0 R /F31 829 0 R /F14 825 0 R /F8 483 0 R /F19 460 0 R /F22 474 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1070 0 obj << +/Length 1452 +/Filter /FlateDecode +>> +stream +xÚÍXÛnÛF}×Wè …„›½’Ë -;us©Ñ4 +IhвˆR¤-R6„ü|gv–”d:w8) ˆ»³·™9gfw,"¿ŽÜ!G)¯•qÓž×ËÞ$ZÙeŽfŽydêÅÙÅ:[‘gw²œïÔyüø6…6,‰%KD +®l\ëæì·[wìs‚GÏWqð´Z;fFþx®ìAKÙ'è«Í9ÂXæD»Ó¢[5ç­wŸÞùGà·îmâÖ¿å"ùr‡óú‹Xï½ö–~úÏm§¤6ߌQ ¡œÞ¡~d0ߎÓÌÉ¢nO¦if¤U¯-ü8ÈÛîG) +®@ÿ ätdµ…m]ÐGF3c‘=ܬܘ®(tTœk †HÛ­7y×¬ÙØÅ‘ÔL¨¾žÜ¹82œCKñ‘³ª‰·¼ýìÀÍw«3-?¦ì¼ø\=Eúy\¸FÝšrÞg«"óòa%A;‘è-_OòàôÙ‘Æ”…ÐÏ`=xÚmrÈr°¦¢^YwÍuæ%m—uÅýÙH wÔÕæà¶ÂÆvç„SbBÁé[Ä,? (S¼ˆ®>F}ˆ[²éÌÝB±‡#‘`UQ{Ñ%bðàïj@±X{êQEäèã§we¾©zPkâà š9‡æÛ/ˆ¨/Âp†ÂÝvpéÝÁ"Ë´€$©,³‰úþ` ×îÍߨtV¹¤õØlÌ`ànغeAžîÈð‚ÄtîϕΠÑúŒÓ’_HœWM[ Ló‡$ÄÍ--hÒEêÞ[@:¿5Š»½Ð#)³<ñPÊo…ÒÞ/”1<¯•ü”k ‡ÈEÿâkéE³–ÃõŒ0cN¤EÜ[Àå½"a½ Áà1 0{l† LéF=Ô.p?î¯ Ý²œ„Çø»±D·^ìBzcì% ¨“ÅÙêҽ˺ͼ'ÁC2éÎ+Bp(= ÿòï¯é:ëz ?ÀL‘Âå5Ÿ\bmÒóAÛ4<ßåó «máš YÛnü ›Ù54J÷Š»>jÿ +@ñMÙ/¿(¯ýMëºî¦¹¬†RK ·!f2·Ãœ&Ò½ÔÔkýq犆XgH¾ ©¬-î‰ÄÍå×p«NfR¸•uÊ,@ò?䆵PpÅÔxê8ïÑ¡õ‰èœŠ°AÞ׫îA!|rkñ‚ÚxTܲÃâ”û®‘5¸v·ËK‹þù;Vƒ] uxÌÁÅ*eÂ$ßøOú÷„¯Ò†ºMÃS=…Gðž¯g˜Ðµ2áÙ¶žÂ¼«ÎËÅèÁc,òa¬q¼yYv4TÖ´òøÁjœã[|5U1ýCeí%¯}q3Øò_êfC¼@ç÷¬¯Ž‡m ’™W1Ïð„kܺqËŠ‡.dÊ™Ð98„ªÉÜ—öfgqFÿrxúÆ}ô?oÏ3@uíöBâ4p/žeÞKŽ_.{ìþàÝJöendstream +endobj +1069 0 obj << +/Type /Page +/Contents 1070 0 R +/Resources 1068 0 R +/MediaBox [0 0 612 792] +/Parent 1012 0 R +/Annots [ 1075 0 R 1077 0 R 1079 0 R 1081 0 R 1083 0 R 1085 0 R 1087 0 R 1089 0 R ] +>> endobj +1067 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 821] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 1090 0 R >> +/Font << /R9 1091 0 R >> +>> +/Length 1092 0 R +/Filter /FlateDecode +>> +stream +xœ¥‘MN1 …÷9…—ÀÂÄIì8ÛJH°,T-‚δêÔëcf&ÃT°A(‹(ï9þžþkûºsG÷øšàíìŽ@½U·u‹ÆÌEQ¢ÐlÝp e œ‘cŠÐtînѮχvsß|¸§–Vüî4 R¸:!”¢Ù®'Í‚$)¢&8mÜêotkª™¢ +ö–Ñ_öçË©Û_&zåÅ %ÿŸJš0P‚LŒ^JO]]v?€Â™1ò¯ÀDè {ŽÀÞO^7CÆÌÐZå0úu”ɯ‚ù"†¡°b!+ Ñð™æÊmíठ™*ÄÒG´/ Uý:ÞäWá;„Xnd…˜)·=,ÄÒ}âé‡\endstream +endobj +1090 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +1091 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +1092 0 obj +274 +endobj +1075 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 425.274 174.543 437.229] +/Subtype /Link +/A << /S /GoTo /D (classBlowHole_a0) >> +>> endobj +1077 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 386.401 182.292 398.356] +/Subtype /Link +/A << /S /GoTo /D (classBlowHole_a1) >> +>> endobj +1079 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 347.529 175.263 359.484] +/Subtype /Link +/A << /S /GoTo /D (classBlowHole_a2) >> +>> endobj +1081 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 308.657 211.433 320.612] +/Subtype /Link +/A << /S /GoTo /D (classBlowHole_a3) >> +>> endobj +1083 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 269.784 206.009 281.739] +/Subtype /Link +/A << /S /GoTo /D (classBlowHole_a4) >> +>> endobj +1085 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 230.912 187.19 242.867] +/Subtype /Link +/A << /S /GoTo /D (classBlowHole_a5) >> +>> endobj +1087 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 192.04 210.326 203.995] +/Subtype /Link +/A << /S /GoTo /D (classBlowHole_a6) >> +>> endobj +1089 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 142.208 208.084 154.163] +/Subtype /Link +/A << /S /GoTo /D (classBlowHole_a7) >> +>> endobj +1071 0 obj << +/D [1069 0 R /XYZ 106.869 686.127 null] +>> endobj +1072 0 obj << +/D [1069 0 R /XYZ 106.869 667.729 null] +>> endobj +54 0 obj << +/D [1069 0 R /XYZ 106.869 667.729 null] +>> endobj +1073 0 obj << +/D [1069 0 R /XYZ 106.869 444.71 null] +>> endobj +1074 0 obj << +/D [1069 0 R /XYZ 106.869 444.71 null] +>> endobj +1076 0 obj << +/D [1069 0 R /XYZ 106.869 405.837 null] +>> endobj +1078 0 obj << +/D [1069 0 R /XYZ 106.869 366.965 null] +>> endobj +1080 0 obj << +/D [1069 0 R /XYZ 106.869 328.093 null] +>> endobj +1082 0 obj << +/D [1069 0 R /XYZ 106.869 289.22 null] +>> endobj +1084 0 obj << +/D [1069 0 R /XYZ 106.869 250.348 null] +>> endobj +1086 0 obj << +/D [1069 0 R /XYZ 106.869 211.476 null] +>> endobj +1088 0 obj << +/D [1069 0 R /XYZ 106.869 161.644 null] +>> endobj +1068 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im6 1067 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1095 0 obj << +/Length 1996 +/Filter /FlateDecode +>> +stream +xÚÅX[“Ó6~ϯȣ=`aY’/é,…¶ØBúÀÞD›¸8v°•Ýfúç{.²“Ý„Ùí@Ëd&ºËw.²œÆð“Ó¤ÆÓ4/D&õt¾ž<™M=KÔ´Eª¦³KÚ8[¼~œý:U:R*?ùvö"ŒT®ƒ³PuÙ÷8RÁÓÚ$˜o×¶ ¡ãJW…‘ ÚiL~šM¤g Š…*òi¤D‘¼ÿóäýÇxº˜ÄÓ_'¼v }¸³(¦ë‰ÎŒHdîÇõäíä÷‘”Ô©Èu1’Œx„¹Ž„ùË Yyô,ß/r‡7\…I´ÕäP*h@ºÖÙ× ?Ä&~ùî¶(y.b ¬Ý-EÂ'eð+#ïù1ëÏ~{¼=Aë3äG—À^g?om3ß… þ‡ÌæK˜>âRÆR¤Ê|6Ëõ¦–*·]@c IÉvP @ ‘"HfR˜Ä@G‹Bk†š+;„Ò,(¹iÀ$ØËƒëÊ­xέ,w–Õ^`^v¡Qp§I‚Ï8¿8@•²YxêkXÛÔȦÌÜ!„¢D ©Rh³òkÐÇk†uÊZ‘Œ3¡T’‹Üèïc´ +X»Ûhi&d–ݲY»¹‡É˜0Î‚ÕØ*ǦàÔT¿mIÞní%·Ì'ÌÏñ¯Ü!»wÚñž†<öú(2:÷2ÿ¿Zg&Yði¾d"Cð<´ÐY §×›­óúmo œß:XàùÞ›‚|ê?ñŠ9$»½£>[•è&K»w +Ö‹Àñõ·kÕa7äc\¼Ü²9â>† +j_ !”ë²ÃõhÝÀ`…¨ØõÕ¼¬yך*"P(„,[óÆk +µ+ÞÀ¾ŽxZâZ= …U[û؉‘š˜J†sÚf€ÜмŠ=Ùc¤ Cl¶ª€j‚àà +»ÃÔEÙ£f¶rŒ×ti# ðx—ã}ë–dÏL8ä“èä!•r± º ®ÀPŽméoDÕ]cˆk£ mÑ#Ÿî†{o*hÁÖµ•†I[ *¹q«‘޽} lGw z™­šûS k kyTA®´k_vàj‰ƒT¨ wö{b1:ßö=Ý陹 pÿ-Åõµ#–¬ãCÑÌèpdû³=¨Úƒ|‘,óà-ûÿ‚ÉVZÐ8È*®Õˆ·µOÉ}K2’¤Sän8²¨zW6sK …Š,€ÿkdÞŽ™]+ÃàTg½ü2xÔÙ%Ðð¶í)#,<³{hG'ô1žªž‘]¬°y;ccá_v!Â(•Eð¸÷;°ÁŠº*ÅÚ¼:N½P-yh!½pÄQ|ðP ¯Dè”ûÂÂ~ûu…üzQ§{›Ÿ27'”®*/(taP΂ªq ¦mxÐ\Î>[¤Ì(nÚÔ%C Ø,yîÔó!†X„|TTY¬˜ + :V‚Vm³ðxgzG—Ö¶Y:O\ûØ3Ga0¨P;àõó¶Þ®Šî‘†[ §¢Ѥ7(ßË›Ïñ¡ ½OIt +TKž¾¹- Nc‚? wÊzˆÿnpQeâÑE…BÛŸ²ájP’¯oF@ÒõnÕ9ë˜°Ž‚‡$ò²r˜†týÇ¥¯4BTF˜B߯ô}c¡‘Þaa¦mÏó?r“œ(·¹I(HMr¿;_µUï{N5Osã}Ç-÷,êgh£ºƒ¯%9KçGþ^)¿ÍÅo0yܨŽN_÷m”ù¤³åP§•C?:Hg”«¡^Í ›` +’b¤#A?óF0…3®¦ðYöi¨÷ÂAÏ˃#çh±×Áé""’ƒAq`¸1å$Ž“Sþ2[y©Ì ßãB‡j7\ÃlÒz PT¦˜ +T±º<7Õs¥_[Ú‘©ŽŠ¦C÷ üÔ®}MKþ¼ÿîÕÖuKåáÖé¹(µÏŒ2ø’Ë&ÿÎeŸø{~n™¬ ZööוˆàÍ¡´HÓ¯ý  o*H™cпÎêi*ŠL¾:É4Z™àí® ¡q>ýQQø•P¾àgYƒÿ ›•ã¥Ê—eØ?{€ƒ<¸@B;*ÅwXÂÏ 0µ&¬aµ©•l9<'äñ Ä¥Œ3ÊæÈç¼DòWH·¥3ö!A.)ba hô’‘lsÿº3{±£D˜Xã×ãÔ?í¨öá}ê—ÖDKüF-ã]æoÀ8v’Á‚ÿ.Üzaendstream +endobj +1094 0 obj << +/Type /Page +/Contents 1095 0 R +/Resources 1093 0 R +/MediaBox [0 0 612 792] +/Parent 1012 0 R +/Annots [ 1098 0 R 1100 0 R 1102 0 R 1104 0 R 1106 0 R 1107 0 R ] +>> endobj +1098 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 654.279 240.657 666.234] +/Subtype /Link +/A << /S /GoTo /D (classBlowHole_a8) >> +>> endobj +1100 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 615.425 240.933 627.38] +/Subtype /Link +/A << /S /GoTo /D (classBlowHole_a9) >> +>> endobj +1102 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 576.57 260.571 588.526] +/Subtype /Link +/A << /S /GoTo /D (classBlowHole_a10) >> +>> endobj +1104 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 537.716 271.402 549.671] +/Subtype /Link +/A << /S /GoTo /D (classBlowHole_a11) >> +>> endobj +1106 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 263.958 210.547 272.758] +/Subtype /Link +/A << /S /GoTo /D (classNoise) >> +>> endobj +1107 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 156.29 236.644 165.202] +/Subtype /Link +/A << /S /GoTo /D (BlowHole_8h-source) >> +>> endobj +1096 0 obj << +/D [1094 0 R /XYZ 160.667 686.127 null] +>> endobj +1097 0 obj << +/D [1094 0 R /XYZ 160.667 667.729 null] +>> endobj +1099 0 obj << +/D [1094 0 R /XYZ 160.667 634.852 null] +>> endobj +1101 0 obj << +/D [1094 0 R /XYZ 160.667 595.998 null] +>> endobj +1103 0 obj << +/D [1094 0 R /XYZ 160.667 557.143 null] +>> endobj +1105 0 obj << +/D [1094 0 R /XYZ 160.667 501.359 null] +>> endobj +1093 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F31 829 0 R /F19 460 0 R /F22 474 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1112 0 obj << +/Length 1419 +/Filter /FlateDecode +>> +stream +xÚÅXmoÛ6þî_!`_$´bø*JÅ0 N—¡íŠv‰1`hûA¶e[¨-9’#ØŸßIÉrì8k·$QGòx/Ï=<™yþ˜Ç¨&<н(NˆfÒ›¬ÃÑàì‚ /!I$¼Ñ̬M?û’è ±ô‡e ¸¿ „ð³©Ì_!óÓF5 +…™¡d–UY ¾dÁ×Ñ;OFœ¨H9½\¡pðëhÀœU!%"I¼P$VhÓõàóWêMÔ{7À¹ØÛ˜«V©á,vïËÁÕàNõB®'kÜc’íû‚{Œqåa .2t‘[µòÏ—ºWÛ·Ë ü2ãÔÙEÜž*i”_ÞÃ&ˆÖ81¨æ1¨†‘Q òº©r Ñ_¥ŸÃ°Ùž+{niìbGk ŽjbOçÉÞñL“ˆÛãÊ‹Ér3uV2¶['5¡Z¸ü|¨G-7=,·Ù”,•ˆˆDŒ»U¿„"L‘B:‹”Yõ¶Xˆ0¿‚AÞ¤=€˜LQœÎ«tež•• ûÑ{«^Ý“ pPÈemÈ»w Ø q"¸YÓpíÀbgoWÚ{SмÂN¯XŠxOŒ$Jõñôi3Æå‹–Y³(aHýií"(w!b +à(2œˆX›ý_(Ó¡ÄïÒ!Øb0Z}¡Š~øën8t ÊU§üÁbâPsÉÑRr3ãñ!E\üþ-z%Œl&—mÂb›ðº¹ÀÙʼ\CŒ6PA·`;³þ +æÅ ÖTg(‰¦RB€…9â|ÙQL¤3Šû¥)–ISV/­´I¿åSUã †ã%`¸nìšiVçU €ÂPÅÔ +×Ëôí2ˆƒ¹•Ïv+¯7Ær°ä0›!—„‰ž€¾Ëf¨(…‘ y…ÊÐŒNìñEDòSá']d2”%ÿw7hX™;Ë&Ë,­2¬cZîYyiÉph‰À¥%-\*@5†Û¨G9Ü.°gißò¢±ìQ¤NR7i“=Ž“u††ª,j7í¨£­Û^ ‚ì  +%¤@aÈ–ÏP†3°ªÊ®OµÞGÓUÖØÊÉ»û(+œh9LMaK·YÌ*=ËØ˜9WZvy“O6Ë6©GËê;Jê»røg>Æ ¦MyŠ.CfŽ€þ…ÄZ<}žæ©éîIQL‰’òxŠnÐ?¬Øn|„ÏMK†QñHµÑ@JAÿ²Lßïdî¯Báj¶QæOåtµ6×s³™¶È}i:j-£Ð0jÕ¶ OiieÒi,¼,0Dûuûz½nr`&'þxWj)\‰ ƒ +¶²ºÞ¸I³±ƒ³¶äMeŽ Q¼ÍÛíóüÆ‘ y5$°^¶×gƒ§Q˜¶—éÔ.´”ѸÙfg퉡ù<Àö•‚/‘ƒêÌlª‹â›rý(ÆÏ¢ì CVžM àû(šKˆdo &=Dԙ勱mÉ;9æqÑÒ½™áˆìÚ\V̶m—ôEw…Ý»Ë8N–³¶994ãQÈSY6ÙÇâ$ñs¸þ¤þ¿˜?þÁz¯+Æ®ã4/1h+¢çà¥# z?iFÔ.õÊ\ýö (פ[‚1müÂ!¦Ç4'ºqÜܵŽÐ> ª;¹f„R¸HEB˜Òÿñ'ûc…ûì> %tç ô½½8ŽÐ!)”u[ðÍ7|^£cËhäãÝ­ð?0øû¼±Syawž¿xacTpk'?"ò3ìn*'¹$öyn¿üf_ÓŽ‡áå7Óà®N £Ú'ÎÄIŠ'Ü êÒlË^væ 4!G +±«÷ËÚy/R…?äD,jkV¹u½ÈJ%]q„ÏRsJqÀÛÜý>nOÙendstream +endobj +1111 0 obj << +/Type /Page +/Contents 1112 0 R +/Resources 1110 0 R +/MediaBox [0 0 612 792] +/Parent 1132 0 R +/Annots [ 1117 0 R 1119 0 R 1121 0 R 1123 0 R 1125 0 R 1127 0 R 1129 0 R 1131 0 R ] +>> endobj +1109 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 952] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 1133 0 R >> +/Font << /R9 1134 0 R >> +>> +/Length 1135 0 R +/Filter /FlateDecode +>> +stream +xœRËRÃ0 ¼û+|ÂòC²¯áÀ±4P(š2¥éï#§NœL[˜­µÒ®d¨MþʹlÕNÝ?yýºW;ÝU,[=kä2iD6’nVêDC#ê4ë¦U7³ÏãËómó®=—Ì7•XQsñÂ,m#ç«(A«|B Lò¿þ1ŸÏÍyŽäüµòˆDuZXê-¤ýŸÜçmÒÞ3¦ÎÍãvøj·‡ÁÐU .šÁŽŒôHµ8wM#ñçHe‰)ïgE¢è¦0˪l”JØ™Z>~÷Ã20aä§GªŸ¬ÙlUŽTÖZ9K6»1DÌÉO÷…çaƒ1ÃÆK(TôRoqIþ$§„u¤™2$ƒ¼ÍGVŸ'$IÖØ#dZeuw¥o¿ÍR÷ùG©}N ë´©u½T–ÁŽ”V`ZC„ÎÕ7žÉõendstream +endobj +1133 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +1134 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +1135 0 obj +347 +endobj +1117 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 425.274 161.813 437.229] +/Subtype /Link +/A << /S /GoTo /D (classBowed_a0) >> +>> endobj +1119 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 386.401 169.562 398.356] +/Subtype /Link +/A << /S /GoTo /D (classBowed_a1) >> +>> endobj +1121 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 347.529 175.263 359.484] +/Subtype /Link +/A << /S /GoTo /D (classBowed_a2) >> +>> endobj +1123 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 308.657 211.433 320.612] +/Subtype /Link +/A << /S /GoTo /D (classBowed_a3) >> +>> endobj +1125 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 269.784 200.502 281.739] +/Subtype /Link +/A << /S /GoTo /D (classBowed_a4) >> +>> endobj +1127 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 230.912 207.559 242.867] +/Subtype /Link +/A << /S /GoTo /D (classBowed_a5) >> +>> endobj +1129 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 181.081 205.317 193.036] +/Subtype /Link +/A << /S /GoTo /D (classBowed_a6) >> +>> endobj +1131 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 142.208 186.858 154.163] +/Subtype /Link +/A << /S /GoTo /D (classBowed_a7) >> +>> endobj +1113 0 obj << +/D [1111 0 R /XYZ 106.869 686.127 null] +>> endobj +1114 0 obj << +/D [1111 0 R /XYZ 106.869 667.729 null] +>> endobj +58 0 obj << +/D [1111 0 R /XYZ 106.869 667.729 null] +>> endobj +1115 0 obj << +/D [1111 0 R /XYZ 106.869 444.71 null] +>> endobj +1116 0 obj << +/D [1111 0 R /XYZ 106.869 444.71 null] +>> endobj +1118 0 obj << +/D [1111 0 R /XYZ 106.869 405.837 null] +>> endobj +1120 0 obj << +/D [1111 0 R /XYZ 106.869 366.965 null] +>> endobj +1122 0 obj << +/D [1111 0 R /XYZ 106.869 328.093 null] +>> endobj +1124 0 obj << +/D [1111 0 R /XYZ 106.869 289.22 null] +>> endobj +1126 0 obj << +/D [1111 0 R /XYZ 106.869 250.348 null] +>> endobj +1128 0 obj << +/D [1111 0 R /XYZ 106.869 200.517 null] +>> endobj +1130 0 obj << +/D [1111 0 R /XYZ 106.869 161.644 null] +>> endobj +1110 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im7 1109 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1138 0 obj << +/Length 1483 +/Filter /FlateDecode +>> +stream +xÚ½W[oÛ6~÷¯Ð£„V¬x“Ä}XÝ¥X»®Ùâm(º>(²k±$W–ûó;Jvë)º¢0 ’‡ä¹}çBË Ÿ ”Öº ÍȤ Êföl1{r¦tà„Ku°¸¢ƒ‹å»P¥ÑûÅË@›DH©=ñbñ*ŠunÂy$Ãu±ÝâJ‡Ï;UX`2CÅ2ìZä1ûi1“^8ÚåA¬…Ë-Êÿ0{÷> –³$x9ã½;˜ƒLç‚ff2+”Ìýz=»˜ý6±’&¹qA¬2Ò}4ì:1æïDf¨Ê“³ü°É>p©<ìê%Ø¡uØ‚uÝP½k)Øä5Pß~jPž ­ L´EÉî^KüÎdA~jÀÙ/oPÃ#ðý‚U*šÍº•†Ý¾ú´”l¦Í€GŠ<â42Ë‚XáŒa ‡nlÒ,,xhÁ^œåá]=¬˜#1Fêu}K"Z«-Â+¦ ‡¶›Èj¸a–¼Õ]ñÈz½ÄO±Guë{ Z¬Œ:…¢D~~¯O€‰Sàb0Ôr‘[óýñœ2RYxÃQ…úB"(?hÞÁíf³¼{»ÖôÝLßz$›êAgʯɆÒÖCY±ž¯ +Lëê5ì»p`Íw Þ¸ŒbøVýcæsŠ‘4àÚdÄÈ~Œn#›†Åz÷@IˆS'íGÓôÉU×7cÂx´(À»\ùЭ¹rUD”@Þ{ˆÞ!aÊ`1Çis¹÷pºƒ*2MDš8M¾väk¾>Õ^k‘eÎß(Úå=L3‘gù„½ÍÐ%Õ)'¥DË©¤Ú$`PÂÚÆl¤T@ʺ }D*Hp!@L! U=7AlŒ°2%n9eø‘à©lø¼ +Ì u…îÈ€žÛbRõ8ÃÍ %·™O0ÇÀO ×Ú„ z r Ãà3³ò!¾E†°êk +nŽäÝn‡ã¡ãDði”5lt{K¦¢`pgª8H«[dbÂÒwËĆu³!»ðVãYúS“šª™³š@]&ý`Ùt”`Ëj–¸ñúÚ£ÞÔ&VLDܤ˒"FxS&aq…G|HÃ9ÈÖògo-|ö}õx2ω~-qs…Ÿ]SðbJ÷¿"xtÞÒÛI·ÛUPDO]`ò=òITÈ£Fóp‰m¤¾®‡bÍkrQª[dÄ5bVcoÂäV…e¤cbqC _{Aƒ—HJ¢È ëÏ×—ˆÛž ¥XÖ†ÿT%Çm›br«w&Fð©#WÕz9F(¤ñžç•Z¨/´©Â?ÚšMì·5ã‚>öþ~‹u­`«ÐÓ…§cÊÓ¤Cé€Ï½‘:‹~ÊæaêË„ýI1ÓhÂԓ°‘Wm¹ÿÈH)¿•Ÿ +~QÔÇ‚ o$‡²Ë <þÙu£•Sœa0@Ùû((.9xéÜ9G4ï)¿ f4çº/žÿæÅ|XŽ]9G5„OzwaL5¡kǰòI˳˜9«$Q÷Wp„KV†ÿã`¦cÌè‹g×óœÍTõ5W}îZ´G=§ð{×Õ¤À4N—Ž}×ø—$å-ÏIÔzÍ1|ܬðõ0µ•Ï¥¦úºÔ¤N)V'Ol­ R g¹ûŸçà¢\:•Åé¿© Rá2sü’#PŒ¶áÅþoZ|w‘›©Qh|ÝÉ$Å‚{µéWõÀ[µÿƒóù#\<âÅ%2Úóü<Ò)¾¥OÁ4>$a¯»áeÑzÌpñ‚bŽo`DÊ$ …׳,ý-òíèŽï§Ê%ðü ~Éȶҿ˜ìÁìX ›üïœúç gý¹#÷@Þ⥿{ÀË(Ëþ Ñ5"ø³G¾Üendstream +endobj +1137 0 obj << +/Type /Page +/Contents 1138 0 R +/Resources 1136 0 R +/MediaBox [0 0 612 792] +/Parent 1132 0 R +/Annots [ 1141 0 R 1143 0 R 1145 0 R 1147 0 R ] +>> endobj +1141 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 654.279 240.933 666.234] +/Subtype /Link +/A << /S /GoTo /D (classBowed_a8) >> +>> endobj +1143 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 615.425 260.571 627.38] +/Subtype /Link +/A << /S /GoTo /D (classBowed_a9) >> +>> endobj +1145 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 576.57 271.402 588.526] +/Subtype /Link +/A << /S /GoTo /D (classBowed_a10) >> +>> endobj +1147 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 272.545 223.914 281.456] +/Subtype /Link +/A << /S /GoTo /D (Bowed_8h-source) >> +>> endobj +1139 0 obj << +/D [1137 0 R /XYZ 160.667 686.127 null] +>> endobj +1140 0 obj << +/D [1137 0 R /XYZ 160.667 667.729 null] +>> endobj +1142 0 obj << +/D [1137 0 R /XYZ 160.667 634.852 null] +>> endobj +1144 0 obj << +/D [1137 0 R /XYZ 160.667 595.998 null] +>> endobj +1146 0 obj << +/D [1137 0 R /XYZ 160.667 540.214 null] +>> endobj +1136 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F31 829 0 R /F19 460 0 R /F22 474 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1152 0 obj << +/Length 1349 +/Filter /FlateDecode +>> +stream +xÚÅXmOÜ8þ¾¿"Ò}IÔÆø5¶«ÓI§¾‰–*J?„ÝKBw³ öþüÍØÎî†,Wö@W!ˆãØãy?3Ã" +?,bTž™(3–h&£Éõh?íqYb3åçnd>ýKb’Tï7‰àñ]Ââ<±Y\œÍ|ÿÁ¬X,°Éã“$eqy^ÎËzRB3BÆ\'_ò7£?ò ˧”k£Tk.þuôù ¦#½á7ÝA›£®GR+™ ï³ÑxôqeŠF)×Îå1I„Ìú ÀmÀÁWñ>´ ë°ˆ€E#èòp´ŠOŠƒ„pÄÞ‘Ù$—άt+Œó·0Iˆø,n°Ï ؇V9õý‹v^Õ`ý_eÜgð2+ýÛÄsÈbâ—á¶·ƒu¸rëüRÕ“ÙrÜal=NjBµ€ÚÑDK>ï7w9€&—?0óÛuÊ(#ƪà”ÿº¾0%˜C£j D:qÔy€Sì..æÅµgã¼™ûƾg*OŒÛ†W0îÕ}½0ðI)\RHbA°×ÑWе™tc6šNNky¸Ž½××&:l@7ÑZ:éʬ«ÂöĈ…/ +ú°¸4ÅŠRÄÍ|=+·Wf"ìiU_ø…mÕ„ù÷sqXÀ@œpjúˆRqe@kP‡A„@un½âºpîÆ $–õ#µWÔ§Š®±òWDÙë+"þaážxX¶Eå.iS_ô–‹‰»bïM—a¶Ý %\¯Å³ß ûiB ˜/$çO¼Gûy hu’P°[¸clDVŽbBÅãou‡ó°Z`7F£YŒw#…ËÛªõŸ§›yðâ…oœ¡oþã‡Ddq‰á5='Ä?И¼ò¯p·ôá†/:iᬕFuL‚‹“W¸EÓ›V¾tZâÖWsñÛ? 2QkÄp°+ªð¿˺t®Â¸ fà”’ÎRˆÃ€^\KýÍ)>)ï6ïk§Ïendstream +endobj +1151 0 obj << +/Type /Page +/Contents 1152 0 R +/Resources 1150 0 R +/MediaBox [0 0 612 792] +/Parent 1132 0 R +/Annots [ 1157 0 R 1159 0 R 1160 0 R 1161 0 R 1163 0 R 1164 0 R 1166 0 R ] +>> endobj +1149 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 588] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 1168 0 R >> +/Font << /R9 1169 0 R >> +>> +/Length 1170 0 R +/Filter /FlateDecode +>> +stream +xœ•KN1 †÷>…—ÀÂ$ŽóÚVâer¨T +4BH½>ÎL†ÎH³AYø‘ßþ?ÙEÓ^‡ +x||û† Úñk‡Š»¢ŸY™b`,G˜Æ,Чè\ d8z,îv_×òòz¾/ðTp¯ÚwÈ–$Č׶¾Ïvã*xcZrž›8“ Z®ó&8xa +AM 5Ó +ƒÚü‹ÛÆ@1eÝr¹‡ŸÏ?æ J|¢È3ë\vb/)‘I#å2¿ÉNàØ1YÛL©éÄ=žP¶.Ã~qŠ^r=µè¾a s¥éå ¡¬Zª.£ãÌ”¼jØÍ–õŽãìáfss8endstream +endobj +1168 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +1169 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +1170 0 obj +252 +endobj +1157 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 451.288 171.776 463.243] +/Subtype /Link +/A << /S /GoTo /D (classBowTabl_a0) >> +>> endobj +1159 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 411.486 179.525 423.441] +/Subtype /Link +/A << /S /GoTo /D (classBowTabl_a1) >> +>> endobj +1160 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 371.683 192.781 383.638] +/Subtype /Link +/A << /S /GoTo /D (classBowTabl_a2) >> +>> endobj +1161 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 331.881 190.511 343.836] +/Subtype /Link +/A << /S /GoTo /D (classBowTabl_a3) >> +>> endobj +1163 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 292.078 223.432 304.033] +/Subtype /Link +/A << /S /GoTo /D (classBowTabl_a4) >> +>> endobj +1164 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 252.276 206.773 264.231] +/Subtype /Link +/A << /S /GoTo /D (classBowTabl_a5) >> +>> endobj +1166 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [193.71 212.473 211.754 224.428] +/Subtype /Link +/A << /S /GoTo /D (classBowTabl_a6) >> +>> endobj +1153 0 obj << +/D [1151 0 R /XYZ 106.869 686.127 null] +>> endobj +1154 0 obj << +/D [1151 0 R /XYZ 106.869 667.729 null] +>> endobj +62 0 obj << +/D [1151 0 R /XYZ 106.869 667.729 null] +>> endobj +1155 0 obj << +/D [1151 0 R /XYZ 106.869 471.19 null] +>> endobj +1156 0 obj << +/D [1151 0 R /XYZ 106.869 471.19 null] +>> endobj +1158 0 obj << +/D [1151 0 R /XYZ 106.869 431.387 null] +>> endobj +1162 0 obj << +/D [1151 0 R /XYZ 106.869 311.979 null] +>> endobj +1165 0 obj << +/D [1151 0 R /XYZ 106.869 232.374 null] +>> endobj +1167 0 obj << +/D [1151 0 R /XYZ 106.869 163.663 null] +>> endobj +1150 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F19 460 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im8 1149 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1176 0 obj << +/Length 1462 +/Filter /FlateDecode +>> +stream +xÚÕWmoÛ6þî_¡Zqâ›$öÛ’®ÅÚÍcÀÐöƒ,+±PÙêl¹F¶?¿{!e;ö2  ¬#y<Ïs<Ê(ƒŸŒ”Öº(/(¤‰êåäb:ùîÒ‘.×Ñôާó±*“ÏÓw‘6™RûÎÛéû$Õ¥‰/wÕfƒ-¿îá«âz»lV C5´I*ã~…6&?L'Ò;fB»2Jµp¥Åõ›|üœEóI½›ðØdXÓ¹h91…J–¾ÝMn'?¦¤–Âfy”ª‚|›)O÷2]´èiQÄ58žùf»üÚÁNìBßU~¨âiƒî·Á®2ž%°dÜ£ò.©™cΪÃ4ÛÕ=Ï^%„´kWa•jÍÊw[èYÕCÛãÐKŒcW~íyC¶êuËkÁ +xY”J)œµ´©:ð´ŽoÁÆ’<@Zpç§ÌfÒ•9|¥ "W§®QnÖè¼ï¹As‚åK8_ï¿p³B—ç,¿­æ\'±w©¦£éoø×QxÉ:p¨–¥?&VY¦ÈUÀ¤ŠÂfñ a [ãF€ÿ“ÊÆWÍq7#6b¿IœŽ·c<‘ÃÍý¯ š g±plŒhfs"UFdÀ^ÖJH\Þf°;X¶'ÈÏ™=víÀÞ4qy\Í:|õбQ>|ʤÞ4ëãYáØŒýú˜4ÒI¡¥Ò²äO-Œ.Î’Æ<Éü7?Ðÿïgam÷šFв4^½ú%)]\uÛæ4pph.W^qÈ*xgÂbJ —œf(,‹aÑx"èÅGqd-á·9:ÐuìS´d2,¡xlÉd:FlX¬XgÖV–v‹¶F/¸Yû§p¾ï¼Ò–!?,—ä"pýའšì.®u‡ã-%@Vˆú§‘&’ ¹³=“v8RqÚ†:0åÌ¡I?’èqŒã…áÀ®W@Rñ¼]‡&&pC»ñ–+þøÔö;©¯‡A®ôë½ Á?Š=©`Ï88刜nsÞÜUh¯ó¨Kx@Pn¸"Îr/ŒÜ>â°z‡o©§ÿÊigÏä« +§VFE©Èÿg –O38/Àç(G>É`:v¼w1rxïœÒø˜ÂfOa-ÙÃKKo:2S„vÝ3!ÈKì ÐÃé;º(ñ +CàkÉœ$˽Ù#¡ÒW‚ Ci! H xµÔXxK­_o$:Z M€¨ =/6–`ç è‘5þmþœµ‡óJU +i¸F ¨ÊôÂCRF1›¸Z¬qäËžEp=žîF昤هçl£üw¹Ô®'Ãé‰)+\FO1IgPÊ–òˆI7ã ²]#µ +œbŒnW&¡|9—#Mì¸Ú¯‡tæÔçÉOJ “¯™•)Ä]Wœ!ç©OT{yŸ¨ +öá!Ý‘%X^¯¹è=¨ÂAcŽóñªs; þʃ±ª;È)¾ø†¿û”Ú}zÄ2L9—´5ÌTSáúeCpÄOÙ.ƒŽ^:a{¸s¼ê8íùRçÖc"ßZóÛ¡ò*÷ͪYCž˜ïM­û%¹ËG·ï:~|ð3ƒ*}iü.(>CxÞíÚ +m€øA댠,N›>ë ÿÀIñúƒèT3\A,NÒŠ.¤È ,àJäs_u.“|L…#5M” W˜ãgÖOÚÆ·PÄ[ä?×°ƒ`M™åTé[ü÷ß·µ|‚$_¾ÀÆ nÌÐÐË׉Îñ5á‹7è¹~ +ÍéA„M(Á8¿cã-?óh>‰dVÄÂûYWhþÚíWþ&AÐ)E0f3ˆ ¿qjŸ@ì~Û©‚÷®Á't.ópˆÖë„GeÉ–vœB ʸ–ýžWtK„3üqOÀendstream +endobj +1175 0 obj << +/Type /Page +/Contents 1176 0 R +/Resources 1174 0 R +/MediaBox [0 0 612 792] +/Parent 1132 0 R +/Annots [ 1182 0 R ] +>> endobj +1182 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 302.311 233.876 311.222] +/Subtype /Link +/A << /S /GoTo /D (BowTabl_8h-source) >> +>> endobj +1177 0 obj << +/D [1175 0 R /XYZ 160.667 686.127 null] +>> endobj +1178 0 obj << +/D [1175 0 R /XYZ 160.667 612.308 null] +>> endobj +1171 0 obj << +/D [1175 0 R /XYZ 160.667 588.195 null] +>> endobj +1179 0 obj << +/D [1175 0 R /XYZ 160.667 588.195 null] +>> endobj +1172 0 obj << +/D [1175 0 R /XYZ 254.842 504.977 null] +>> endobj +1180 0 obj << +/D [1175 0 R /XYZ 160.667 491.036 null] +>> endobj +1173 0 obj << +/D [1175 0 R /XYZ 188.646 419.774 null] +>> endobj +1181 0 obj << +/D [1175 0 R /XYZ 160.667 405.833 null] +>> endobj +1174 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F22 474 0 R /F35 1011 0 R /F32 881 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1187 0 obj << +/Length 1376 +/Filter /FlateDecode +>> +stream +xÚÍXYoÛ8~÷¯°/2Z1<%±X,Ф›E ÝÄ/‹¶Š-'BÉ‘äAÿüÎp(ÙŽ¤Ò"r8ÎñÍphpøà “qÄ©e‰ÐÁôb´?íJXfcLæŽs2ûjfÇ‘Ju¸ßŒE˜µ-ÎTx“r!FžxŒ„|ž7y5ÍÇŸ'oKfbãeI‹ÄÑß“‘ðšDœ)kƒH1›Ôãrôñ3f#¼áZ\Ø3\#&Eêçåèdôï Š‘Lœöƒ92š)oÚú‚IBHîøٰ"1áA9 +³c´ÇÙåmÚ;L×½„‡j«ì“É[ؤTØ‹2§ñiC²”‹ +OéšåE^evÄ1Eñt(ŽZFÇH»qŽHX,éœ?ŠjZ.g^!V|:a!­Ê)×øÏE·íqµq“KðÍòâtd§A +b]ÊÏ ÏÁ±ÊqP©'#ú”˜vuóœ¨]ö¥¨Îp )âq…ã²¾ÎÛŽxfy[4c£` D̈¸(³Ô«€=Έ>_q^.æ 3~Øv#©™P1|rÅÈp#Å·â i±; »3í}—[À8öÛpv…¬‹™/8ežùì»[IÐN$zCËcr# Ïvެò!Ñèf'épGÀž’fEÕQ‰¨2Oi»¬ËÇÈ6G¨*W­Ë~4Ô¦›•Ž€¶•}*óÀ’øÒoŽT~y_’a5N6Ñt’w”1…K-Ž'-0†™K(Å}óÆCÊ2FΧ±wÅtYöAÝ™Nß‘JßÃwÅâ E +|ËÁ*ei¢~W¾¥ Æ‚cwǪ;Ïɽe±hÂÑ?˜-´ßw½}×®œ­Š̶/(iX*½ïå¯÷}–k8–³ÌÏÉ¢XÂÄôïԴɺ^Ã;Ð!,Ü$jó¾|¹Xô6+Zè'Pdp; ’šhm»ô‹Ž³«i•ª€KöÊ×l$_ýö³âÊ×E7uuaQö7i‡¦˜õ÷ꌩŠt9Íêy\äzìY9Bxœ6¨qîv´Uò»zñ#ÆÇ3›BËRˆÉGš2!ã l¼r ˜®á¡õ%ä´w¶t1Ã8SíÇöWZ¼À—žËm¹Â}N„3G¸BÈà´!ÀynŒ5u*Û*<ÊM€a¬»ü}µvlÇŽ‘âiÝØ‚Ü_‘‹Á5üIÔλ*S×­–õÄÝë½BUw¾S§ÒâzùþV[«1÷´ä¸yè%}BýT›±†ççМ)Ë„I~òÇú¿‡7¡†VÝB¸æÇ ¤• Onª1|À@÷j/Z$£oC|%ü…èmÑÑRQÑ΃gÏhpŠnhñÃXÅaŽÍjã)ÇŒ¾( D~¡i6T`˜ü“õOîAŒàIȼŠÓ O¸Bѵۖ?w¥YZˆ³¥ —êÔÿV`VGP±­âÐúÆ}ÎÏ·æ¨ÚÉB"¸Ï2_%Ç/—}ìþÅOIKendstream +endobj +1186 0 obj << +/Type /Page +/Contents 1187 0 R +/Resources 1185 0 R +/MediaBox [0 0 612 792] +/Parent 1132 0 R +/Annots [ 1192 0 R 1194 0 R 1196 0 R 1198 0 R 1200 0 R 1202 0 R 1204 0 R 1206 0 R ] +>> endobj +1184 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 952] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 1207 0 R >> +/Font << /R9 1208 0 R >> +>> +/Length 1209 0 R +/Filter /FlateDecode +>> +stream +xœRËNÃ0¼û+|‹×]ûZ‰ÇÒüªT +4•ÚTâ÷Y§Nœ¨-”ƒ³ã}ÌÌÚj“¿r®[uP/^¿uê ±¿Žu«\&èÁFÒÍFËP£u`lÒD@D¬›VÝ-ޝ]wß|¨§F/%ó]¥ÖEÔ_¹y©,c#ç«(A«|B Lò¿ÿ1ŸÏݘy‰äü­rL …JæÂÒo%ãÿ¤&8/j¼g L½šç}w:¶ûÓ(è¦M‚`'B¤Ê œ§¦ ùK¤Vm•÷Ž pfD Œþ! +Ù‹/ÑF鄽¨Õéów=,€ =Rõ¤ @6[Ù_"µJ–dÉfµB&äeõ»¯<Œ7^B)e@/ýV×èÏrJX-Í%3H2È[ÏdõÙ!I²î\=Aæ]67æÛ,!õ‘¤:ä”°º5R­‹¨² 8aZy!ºTß0dÉüendstream +endobj +1207 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +1208 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +1209 0 obj +348 +endobj +1192 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 425.274 156.97 437.229] +/Subtype /Link +/A << /S /GoTo /D (classBrass_a0) >> +>> endobj +1194 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 386.401 164.719 398.356] +/Subtype /Link +/A << /S /GoTo /D (classBrass_a1) >> +>> endobj +1196 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 347.529 175.263 359.484] +/Subtype /Link +/A << /S /GoTo /D (classBrass_a2) >> +>> endobj +1198 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 308.657 211.433 320.612] +/Subtype /Link +/A << /S /GoTo /D (classBrass_a3) >> +>> endobj +1200 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 269.784 181.517 281.739] +/Subtype /Link +/A << /S /GoTo /D (classBrass_a4) >> +>> endobj +1202 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 230.912 210.326 242.867] +/Subtype /Link +/A << /S /GoTo /D (classBrass_a5) >> +>> endobj +1204 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 181.081 208.084 193.036] +/Subtype /Link +/A << /S /GoTo /D (classBrass_a6) >> +>> endobj +1206 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 142.208 186.858 154.163] +/Subtype /Link +/A << /S /GoTo /D (classBrass_a7) >> +>> endobj +1188 0 obj << +/D [1186 0 R /XYZ 106.869 686.127 null] +>> endobj +1189 0 obj << +/D [1186 0 R /XYZ 106.869 667.729 null] +>> endobj +66 0 obj << +/D [1186 0 R /XYZ 106.869 667.729 null] +>> endobj +1190 0 obj << +/D [1186 0 R /XYZ 106.869 444.71 null] +>> endobj +1191 0 obj << +/D [1186 0 R /XYZ 106.869 444.71 null] +>> endobj +1193 0 obj << +/D [1186 0 R /XYZ 106.869 405.837 null] +>> endobj +1195 0 obj << +/D [1186 0 R /XYZ 106.869 366.965 null] +>> endobj +1197 0 obj << +/D [1186 0 R /XYZ 106.869 328.093 null] +>> endobj +1199 0 obj << +/D [1186 0 R /XYZ 106.869 289.22 null] +>> endobj +1201 0 obj << +/D [1186 0 R /XYZ 106.869 250.348 null] +>> endobj +1203 0 obj << +/D [1186 0 R /XYZ 106.869 200.517 null] +>> endobj +1205 0 obj << +/D [1186 0 R /XYZ 106.869 161.644 null] +>> endobj +1185 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im9 1184 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1212 0 obj << +/Length 1463 +/Filter /FlateDecode +>> +stream +xÚ½WKoÛF¾ëWðH"å†û"¹rhœ:Eâ4n­Ò(Š–XS¤"Q6„þùÎcI)‘S»m‡;»óüff)ƒ~2PNXë‚4w"“&(W“çÓÉÓs¥'\ªƒé5mœÎ߇:‰>L_Ú$BJí¯¦¯£Xç&<‹dØÛ-¾éðEO–»UÕF@ôE_G± »eL~œN¤7 N„vykár‹ú?NÞH‚ù$ ^M˜w4èt.XMLf…’¹o&W“_FQÒ¤"7.ˆUF¶΀_'Îü‘È Myzž˜Lð†ÛHåaWÏÁ­Ã¼ëúê-Ó¸b@€MÞÀê»ÏÊs¡•òA_¸ìîõÄsFòSÎ/Þ¢…?Dû)›T¬ÖM &õ»9üWo°R²›,)ʈÓLÈ, bi„3†Ùwk“faÁüE*ïê~Ékð$Á¸º¨oIEëO­€úAyÅ+¡í:²NXÅsfu×üd;a½Ä¿bæ +¶÷8i±2BꞀù¸ü½9ILœ‚ƒPËEnÍ·ÏOÉ)#•…7Œ*ŒÐ—2$@ùq‚Î:8½ZïzÞ®õ‰Àõ] ^ßúL`nªƒ)ÿK5”PÆðÞo°*š³e屨…Qß…=/½[á‰YõùŽåœæHm2äÈ~ûÝF6 ‹f÷@IÀ©“ö“]ÒŒÉu·Y ã³EïZÔC×pæÊeQùèaöSÖs\6³½O§;˜"ÓD¤Ù§1ÖŽbí Ö§Ök-²ÌùE;¿Gh&ò,so3 Iu*  ”h9¶T›$JØÚ˜” +–rÁ@—¡G¤R„BŠ ’ÐÕsÄÆ+S’fP’Ã? ñ‘ʆ/ª¾À +j* G† ¹-Õ)d®©ÈxÌ|–s~³î0¶‚ÛšfÅôlÃó `P#¢·(´bCc ïñŒmÙ’O¨â–*FÃtY£,—†¥‹@¢²Y+ß=±P<»àÇhÐ3T80 q¶;–Á;îÐÌÿ¨d‰¿@4×s/qÕQŽ# ‚z4RúzZì8¸³»ÝóóÉž>‡äKù§ŽÌª.R¾'å›±ŸÁ±GÁ1‰ +ù©Q5¾¢Uõ¢î‹†ßÿÙܱ¢k +Ó¤jÈNjŠB¡]xE½×¸ÛV¬rM‡Øîmnö¼…–P ÔµáŸUÉH fßñsµÛ È (Û{"µ¬ß6g˜§=ÓW=5MèÄTáomÍ.n¶uÏ!„{”î;ìP{…#¸ðëX¼Dt¨} gïƒâÙЮ©ïÀî3’Ñûgtu…siF!1ߟΠi…6ªÈ +ëìãÆÆE½fStÀÇÊ#¸îZöü[¡îULÅz¹}䤺jF°ƒÞ‹Qç‚î0°ôŒæuêqê~¯¹B(öÝÖX¡U[î?Ñ+å×ñósÅ/‹ú8ž è+éAvÍÐm0Sƒ•Ø:±Ÿ cƦ}— klX~åWÁ‚†œ…ÅTÍŽŽ\¢Â×]£°ÆÆÐµC;ó•÷ËTìá•$êþ>í¡2gcʱ×Ã' CT‡×8S6LÓ¸ös{;!âÝaž·¨F£ M9?HÜt+1¤âešT5M‡&ÜQ¿_ ÷*ihú¡”/Õ§úwõùœG LååÉmY+@ ŒäLÃLvÿóË ®Ê¥c_?3M +—™ãK%Äh^íáÓÑâŠûöo5™¤Øñ×Ñ{]÷̪ý÷ÒgOðå ¿ÌPОéËH§x-‚øû„£ñpÌ;z-ZŸ/|yIxãˆF™d¡ðv–Š¿E¹¡ˆ@S.kˆ5Ä%#ßJù±·c%lbð38õ7ÈšõûŽÂ5kH–v|…(£.û  5dðo¡:´•endstream +endobj +1211 0 obj << +/Type /Page +/Contents 1212 0 R +/Resources 1210 0 R +/MediaBox [0 0 612 792] +/Parent 1132 0 R +/Annots [ 1215 0 R 1217 0 R 1219 0 R 1221 0 R ] +>> endobj +1215 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 654.279 240.933 666.234] +/Subtype /Link +/A << /S /GoTo /D (classBrass_a8) >> +>> endobj +1217 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 615.425 260.571 627.38] +/Subtype /Link +/A << /S /GoTo /D (classBrass_a9) >> +>> endobj +1219 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 576.57 271.402 588.526] +/Subtype /Link +/A << /S /GoTo /D (classBrass_a10) >> +>> endobj +1221 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 272.545 219.071 281.456] +/Subtype /Link +/A << /S /GoTo /D (Brass_8h-source) >> +>> endobj +1213 0 obj << +/D [1211 0 R /XYZ 160.667 686.127 null] +>> endobj +1214 0 obj << +/D [1211 0 R /XYZ 160.667 667.729 null] +>> endobj +1216 0 obj << +/D [1211 0 R /XYZ 160.667 634.852 null] +>> endobj +1218 0 obj << +/D [1211 0 R /XYZ 160.667 595.998 null] +>> endobj +1220 0 obj << +/D [1211 0 R /XYZ 160.667 540.214 null] +>> endobj +1210 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F31 829 0 R /F19 460 0 R /F22 474 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1226 0 obj << +/Length 1337 +/Filter /FlateDecode +>> +stream +xÚÅXÛnÛ8}÷WØ ­^%±Ø.°ë6‹^‚v¿mY¶…ÊRbIÙûó;CR²\;m³¹, XI gÎ93¤Ä< +?æ1%^”h3éeëɳÉÑ1ž&:ÞlafÎæ}I B‘H0Uo:¸4Ø#üi™6®yš/‚ùùFó*Ë¡—Óˆû‚Ÿg¯'/gæ)Z{¡ :Q¸ôåäãgêÍ'Ô{=Á±ÄûÚ”0˜µžÈXÎw_NÎ& ¦¨òØ8~ûuû{é=³Ž›T0Œ¾0D›ÜÀY×à3³1 +ðl™, ¥$\#Ú’è˜Û`Aä.¢ô¡¸_WM»é²¶Þ<µ½mú¥¨–ØNüÖÉ +Ûe]-ÍÂh¡µ}ó¼)LÒ‚¡ÿæÖƼWc™^ÛžÒ&î²Å+Z%ûô…Ššˆà +ºzË_¨(…– {LBÄŒÝLåah""¹rÀˆÀ@X“Ûxù=•]!Qu1ïkMžºô»ÙIðŽÅrÇËÓ@ à ï«xœVy0<óظÃ3¥½+ªÖÖˆ*u=M›¶ùÃÙäí ¤*t¡¬f/P:«mä3MB}S Î" õø©6¨×º{CziD&ÙI¯³ÜåÅkªÍУÑ~Š¶ŠºêvÑ®÷ã›> Ë®o ûÃõ– è:Ùc“ ?8L ™öèd,°¾XçKØûoªw vÝ|ùy>} °LèÖ—x +1qeí ѯ£´Øc×LbíhàOúøzìpVUìì\@îä¶O#ÜCÙôÕ ¼r(J›o«ô]l ÃX¶­y¶è¹]¦—ù•Ýd{_Tý²n×ÂUºv0Ð¢È µ÷ÏÝc¦ƒK÷~n]•†ÿ§±9R8šX²™1ªyn/ƒ·Ân©yÓŒ7ú·_åÞ—¢ˆ$ Ï(RƒXɭE›hû® †3õ°¹™Ñ¬®ì‹ãû:ŠD¼SN·Û*Ç€h%ùèLyܸ4¯ –o¿êÇK›Òˆ¼Å랊ä]€kðZæ@Ø’ÿó<ˆÿÆC™/õ˜Ž´ìòû¬©?àÿŸ<œËŽfݽyý[®n‘;øIE¤Fór·¯ö{‚{§Þò$¿5lGHÎ0)”v]pðŒ<‹»]F#ßûþƒÿoŠÖaÍÇ'§OžØÆ9¸¶ƒïÙO×sJìuŠÆÀä{›šú<·7”ð©Á £±Oœ‹YŠ+\¡éÚ<–Û=‚kJ”‚÷v$6aeî €ÚF UTá·–hû‚ªÜ¼2 Þ2-„Ðì9ZãZêŽßK|Ê{êþŽ61Oendstream +endobj +1225 0 obj << +/Type /Page +/Contents 1226 0 R +/Resources 1224 0 R +/MediaBox [0 0 612 792] +/Parent 1248 0 R +/Annots [ 1231 0 R 1233 0 R 1235 0 R 1237 0 R 1239 0 R 1241 0 R 1243 0 R 1245 0 R 1247 0 R ] +>> endobj +1223 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 655] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 1249 0 R >> +/Font << /R9 1250 0 R >> +>> +/Length 1251 0 R +/Filter /FlateDecode +>> +stream +xœ•MNBA„÷}Š^ª‹vúwf¶€Ì ˆø/Ðp}Gà½@ÂÆô¢ÓõUW%bLsÞ‹¶ðøjø¾‡-òk1àSë°"+[Á¶„Óc$rφ9È“dlÜ=lv?ûûö/ gÝú œ*IÅx%–Èý×JaÊŽÂÅ)WܽÁüÝB.ŽÎJ|잯¦â±Ë43y¹ÝèFa=÷â)Ml8*¹PT\wç•pæcôÄG¡ó¥ª¨UL»ETƒR¾T®3–0ƒ_þ.Shendstream +endobj +1249 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +1250 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +1251 0 obj +206 +endobj +1231 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 453.522 164.249 465.477] +/Subtype /Link +/A << /S /GoTo /D (classChorus_a0) >> +>> endobj +1233 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 414.61 171.997 426.565] +/Subtype /Link +/A << /S /GoTo /D (classChorus_a1) >> +>> endobj +1235 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 375.698 175.263 387.653] +/Subtype /Link +/A << /S /GoTo /D (classChorus_a2) >> +>> endobj +1237 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 336.786 213.896 348.742] +/Subtype /Link +/A << /S /GoTo /D (classChorus_a3) >> +>> endobj +1239 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 297.875 231.358 309.83] +/Subtype /Link +/A << /S /GoTo /D (classChorus_a4) >> +>> endobj +1241 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 258.963 209.468 270.918] +/Subtype /Link +/A << /S /GoTo /D (classChorus_a5) >> +>> endobj +1243 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 209.092 223.432 221.048] +/Subtype /Link +/A << /S /GoTo /D (classChorus_a6) >> +>> endobj +1245 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 170.181 241.005 182.136] +/Subtype /Link +/A << /S /GoTo /D (classChorus_a7) >> +>> endobj +1247 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 131.269 247.647 143.224] +/Subtype /Link +/A << /S /GoTo /D (classChorus_a8) >> +>> endobj +1227 0 obj << +/D [1225 0 R /XYZ 106.869 686.127 null] +>> endobj +1228 0 obj << +/D [1225 0 R /XYZ 106.869 667.729 null] +>> endobj +70 0 obj << +/D [1225 0 R /XYZ 106.869 667.729 null] +>> endobj +1229 0 obj << +/D [1225 0 R /XYZ 106.869 472.977 null] +>> endobj +1230 0 obj << +/D [1225 0 R /XYZ 106.869 472.977 null] +>> endobj +1232 0 obj << +/D [1225 0 R /XYZ 106.869 434.066 null] +>> endobj +1234 0 obj << +/D [1225 0 R /XYZ 106.869 395.154 null] +>> endobj +1236 0 obj << +/D [1225 0 R /XYZ 106.869 356.242 null] +>> endobj +1238 0 obj << +/D [1225 0 R /XYZ 106.869 317.331 null] +>> endobj +1240 0 obj << +/D [1225 0 R /XYZ 106.869 278.419 null] +>> endobj +1242 0 obj << +/D [1225 0 R /XYZ 106.869 228.548 null] +>> endobj +1244 0 obj << +/D [1225 0 R /XYZ 106.869 189.637 null] +>> endobj +1246 0 obj << +/D [1225 0 R /XYZ 106.869 150.725 null] +>> endobj +1224 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im10 1223 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1254 0 obj << +/Length 1061 +/Filter /FlateDecode +>> +stream +xÚÅVÝoÛ6×_¡G ­X~JäÞ¶d)Ðlh6ûeèú ÈJ,Ķ2InîŸß}Ðvu]± ÈGòxüÝÝïŽT©„ŸJuÎ…´ôATʦÍ6ùa™¼ºÐ& "”&]Þârõ.3:¿|“+…R&N.–—ya¼ÍÎr•mêqÄ‘ÉÎ{ø×Y³ß¶»„©žº¼PY¿CÉËDE…&ø´0"x‡çÿ‘¼{/ÓU"Ó7 ¯=€ g†n[9¡•ãM²H~9šR¶Þ†´„A¹£3à×̙ߥªÊ« Zd~þí9R] U:ÿ¤_Âg!Æ•#4?GvñÓÛ\ûìû‚º„(›AìTÖäºÊîpÂz'ç«Jxéÿ€ÝÞïá34Å5*õ°·Ä½…‡Ô@J +eE°†ìœõ ¿½ßO-)+à >Ãùý Á‰Ç Šíܼ…Йƒ~·nàŒÐ"s§³žN• +—Mkl¤~œÝí·×¨Ü¼ØßĪ•‘õnÅÂ;ÃþOûbs0½¥6^”VX WA³„€Í=UJè fžÎ]„*tá@ÙX¦Zãþà…Z7”7´gÐT%éY@&|¤€¸J»ìœqÃLÝm0˜cN-`l†î»žüzN!IAFŸ0óKÜwɼ JY÷6«‘»W ÝÂéf♆o2Å~ EU‰RGV¬»Ó^b'b¬I?΢ÂÇ÷x+¶$¶ÌΨQ šC>EáÅ5î|d+W”–Óg~l zl¡¹£Þѱpbͼ®Ÿl¹ÊáÞ,/è¾Ók´LYï«Úƒc©`ËZJýùxµ¬·b0ü(ÀXÀ£ÌÒÚ XV‘<­1¹ã)ÇÈšìoÁ:®Ý¶GPC==khq€Ââ ÃòQ›Mèæºå¼¥|¡•ïæÍK­v9`ºýº{ælMk?ŠõìÂÑ%ödlÂB­ü·×1P©pÅŠ;>ålZŠPÙ§]šRbËð<£®@AÆ [ƒ[É2Ã7œÃ/Ää²›x‰žq;–Ï^àà®ÑÐ#ËW¹)O„Ä$¤„„µþއ5Y[ñà51n ÈG%«LDœMæ? ]¤ ¤ú%QM Xˆ6Ä¥"ßšØzÜÉíB '->5ËØw o.ê= ÒÂ’-¸y@”ñ,÷'p}Èá_ÅÊ“lendstream +endobj +1253 0 obj << +/Type /Page +/Contents 1254 0 R +/Resources 1252 0 R +/MediaBox [0 0 612 792] +/Parent 1248 0 R +/Annots [ 1257 0 R 1259 0 R 1261 0 R ] +>> endobj +1257 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 641.328 260.571 653.283] +/Subtype /Link +/A << /S /GoTo /D (classChorus_a9) >> +>> endobj +1259 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [247.509 602.473 265.552 614.428] +/Subtype /Link +/A << /S /GoTo /D (classChorus_a10) >> +>> endobj +1261 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 432.018 226.349 440.929] +/Subtype /Link +/A << /S /GoTo /D (Chorus_8h-source) >> +>> endobj +1255 0 obj << +/D [1253 0 R /XYZ 160.667 686.127 null] +>> endobj +1256 0 obj << +/D [1253 0 R /XYZ 160.667 660.755 null] +>> endobj +1258 0 obj << +/D [1253 0 R /XYZ 160.667 621.9 null] +>> endobj +1260 0 obj << +/D [1253 0 R /XYZ 160.667 555.158 null] +>> endobj +1252 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F31 829 0 R /F19 460 0 R /F22 474 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1266 0 obj << +/Length 1432 +/Filter /FlateDecode +>> +stream +xÚÍXYoÛF~ׯ Ð1×{pyEÄ©‹$5’Úz)’<Ð-¡HY¤lùóÙY²d»iáÄ .gwgçøæX +‡ÃO8‚GL†±Æ ‹DàdËÉëéäøT*'aI¨œé•Y9}r&„ç«8pO<á–ž/Üt £G r´¸D¹'eÚ44<Ï¯Ì ®Í« ÆJh¹Jy_¦ï&¿O'ÂJãs¦’ÄñKb²\O>}áÎlÂwœ‹[s&`ÕrDšIÛ÷rr1ù«gÅ_FFƒ^%鈀© ÜÕ „Bµ„ Wé¡NE•£‘&EÓþ"œM®:e׿uMŽOã±Ñðü Ì1Ó÷°_)7+=ì¦Tà®àeáÉØÝ6E––´j‰\k8¸³ÜÒ2¤‘Q…Ëè<™ì("J:ð—¢ÊÊÍÌÊ%İ.ˆ”Uÿ×}>‹‚ÄNŸ”d ¶Øç£%S¼ãóÛžþ>"KHm¥ÒfÙÛjÑ[Ó¦£YNæ˜!9¯Ó%i}U¯i€¢àHóòå]܈ fIø¡d€fp¹s °à ³f<6¸pbÇo— Ü›ä ò{Æ@RÅ;X,ÑzŒ¥›KÄO‘TÎòv>TÜ5Ö|Á`¡Š +@fŒ#³ÿ3Ñžq Çîƒç3×ÞÏþ¾kX3¡îF’„€KÆ‘é5÷óÂéŸÀ¯<È S¬¬‘r‹ÆÛM{г.× òÁĤ°‘­ Ml `|°°ê4ï‚0Œ0ZºuÕ´ëMÖÖë#¢¶é×¢šã8v[‹3—õmÞ´´f–7ÅÚÓ +æ€ÅŒˆ«2Ý¢\Æ´8˜ýjXy½±¾Eߨ¾„ì¨BxPäàN_s#Å÷ a ñˆg[(d ¬ûìZZÓ<&©HþònГu1ë’XžÚ°D9 Ò ¸±”çdOÄøZ€Äie}¬ÑÞ†=Ò!ùÁž’ÞŠª¥ÜQ¥–Ò´i›?’MŽ˜UTµ l7ݨOZÛÁg@Û C•°X"’EÈBñâ Õ:¿~(ÚÁ Žîøé B§01<–yeI+ôaj"rtçÅ|m¡Gù=gc‹–·E¶);§Œ«ïˆ©ïða Gƒ¯Mí¤œT ÷æäO?€z'«˜Å‘úñ~K—+SJÚͬ³ñ©tg‚CcNä?^ÒuÚvÞ0‘@¦Sra¯V«®…„ +âĽ@‘Bö`hM³±“fe[Ó,Ó`°²©É·E·}^ÜØp5¯®«²Ëô-vG†aÚåý-$p·9½ÕWÝq>*gú,ŠPRÉÖ(qnv4O•‰ÚzõŸ@ =-Ó Ävy|ò ÁÇÐ$†;Øxc@ðÐä”8.©qìéèÅE—–ÌŒD´`{aÝb¶Ýö._an7Ü;ø'ÑßTD÷Åxÿ¢/ë6ÿPªÉ¾3á)´MIòg•’þ ËãÃiI°lßE½/=E‚é;íÔ…©ã:VÕ­m')¿˜†sa!3J4ô¸¹ïsl2Bùò')}¨`›òÄA7™«šRѳ*w÷x+„KeÝq¤Çû|噺€Wlë²á^02ÀØ´Õ¬z?ޝ }‚0¬0G˜ì`ú+vÀ¶Ðúil%¸’Eÿó£}±WÏþ2À ^{dä)b3PÚ½ØV<«æÃAÑ  ‚á'˜«May_´4UT´óäÅ \"ƒ-M~ôTèæØ¯-åœÑó™˯ôšö^þH»+Ï0ç2+b–â 7Ⱥ6Ûò#Sje™/s0]‘3û½BûPã¸ÆOG¡»HÑvÝÈ2P à MˆËÀ¼x–þ&9>¹ì|÷ +máendstream +endobj +1265 0 obj << +/Type /Page +/Contents 1266 0 R +/Resources 1264 0 R +/MediaBox [0 0 612 792] +/Parent 1248 0 R +/Annots [ 1271 0 R 1273 0 R 1275 0 R 1277 0 R 1279 0 R 1281 0 R 1283 0 R 1285 0 R ] +>> endobj +1263 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 937] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 1286 0 R >> +/Font << /R9 1287 0 R >> +>> +/Length 1288 0 R +/Filter /FlateDecode +>> +stream +xœ’ËN1 E÷ù +/Eˆóž-ˆËÒùTQZ˜ŒÔ‡ÄïãÏ$*­*PÎm®“sãQAå×U;qÿbáý v€ek*«=mv€¨¥ƒ~-~š|”ÁkÞÉ\ú$n‡×ýv|;Þö⩇y·¢328…ð•ç^¾µ• $’°18©<­‡yTIN¶™a ™H^FKº÷1\'¬UsŽçñpܧ±æ¸Hn(Z_dåwùÀ +|"ÙL¬òÒ ”úŸ èD¯!bÅòøyŸZü"+>9¨bƒüûnÙ£Ês †&„õ2íÌìun,嵎%Ö0…?cg +~¿l¯šö|™$S¾mò„ã,›ÎõÝ…{Ê xMßÕ5,¶°â™±ø'¬€ºÅšdÓIX ñ •»Eendstream +endobj +1286 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +1287 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +1288 0 obj +320 +endobj +1271 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 425.274 168.621 437.229] +/Subtype /Link +/A << /S /GoTo /D (classClarinet_a0) >> +>> endobj +1273 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 386.401 176.37 398.356] +/Subtype /Link +/A << /S /GoTo /D (classClarinet_a1) >> +>> endobj +1275 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 347.529 175.263 359.484] +/Subtype /Link +/A << /S /GoTo /D (classClarinet_a2) >> +>> endobj +1277 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 308.657 211.433 320.612] +/Subtype /Link +/A << /S /GoTo /D (classClarinet_a3) >> +>> endobj +1279 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 269.784 210.326 281.739] +/Subtype /Link +/A << /S /GoTo /D (classClarinet_a4) >> +>> endobj +1281 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 219.953 208.084 231.908] +/Subtype /Link +/A << /S /GoTo /D (classClarinet_a5) >> +>> endobj +1283 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 181.081 186.858 193.036] +/Subtype /Link +/A << /S /GoTo /D (classClarinet_a6) >> +>> endobj +1285 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 142.208 187.135 154.163] +/Subtype /Link +/A << /S /GoTo /D (classClarinet_a7) >> +>> endobj +1267 0 obj << +/D [1265 0 R /XYZ 106.869 686.127 null] +>> endobj +1268 0 obj << +/D [1265 0 R /XYZ 106.869 667.729 null] +>> endobj +74 0 obj << +/D [1265 0 R /XYZ 106.869 667.729 null] +>> endobj +1269 0 obj << +/D [1265 0 R /XYZ 106.869 444.71 null] +>> endobj +1270 0 obj << +/D [1265 0 R /XYZ 106.869 444.71 null] +>> endobj +1272 0 obj << +/D [1265 0 R /XYZ 106.869 405.837 null] +>> endobj +1274 0 obj << +/D [1265 0 R /XYZ 106.869 366.965 null] +>> endobj +1276 0 obj << +/D [1265 0 R /XYZ 106.869 328.093 null] +>> endobj +1278 0 obj << +/D [1265 0 R /XYZ 106.869 289.22 null] +>> endobj +1280 0 obj << +/D [1265 0 R /XYZ 106.869 239.389 null] +>> endobj +1282 0 obj << +/D [1265 0 R /XYZ 106.869 200.517 null] +>> endobj +1284 0 obj << +/D [1265 0 R /XYZ 106.869 161.644 null] +>> endobj +1264 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im11 1263 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1291 0 obj << +/Length 1417 +/Filter /FlateDecode +>> +stream +xÚ½WYoÛF~ׯà#…„îÅ£@¥š¤©«-‚4IK¬)R!©Bÿ|çXR²å .AÌÙkŽo¾™]I/„ÒS©°6õ¢$±4^¾=_Ξ](í¥"´·¼¦Ë⃯Íüãò•§M(¤ÔnòjùzèÄø‹¹ôë¬ïq¤ý-|•Ÿï·e3aȆjH¿mPÇìÇåL:‚Pè4ñ-ÒÄ¢ýO³C¯˜…Þ«¯Ý‚ 6ÓÔÛÎLl…’‰׳«Ù¯“*i"‘˜Ô TL¾Á@\gÁüÊ]yv‘Yà ?¿¿ï)h•‘ñ«N*ˆ%}ÐE·2¹–œ{vñæ—¹JüæêPÔÆ줟ÏUìßà„ïmÿ%G ¥—€–µ‘ž@‘C +-œÞîöC ‡£r@Bâãü~€žï³-LìjÌS)Xõ)t2Bê¾+ù8?c(mU°Û9¤ÆCvÚz±ÉÖ%‰1U°žúO¼ßâ‰Õ<€¿e÷”õœçF@6D%"±æÿOÑç¹ü¬ÞC@%ø…ìH+;{'?—t1¹n»-çbظdås« c™Õ€'.ßd°»Áck·¯ßá†wç¤ÅXðâêಙ]‘Q(¢xÌÓ„uJX§€õ¹÷Z‹8N݉¬)P‹$N¦ÜÛ!)Ï5“B-§R´a(  ½ 8H©`*Ìsé;B*åI€ÐZf$tƒÄx1Âʘ´Ô$é„€¤2þ x€©¬ª1AKlýÄô>ïª.V-zŸÎ!?´ÉI¿C.×Y‡eÙ”Ž®;l‡¾Ê³šwm©é¢±_”5o̹MºP?À)Kú—› +[h¤Çm(VÛ]]’ª’ ÈÍgøQ>)ƒ=ØKw§ÀC «99ðöÝ]/a÷¶¥ú*Æ–Zú™3UT=éD‚“½žP„•’æÀòvò„a3Åç2æ’-Ó$¬ŽÕLÍ ýÄÁ‘wÝè‹Ût5v@r~?ÚÉrn¦Îð–$GsŒiÓN^Ÿôðfõ‰#HiZpÝ™ïÆ“w“eN’eBåó—2‚C´Z­«Æñ-z™ájˆ¤yNUEÉ;î22u!ÞÍÖÎÐà,îû’MîèPËI©VH‚oéÇ„AI[ëÿU掸8´üÝa+È#?|š¸ˆbÝ”µCgJ8¦e ‹•ÿ[Sqˆ]_q&çðp¿Çìd"œ邳¡½oÖׂt4ãò–Y`¬PóÝù-&­ÐFCM[aSó¸[ì]IøG*ØcuS2ê<ÿ=Ô7'K„»ÅªÇÙ|ÛV½ ìeVq»?±b¾bå‘÷óïD˜.C6 Ú ÌPGÑ~Â×AÙä‡;v¥ü6áÝ7 16Ì Ñз ðyWfPͤòrj*ýT]yžK'!æ!=thM¸u­˜Î¬Š9Ž +ÝÌ;Ác÷‘üXÂc…c˜'G.±4ÄiغDÛÜëðV±,¬Y…¡z¸/¹¨ +v†ŸáX;ð o‘®ñÖ±LýŽ.w?Ðú+*skërr +r7ŠÅQc×nÝ›•*™e2U×-ºpK÷ÑzìÃÒ¸[Kú_*VõïŠuq¼˜Åæì׆V@/°À!›ÿø{D*¦ûmúñd¼H¤ ýäÉH)1ÚúWøAdñÇ×6¶sÏHFxÀZKwðëjॊ{3É‹'8xƒ*:°|9×Ñ‘8ƒ„4ްÖÞð0#m^ã::|”aì çgž¡úϨ·¥§fù”¨¦Ò~2Ú€ ?¹r÷4³Ç°%lhðÇ]$£1oÖí;Ò`H—tq Œ¶ìßÀmÔ˜ÁY“o endstream +endobj +1290 0 obj << +/Type /Page +/Contents 1291 0 R +/Resources 1289 0 R +/MediaBox [0 0 612 792] +/Parent 1248 0 R +/Annots [ 1294 0 R 1296 0 R 1298 0 R 1299 0 R ] +>> endobj +1294 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 654.279 260.571 666.234] +/Subtype /Link +/A << /S /GoTo /D (classClarinet_a8) >> +>> endobj +1296 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 615.425 271.402 627.38] +/Subtype /Link +/A << /S /GoTo /D (classClarinet_a9) >> +>> endobj +1298 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 419.067 210.547 427.867] +/Subtype /Link +/A << /S /GoTo /D (classNoise) >> +>> endobj +1299 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 311.399 230.722 320.31] +/Subtype /Link +/A << /S /GoTo /D (Clarinet_8h-source) >> +>> endobj +1292 0 obj << +/D [1290 0 R /XYZ 160.667 686.127 null] +>> endobj +1293 0 obj << +/D [1290 0 R /XYZ 160.667 667.729 null] +>> endobj +1295 0 obj << +/D [1290 0 R /XYZ 160.667 634.852 null] +>> endobj +1297 0 obj << +/D [1290 0 R /XYZ 160.667 579.068 null] +>> endobj +1289 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F31 829 0 R /F19 460 0 R /F22 474 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1304 0 obj << +/Length 1241 +/Filter /FlateDecode +>> +stream +xÚµWÛnÜ6}߯Ð ‰hñ¦KPhíºÈ Ií} â<(½+T+9’Öζ?ߥ•½Fì¤. ¯†äš3sf8â^ÜãQÂDœzqš±„+¯Ø,~[.ŽN…ô2–ÅÒ[^ZÍeùÑWŒ‹ ”©òOLRø;Jÿ¸ÎûžÄ3s„Ü7]?Ma‚OËWžŠÓ±vÇH“‹ß— îŒ#&³Ì %ËR&|Y|üyå"ò^-p-õn@Ž­ÍB%š žºq½8_ü9y¡H¬ááqŤŠoCû çá Í5L*nQ%Ú?†1Àä¾Å€ p…{`G§éÜKøf•ÙóÏ—¯a”~ûÛ&¬š@¤þ`º«´ü¶Î‡ +Vši•èOPØÑ°®p›Áò‹É¶¥žÑ›EvëÕ Ì,q:_uù†ÇÍ¡-Hh¨&Wµµ!Nü¼)IøÑ"±£rdRöÐ㡯Èž’¥™þa—×혯ÃÄç½àyîÒwÒÛä_'…GìÝõ”)5‚‘FÀ\’»î$ÊÃIé߬«bíü{5µ¨¾2®dkãŽÜv.ðpJ3Ð$¹<ˆ9îâ*¨‡rƇyôˆÜ5ñïŒz\l®+tΰÍëÃ¥`*JœâE$£ƒ“°Ê¥ß›X¡Ð¶ÀÌ…×^Ž„¦·¹ÔvO-k«’l+j“w?ÿÇ5%2’™JS¿jàJjÀvdI O£1OA鎲Ë1àÿÖÞ ó;nÌyÚ+uÊDóývn†˜ƒw§ª!> endobj +1301 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 645] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 1321 0 R >> +/Font << /R9 1322 0 R >> +>> +/Length 1323 0 R +/Filter /FlateDecode +>> +stream +xœ­“?O1 Å÷| +À`b'ÎÅ#˜X ·!TZôJ%Ä·Çw½Üêp½÷üü{MT¾ýôÏeãÞÜém„§w÷ÔYå±là¼6SAYU ^»}Œ€r@­˜ŠBݸ£‹Õæáó¸~q—5ÜØà³‹ }ðá(zÅ”-†6•=¦Ê„ÉâÛ•[ü’¯¾Û½Geî +\=ov«íØ ‡†”S û;”) ‘€dó$tÐÅîõ€(Šý;1j ˜i<糚3j$µñøªH‡¸ëÇUðé'ÜØ!û +îmäÑq@íÈ>‹·L•"j†fÿ˜³±äL(~u£ß ­Ÿ¬«UÏl‚£Ëy"Ì7¬O¬\_ªubòÙ  Äï÷ ¨"¿¿ÓÑï…±Š„(˜xÒe¢ÌwX™N¡ãP¢ü?HF%± × d¢Ìw„¨Rä4áØU”U¦ÊM6¹vª$Ç©ïvݸ/µãendstream +endobj +1321 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +1322 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +1323 0 obj +378 +endobj +1309 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 397.034 157.939 408.99] +/Subtype /Link +/A << /S /GoTo /D (classDelay_a0) >> +>> endobj +1311 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 347.253 157.939 359.208] +/Subtype /Link +/A << /S /GoTo /D (classDelay_a1) >> +>> endobj +1313 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [163.584 297.472 198.094 309.427] +/Subtype /Link +/A << /S /GoTo /D (classDelay_a2) >> +>> endobj +1315 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 258.65 175.263 270.605] +/Subtype /Link +/A << /S /GoTo /D (classDelay_a3) >> +>> endobj +1316 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 219.828 191.757 231.783] +/Subtype /Link +/A << /S /GoTo /D (classDelay_a4) >> +>> endobj +1318 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 181.005 192.808 192.961] +/Subtype /Link +/A << /S /GoTo /D (classDelay_a5) >> +>> endobj +1320 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 142.183 219.254 154.138] +/Subtype /Link +/A << /S /GoTo /D (classDelay_a6) >> +>> endobj +1305 0 obj << +/D [1303 0 R /XYZ 106.869 686.127 null] +>> endobj +1306 0 obj << +/D [1303 0 R /XYZ 106.869 667.729 null] +>> endobj +78 0 obj << +/D [1303 0 R /XYZ 106.869 667.729 null] +>> endobj +1307 0 obj << +/D [1303 0 R /XYZ 106.869 416.446 null] +>> endobj +1308 0 obj << +/D [1303 0 R /XYZ 106.869 416.446 null] +>> endobj +1310 0 obj << +/D [1303 0 R /XYZ 106.869 366.664 null] +>> endobj +1312 0 obj << +/D [1303 0 R /XYZ 106.869 316.883 null] +>> endobj +1314 0 obj << +/D [1303 0 R /XYZ 106.869 278.061 null] +>> endobj +1317 0 obj << +/D [1303 0 R /XYZ 106.869 200.417 null] +>> endobj +1319 0 obj << +/D [1303 0 R /XYZ 106.869 161.594 null] +>> endobj +1302 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im12 1301 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1327 0 obj << +/Length 2073 +/Filter /FlateDecode +>> +stream +xÚÅXIsÜD¾Ï¯˜£TDõ&©s3 ¦ ¤â¹PÀA™‘=ªhFF‹‡?Ï[ZËXP„rÕ¸7u¿å{ï}Ýrß\+'¬uë$s"•f½=¬¾Þ¬ž^*½vÂ%z½¹¦…›ÝÏNÂ_7߯µ‰…”Ú^m^†‘ÎLð<”A•·-ötð¢†ÿ*Øö‡âB£Ë»2ŒdPqÕ7›•ôD±Ð.[GZ¸Ìâù¿­~þ5^ïVñúûÏ}€6œéÜú°2©Jf¾_­®V?Ž[I“ˆÌ¸u¤R’}PôZ(óK,Såée6Mrƒ¼ú顤°«L,4R.~f-[JvùÃëPeÁEFÝ€µ ¶`6ê +þ×^„* :œÓ ˆ«-{Ã]~û¢¨r\y“’Ga‹¶c…µ\gph‚‡F‰ˆÁš‘4ÂCç¿ ­ +tV×7°ñ6HàÔ}4¸Ã©½Þæ~sé¦Í³X8å¼Z,VˆŸ¢dKQ4 K«[<àp[-oÝ„V5ò€' v0FÒVù}D"•G/Sy¼í;áåša´5Âf€¨“ÿ;ð.2k¾<* Úº×=¨?CÂ.ªËÝáøjp|ÛñÌ?¨·0Ôw:hÇ+ë¾Ë{¸äU_œs‚2BêÄûà3pWÂYM×ç+÷ +ºË8uÂÈÔûÅ~y¿tå‡ÞO^Yb'MEgÿG.ióúV“%6¤tB)y‚ŽïŽ£Kë!Àp/ØŠ€á‡ºú$>Ó`W0ng~ô`¡È.rÇ“Ý3ŠvÒ£èùûàQ.;ž(óÿQ½ÐRk7V¬X/ôƒBgý&Ü¡vçq—)»/ »¥Z)äž¿Ò +P— (£[JK5¦¥'€ŽØý3Aêæ8Ô€ꎉŸê$b±ÁUùéOŸXÅá ðÅMY‘¸äTÈ!ÛàIWˆµOÅò¨<©ÑgªœI” +¹oïY)“R AüP‘£øÁ1üC×ÎChœã&¥åßz_¯qäØÞÑú†?®¯‰ÖEi, €-’Pµ¢|˜Ç)[ŽÈ’ö]˜Âh‘Ž(MÑ,•‡ µnÀ³j¥ÖR‰–Cb„ÂŒZ&´ÎÀ¡BÂðUMJeƒ\¨O”È* +Ì&)ŒS.j·My‹“e=‰|TL ±Wó +Ölð»—œ²D§"¢¢¹ A^ªÃÂnžgí’Å]ð ;ŒÔfܰ%%ñ8™ŠD1 6û’¡«Àúhߦî<>Q Z\¢èU‡.ÂnÛ¿#hq(ÞgKDÐì» ó[ç<ý¸6¸ +iTySv”S3i!ä&5¼«@ €´˜vÍG”;‡ücyÀÏúT^,Ü iðFÿMì,·¨iPb#“9¥óž÷‰¦0k^î­‰M2KÑñ¾-Q;lŽÁ„»×9²¦ª;QŠÁFl©ÁéYÂa”@&»@‡ *`9Fyu’AÞ½§N€]¯ +¨îæÑÐ$ð=³YT¼4žY +¨[~ä{¿àµ­G>Ÿ…á‰2¢ªK•c’ìrÆF Â×XiáRö²'È=c8?òÿÅg[Wu¾£(åÒHK¤D”úœxÂU3³a·¢¹‚;%BZµâÀ9Êm^U~)JÒŽù—sþÃ&Âz§i5Çvq$kãh~Kœ6F µOΘ³í·è¸=›ƒƒýô'»4ƒÙtÍè66![þ¡¥xçw³Lò†¿ÆOüÈ[Á'=Ä+&Fïy$Ç ½[¾ÍgŸ¼ á.¸}5x*ýZ%ó ¯:o¹ñÎ*ŽÕ¹ rk-¬MÏ$gå“ó«âj‰°…_LbÒÑeè Tí-9 ˆéº¦5Ûþ0E?û'þ‚î³~ÝÌ<À í¥×y°2žefB©}ðáa(æendstream +endobj +1326 0 obj << +/Type /Page +/Contents 1327 0 R +/Resources 1325 0 R +/MediaBox [0 0 612 792] +/Parent 1248 0 R +/Annots [ 1329 0 R 1331 0 R 1333 0 R 1335 0 R 1337 0 R 1342 0 R ] +>> endobj +1329 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 654.279 291.621 666.234] +/Subtype /Link +/A << /S /GoTo /D (classDelay_a7) >> +>> endobj +1331 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 615.425 277.231 627.38] +/Subtype /Link +/A << /S /GoTo /D (classDelay_a8) >> +>> endobj +1333 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [274.934 576.57 292.977 588.526] +/Subtype /Link +/A << /S /GoTo /D (classDelay_a9) >> +>> endobj +1335 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [279.215 537.716 297.259 549.671] +/Subtype /Link +/A << /S /GoTo /D (classDelay_a10) >> +>> endobj +1337 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [225.563 426.167 251.798 437.015] +/Subtype /Link +/A << /S /GoTo /D (classFilter) >> +>> endobj +1342 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 127.332 219.209 138.18] +/Subtype /Link +/A << /S /GoTo /D (Delay_8h-source) >> +>> endobj +1328 0 obj << +/D [1326 0 R /XYZ 160.667 686.127 null] +>> endobj +1330 0 obj << +/D [1326 0 R /XYZ 160.667 634.852 null] +>> endobj +1332 0 obj << +/D [1326 0 R /XYZ 160.667 595.998 null] +>> endobj +1334 0 obj << +/D [1326 0 R /XYZ 160.667 557.143 null] +>> endobj +1336 0 obj << +/D [1326 0 R /XYZ 160.667 490.401 null] +>> endobj +1338 0 obj << +/D [1326 0 R /XYZ 160.667 330.153 null] +>> endobj +1324 0 obj << +/D [1326 0 R /XYZ 160.667 306.039 null] +>> endobj +1339 0 obj << +/D [1326 0 R /XYZ 160.667 306.039 null] +>> endobj +1340 0 obj << +/D [1326 0 R /XYZ 485.35 246.732 null] +>> endobj +1341 0 obj << +/D [1326 0 R /XYZ 160.667 230.854 null] +>> endobj +1325 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F31 829 0 R /F19 460 0 R /F22 474 0 R /F35 1011 0 R /F32 881 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1347 0 obj << +/Length 1304 +/Filter /FlateDecode +>> +stream +xÚÍWÛnÛF}×Wè …„ë½r—AQÀµë"7$µõR$y`(ÚBQ +EÙQûóÙYR”e»pÒ…aqv¸—™3gf–"âð'"Á-“©‹R—1+tT,F¿NFGgREËRM.ýÌÉô]¬™PãD9Ÿ–U>V2ÞÓød,âjœˆ8_ƒ´F¥ŠÏQQ^–MY%¨D¦y¬ìøÃäÅè·ÉH ÎT–E‰b™3xþçÑ»<šŽxôb„ï\t2gf-FÚ&… ãjt1ú£ßŠG‰´ÞêÞ  Í”N÷ý#Ñ!$ú‚vV —¹dÁ%¯Y£/ÖÄçè‡÷}ŽÎÜ –Yp„^c˜·ÇlvÇ.‚9ÝíòË I–²45Á$íg=¯g½ëèp›£g…•Ü›¢:¿jòù~¹lH8í09~SžÝfÐK†Ó2$ýè30„;ë2?i({Ší(ãGÏBE§K S´ãSÒï¬ÜìÑJ°Ì˜!­Þn>bÀçQæuÙΖ òxºêBÂ+ðF2eˆ8ï¹°H¢ á –÷Üpø´H‰ÈÁdÏt༰ˆf™tañe¾©ZÊ×bld¼ckO'ÚfS´8@mf5c£ 807oË5)sJn¤éç'ÀÐ’^ÝÌÛI Ì/sø]l´ ¢ì¹ê¦à9—$jrfhÞ:ÇÅ úä9 5äÁªò6¤6Îë) ARzOühÚñ Lc‡' X +OÅ\f¾ó×Þf 2`4­dTC®aXšÝYÁ›žhî° +Ÿ½zƒ¹ %NÛgVo.¾}JȲ«-‹üK?ánâ$Ú0mÔsÞ\÷I[C€9 àO)nwS +å¶§”Šofób½êÙUÌ!º }£•aËM»Ô-))öN¢3˜m`é;(ÄÒˆÒ¬¢í€ˆë%‰Þ‘$1œƒ¤ø] ÆY!£)ÓÒì}RõíÙ\®}R.›Ç˜ù—¯Ñ°å|J–U™7_QHN*ªÔ`*E,uÐÅÚ²©óŠFžP9hÔ%<ˆ_Q…E Ø÷ñu]¶Ã6mw;HgÐd4œ¥ŒDZ±Kó¿Èé{RÖ +fñ5ˆÑEÙvH—›nÕkÄ»ô¹ +™ð_UËÃʘ¤ŽYÀQ9æ¤úVÝ£a¼ÂÈnTÚ‡ ír¨)_¦Öo~Þ—¢vÓPÛCØ×º f…ïIeB0ìJ‰/Q!vпc7 +€üñhá>ªOµOk™ãYw5û‘Y†· ˆÁ +{[y\ʜدÔÏëÕ¦¥.»`ÒÅeU…äj—{µÑöý©#A×*Ë[wbp¬Þ;€ +覅ƒÙAŒ…L™„Ò˜¨ 8#¿ñ+оÇ·¿òjèXô‚ ôM+_lë1<ÀWÿ}2_£A<õ·3ƒ¿€ñËyK¯à³Æ¯ \y8B™^„¯"³ó²ÈÀý¾US‘v©h¼2BúëAˆÓ^<Ëü-9>¹ìb÷4 šiendstream +endobj +1346 0 obj << +/Type /Page +/Contents 1347 0 R +/Resources 1345 0 R +/MediaBox [0 0 612 792] +/Parent 1364 0 R +/Annots [ 1352 0 R 1354 0 R 1356 0 R 1358 0 R 1359 0 R 1361 0 R 1363 0 R ] +>> endobj +1344 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 1290] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 1365 0 R >> +/Font << /R9 1366 0 R >> +>> +/Length 1367 0 R +/Filter /FlateDecode +>> +stream +xœ­’OOÃ0 Åïù>lj“AÀ}¬7Än¬‡Iˆoû'íªqAšz¨úžó~Ž]‹¶}†÷ª1{sûìaóeö@U^«î+53Y 9Cµ6ý1‚˜ÐR +  AÕ˜«‡z÷ösw]}˜Ç +Zº5Ù!IÈðm˜2rˆzس:MMž‘j³üœ(böA“)Mì]`,IPü%¬#d 5¤c>mwÇúp]¼4 +:n¯«V?ãåñó ¨'CÆü7Ð Ú嬭¦ÿtQ÷—ì´p& ~™ßèA}á„.s»Œ¨%®ÅÇ™2ÏXߘp:HO^õ†ï}ENÛ*>ê/5B‹0øe¾£_„©©h­ï#JS'Ê<£kꤙìHtF–ÚÈ V„ⳟüA˜š!+™ºˆÒ̉2ÏÐfæSß»‘endstream +endobj +1365 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +1366 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +1367 0 obj +335 +endobj +1352 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 397.034 165.411 408.99] +/Subtype /Link +/A << /S /GoTo /D (classDelayA_a0) >> +>> endobj +1354 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 347.253 165.411 359.208] +/Subtype /Link +/A << /S /GoTo /D (classDelayA_a1) >> +>> endobj +1356 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 297.472 173.16 309.427] +/Subtype /Link +/A << /S /GoTo /D (classDelayA_a2) >> +>> endobj +1358 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 258.65 175.263 270.605] +/Subtype /Link +/A << /S /GoTo /D (classDelayA_a3) >> +>> endobj +1359 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 219.828 191.757 231.783] +/Subtype /Link +/A << /S /GoTo /D (classDelayA_a4) >> +>> endobj +1361 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 181.005 228.773 192.961] +/Subtype /Link +/A << /S /GoTo /D (classDelayA_a5) >> +>> endobj +1363 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 142.183 206.773 154.138] +/Subtype /Link +/A << /S /GoTo /D (classDelayA_a6) >> +>> endobj +1348 0 obj << +/D [1346 0 R /XYZ 106.869 686.127 null] +>> endobj +1349 0 obj << +/D [1346 0 R /XYZ 106.869 667.729 null] +>> endobj +82 0 obj << +/D [1346 0 R /XYZ 106.869 667.729 null] +>> endobj +1350 0 obj << +/D [1346 0 R /XYZ 106.869 416.446 null] +>> endobj +1351 0 obj << +/D [1346 0 R /XYZ 106.869 416.446 null] +>> endobj +1353 0 obj << +/D [1346 0 R /XYZ 106.869 366.664 null] +>> endobj +1355 0 obj << +/D [1346 0 R /XYZ 106.869 316.883 null] +>> endobj +1357 0 obj << +/D [1346 0 R /XYZ 106.869 278.061 null] +>> endobj +1360 0 obj << +/D [1346 0 R /XYZ 106.869 200.417 null] +>> endobj +1362 0 obj << +/D [1346 0 R /XYZ 106.869 161.594 null] +>> endobj +1345 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im13 1344 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1371 0 obj << +/Length 1555 +/Filter /FlateDecode +>> +stream +xÚ¥WYoÛF~ׯà[I$d¸¼¹q4iÐ4ÖK‘äa-Q +IÙúç;Ç’¢,¡EQwggfg¾9v(¼þ„'óȘÜK² ~rQæjĪ$ˆNX¡ÔEFÌ=LÈÕm8½9 Þ›Åàêà€¦N»ú£Í©ZZ—,õTRx°ú¥E6v·«Z;%⚟†ººkåuƒú´<¯j­8ÑNEÍL;—ŽÈp@³¡\"À)c·e:^½.˜ukKºjô00ïc`ßvè£}¨fûÎön·¾(wÜ#|ížñí¨{SÿòJÆÕöÛ„tš£µôʽbCIæN© ÒZ¨ß•Åã\|Ëή†Û’²S)ôÌBqûî& 0ªâÔ`§Ê²8!f«ŸúÙ5äSxÅ¥ï‡y’fD&‹ÁÙmCÍé@¸gÜד.AlYâÿÚ° ÓšºNæR…—CJA$\eÿÕP'5çÍ‘)à­A_ÞÎ♉YÛ¸ôª+ŠÑÌ)>P¼:Ü´Ö~Mñ8kcHžu$Ü:5=Ãû€!vò˜‡r‹¢Dï +¯¼£Ì¼#[UÖå€/()h™h¯tÎíêàÊŸú#ü‡þx­f¯âG®çÎ! +”O.^¸~ÓRַߦN0•û[;“ùˆmÏÉÜIb§~Ñ6cZ¼d˜; ¯BîH2ŽeÄãÀ³IŽaºÊžÏÒÍHmót@åž²4ñïlùÍêÔÔp +i‰FªSJ+ן%çãÏ%£BE(,yì11¸ ´åØqzÃâñ‰¯_÷Å$ÆÉÌõ%6ñ‡?ŸÏs&I CPSZ$•þ÷‘NEZ¥W:wòSéÝoàöïhÖMÏÎ’PæÄ©E”eÚ±Cm wÇKœ4Ü–KǾ‰‹ Ê$‹âTžzãSEUw6»…gc[U4[*¤ëc›ãrÕ€ñtÉÚQænÝùÚ{(O†e 䜼êáÌ|˜Û³,q\eÏÚ7][OçiùªqÀ55/têPÿ'C£x¦²ë¾®¹wâz˜JNß +ãK¾¡—x˜G%‚Ç©å4ïáÃÎ:–mÑ¥4ªrΞûFwTOå8»ÑG¾× &| Mh +Á³ ©`"“Oãiz:/ôÛ´›hwñ¤ ©d,±iÈ(ÏõÿýR‘Ì“éÙ˜JH{,©ž—D+ãß¡¥Ì ~ °•@Ë@Ä ½r”÷8àQÉQ£õ›¸yÁ›TtäõÇ@%ØÛGù9TšPÆ-NkÔ„pó–ú K`—qÊ3,ع²¨þõ¶{ú0ßdYlnÀ%åÓº9¹JøJÔøá™ˆd œq|3x„Œ4éR9—: Œw™¿ ãS cø7j°™endstream +endobj +1370 0 obj << +/Type /Page +/Contents 1371 0 R +/Resources 1369 0 R +/MediaBox [0 0 612 792] +/Parent 1364 0 R +/Annots [ 1374 0 R 1377 0 R ] +>> endobj +1374 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [183.2 613.15 209.96 623.998] +/Subtype /Link +/A << /S /GoTo /D (classDelay) >> +>> endobj +1377 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 351.697 227.511 362.545] +/Subtype /Link +/A << /S /GoTo /D (DelayA_8h-source) >> +>> endobj +1372 0 obj << +/D [1370 0 R /XYZ 160.667 686.127 null] +>> endobj +1373 0 obj << +/D [1370 0 R /XYZ 160.667 667.729 null] +>> endobj +1375 0 obj << +/D [1370 0 R /XYZ 160.667 481.27 null] +>> endobj +1368 0 obj << +/D [1370 0 R /XYZ 160.667 457.156 null] +>> endobj +1376 0 obj << +/D [1370 0 R /XYZ 160.667 457.156 null] +>> endobj +1369 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F35 1011 0 R /F32 881 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1382 0 obj << +/Length 1254 +/Filter /FlateDecode +>> +stream +xÚÍWmoÛ6þî_!`_$´bøNªlÉ2¤MÑ.ñ—¡íUVb£²äJrRo~w$¥Èqº"m± #Š<’wÏ=÷"Qøc£†pm#m3b˜ŒŠõì—ùì蔋(#™ÑüÊIÎobI˜LRae|RVy"x¼;ÇwWy×áÇIÊâòªl˺(aŠ3fc‘%ïæÏg¿Îg,Ü›R"²,JɬÂ[?ÎÞ¼£ÑbF£ç3\³Ñ-Œ)a µžI£g6¼W³ËÙïãQ4J¹qºŽÊóˆI"¤Þ×>a1ÀG PÏ +¦Àæ 1 Ág‹QñÚáìA[À‚£S;…%å–(nÝñ—ó°Iˆ¸ZÁu™·þuU'ÜÆ}ÙnP3nª¼w×~yH‚ÀnØ\Ã"â&d\Œ*v8êˆWg{:0C4—N‡VuQmAUÆîä¤!Ôˆ€Ä‡çbd–ѹ»s²|àF¬Nùé4ÓDkµ§ÒY½ô±¸…ÁªÏÑ@gY°rÓùu›¯=WM@îd€æüˆ<»Ï ¦&nË$Wƒó£@jUNf:v »cŒ›8:[ãOàRtG§t> endobj +1379 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 1333] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 1397 0 R >> +/Font << /R9 1398 0 R >> +>> +/Length 1399 0 R +/Filter /FlateDecode +>> +stream +xœ­’=O1 †÷ü +À`â|9Y0±”Þ†PiQ¡7´Tªø÷8wÉ}¨,HÕ Ñ½¯çµ:å\µj¯nŸ||«=PgÕcÕÂ]#f"‡&h6ªo#àˆ!K!`¡iÕÕýz÷öótÝ|ª‡RºUÉ£±‘à¤,iÔ‰¥ÙYN(%íÖjù?8‘Eï,8Ç(ð]i6ê„Þ\‚iDÑË™™ÛÝq}8ƒ²dBí/e‹ÌÞ‘¡Ëã×QZ%Vø›X–tRÆk=Xmÿk¢g$;)œ ů ü*ˆœAÉk]·)1¶ï(ó;67êäAHh¯2â{_! •ÙS…Ê‹’gÅ#´ +ů ü*Œ¡8Sh’iæ7t‘&Q’76¯° H;8™¿ +Õ/›ý"ŒQ(·t%5ËD™ß!aêÍ[»Èendstream +endobj +1397 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +1398 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +1399 0 obj +330 +endobj +1387 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 384.892 164.166 396.847] +/Subtype /Link +/A << /S /GoTo /D (classDelayL_a0) >> +>> endobj +1389 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 330.26 164.166 342.215] +/Subtype /Link +/A << /S /GoTo /D (classDelayL_a1) >> +>> endobj +1391 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 275.628 171.914 287.583] +/Subtype /Link +/A << /S /GoTo /D (classDelayL_a2) >> +>> endobj +1392 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 231.955 191.757 243.91] +/Subtype /Link +/A << /S /GoTo /D (classDelayL_a3) >> +>> endobj +1394 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 188.282 228.773 200.237] +/Subtype /Link +/A << /S /GoTo /D (classDelayL_a4) >> +>> endobj +1396 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 144.609 206.773 156.564] +/Subtype /Link +/A << /S /GoTo /D (classDelayL_a5) >> +>> endobj +1383 0 obj << +/D [1381 0 R /XYZ 106.869 686.127 null] +>> endobj +1384 0 obj << +/D [1381 0 R /XYZ 106.869 667.729 null] +>> endobj +86 0 obj << +/D [1381 0 R /XYZ 106.869 667.729 null] +>> endobj +1385 0 obj << +/D [1381 0 R /XYZ 106.869 406.729 null] +>> endobj +1386 0 obj << +/D [1381 0 R /XYZ 106.869 406.729 null] +>> endobj +1388 0 obj << +/D [1381 0 R /XYZ 106.869 352.097 null] +>> endobj +1390 0 obj << +/D [1381 0 R /XYZ 106.869 297.465 null] +>> endobj +1393 0 obj << +/D [1381 0 R /XYZ 106.869 210.118 null] +>> endobj +1395 0 obj << +/D [1381 0 R /XYZ 106.869 166.445 null] +>> endobj +1380 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im14 1379 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1403 0 obj << +/Length 1554 +/Filter /FlateDecode +>> +stream +xÚ¥WKsÛ6¾ëWðHNB„>rsí:3‰3Mc]:I0KœR¤CRNÔþùî¤Ö´‡Žgd<ö½ß.–2HàOªÆ”AV”"—:¨¶‹_–‹7·* JQfi°|$ÂåêK¨“èÛò}êDH™úÃûå‡(N ^G2lì0à. o:ø¯Âj·um‹ÑŽu˰kQÆâ×åBzâD¤eÄ©( ƒú¿/¾|K‚Õ" Þ/øî¬AgYÛ…ÎP²ðûfq¿ø}%S)L’±ÊÉöÙH)JcN¼`°Ôð#$X&•oš8‘­øu+p"7á »¡êë'¼¬;ø!?ÞÜÇaŠ• ó—4 ›©íy[·‘*ÂÑõO˜v ¦Š5_¯\c‘`?1ãÃ+4í²®Aéµ2™Ò¤v¹©áRã!òíùtØ=ÞŠS¥LÖÛ§Æm‰l+ÃÑŸ[æxìQéÙsÛÄ|Õx&°~ÜðÑ +ã³®GÛöç†È0¦ +ÛÁz¨Û5s}M¤FµäçÏ~ú$‚Ÿ]?KÆÀJ +Yj +28â¯eˆ±. Öh8ÑŠ(Öi^15jûI¹†ÍÖþ¬·˜Ý–×’w¸îY—NJÃ'¶õ|–ÿüÓxÄ÷©ï.8„iÓ¹ +AØHŽ +î'ˆàá¸qL:ëzD¿vgªºv{då¤uð¸0ex…!8Ä¥…h<£®ÙGPï£ê4°dRr$ +'qqª-¦BuìPFÍqW¶åƒÏãyv•€Âv=Ab=UÊ0Z®%Žo~Ô,X…“ÜÉØò Ýì슒Šú}뙋~WAd.•ÐÝTsà-àÉä—‹6"‰p pcÁZ…m™Ã¨2QÕÎû@¤ã$ºÂÃM‹¬ßwŽ/1]Ïk˵{žr?Qô¶ÂP`…¡¦C‚^‚ÊçÀ»}œÝn·Þp"k›UGEâ<½Ëˆ¾X͈òÈØP©ob²‰|úŽ9tmµ÷P®×h:Š[;ŽŠÝT†Ïß?GØtúý¥rŸ[d†ºuïHß0K(?K|$±[œ}°ù‡„†< o£R‡»¶š;MÑÀ¸4S“EÎGŽÓÑŒgŽÉ –³â‘Æ$à&ÐÑèµò“ö 8Üß½}ËE„ІS Þ0!"åãçãš,r¡ ˜×`*Õÿ=±¥ÞÚ‹óš¿ùסóöìû ͺŠJ.9©9Pj)ŠB{r¨rtpÿ2T´•Ê“ÖÏ8¨´L¤‰<㜠¸hñÉt6÷ÚËc™§â&‡ý¥öx=ª¸ìzï¡:Vd;uÑÃ#óa,/ŠÌSQõ‚ôǾÛò*a#7tZnÖŸŽ=ç^zÏOç½ÉÓX¸]¤Åe‡Wó‚߇!óè9Ÿž=޲L/ ¼þõÇÆl=ÉÚµ®·ãôÐÓ[ij«“¤£i¨þ¨§'?ül!»ÞrDá#h©4"Õ)àÁS™¿=/8ò7SàîĿŷNª`©e©ÿï÷N*T™Í/Ê\G:Ääú¸Ž(!:5áýZ‹Añd‰ï=hI˜ !(h2Hq¼¡¬Ñúún^ñæíyý)J3ìqòYxšQ¯Æ->]ÔŒpóާ,âÀn-“<ÞÎÊ¢øg”Û{MxSe qÉÉ·ÊW»9¸+øÔøq™ÉlJœñtGá‘’•–\ïeÔeþ†ÎO­tÊá?õޝîendstream +endobj +1402 0 obj << +/Type /Page +/Contents 1403 0 R +/Resources 1401 0 R +/MediaBox [0 0 612 792] +/Parent 1364 0 R +/Annots [ 1406 0 R 1409 0 R ] +>> endobj +1406 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [181.642 613.15 208.402 623.998] +/Subtype /Link +/A << /S /GoTo /D (classDelay) >> +>> endobj +1409 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 351.697 226.266 362.545] +/Subtype /Link +/A << /S /GoTo /D (DelayL_8h-source) >> +>> endobj +1404 0 obj << +/D [1402 0 R /XYZ 160.667 686.127 null] +>> endobj +1405 0 obj << +/D [1402 0 R /XYZ 160.667 667.729 null] +>> endobj +1407 0 obj << +/D [1402 0 R /XYZ 160.667 481.27 null] +>> endobj +1400 0 obj << +/D [1402 0 R /XYZ 160.667 457.156 null] +>> endobj +1408 0 obj << +/D [1402 0 R /XYZ 160.667 457.156 null] +>> endobj +1401 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F35 1011 0 R /F32 881 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1414 0 obj << +/Length 1489 +/Filter /FlateDecode +>> +stream +xÚÍXmÓFþž_a©_6/ûêµQU©å +ЏÞEª*àƒÏöqn;8Î]Cÿ|gvÖvBRhi+D¼;;3;/ÏÎΞŒü“‘Ž«$’4ãNš¨X;[Ìã¸p:xþõ±ÇXLËg`'Ä€ß|BÍ7G®ÇRHžf6e<ÛÓæf  ê>oàSxXï›:Ûå!<×mð|Ù(üðᇸ‘&Xpd"¸s:Ñ;Ä…‰öLûc¬ (žðàéJÚè¬EŠâQ³Ñ À€IòÌÚ}0o¯0uA@yQõ7-‚•›E3…IZÀ¢˜HnTêå_ éŽÂ‰5%¡97Ïkaü—$¨e”‚€Ç8 ]:>ÀqÊh‡G’á·ŠµÍ¦ï¶EßvüØÈXÀWÉLVÆViqd/$ÝIùYC¨•ýˆ½eõ9¦~, ·xÌÚº$Ë’m_½l&C_ür„5¡¡Eqù³êÓE +¬I³“%*¬Œ˜JKíã_¢…ßΡØ.èœÔ D²žFÕ KŸŒ>epÊ…MÜÿ›¶Buó¢ß–Ãé?y(P¬Íaò/û¼ë)ó9}ÈŽRvW÷7Dëo*¼­oýM Z䨭çV³ ™7eЉe~½Dãª/‹'Ó) % îÍup÷%^ßÿ8W‰ƒºâ>HU»þËLºÕ #ý¸ˆ9kB^öÒAŒ¬MH*ÿr×^‡${U@÷¥,ß¡ÅÿT.ORœ€“ýw9êájÒoŸ*¤qÂÁ»ÃJÚb!^oûܶ )@ú¶‡¢oBªý^cÿ²‹uÆ£Ñ uÐE„Z)¯ Ç~¦F\U%]Šgþ*Ø]½ÆÅ·oN¶OªVú…ú§Z¦ÅM kƦԑx-žÙS3†öwmFוÝÀ‘“øh Nö ¬›·¸#¹±ÚÔï;q};TwÜsúùöiC£ö +®^Ë~¤‹Ñ,6åè[Hø‰Žálb]Z¶4˾ê6ô©"JºThÒQ8»»C£}doCdG-Õ†&y¨¡1VeXôðL)-‘~xŸ wµ¥ +Ä»z¹$Np6®Nx”¯Qu×úß:ï«åb 5^Úª[{Ùv k%.ß®cC‰ã¶ßëE½àÅÄÔlÀKœ¤ Tl8†í–‹¼ ‚$F–b:jÜhG\Ã6FZ¶Ê¯ã¾¬0º[‚—6‚ –ïð¢|ۜę?ñ¨i…4:kÂ~¯&K:Zô…R§¤hCD´àU»Ý_¸¸ +‚¤¯*D¯s„ÏÞÝ "´"»=Z‰%¸}ìëa3È‘íÔa¼Öì܃­ë(¨H¹9Á1Ô4ëPÃðã'ùžÌùž AærxvL`n›Á©ÐCA¹¶4Š©®(!?º Œ…§A‚¶§þAô÷Þ«ôò ៚⠚ø½{ÁU£-»„Rh€(»X 4ÞR$ ÒÏëž–ê†$Ý»Gƒ+T°£Åó¹N°Iìʧ/ÆÖ0Î8Eðû@ãäI><ËF5R8ƃ‰EŽ;Ü¢êÖ‹U÷}ÊU&¸µðƒ€8ïVî;y+n…Å¿ +$2.møö"#7^†Ù ¼¸—ýC ü +5äîO WõÙendstream +endobj +1413 0 obj << +/Type /Page +/Contents 1414 0 R +/Resources 1412 0 R +/MediaBox [0 0 612 792] +/Parent 1364 0 R +/Annots [ 1419 0 R 1421 0 R 1422 0 R 1424 0 R 1426 0 R 1428 0 R ] +>> endobj +1411 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 845] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 1429 0 R >> +/Font << /R9 1430 0 R >> +>> +/Length 1431 0 R +/Filter /FlateDecode +>> +stream +xœ­‘ËN1 E÷ù +/…‰ÄI¶,KçªñH¥Nõ÷ñ<2lPVîu|®‹¶?SÝs2÷/^Ïæ4Xµì +<4jf½MÐÌøŒ 0&a­)ø M17íW)ûö¶y7O l´÷Í$ÁF¸²‚6E}ìcŠ˜dá¡Ý›íßà1!‰ àrDÒI=üùxîÚrì®ô è\²Èé°”(Þd¢»í>~%ŠÅ ¿=#Í~1¬½2^{Kgçv®„ɯËÌ~ÔŒÎma²_*뇻QѲè¹BB¦€ú§3¤ +“_÷›ý*\CˆgÆà!Êz††Ø˜oX`†®endstream +endobj +1429 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +1430 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +1431 0 obj +271 +endobj +1419 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 428.972 175.152 440.927] +/Subtype /Link +/A << /S /GoTo /D (classDrummer_a0) >> +>> endobj +1421 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 392.01 182.901 403.965] +/Subtype /Link +/A << /S /GoTo /D (classDrummer_a1) >> +>> endobj +1422 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 355.048 186.858 367.003] +/Subtype /Link +/A << /S /GoTo /D (classDrummer_a2) >> +>> endobj +1424 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 318.086 187.135 330.041] +/Subtype /Link +/A << /S /GoTo /D (classDrummer_a3) >> +>> endobj +1426 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 281.124 206.773 293.079] +/Subtype /Link +/A << /S /GoTo /D (classDrummer_a4) >> +>> endobj +1428 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [368.997 182.295 395.62 193.143] +/Subtype /Link +/A << /S /GoTo /D (classWvIn) >> +>> endobj +1415 0 obj << +/D [1413 0 R /XYZ 106.869 686.127 null] +>> endobj +1416 0 obj << +/D [1413 0 R /XYZ 106.869 667.729 null] +>> endobj +90 0 obj << +/D [1413 0 R /XYZ 106.869 667.729 null] +>> endobj +1417 0 obj << +/D [1413 0 R /XYZ 106.869 447.453 null] +>> endobj +1418 0 obj << +/D [1413 0 R /XYZ 106.869 447.453 null] +>> endobj +1420 0 obj << +/D [1413 0 R /XYZ 106.869 410.491 null] +>> endobj +1423 0 obj << +/D [1413 0 R /XYZ 106.869 336.567 null] +>> endobj +1425 0 obj << +/D [1413 0 R /XYZ 106.869 299.605 null] +>> endobj +1427 0 obj << +/D [1413 0 R /XYZ 106.869 246.528 null] +>> endobj +1412 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im15 1411 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1436 0 obj << +/Length 1011 +/Filter /FlateDecode +>> +stream +xÚÅVKsœF¾ó+8e1™'0¾%V”’•ck}HÉ: @•l`W¥òŸO÷ô°HZUrÈ!EôÌôô|ýõc±€GÆÊqk]œŽçÒÄUý²‰~:S:vÜe:ÞÜzÅM}ÅŒJ®7ïcm—R‡ÉË͇$Õ…aïɶå4áH³Ó¾ŠU»®éærn“T²¡Gѯ›H©àÚqª¹+,žÿ=ººq‰ø}Dk ÙÎÅ]drË•,Âx]FŸ¦¤–ÜŠ,NUQ±”ÜYûÌ€¥…W€L*Ã.„Ø!Þ€/Y3Â'ÏØYâ Ûõøà]€IK.Jt&ýNðT²F%¾Ú!Á)p÷%©2\éCZŽ›—à +¶Gƒ§«NRc;Kã®ëp +0Iö¥·ý07{Rù*¬¸øó%¹ÒeÀ–9œø¯ôjntþ*¹aå3äìwÀöáÿœ8Ë6ä¼¶«¦QÜd.¨·ýúóˆI2e w¢º'>÷Àœë²f (,»JHëQÅ’ï~sí³3ÁÊñZ3*<‚‹*gac‰–ëp–OãoØ.Z¬“]Ýp\Hy¦(ª_&Ü åpÎÂÔ/·0g»8?='©ÆrØu¤Šðúi^ÀÀŽ±Ì¤êeZd7 >s +'hF³jðªäè875íŸúÞŽKÁß­¥…GÒÙ'6cåö°>Ñt9<]ó·½%b.@™üzŠW‘ÓÉÂ7¨’85Kby¡z^äBÞV;ß«GZl‘1ObðÄ3mñYPŒ‡ú¹i×è5O)nBto1† çý¬?¡ öÊ×"¾¡4ƒ„oÀ&]h.¡_í9ä'TÐDgUpù,LÃÚ2U†µ»¦_(}onBs=BŒ‹K¶û£¶Û!<´hᎾ +i<¾ S½A“]ëÒrm”›åÖ™PÀ2?*L¨|O)¡ÅãÝtÔÕ”0¼PÇVZßÖÿãm©¹rÙÓI ÎÄw¹yÚà|hŒ¶ìò.9‹Á“ä`d“H‘ù$´øn>@mû¥6t +”ß½ÁÁÜ ¡G’ÿHtn#aæ3[Ð(˜þ‹†¥·VÓà7”£ß¡Á†9ãgU¢ù=ÚÅÔRéQNÀ°¼äÞ·*4V»º*ø0øk’Ý!~6è=¡°ñ¶´£ÛXƳì%„¿Ô—þ ›š0Ïendstream +endobj +1435 0 obj << +/Type /Page +/Contents 1436 0 R +/Resources 1434 0 R +/MediaBox [0 0 612 792] +/Parent 1364 0 R +/Annots [ 1440 0 R 1441 0 R ] +>> endobj +1440 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [253.929 547.556 294.195 558.404] +/Subtype /Link +/A << /S /GoTo /D (classInstrmnt_a2) >> +>> endobj +1441 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 506.275 237.253 515.186] +/Subtype /Link +/A << /S /GoTo /D (Drummer_8h-source) >> +>> endobj +1437 0 obj << +/D [1435 0 R /XYZ 160.667 686.127 null] +>> endobj +1438 0 obj << +/D [1435 0 R /XYZ 160.667 667.729 null] +>> endobj +1432 0 obj << +/D [1435 0 R /XYZ 160.667 651.332 null] +>> endobj +1439 0 obj << +/D [1435 0 R /XYZ 160.667 651.332 null] +>> endobj +1434 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F35 1011 0 R /F29 818 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1447 0 obj << +/Length 1492 +/Filter /FlateDecode +>> +stream +xÚÅX[oÔF~ß_a©/¶`‡¹zƨTjC¨EÐd_*àÁxıÃÚýó=çÌØ»çRÚZig|m‘ â½:ï:?=,“¹ˆË¬)qÖÐb$%ïÏ#JfR3ðTHœí/f"H4çLeY4W,såù8{óŽGËžÏð‹>Áœ3«ÎfÚ&… ÏõìhöçÈŠGsiI‹Q- Í”Nwõ Q5!$èŠ ¯˜5ñ¼Ýà¿ó„CÒéxPnåU,H·GÏܶÕðp¶Å3Ž/`¿RqY$ÒÆ§°OP:.ßr¡ÈrÖ†9ží€E°Ì˜m°¼^¿¯Q…ÂÃáeÙTx¼ì‚õÆDÂÖA1$Àvp¶X'rtF"‡å-7üå_WMafàzg„H¤ìÚøoF…Ý4æŸýñ +åù5¨_xÖ-úô„œÜõOË:Ç— ªðš)9àC16WšÁ lÌØYîmâ)µàr#ã¶éúÕºèÛÕCOíóUs‚s÷R8‡³ÃÁ@ë=mYvU‚xF%þ-=å€Ä:¿ô”špØœô8"W6uÙ\BšS)Ö¹Óæ†s˜)>qàß +q£ÿ®7LÊ4ÄÌÍv­‚I¾FÈÛu‚µÕÒKVÔe¾ºKHÈ•Âê ¥ .‡‰Qñèšô^â¼ †Öèbt0;ì©ýSÕô>=4y t}Þ—w*™ý%»ðIYsL.—[q´Ih\1´„Ìý€ØÚÂìmA ÀbÜòËQÙáR +À‡°©š!€ÊÙŸ@Pw'@>ñy=zö›9dëSô/1p?ß–êâc®9KÅ÷÷ÇYõù@¿dÄ5*x&°ÓÔ:¤&¢µÇ8J0üù:¬÷´óW‹«‹M˜ù8 y –×å…‡HçŸÉ…tlÈ“xʺÙ£a9z”ûç'a[‚­ð9‡É°¶mêK¤=¤V › лZÀÊ?ŒÒ*ŸÄË®ÛN¿íÀ¿&ßW›Bûí`„C ´[ÿ$îë bÞõ¯Ö¡ mçSßÍQ¹ì|¢œâ(e ñNØdXDq'®©ŠåÈ3D|Kôþ†÷Ã{Z¸.¿¡å½½î'8¿Þî}Eµöí­’¥–ŽÿÔQ¡ÛÏ 7¥”9q¥@_ž+ƒ¯Û!o_ññ®©¡ù–¡¥`{ú#<ºlÀêT²ªɈ\ÁSúdaðŠË‹ª÷¯°ÿÀ{øÉ{dpé_¾NTê¿­åùq™Ëþ1otñáw*a¸kd#¸Y±Èñ„ dÝÒ¶Ò÷+2ãÌÄ’ZEøòa6CÑ2Üàg¦T¤Cb4aÝ–e„dšx¡ ©ÿÉ2<Ëü-9Ž\¾ûÓÂlŒendstream +endobj +1446 0 obj << +/Type /Page +/Contents 1447 0 R +/Resources 1445 0 R +/MediaBox [0 0 612 792] +/Parent 1467 0 R +/Annots [ 1452 0 R 1454 0 R 1456 0 R 1458 0 R 1460 0 R 1462 0 R 1464 0 R 1466 0 R ] +>> endobj +1444 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 816] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 1468 0 R >> +/Font << /R9 1469 0 R >> +>> +/Length 1470 0 R +/Filter /FlateDecode +>> +stream +xœ•QËN1 ¼û+|&vœÄ¹"õJ÷V*Ëc…*ø}œívÛUËå{2¶gœ@Œ¡ùîG8Àã³â˧§ÓÕøÔùcEΑ$'ìöp,c4!Q­XI4Æn„»M?|Þwo°épëÄWà˜)$ÅŸÖ{.œ§² +q1OFPK…L<þXb)ª#'æ5Òø(—B)¹¡¦d„ÿ—V&‚9VÒ”'3»ï÷ÅËŸê“¶À.<œ³›– Ý×ȹj€˜Ì¨Z£äbŽ~²Qð ÜZ¥¤–íÌ©cÊÑîné_qæô¬¡•¬ g”  Õj¡š$â__åYwÙ?À~ëO|Eendstream +endobj +1468 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +1469 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +1470 0 obj +263 +endobj +1452 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 449.264 154.618 461.219] +/Subtype /Link +/A << /S /GoTo /D (classEcho_a0) >> +>> endobj +1454 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 408.654 162.367 420.609] +/Subtype /Link +/A << /S /GoTo /D (classEcho_a1) >> +>> endobj +1456 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 368.044 175.263 380] +/Subtype /Link +/A << /S /GoTo /D (classEcho_a2) >> +>> endobj +1458 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 327.434 191.757 339.39] +/Subtype /Link +/A << /S /GoTo /D (classEcho_a3) >> +>> endobj +1460 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 286.825 209.468 298.78] +/Subtype /Link +/A << /S /GoTo /D (classEcho_a4) >> +>> endobj +1462 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 235.256 223.432 247.211] +/Subtype /Link +/A << /S /GoTo /D (classEcho_a5) >> +>> endobj +1464 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 194.646 206.773 206.601] +/Subtype /Link +/A << /S /GoTo /D (classEcho_a6) >> +>> endobj +1466 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [193.71 154.036 211.754 165.991] +/Subtype /Link +/A << /S /GoTo /D (classEcho_a7) >> +>> endobj +1448 0 obj << +/D [1446 0 R /XYZ 106.869 686.127 null] +>> endobj +1449 0 obj << +/D [1446 0 R /XYZ 106.869 667.729 null] +>> endobj +94 0 obj << +/D [1446 0 R /XYZ 106.869 667.729 null] +>> endobj +1450 0 obj << +/D [1446 0 R /XYZ 106.869 469.569 null] +>> endobj +1451 0 obj << +/D [1446 0 R /XYZ 106.869 469.569 null] +>> endobj +1453 0 obj << +/D [1446 0 R /XYZ 106.869 428.959 null] +>> endobj +1455 0 obj << +/D [1446 0 R /XYZ 106.869 388.349 null] +>> endobj +1457 0 obj << +/D [1446 0 R /XYZ 106.869 347.739 null] +>> endobj +1459 0 obj << +/D [1446 0 R /XYZ 106.869 307.129 null] +>> endobj +1461 0 obj << +/D [1446 0 R /XYZ 106.869 255.561 null] +>> endobj +1463 0 obj << +/D [1446 0 R /XYZ 106.869 214.951 null] +>> endobj +1465 0 obj << +/D [1446 0 R /XYZ 106.869 174.341 null] +>> endobj +1445 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F19 460 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im16 1444 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1473 0 obj << +/Length 675 +/Filter /FlateDecode +>> +stream +xÚ¥TKSÛ0¾ûWè(XX/Ûê±¼fàBß(ãâiÓÄ…aúç»aÂÐ['3Ê®´ûi÷ÛOÖ¢„Ÿ&(š jíD¿É¾¶ÙÉ…±"¨PYÑ>P`»¼•Îåwí•°®TZÛ´¹h¯óÂ6NžæZ®»ý=+ÏFø7²ÿ½‰ÛŒ©›†¼ÐrÜ"FvÞf:P”ʆFV…Æãý¿²Û»R,³R\e|ö6Ü‚Ød®öÊè&ùël‘}›¡´ÕÊ—•(LMµÏÍ¡µ +ÞèFAÁº‚Ei¨L'Ï"–8ÁV7¬aKh¢öò ·ã¾ß Ox8Œ°P'Í!M…qª2ßy±VÆ>7µ\A +RbŒ?Jm ±Ÿx§gÞ "€t­*ã¨] {Fê1dÝï9yƒþ ’ œ›FN)¢ûPȘ¼ƒ*þuí="¼rì Úq·ƒ ÒÎw®–ìS@„óñ'»Ý–l_v979è"å,`›Úéú—óhÇóõl܇)Kó±TŸŠ°d’ u‡PÀC í:A=`ÈŽíi5ä3L.Žþ\+_².…<ÆmÜuS\¾CíÆ Ÿ¡.ÞÊ ;Öë»z¶|;šÂaõÀƒ›å£½²Î‚†¼òg)õ'™±Á>'iª¨æÕ§·5¿ïµ2¦ùß÷e• €–^Óü¾œ¨T¨Ýáó¢¡8ëåâ>ÈŽD,ŠÙIm®ËŠž„Lj¹&>xrdŸ¡sÄÎ=½²}“Û +4‰3H;ßUJAЊôˆ.è± A¢sIšã T¤.k©R}‡ðψ;RN<&±™PÂ'(^jê­ç¡€üæ¶ <;ü˜UºzžOqôh£aÙÀß `ïò@Ýh˜·þ˜DIŠendstream +endobj +1472 0 obj << +/Type /Page +/Contents 1473 0 R +/Resources 1471 0 R +/MediaBox [0 0 612 792] +/Parent 1467 0 R +/Annots [ 1476 0 R ] +>> endobj +1476 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 554.243 216.718 563.155] +/Subtype /Link +/A << /S /GoTo /D (Echo_8h-source) >> +>> endobj +1474 0 obj << +/D [1472 0 R /XYZ 160.667 686.127 null] +>> endobj +1475 0 obj << +/D [1472 0 R /XYZ 160.667 667.729 null] +>> endobj +1471 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1481 0 obj << +/Length 1213 +/Filter /FlateDecode +>> +stream +xÚÅWmoÛ6þî_!`_$tbx|É¢°¥ÉÐvE»Ä(P´ý ØJbÔ–V[NìÏdÇŠQÉV°(òt¼ç¹‡äŽ?H€& +›Ö1*™,F¿GG§B&޹B&ãKo9ž~H“åÒªô$ƒ´Î¤Ho诚g9¤Íß8i,ŽÑÂw—+l­¨S¦gÔQ]V˪žèTéìÓøåèd<‚SΙt.É%sVSD_F>ñd:âÉËÙä+¶9´ZŒ”ÑL€ïóÑùè¯ÞOra<Ž˜H@1©Š»È0H B‚†ÁÎÙ 3E@Ö£2:=«Öeæ- àÒÑ©ÝæQÎOw>~…ŸJ™Vu&,΄8NC0tQ®|K¥š ¯Xð*Ü·`X!´÷ûÓ¬žÌ×Ó8;ÀÆNÆŒhŸ ýf0¶0|RßP0»úÑ‚IÞùùu€2'9F¢RÞìE}ÝsƒY[Öø˜x-„Sê.¯–å"`¿l–¡t¶C‘ ¾ž>ÝÕ (ÍL!pòB0e½˜“/¤ .µõFÛm/¬P|ÇÑ‹˜äyƒJ6*Ê{ÏJ2«àŽ˜€9­·Åôv}1'@“ ×U{Ý`“§ÓU$TmZ”(Á„•þû•¸Ë,5DŸ L¸H 1Ñi´BšgLšÙ_!x”XôäÅ´žcV‡©ŸW—åzÞ¢“Â`†´H›zÕ.ד¶Y²að¹@²À'Òî°èof¤‚v]·%æ›hø‘K>ðDBµ{yèåq0 ¹Ð¸Ë@dAx¿Ç›å4L«CßM€y û¦¡ãsè;ßÔ¡—àtX°û€œ†xÎ+ŸO›¶å2Ó2½êÞ øà?HìA¸Ð¡ÜdjËú`¹~ 4hïǪjÏÊvKe¯ß¶"N³XÚ æÌ·1*t÷a4bÃîä÷;<˜Oÿ|Cþ–áÁ;a•áɸ7+³‡Éëîôp›/$0®ã\KB>LŽfÖu&÷±nÐ-³±>&íDýá!÷$k¸¯JË +#Ê¿û~þdz…—ú¾`¹…5Ö£æÀ1°Ý!~A›wI»XE­iXMžex´>F¿É­ý*ÛYSß›>,™Œ~äýÀW5”U, ËeX¼{*±ÈÓæG&4„‰á_ùĶ{2K%+ÜþÔêãŽ(}7å|í]ÿo;rÌÀ;Š–õö®†ïÃu…õ^~\ÞÑ µ—~ÉŒ»ÿœ¬—žuOrY/ëéÝ”„ìî¤$m3\™ 9S˜š3XôdâÃKô¶÷å,0Ãíƒ*ŠYW6Ç!“уk÷ÐõÖ¾2oêP»¬‚)\cí æ7´p׋et_X«„ÎMµ­†1­%uz~‹4MkÉ8[Q7)x‘R©­éëÁW³6 Íêðåñ“'¡qAnÃàÛLiE .cÏ Ïcr†.?‡W¼·ä~éÐËþrK_õnpå§,†8)i†rÝøÏªŸ‰ÇD8Î4î + 1Ö$ÞÆôq.˜ÆÍϰŠN:Úm1X.{_D!™!½4—þGpzrÑåî_FZ®aendstream +endobj +1480 0 obj << +/Type /Page +/Contents 1481 0 R +/Resources 1479 0 R +/MediaBox [0 0 612 792] +/Parent 1467 0 R +/Annots [ 1485 0 R 1487 0 R 1489 0 R 1491 0 R 1493 0 R 1495 0 R 1497 0 R 1499 0 R 1501 0 R ] +>> endobj +1478 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 821] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 1502 0 R >> +/Font << /R9 1503 0 R >> +>> +/Length 1504 0 R +/Filter /FlateDecode +>> +stream +xœ­‘ÁNÃ0 †ïy +ƒ‰ãØNŽ ö[ûÓ†`+0@ðú¤íRZÁ å`åÿÿøs¾_çºíÜÉ]o"Ü¿¹Ð`Õ²íà¶-f†œPÙh÷n¿ì.ÛG·ja]Â.¤L >]Š‘8$C5ˆ ‹CS„×kþ6¥ˆ" ú2L?Dó~˜ø•¨b‚,ÿA¤„Ñ ÄP8ò@¼¹k6?þwX$ôYrÿâK&3¡tã¶ŒÉXºKr!œýzɯBñ50† ¢¢¤ lŠFseÙc5*Å4©ú=¤ +ß%a¦d¦,{TH}…nÉì!k÷ßq…™endstream +endobj +1502 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +1503 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +1504 0 obj +269 +endobj +1485 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 425.671 172.606 437.626] +/Subtype /Link +/A << /S /GoTo /D (classEnvelope_a0) >> +>> endobj +1487 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [163.584 386.999 212.761 398.954] +/Subtype /Link +/A << /S /GoTo /D (classEnvelope_a1) >> +>> endobj +1489 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.17 348.327 215.114 360.283] +/Subtype /Link +/A << /S /GoTo /D (classEnvelope_a2) >> +>> endobj +1491 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.17 309.656 215.39 321.611] +/Subtype /Link +/A << /S /GoTo /D (classEnvelope_a3) >> +>> endobj +1493 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 270.984 187.605 282.939] +/Subtype /Link +/A << /S /GoTo /D (classEnvelope_a4) >> +>> endobj +1495 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 232.312 189.681 244.267] +/Subtype /Link +/A << /S /GoTo /D (classEnvelope_a5) >> +>> endobj +1497 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.17 193.64 227.927 205.595] +/Subtype /Link +/A << /S /GoTo /D (classEnvelope_a6) >> +>> endobj +1499 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.17 154.968 223.748 166.923] +/Subtype /Link +/A << /S /GoTo /D (classEnvelope_a7) >> +>> endobj +1501 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [178.805 116.296 216.774 128.252] +/Subtype /Link +/A << /S /GoTo /D (classEnvelope_a8) >> +>> endobj +1482 0 obj << +/D [1480 0 R /XYZ 106.869 686.127 null] +>> endobj +836 0 obj << +/D [1480 0 R /XYZ 106.869 667.729 null] +>> endobj +98 0 obj << +/D [1480 0 R /XYZ 106.869 667.729 null] +>> endobj +1483 0 obj << +/D [1480 0 R /XYZ 106.869 445.007 null] +>> endobj +1484 0 obj << +/D [1480 0 R /XYZ 106.869 445.007 null] +>> endobj +1486 0 obj << +/D [1480 0 R /XYZ 106.869 406.335 null] +>> endobj +1488 0 obj << +/D [1480 0 R /XYZ 106.869 367.663 null] +>> endobj +1490 0 obj << +/D [1480 0 R /XYZ 106.869 328.992 null] +>> endobj +1492 0 obj << +/D [1480 0 R /XYZ 106.869 290.32 null] +>> endobj +1494 0 obj << +/D [1480 0 R /XYZ 106.869 251.648 null] +>> endobj +1496 0 obj << +/D [1480 0 R /XYZ 106.869 212.976 null] +>> endobj +1498 0 obj << +/D [1480 0 R /XYZ 106.869 174.304 null] +>> endobj +1500 0 obj << +/D [1480 0 R /XYZ 106.869 135.632 null] +>> endobj +1479 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F19 460 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im17 1478 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1507 0 obj << +/Length 1399 +/Filter /FlateDecode +>> +stream +xÚÅWIoÛF¾ëWðH"ædV.zh8hÜÀn¬K‘æ@K´DX"]‘’áôÏ÷-CJ +å$mÄYÞÌ[¾ï½™Q„Ÿ +t.œËƒ$ËEªl0[O~žN^^hä"OL0½#ÁéüCh“èãôm`¬J?x3½Œb“Ùða¶Jnkh·8\-°IL™£ïiXÕ¸¨ã@Œ6¸©>•ÏÐY%N(û5>J“‘"ÓîØ`Ðuƒ|ût¢JY#Rh±*CCåãtD€ÕÛ®åd¨N¨Í¤°6©=Q­py/x2›$X”ºTÒÆäŠ•Â`9 ä±ß¿„ÁAÙ]m!nݸˆä4:kê¶;~´Ì¾¥– §Õ°‰è±.hÖ ]‰…mþLaó0h $±ãrš ›‚ S)ß`+¡à/ð(¥]øŠ‚‘¢Z!ûQM +ãD¥v¶©p²jö„=Š ÖOé2¾j€Ì×]rxJÊæ’Ž}b%Ä÷¶h}k¡Æ5-ù;ªT$šÃ6]VœœF’ôÍŠ³"Û׬†ø­5‘>œÐƒ.zΘZ”u¹)ÐQ`=­\r\r÷Ќ⡸¶ÕasÇßMAÚªz18‚x$\RấCë´KèÚ @+ÇžfvŒž\Pèõ?­kÑjÌÎ +²ÊVÌ=½GD-lÒ§(\NØþ~sœJD’&C"ÇVeá/+)V}AôFoJêqÄšzÎÓ䇗8ŽöØ(§»é ñ}ùtu’MpÕM³ÔKõ)ï2¨?Éñ>‰qá \òr¸7Ç}RÀ‚5Å»%c‹EÙž1M¸ ++ÿÂ__"ò›JH–ijþÞ{ž®¨«ÉHïþÊç •§ÞƒŒ²×$»Ajø‘÷‚í8owLÂ{)Ð`¯üMq°ä:‚Û½à6&äŒ+KÏüf8â¼÷P1·bÞYK©-u>K–›³1ütÀ̃§Cïî]ŸB“%¦CûYšóÜcT*üd_o'a÷;nšõš¥/¤jµjЄÇCü05†êðÃøf«¡r9 “ý¶3ê5xšûÚA¯ Tî“Q,ÇçW +7x>@ýÍE¥ÿöl2Fh }Ïåá hƒöð,#”àòÞ<Á»Îá ÃÉÙâ0žoJ&Do‡ÿàÉeÕñ½ÿjnŸ¿ÀÎ îÜâFOܾŽL²ç(Ž G­ç(Ì5÷Ü-h·9wÞ 7´)ªdJU휸ý÷EúgÄ>Kxù>Áfþ¤s{·c-œ´øFMTÒCé¼ÜAxTEÚË@tQ ¢ŒºÜ__v*Ô=†Á»©endstream +endobj +1506 0 obj << +/Type /Page +/Contents 1507 0 R +/Resources 1505 0 R +/MediaBox [0 0 612 792] +/Parent 1467 0 R +/Annots [ 1510 0 R 1512 0 R 1514 0 R 1516 0 R ] +>> endobj +1510 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [274.934 630.369 292.977 642.324] +/Subtype /Link +/A << /S /GoTo /D (classEnvelope_a9) >> +>> endobj +1512 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [279.215 591.514 297.259 603.47] +/Subtype /Link +/A << /S /GoTo /D (classEnvelope_a10) >> +>> endobj +1514 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 552.66 277.231 564.615] +/Subtype /Link +/A << /S /GoTo /D (classEnvelope_a11) >> +>> endobj +1516 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 367.317 234.707 378.165] +/Subtype /Link +/A << /S /GoTo /D (Envelope_8h-source) >> +>> endobj +1508 0 obj << +/D [1506 0 R /XYZ 160.667 686.127 null] +>> endobj +1509 0 obj << +/D [1506 0 R /XYZ 160.667 649.796 null] +>> endobj +1511 0 obj << +/D [1506 0 R /XYZ 160.667 610.941 null] +>> endobj +1513 0 obj << +/D [1506 0 R /XYZ 160.667 572.087 null] +>> endobj +1515 0 obj << +/D [1506 0 R /XYZ 160.667 516.303 null] +>> endobj +1505 0 obj << +/Font << /F23 479 0 R /F31 829 0 R /F19 460 0 R /F14 825 0 R /F8 483 0 R /F22 474 0 R /F32 881 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1521 0 obj << +/Length 1340 +/Filter /FlateDecode +>> +stream +xÚÕXÛnÛF}×Wé ‰„ë½p/ Š­]Iê&õR$yXKtD„"“röç;³»¤ÈH®'qPɽ gΙ9»KQø±ˆQM¸2‘29Ñ,‹ëÙ/óÙÁ1QNr%¢ù…9_¾Š3ÂL’ +“ÅÇ ‹Ë$eqÕ—Ø$âÃʶ­¿}Y\`ôÀ_½(’7ó§Q¦8‘Jö¦46Î~ÏXp$¥Däy” +’‰n¼Ÿ½zC£åŒFOgØg¢pO ƒQëY¦%áÌ„çjv6ûc0E£”kçü XFD¦¦á€cB*+xôáhÂCeáÏ¥%…}ÛˆŽÍ"|e–;Ãgóg0Gˆø5eY2€ ‡E¼žOL0M—ÎÆe½¨6Ëð&ƶã2M¨!†wíh¢Áß AÁ»ÉjFLÖ[ùi'ž4WD[Þ¥ÌzR¯P ™-;[ÃÅ…T`xY¼ÄfûöÒ®}¸MˆÛå ºòøñ§¼»°á%Ô [Ñ{`Tç¸ëß»”ØÎr OÖG MøÏ1œMøg$—rÌÿ‹Í9R^.<Á§E·jà–ÆË6à•maÒGËÊÅMrõnx÷໌ò€…„Ú®nâ¦\Â#ó&‹ Luù ™Êt°dÄg騸°›ªJà’ÇMÝv—›EçÆÆKl-ðÏ/m}Ÿõ—¿·äI7iã®Ë"Xø«ŸÛ¶i·òc6oW¾ófr…“Ãdž”ƒÓBÁUewHIå*ë„çq‡ :®ªsö(Iµ0ñ)Üþùi1¦ˆd:J%ƨ›ÕƒƒÈä{µ#ô ™cveðø·çèÔÏ á|ŠŒ©û|M©ØÁ ƒw°0àürŽkÏ ¦\=•=W.ü.q\ t\†V‡XmCëé.,J!e_;wÄÜ# 6uËE*xC± BáBŸÃÊÄâ„x,ÊÂCÑÞ¶’ž_ úåÒ¹Á<·K7äÿò?Jìê\„rèì»"׸0Æ“Ñî–Sð³ko,}»²¹*Ñýnc«]ƒ‚“ŒêkAw,áò`¾P¡R.c#`qùOÉY=v_K+z‡Â:ZväðЉpß.«A,/{µ +ŸŒ+Á:[ÛÊi;ÛõÌ7!V…ŸáR—Û¯2h[Ü:–ºq x©èK‡™ž¿A"pª×P ©Ä™H|JðŽÁƈìûê§ÈÁlöyú9dªmˆ{Šˆ½ ¦aü›kæ r’P#'*w> êê&xú²Ÿ+™0˜08ŒJå¬è& Þ«ÅTë‚Î9ào¡uw*û¶è~߬·]3`lp[Ly|Ø—ò°åpÚ°6öþ6„Þ>߯áH%F²½ÄÖ›õdsh·ûÊ{'ø(Äk󺬧…ͱl{†÷í +á4_8Á¨ÿÅw¯Y¦ ¡¹ÜËírHfíð»žÜi6}“ ‹c+pm=íî ÙØ°èö|ï)\`“ÓžU}¯¬º#n7œOPʺ§d*/°ç¥x a‚ðìK?gø#a…Ž´$x›š‘¿sÜŠdBÆgë.°5qЖ-6c Œª¹ÿaü¬ì|Ô•›yøð¡¿9G}ç‹D(ÿ9ç2´¼$þŠ© +}Í;ÿhÝŽiéNl/ÔƒFuL‚‹ ‹o¸BÓ›V> endobj +1518 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 125] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 1535 0 R >> +/Font << /R9 1536 0 R >> +>> +/Length 1537 0 R +/Filter /FlateDecode +>> +stream +xœ­•MÓ0†ïù>‡Á3öøãÈ +8!AiO¬ö°ÚÍ¢BCÙ²¨âß3NâÄΖRÔCÔw&~Æó ¨túÏ»®yl^¶êë¯æQaoÊ»N]íÄEÖèÔî¡^CE&€#RÞgÔ®k^¼ßžÚÓËÝ·æÝNmÄußðŒF"bðQy-hmÛ–œBÏ åyj›íF` bd…ˆ€û¶Oß'|&¢fAºˆÒÁ‘²48¯ö›ß·÷T+#4Í´ +NySáÞ¶‡Û?-²¨ÃšLÀP}Å?ÚOÇC;וC„À+RÉ —Ô/íéø¬œ+R£c¹¢¦‹ÖØà¤ëa  òvw>V)66zp~Eª%²vI­îjÑpkBÁxö¨dGÇaGOÝöÜþ,&F¯@ò\`S’úQy3qœaˆÒckÐP–_ZKÚ‡yFÈ#„ð/ZŸÇi/²Ö*ˆM¶d7ü‹ŽÀY£âX £=/´Éž…dG“NBr"‹ Ùà øR©ÏxxÕ\+iŽà© ø~ðpHÀ34ïí š…êœÜ0ÆZ(õ%)¥·&ŽµÚƒ‘•5z± ¿ö!Ñï%¯ëøh#IK­gïÜÓå™Y¯àe(#)ÒÖ§p]¿êKåÙA‡DAZ¢ˆ6+—¢Í¶9Ú¬”Ñ.µä%CL\‡„V¾…•²> +endobj +1536 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +1537 0 obj +620 +endobj +1525 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 410.59 157.413 422.545] +/Subtype /Link +/A << /S /GoTo /D (classFilter_a0) >> +>> endobj +1526 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 371.964 157.413 383.919] +/Subtype /Link +/A << /S /GoTo /D (classFilter_a1) >> +>> endobj +1528 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [163.584 321.382 197.568 333.338] +/Subtype /Link +/A << /S /GoTo /D (classFilter_a2) >> +>> endobj +1530 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 282.756 175.263 294.711] +/Subtype /Link +/A << /S /GoTo /D (classFilter_a3) >> +>> endobj +1531 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [154.6 244.13 218.693 256.085] +/Subtype /Link +/A << /S /GoTo /D (classFilter_a4) >> +>> endobj +1532 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 193.549 214.366 205.504] +/Subtype /Link +/A << /S /GoTo /D (classFilter_a5) >> +>> endobj +1533 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 154.923 223.886 166.878] +/Subtype /Link +/A << /S /GoTo /D (classFilter_a6) >> +>> endobj +1534 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.17 116.297 220.496 128.252] +/Subtype /Link +/A << /S /GoTo /D (classFilter_a7) >> +>> endobj +1522 0 obj << +/D [1520 0 R /XYZ 106.869 686.127 null] +>> endobj +1016 0 obj << +/D [1520 0 R /XYZ 106.869 667.729 null] +>> endobj +102 0 obj << +/D [1520 0 R /XYZ 106.869 667.729 null] +>> endobj +1523 0 obj << +/D [1520 0 R /XYZ 106.869 429.903 null] +>> endobj +1524 0 obj << +/D [1520 0 R /XYZ 106.869 429.903 null] +>> endobj +1527 0 obj << +/D [1520 0 R /XYZ 106.869 340.695 null] +>> endobj +1529 0 obj << +/D [1520 0 R /XYZ 106.869 302.069 null] +>> endobj +1519 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im18 1518 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1544 0 obj << +/Length 2275 +/Filter /FlateDecode +>> +stream +xÚÅY[oÛF~ׯÐÓ‚Bª)çF ìC6­ƒ6-’õ²pý@I´MD"’²ëìŸßs™¡(“YgÑM +âÜxæ\¾s£å<†?9W™°6›'.©4óÍ~öÕìû ¥ç™È=_ÝÐÁÕö*2nq½úe®M,¤Ô~ñrõf±ÔÎD¯2Úåm‹3ýXÃSE›ã¾¨0èò®\,eTWHcöÓj&=ËXèÌÍ—ZdÎâýgW×ñ|;‹ç¿ÌxïÆpg–Í÷3“Z¡¤óóÝìröÏž”Lc"²T)ñ„Ñrî`! +sYtÀaâ¢î®ÀAýK³C»¢á•Û¼¬òûý¨¦×ÇR!uO+œ‘D^Nù¤;äßw_‚~šî˜ÃZëè7˜þë©.´FÛžð³ÊP n6© +¿Ó«ÀÍyñëÛ…rÑËo…L™è¶è^ƒÌ8Q ’ïñD]na,™ïM]µK:T+]eæK™—ZºàýÂê¨ ·z¢ð nÑN³°***o2DG/þU†X²þ–FW$ßÞàHÝÛ#pÖ1“_Ýü6Zo„ ¾Pï°t[€}¶|²>v‡cÇãû|w,ž5ŒúZ†I¿½aºrƒKNfùmÄcš +;&ým¹kó=Ú¶+'cpH™ ¥¤G‡!R?W½IëÊ#i)†_êjÿ†LÜßùéB•G +{5à̓­Æ½ÂE-|ýk Heî3ržò_àÛ#1µ±ÎüÙßãXäƒLf•?pJ7 >§Dœ}cìÅJE,ÿ›T®(®” ºcÓw‘ØFÇ +Ã.—·8¤èµEÙÓr¼Ô±"F.ËOŸEb…4籑ÑÏBd§³€@k’s&þ%‚ìS1¦m´°Y€bðžë!ãØuL¸Æ=­6`%'¿AC±Úû mð“¢ðGŽ&‹ª#^±&'ó$êÿô©ƒCÁ±k©p[&ÁSB™dñYVcÁ¥*“#ÁÇ£†²€^ïÄJáû™µ¤n(ÖÀÛÁלH|¬1À‘ðãü@&“RÙèGÎM°’—;46ê"…u +?í¦)¸YR Á)¦x ¥Êެðµ7!HK¼ÓÇ(L›² T%–ñe™ŠD1{«»’a§;äi¹?ì÷ô 0Ì¢Îoçü¸-ª¢O¥IÛ5h 'Žš‚7îPðç4ºÃ(‡ÈΰµX§‘?w N@q>#oM‘wÅÙÍå–Ø Ry;€TMŽt‹Ç¥d˜ÈØc!ȵ–¿I,–F'ÑÏl:ɼÁàù©6]Yû… o‹ð 8©¶A?¬™Ý#Ÿª¾ù$LÚ#O7 a|¥ Žo µk>whh ôï½€´L©Žü}JâÖsDšG“¢°N“P7Qø º»–׈½“¦'$"È{ë¾üö~ =ƒ=‹G*ŽÕTLC/€Ç¥Ÿò¥ß+ªéZ²>}ÚPîo¸üÛYø™C´‹±&_}-Iv¯½ŸÓTŒÐG@<™²qtQöÅ9&@þ0XZêÌPÿUòÇMBì j'âØúQ­Ç€’Ò4DÔ+˜ÜÎI(±A{Pð¤ÂB%ýl[§…Ñéd[‡;nÐÖM}â½øÄ}‹2½\dvªµ3`Û¾Ë9¥”¡ìÐÄ¡+XƒumƱƒ9·"ç—'Z8›k¢ä84­\°\Ú«6ŸP­‚®Ãö9™Acìäy¸«vc€«ìýI}§ÿ};gžÑw€Qþ%Ú†¤nNÅTè’Ùm)ƒ3rè"o}¤ÚÕùö,•)u߬SU}¤†‘"Äõ¸óY)ÿ°䯧-ÈÓ* 9¯¦RøKÈv1pu~ÂÑàåFùOÌyÅ“¾ù0˜Þ07„<Œ7<,ʪ‘©Q ¸>QO¼{ B‰JV©§(h!{+ ŸÈl¨Ü0K"W»"48ëî‚`ÁmŒå€H¢ÜðÕ¸êu°) \õŽpÞ÷ +Gê;gu€o;¼Í¸C@+?­ó>±Âj1þl”d2_&˜þìÿy´ +êÚ“²‡™y"2üÎpò0*UŒ¶Ñå#„‹áoJ¨E_¯dœPî°ø )ûMÙñ–A4~õ'/x²FB<~·€V¹O¾¸ò^øWèk)%_œæDm˓ׄˆÞÀô+ã”Ûnàs“#ù{¤‹( C˜Êba±ê½¤l6ïÝö$öR ü§Z"“ðÕÔúsõ@ˆ4DKgìà e¼ËþR9¥Â`Âÿ‚þ aendstream +endobj +1543 0 obj << +/Type /Page +/Contents 1544 0 R +/Resources 1542 0 R +/MediaBox [0 0 612 792] +/Parent 1467 0 R +/Annots [ 1547 0 R 1549 0 R 1551 0 R 1553 0 R 1557 0 R ] +>> endobj +1547 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [274.934 628.438 311.311 640.393] +/Subtype /Link +/A << /S /GoTo /D (classFilter_a8) >> +>> endobj +1549 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [274.934 585.722 309.637 597.677] +/Subtype /Link +/A << /S /GoTo /D (classFilter_a9) >> +>> endobj +1551 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [274.934 543.005 292.977 554.961] +/Subtype /Link +/A << /S /GoTo /D (classFilter_a10) >> +>> endobj +1553 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [279.215 500.289 297.259 512.245] +/Subtype /Link +/A << /S /GoTo /D (classFilter_a11) >> +>> endobj +1557 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [176.942 128.252 217.069 140.207] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +1545 0 obj << +/D [1543 0 R /XYZ 160.667 686.127 null] +>> endobj +1546 0 obj << +/D [1543 0 R /XYZ 160.667 649.796 null] +>> endobj +1548 0 obj << +/D [1543 0 R /XYZ 160.667 607.08 null] +>> endobj +1550 0 obj << +/D [1543 0 R /XYZ 160.667 564.364 null] +>> endobj +1552 0 obj << +/D [1543 0 R /XYZ 160.667 521.647 null] +>> endobj +1554 0 obj << +/D [1543 0 R /XYZ 160.667 446.886 null] +>> endobj +1555 0 obj << +/D [1543 0 R /XYZ 160.667 228.778 null] +>> endobj +1538 0 obj << +/D [1543 0 R /XYZ 160.667 203.832 null] +>> endobj +1556 0 obj << +/D [1543 0 R /XYZ 160.667 203.832 null] +>> endobj +1542 0 obj << +/Font << /F23 479 0 R /F31 829 0 R /F14 825 0 R /F8 483 0 R /F19 460 0 R /F22 474 0 R /F32 881 0 R /F35 1011 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1561 0 obj << +/Length 2023 +/Filter /FlateDecode +>> +stream +xÚÍX[oÛÆ~ׯÐ#‰VÛ½’K¿¥iR´ç¤M½´Žh‰Ž‰Hd+QœþùÎe—¤$Ú©‘- X{™ë7³Ts j®d.tæç™/D®ì|µ}»œ}óR›y!ŠÌÌ—7D¹\_&V(Ÿ.Œ·ÉËT%uºPɦ«v¸d’ç›r¿çá›ê÷`þ5«*½Zþ8·™.s‘U‹³Ë™ +‚,¤0E1_Qx‡bü1»¼’óõLΜស„± +¨¶3›;¡•óÍìíì—ž•œ/tNÂ÷Úè¹R¢pîX4R‰0 ¯Ò6yU¡àÛÔèät!&Ï@áÂ&‡fÕÕ@Þ6¸è’ïZ¢Y¶¨(žlR˜w0+ñ_ݦ¸ŠžÚs¡­®è­*ð° +Åp2¹CZ2ð:]Xk’—õg`í‹‹}Õ=Ç›uR½“*[]Õà™nÏä邏uVYã´ôÂ(,Ñ\Ÿ öÊs¾¶®H^ýzê5m½¹êú¬ßŒ°&ŸôZØy4_þ,ú3êô,-\²d±!l{J«…õy '¥9×dµÂX?_ĘÒk0)h,Z5`É3“dFøl°&Bý ­p2F{SNØW Ó§Càö +´;3ñ"‡”VQÚ/4±ÿr+á½}ÔÄ^ÄÈ)ÿŽ]­°vð™SLâÇ.+2¡râÌåÛª³Œve7)f†üŽW"Ú󟌗§°Ðíá$¡ÊE¦ÙýÏ ¥­Î“·Ý‡Ài‡ÐÕîpÍ'«²á@T8)’îéZdù1ì#6Üð°ªi?ÄöÑ#çgpu¦OÒo¤°›¤âhÑÄø:fP¸¸_ïYªMµG¬»-ƒÖmSQ†:×7¼ÓÝV¼P^Ê+²ÛB+ Èk޲'¹O3ú ¡ 2ؤúã€ø¸áY×â¯I>qÁhså’nx™nåãiÛ&MÛñ.ÝqÌÝÆC…Ù,‰~°ÚQ ¤±h!‡rÅмfTRëcfPºiqg‹GJäZªbcü]#{——°/¯Äd)0ŠêâI)Д‚lT +€é±"ütØV»²#ÿÙœ ÀÃàŸA¹§€f&ÀòÖK(ÙE.ääûÊ>‡ý„;û§!JAJ:™Õö¢(¢1\¢§ž‚S¶Ç)²N³=N™L2NáæuLF\=Á)܇äžÀ¨‰Þ=‚HFä™ +2¥¿* +˜¡ì ž Ü3Íï(MuW·NhÈ›{>@²­‡Ž +ÜÖ Æí†rÇØÓP¯EFPÅiFg§4åm£Qü,„RˆŠc”ú‡:)°…î¤þv„ë;EòCM•†wÒ[L²/vD;^#°ÂAVžY”RXáþ$Xéøì‘î'º*‚2ßČ؇n€tn¬x)ЇýþÆÇ=nFHø‡0;ü¡ÕÆ$—¹?.ì}Œ—ɧÐ%‚•1áðzE½£÷æaO ´{ZEoåE(*}ÝÇ¥ÏÂð`øó“ˆ7Úa;"åñŠ:¬`vÞ±ÎDõÃNÌ”ì4ÿˆXW¯R¨[^Y•{ ¹pxdbs\”b·-ÇíW^ íW”CŒë"š{~¨ßšûIfÖÕMy ®1ìLy]Ã&C|½ ¸½P§’å–3\=ÿ„tc×pˆ]gÈÒð«Ä“0ÜNb8~Á9ú¾sqÁqB²û¾dOšƧ߭?å€)5ˆ•ýKíáUÞ­àœï©s¯§¿Ñ˜BxgÎTG¨p±D]ÞÕ»Bÿjâí +x¯ütcØ =bùkÌÞ—/S-à’N(Ï44 +#êm°Áú}ÓWt¨Ê¹gQ>\ƒó73PÕ ž>Ú%Xóxö°AVé%F¤"«ˆMxQlŽ`ü((1É]ê`7‡¢ÅD&²æüÔmAVnB÷Kï1‰È`½È-˜¶ÞÇ.GN•©7Uì—¨9Glªmø¨†"",Z) Àð÷Ûú4S‰b`ç–û¹©^#mÛ™¸áUýÆVni1Ki\FÛòåG„ÅvšWtÊfúm\OŠŸ`EöÊ* LÙÕm0äMì¬)RëÛV›²¯°G”aï}Õ`IG``µk·CëÅ ;6.úÐíé@Ž îy¥t;%á +²TågÙ‡ƒø;Ó!â!»nÏ0KåÐ%j Ÿ ŸÛ/üÍŸ´‡wŒ^{Rà=B/rŠ5Ð+ÝCKì0O¹jàG0Ò2U2£nÝá0Ìÿꎷ(*aùùW_ñàÜóæëÔdü!~VÞþ¥OÈÀòO± +-¼MñTÏFÉ<AÄU‰7Ü!ë–ŽU_SœéB +‡  Éù»P@M7h¼Ðôat!E¦²è7èF–tµÄ Mˆd`^¼Ëý©©æH÷NÚ‘endstream +endobj +1560 0 obj << +/Type /Page +/Contents 1561 0 R +/Resources 1559 0 R +/MediaBox [0 0 612 792] +/Parent 1579 0 R +/Annots [ 1565 0 R 1567 0 R 1569 0 R 1571 0 R 1572 0 R 1573 0 R 1574 0 R 1575 0 R 1576 0 R 1577 0 R 1578 0 R ] +>> endobj +1565 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [123.143 576.582 163.271 588.537] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +1567 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [122.464 468.022 162.591 478.87] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +1569 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [121.624 358.355 161.751 370.31] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +1571 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [189.537 220.216 225.154 231.064] +/Subtype /Link +/A << /S /GoTo /D (classBiQuad_a11) >> +>> endobj +1572 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [230.084 220.216 268.468 231.064] +/Subtype /Link +/A << /S /GoTo /D (classOnePole_a7) >> +>> endobj +1573 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [273.397 220.216 312.501 231.064] +/Subtype /Link +/A << /S /GoTo /D (classOneZero_a7) >> +>> endobj +1574 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [317.43 220.216 357.502 231.064] +/Subtype /Link +/A << /S /GoTo /D (classPoleZero_a8) >> +>> endobj +1575 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [362.432 220.216 402.199 231.064] +/Subtype /Link +/A << /S /GoTo /D (classTwoPole_a7) >> +>> endobj +1576 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [427.168 220.216 451.577 231.064] +/Subtype /Link +/A << /S /GoTo /D (classTwoZero_a7) >> +>> endobj +1577 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [105.873 210.198 127.265 218.998] +/Subtype /Link +/A << /S /GoTo /D (classTwoZero_a7) >> +>> endobj +1578 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 166.979 165.715 175.89] +/Subtype /Link +/A << /S /GoTo /D (Filter_8h-source) >> +>> endobj +1562 0 obj << +/D [1560 0 R /XYZ 106.869 686.127 null] +>> endobj +1563 0 obj << +/D [1560 0 R /XYZ 106.869 667.729 null] +>> endobj +1539 0 obj << +/D [1560 0 R /XYZ 106.869 651.332 null] +>> endobj +1564 0 obj << +/D [1560 0 R /XYZ 106.869 651.332 null] +>> endobj +1540 0 obj << +/D [1560 0 R /XYZ 194.347 556.159 null] +>> endobj +1566 0 obj << +/D [1560 0 R /XYZ 106.869 539.728 null] +>> endobj +1541 0 obj << +/D [1560 0 R /XYZ 290.154 447.045 null] +>> endobj +1568 0 obj << +/D [1560 0 R /XYZ 106.869 430.614 null] +>> endobj +1026 0 obj << +/D [1560 0 R /XYZ 403.867 325.977 null] +>> endobj +1570 0 obj << +/D [1560 0 R /XYZ 106.869 309.545 null] +>> endobj +1559 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F35 1011 0 R /F14 825 0 R /F8 483 0 R /F32 881 0 R /F29 818 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1589 0 obj << +/Length 1482 +/Filter /FlateDecode +>> +stream +xÚÅXYoÜ6~ß_! /b1êºvaÀçûf4³,¢ðÇ"^)‹(×Q,‹ªùäÍtòrŸ‹¨ E.¢é‰Û8}‰%M¾M"‘Q˜“GÓI*t¿MXܔÀ#¿ëàÉãj17m‚-m¤,îZÔ1y?°`@J‰(t” +Rh‰ç_L¾|£ÑlB£ƒ‰_»Î,Šh>É”$œé0n&G“?Vª˜`DÒ4'ÍïM[¼ÁË}½é <1+² ¥L‚Ž…E­"‹Ïap–p/‡º*¿iî¼’€‚xfÂ\…sèKââÅÖYL‘œû³~ªÛªYÌ‚IŒ­÷eŠP•…»þ¼«G•é°Œ—7älW‰ÈI¾Bú—{§#™Á"év}hϼÁY Ô¶láánÜ0Ãéò´/çþ¶']ï…}ô:XòêÕuް¬ ‚°,ç$×lt ºÜíÙ”‡ÆWÃÄËsVDï:`K´&LºRœý„Þb #…”›Œù¼8nÐöÊs⓱gÈrφàºlí&pˆÁ‰Ðʽ|P;>ôˆÃ&]¾RI?Áğ׽¡8Ñ€Ò¨úÞáYÅVV×Ö»A¿ÿÛïHÙ× „øÔÖt8s…ÿ΃ÝÇÕÞ\, <–`7ó×,Ò Ï…] +\ܹü*œî·Àq 2P›kàˆÛ/*Ûõ{8« qü¨ÛS¿Ãj¡ÜtWf°^FF™¡îÉa´Ìü»çM¹DkXoQ8õó'=n2¸LÆ0dÇ”g„ Ì)À¾Æ1•”‚$è¢ бuhÁá›Þìžœd\ÞáÅàšû̦ÿ#¾]"„]= Y§1e?f®Ûì™[†zg"ÆÈ·ÞÏe€¨ÿ°Ñk0ÃÆêÖú”Ñ–af€/†yš‹ +\~r§^,Fi•«–kGÀÔ§”œ°c˜"ÿ‡ w«  +G#²A™Ž¿›Á®$a1–BK¿„^M¡~=õ;ãïÏ ÿ:bßchÎÊyLë[`ï åɈ4þ}8ÒÎ~N غß|½YÌÛ'ÂþñþÎøÊØÑ÷DyÊ%xQÿWqþpôËCèyº[ ÖÐÅ\«†<Ô:è€Ð¬|Ö=0–qw⟫ >NaæVZ5Ógúù°­¡ô+>˃•Û«ßGKfãwÑRNWØZ:Ö€°Ál±=¡Îïx%0« Ü»¸ +Ìž OF Ÿ#PþÆYŒtO «ºª1sœÞ•&à[ŽD^@HÏO”ù¹ë+ìbåï=oîÄfzY•Îs~ºúÒŽÞ–Â +¨~ÅöÇêõ9v¾M(«¸ÒññºN(‘Ü\©øÒSØå¯ª¶a§íüª/T@ÍÜ%4\ºªÇWOëKdN–XËœ7èKã]Š‚Kœe¨Æq/ÒÝë®6ì|Õ¹•J€ÀPÓ+ + Šzì¯ +lf}‡¹ê93è +èÙ70˜b¤C‹-ÛD¸È\G3à4âÂhŽ?ÀZçhÿ±¶~©öõ¬“ß¾ÀÁ ?8FEK/ND,„û0sHÂ+¨TÿðÃÒEïÌ~u¹Æ¿!@£*&ÁΪDõ—¨·sï˜=—xA‰BPð‹o‡«ð£„\_;åDÒ ÊY>¦öm¸‡q’9]¢ðõxÏ’qJQà#„àf3endstream +endobj +1588 0 obj << +/Type /Page +/Contents 1589 0 R +/Resources 1587 0 R +/MediaBox [0 0 612 792] +/Parent 1579 0 R +/Annots [ 1594 0 R 1596 0 R 1598 0 R 1600 0 R 1602 0 R 1604 0 R 1606 0 R 1608 0 R ] +>> endobj +1586 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 952] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 1609 0 R >> +/Font << /R9 1610 0 R >> +>> +/Length 1611 0 R +/Filter /FlateDecode +>> +stream +xœRMOÃ0 ½çWäL;¹"Äq¬ÿ`b h'ñ÷qº¤é´ ê!õ‹ŸýžP7éËçªW;uûäôË^í4ŽWåXõú®•˨˜@º]« 5Z&"bÝöêê¡ûž¯Û7ußê…d¾ªèÁØ€ú+ÏÌÜ6pº +ôÊE4À$ÿÝô±qéì¦ÌS$åo”%v êhÔÂRo)íÿäÆXg¢vŽ0Žn·ûá£ß“¡‹lh"x33RjÇsêgâO‘ÊÚ(ç,礈@ýòfÔÁ©„£©åðþ»–@ãg~ +RýDo,Èf«úS¤²dI†Lr+b<ˆ˜ƒŸ<î3ÏÃø¦™6žC¡2È›ëÊ,ÎPJNëHå’ r&=Y}š${`Ïã*ë› }Ë6sHãc䥖œÖiMRë"ŠT–ÁΔVฆ]¨oA¼Êendstream +endobj +1609 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +1610 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +1611 0 obj +348 +endobj +1594 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 425.274 210.077 437.229] +/Subtype /Link +/A << /S /GoTo /D (classFlute_a0) >> +>> endobj +1596 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 386.401 217.825 398.356] +/Subtype /Link +/A << /S /GoTo /D (classFlute_a1) >> +>> endobj +1598 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 347.529 229.061 359.484] +/Subtype /Link +/A << /S /GoTo /D (classFlute_a2) >> +>> endobj +1600 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 308.657 265.231 320.612] +/Subtype /Link +/A << /S /GoTo /D (classFlute_a3) >> +>> endobj +1602 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 269.784 277.518 281.739] +/Subtype /Link +/A << /S /GoTo /D (classFlute_a4) >> +>> endobj +1604 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 230.912 281.946 242.867] +/Subtype /Link +/A << /S /GoTo /D (classFlute_a5) >> +>> endobj +1606 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 192.04 258.977 203.995] +/Subtype /Link +/A << /S /GoTo /D (classFlute_a6) >> +>> endobj +1608 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 142.208 264.124 154.163] +/Subtype /Link +/A << /S /GoTo /D (classFlute_a7) >> +>> endobj +1590 0 obj << +/D [1588 0 R /XYZ 160.667 686.127 null] +>> endobj +1591 0 obj << +/D [1588 0 R /XYZ 160.667 667.729 null] +>> endobj +106 0 obj << +/D [1588 0 R /XYZ 160.667 667.729 null] +>> endobj +1592 0 obj << +/D [1588 0 R /XYZ 160.667 444.71 null] +>> endobj +1593 0 obj << +/D [1588 0 R /XYZ 160.667 444.71 null] +>> endobj +1595 0 obj << +/D [1588 0 R /XYZ 160.667 405.837 null] +>> endobj +1597 0 obj << +/D [1588 0 R /XYZ 160.667 366.965 null] +>> endobj +1599 0 obj << +/D [1588 0 R /XYZ 160.667 328.093 null] +>> endobj +1601 0 obj << +/D [1588 0 R /XYZ 160.667 289.22 null] +>> endobj +1603 0 obj << +/D [1588 0 R /XYZ 160.667 250.348 null] +>> endobj +1605 0 obj << +/D [1588 0 R /XYZ 160.667 211.476 null] +>> endobj +1607 0 obj << +/D [1588 0 R /XYZ 160.667 161.644 null] +>> endobj +1587 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im19 1586 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1614 0 obj << +/Length 1685 +/Filter /FlateDecode +>> +stream +xÚÍXYoÛF~ׯà#‰”î’Ë£@§4‰k«-‚4kŠ–˜P¤"R6ÔþùαU¡“‰,ùíœ/Þ¹‘™ç‡iäžzÒ­<_º»®À™Ð=©LÛòð¼¸*pm ›Š:/¼÷óN+¡cm%i‰“³ç3iõðf™ã‡"K5jñiöî}à,fób†k©sãTÈœõ,J´P2µïÕìböó JjF¡ã«„ è-ã,ú= jòø4q ì†kO¥nS.À²0tÛ®Ù€QOѺªÁ¥›²†‰%.G Mðöêí]ãd •„0¾×0ögGͲ+ƒ=é¡9§?½A¥~ð DsÖik: j êI66”N +gc<ë§©*v|‰,ŠHγÂÓÊÍ·ž]šÃ'î%v˜ÙÝ +—R÷º—à±²ÛóÌMÉk‰»,¯‹š'é°é¬¼æŠŸ‹#7 +Vv7_CPVNä? !†«éŠ75¿bÈã…×(©©HuôßGí +´ÜRÐ>ÁhY´÷ ³¾c¥_ÁÜŒIƒk¾ÆÌzSJe·[܃5™H¡•¾¶‹Îl;FáGÝ0<¦êVÅ%¼¡æ×«2Ÿv¼[ø™zaÅ®A­M…úݪ¯B G.8'7  .ýWœ™$w¢ø¹`! ¸!f,' 0 oDgµ›!ôoq‡ Hr±Ã5~ ‚8’ÿ1H‰Ò‡Êÿôo‡¨+sœú8’Ôç"$Àº[:iÀSëÍn`ØÚFçw,ð|kÀñúw¨6oj|ï°hª“•¡RYŒùµSeˆœ ñní)*2ð¿ØötwÈu¸5Ⱦ?_{:vMµ»î£™¼MwgCotÕl×wÈÀÝÔ‘ZSqàò–Ù-í¾I²ä%„%š¦ÌåÞF3U‘q bê@P‡Á×ù:_j†"I2{¹ôPh"Ò$b¯tIq( „rh¹t0(`m}6R*˜Jã\ºJ9\,Iˆ„¦/?Š„ÔsK +›¡+…$U„Í‹<$]S"Ïè–D»Ïém¾-7¸X6äÔ»pøN™íæ/û”ÚëÛ]¶+Dž-sSñ¦5ÞÐx…Ë©W„Þ˜,BñàµJ ŠŸ¯Jè™nãöYhdQ’„wT Î$»Ùð£-™È >7U—TÄÉ5ª—¢z\Šú,>üZ¶¤-¢ºÅAKž\à@AQ<~i¿Le¨ýµõXBÒÛhƒ†.\—Tl2ÿ†} ßÿAFí?Ú•¢Ë…±Õà[7@¯E÷yçîXÃÖÖ5žÜО¦ÚSQ¦cèRSÙ{ ïFÏÙá ;¥ùØoS4 S(—Ÿ$_Éi˲Cïâû dð1!)·Dw–XépÇm+@£HfhËZƒÇrNZì~"¨ëÆH!–(ȇáZ•¥ïK¤‡=¡G«™±hQ¹¿Ô%›¸mËŽ‘1ö§o‘) […¡4½çk+ºÁÛWpöXRœÜ*6B$¦î‹ÇëåȤT´ßV°á;P E_VÁ^¶=ëq] |Tü ?Ô‘rÉR| E«/»ìuS¶Ö¢ç¦dŽŸÜÝsËå_ ,ðذØSŒÔ¶7oü¾˜^-åÃXx÷îçH 'l·|Ÿn C_ +pÇÙ`[;dÆÖº¹7O¥<„Fè[¹œ„ûŒ!NlÅ3ç(Qðx¤ ‹nȒ휜9C‡Û30Mé9²D3P¨MhR4|ÖZ:^>¬YÈC¬L¾[÷9•éÊÆb +¿(›-»Ué ¬‰•g Ñ),¡¢€kË¢.&? ,FQ[$VêT)“ǯ֦~Y¥3¢J†"(MO©õê +±:ü¼Ê$´Ð%„t ð9÷U¿%Ù_¥,A?ŽEN,²$šv‰Œ(Ôîx@OG~¥’bç(ƒ£k Ë˲ã%Ì > endobj +1617 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 654.279 208.084 666.234] +/Subtype /Link +/A << /S /GoTo /D (classFlute_a8) >> +>> endobj +1619 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 615.425 186.858 627.38] +/Subtype /Link +/A << /S /GoTo /D (classFlute_a9) >> +>> endobj +1621 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 576.57 187.135 588.526] +/Subtype /Link +/A << /S /GoTo /D (classFlute_a10) >> +>> endobj +1623 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 537.716 206.773 549.671] +/Subtype /Link +/A << /S /GoTo /D (classFlute_a11) >> +>> endobj +1625 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 498.862 217.604 510.817] +/Subtype /Link +/A << /S /GoTo /D (classFlute_a12) >> +>> endobj +1627 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [147.921 313.518 174.682 324.366] +/Subtype /Link +/A << /S /GoTo /D (classDelay) >> +>> endobj +1628 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 302.504 156.749 311.304] +/Subtype /Link +/A << /S /GoTo /D (classNoise) >> +>> endobj +1629 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 194.836 164.581 203.747] +/Subtype /Link +/A << /S /GoTo /D (Flute_8h-source) >> +>> endobj +1615 0 obj << +/D [1613 0 R /XYZ 106.869 686.127 null] +>> endobj +1616 0 obj << +/D [1613 0 R /XYZ 106.869 667.729 null] +>> endobj +1618 0 obj << +/D [1613 0 R /XYZ 106.869 634.852 null] +>> endobj +1620 0 obj << +/D [1613 0 R /XYZ 106.869 595.998 null] +>> endobj +1622 0 obj << +/D [1613 0 R /XYZ 106.869 557.143 null] +>> endobj +1624 0 obj << +/D [1613 0 R /XYZ 106.869 518.289 null] +>> endobj +1626 0 obj << +/D [1613 0 R /XYZ 106.869 462.505 null] +>> endobj +1612 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F31 829 0 R /F19 460 0 R /F22 474 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1634 0 obj << +/Length 1378 +/Filter /FlateDecode +>> +stream +xÚÅWÛnÛF}×Wè …˜kîämÖ©'šXŠ"ÉMR6Š´EʮџïÌ슢,ÙN‘¸…aq¯³³çÌm¹Â÷„aZ/J ‹¹ò²åè×ùèx"¤g˜‰¤7_ÐÂyþÑ×büyþÆ“*dœK78›¿2QþɘûUÚ¶Ø“þ«¾ÂÏÖË¢C£K»rp¿©QÆè·ùˆ;‚I“xd&ÑxþõèãçÐËG¡÷fdçn¡ gã-G*ÖLðÄõ«Ñlô¡Å%g:Œ¼@Ĥ{áqŤІ·Q !(Å…ò'SÐ7ÖþI£öÐ;+Å +Õ.ê¬@Å'É<(Šô)ýôD´¸«[¡°ŒšvŽŽo{WEâw—°  µekgÎÓ¶À–òiŸU[-³ +³£ „" ~(ë¬ZçNQηëTÌÂX¹‹ÿ¸/'f±JÜôdÊ.÷%ˆ€Ñ.ùyŠX‰•ÚQç´¦Û¡îˆCÙ¥5|èVî†9§«tiï¾hV&˜˜¾|yßTðºF0¤Ö»#ˆã(²ÓÃ6YÑv Ÿ.Eè½jÀ^¼C‘J±ØðcáÌh=4–÷ësd¢Ì¬]L‹î <ôóÖa¥¶`p ¶&Á8ˆ‘´ÿSÈã=Ðlcƒº½ù§P‡%œdÍÃŽ5WãzÅ*íšÕƶ~‚†‚ÕÜŠ•ÜK@Y8Ø:á|ÒÃøðL»SF p AjÝv«u"p4ýRÖvEç¨Ãv½^žãÇ$­mö{›ÞÇE}Cs(j×á¶$@_€Þ8Šº·î Æ~3œÅeugE£VÛ4p#ÑWrýuˆÞ Œ«nVû¥` +âDè$ÉpOz„9ÀÍaÄ¡!z‰G ÏÉÑàO^1úÊ+¢‘4enÕ˪"]=¥éÛ8ëÉm7þÚY‚Ò:wLUÖk‘GgkÝÊÙΧ°ýfãÞÃí` 4¼k m‡ºþäïFü*è¶Mšÿ1†•â M»C) +!XYS÷AÛ¡9±^Þ÷ppm¥ãÞ€B‰ÿjj«jƒ/†Amâ‹â ˆÑµÎ"þtAòáòg› (Ò'û%ÎäÝï¨ð/¨ÝÜšÇñv -Ò÷!Ê„dIÂw(›»¤p»D ¨ÝЕó'ü]]±‰6 ¢Ù[וٺڸßbe= l0$›ÊîžÇƒÚ¢;ƒê­$¨avºÅvŠÞb=ë´Î7fþ4ŽìªÄBÂ6‰¤J}+¯æ_ó +Ù3zó™K;y˜LçsÐ0tG‹‘:vÙs7»¶W½„¬D¥f¾M¯Ï“,€Ô×)Ç)bqÖx0‡´n8…=ZÍ¡­ú¿w× ¼÷dUz‘c5y€Õ ‹ÌÐû(Ûöe òFÕlIçqÕçÈü~R$ØžÈiCõ!òÂZu=#=©n,òÇl%A„QëÿrÄå õ„*PÊäí¨) `Å r‰ñ›_Š Ä ØR¿/þ•1O¥Ês¤^IíÏàÑ0…þŦ$^ƒ‡‘n®ñêà·eg§J›ì©}ò;/lçÝÙöû±Œ°H†ðàFΘÛB±Ão¾ØnZ[€¨óšŒËî ƒ‡±ÏœžYŠâoPnC{Š#z¹ Âcìp‰én™{ êíµx`… +ŸåÑÖ"µ[7€‡c „²¤±ÑPƳôß"ÄWµ/6þ¼Ò{endstream +endobj +1633 0 obj << +/Type /Page +/Contents 1634 0 R +/Resources 1632 0 R +/MediaBox [0 0 612 792] +/Parent 1579 0 R +/Annots [ 1638 0 R 1640 0 R 1642 0 R 1644 0 R 1646 0 R 1648 0 R 1650 0 R 1652 0 R ] +>> endobj +1631 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 146] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 1653 0 R >> +/Font << /R9 1654 0 R >> +>> +/Length 1655 0 R +/Filter /FlateDecode +>> +stream +xœ¥VMsÓ0½ûWè–]}ûÚ:pè ¥¸\ZˆÛišÂôß³’-KÂqÍäàõË®ö½•´k~ãsÝ7ÍÛOZ|lÅ¿ÒcÝ‹³ÿÙ +’ <’X]7C © С=hï½XõÍ«ó‹×«Í»•¸d·Û†Y/~‡•ǰ1§$ïм²u$ñl¶jB6b©D1jŽä¨›Fß‚Ì4f}sÅ„þOœäR +^ÈÓFqîwÛþn7I\奥e!*!Y¡"àÚd s$G±(‡ÌÅ3#ÑKDñŽ9^Ž8JE]í~×CRyÀr“RèÑZƒ2¥ž92EÅM’`| ƒÀd^ ÇqœŒInsÖu«›m×-k +¾±\Yo,ۛɖhAE¾XÙù£À(+œ„˜í%|Y¼E_>¿ø|»î— »xu¤MÊ„#)%;SMžsd@ +¨S!h[W)xßýz¾èv›e¤ +7QD¯ „F3³M~sdà/QrzŠ€t¯K»íú|óô÷‹€ÅÙÏ„“çÁêŸ !l¢åîVJøtsÿ­{>  %û}ßð©á"%MvÁvpœ{îEÜ¡N"ϱÎÖäWO_»³nsà)Ö $#Í% ‡ 0Jv¦›<çÈ @“çq¥O‘  N­* _ž¶›Cõ×ÊiŠ âÐS¢‘‰&Ÿ92R÷¡vôuÖf¼j÷ŽXN0MÊñÕI ä4/xµ÷œ”>ãkB!¤‚‚ÐÜxÔ¢‹&L]#K¤^åúÍBÞ4ÿÒ+)îo‡©&Ÿô:Í—‰j1ºFªD­…ŠjÔ«,RU|‹ ª”7|Ly‹ïš1¯ru‘·@êUöåU¡ÕH_¤Övè, Y(T +Lçj¾ÔB aÝ2r,ÐÕ×2#GcrTUê%uCG/ÕȱÀ¶69˜Êž÷oÄeóáIendstream +endobj +1653 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +1654 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +1655 0 obj +735 +endobj +1638 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 393.946 202.605 405.901] +/Subtype /Link +/A << /S /GoTo /D (classFM_a0) >> +>> endobj +1640 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [217.383 354.282 242.76 366.237] +/Subtype /Link +/A << /S /GoTo /D (classFM_a1) >> +>> endobj +1642 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 314.617 229.061 326.573] +/Subtype /Link +/A << /S /GoTo /D (classFM_a2) >> +>> endobj +1644 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 274.953 254.272 286.908] +/Subtype /Link +/A << /S /GoTo /D (classFM_a3) >> +>> endobj +1646 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [238.968 235.289 297.637 247.244] +/Subtype /Link +/A << /S /GoTo /D (classFM_a4) >> +>> endobj +1648 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 195.625 244.725 207.58] +/Subtype /Link +/A << /S /GoTo /D (classFM_a5) >> +>> endobj +1650 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 155.961 241.888 167.916] +/Subtype /Link +/A << /S /GoTo /D (classFM_a6) >> +>> endobj +1652 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 116.296 296.89 128.251] +/Subtype /Link +/A << /S /GoTo /D (classFM_a7) >> +>> endobj +1635 0 obj << +/D [1633 0 R /XYZ 160.667 686.127 null] +>> endobj +727 0 obj << +/D [1633 0 R /XYZ 160.667 667.729 null] +>> endobj +110 0 obj << +/D [1633 0 R /XYZ 160.667 667.729 null] +>> endobj +1636 0 obj << +/D [1633 0 R /XYZ 160.667 413.778 null] +>> endobj +1637 0 obj << +/D [1633 0 R /XYZ 160.667 413.778 null] +>> endobj +1639 0 obj << +/D [1633 0 R /XYZ 160.667 374.114 null] +>> endobj +1641 0 obj << +/D [1633 0 R /XYZ 160.667 334.45 null] +>> endobj +1643 0 obj << +/D [1633 0 R /XYZ 160.667 294.785 null] +>> endobj +1645 0 obj << +/D [1633 0 R /XYZ 160.667 255.121 null] +>> endobj +1647 0 obj << +/D [1633 0 R /XYZ 160.667 215.457 null] +>> endobj +1649 0 obj << +/D [1633 0 R /XYZ 160.667 175.793 null] +>> endobj +1651 0 obj << +/D [1633 0 R /XYZ 160.667 136.128 null] +>> endobj +1632 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im20 1631 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1658 0 obj << +/Length 1464 +/Filter /FlateDecode +>> +stream +xÚíX[oÛ6~÷¯ú0HhÍò"‰Ò€>tβ¡m–.1 mh…‰…Ú’'ËÜýùÃCËr’6KsÙË`À¢ÈÃsùΔ8üD ¸f2Í‚4Ë™qPÌ?/¥ +r–§*Ÿ;ÊñÙ‡0f’GC•Åáa$Â#ªp43Ë% Oìy4¡m`ÕV…>ßq*Y’&žE¢prðóx ¼CÎTžCÅò,Añ >|âÁÙ€o¸–—0æLÕ|ë„I‘ù÷Ùàtð{ÇJå,ÖÀJj§ùÖ%‚ &Ò¾)§¶Ó,l§:œ×Q¢Â³ÕÌ´e T´¾\à´‰@@Ô¥_þõ 2´éå! ×A6”1*…gÂT"œÌ\h¢Ìv„8^©u$³°.Q„RáÒ¶Gu4„©3zÁ£¬«»ÀÑ”¨>ò„ýyT! ':ñ·Â*ýüFPqàîÐÌ®ÇÅá»cÔüu‘1Fµâp~`1 h;…?PSí}o À¤Ðe"eWws ²“‚ƒéc:c„ê*’yØ6õLôð±×\0Œ%  BcÁ´JžÞÅ䤙}ú,f¹· ¿6³•¥¹úœ¦ +Lçyƒ®4ž +vyìÖÿ¨ßõÏøf7ǘgJ:¬o6G€(ï[Óš¦%m…ª®í¬ö5Þ–´ÔÖ—&rfÈmE}æ3[„Ï+¬ýÓ@çÎm–’ª0ïÒÕlPãóe‰ÇªvefäÍ›ý¦ ìÅò¡ÊßÝÝÖ"¼E$5¤Ö^>½â7¸Ne,–Û”JÏ÷«†Ð¥JX6ÞbpÉ9ƒ\š{çÆX4Œµ Ñe«¥OÈIǦwR”ãªï9:Çép¹rôfííù÷}.óés>#‹ýÞ6šb¨.ì.;Kg&lk·9 ãÕÿ'îlh›߈‡œçÿ];\GI +ÝpuK è‹JŠýH°ÔéDx^7óm²Ú~?¬ZßÉÍá‡Û.<]/a‹½ßwþdãýœ÷ª|ÊYª•·È¹áÎÜ9Þm®i¯Ó:÷;LuvSÍ2uE9Ñ¡ëð×8AŒq%<ºŸ30ˆ“¶C2RH˜Ê5©î¸+e Ë“„b.IP +!)X*´¿»1\ß`œ\¼C:¢ã]”Xk-¢“ðÀu¡eÑ” ºr8P¯:w)‘‚á®âŽßRšIä0F×™‚d¸µÃ#ªÛø†"lm¹¤•‰YúàwûP+ã(%Q(`™J*óã©Ûǹ§¦‹(‡úP“Ô žùIS­i&®±8õš M^É+úàs‹®¼Ãó— þ¹Lîz<1§¬27ï"gG6C”±Î ÌZž†g¶íÂ|î@°­ç´.Mg¶÷.†Ø~ñèý*ÚºñŽh.V[¦–àØÇ˜ö "ìGØMW‡~#>Ro¡i–?^/êb¬Ü囫øßÈN8¢ã…;hüŠL‘7”cb3„C™Êå÷K;ŸÖ{ââ‡÷îYÏÓAçœí«¿'Ä#ÈÃÓ}1#åõÁ) wB€ùËØ[ÜR,ÿ}îZ³CUÈìú)S*w5‰TÉû}üñŸ‘|žtŸ±â …WÜoScl"±JÂS¨Cðh{E(vÈLŒ‰ÿ!VÞ–--áqwŽž?§Álhñ}¤RúøÕø™FÏ2–ŸéÕT> +ðåÜÕ±\‡Ì«X”°FÖµÛf_¸,–9gI} +¡ +_øNì,†Ëp‡÷!´4‘ný›xº2B²ØñB‘ àEYÉßøÁ:ܺîâ=«@endstream +endobj +1657 0 obj << +/Type /Page +/Contents 1658 0 R +/Resources 1656 0 R +/MediaBox [0 0 612 792] +/Parent 1579 0 R +/Annots [ 1661 0 R 1663 0 R 1665 0 R 1667 0 R 1669 0 R 1671 0 R 1673 0 R 1675 0 R 1677 0 R ] +>> endobj +1661 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 628.928 244.337 640.883] +/Subtype /Link +/A << /S /GoTo /D (classFM_a8) >> +>> endobj +1663 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 587.193 204.929 599.148] +/Subtype /Link +/A << /S /GoTo /D (classFM_a9) >> +>> endobj +1665 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 545.458 204.929 557.413] +/Subtype /Link +/A << /S /GoTo /D (classFM_a10) >> +>> endobj +1667 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 503.723 182.707 515.678] +/Subtype /Link +/A << /S /GoTo /D (classFM_a11) >> +>> endobj +1669 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 461.988 182.984 473.943] +/Subtype /Link +/A << /S /GoTo /D (classFM_a12) >> +>> endobj +1671 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 420.253 187.135 432.208] +/Subtype /Link +/A << /S /GoTo /D (classFM_a13) >> +>> endobj +1673 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [221.135 378.518 239.179 390.473] +/Subtype /Link +/A << /S /GoTo /D (classFM_a14) >> +>> endobj +1675 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.17 336.783 250.011 348.738] +/Subtype /Link +/A << /S /GoTo /D (classFM_a15) >> +>> endobj +1677 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 116.85 161.121 127.698] +/Subtype /Link +/A << /S /GoTo /D (classADSR) >> +>> endobj +1659 0 obj << +/D [1657 0 R /XYZ 106.869 686.127 null] +>> endobj +1660 0 obj << +/D [1657 0 R /XYZ 106.869 649.796 null] +>> endobj +1662 0 obj << +/D [1657 0 R /XYZ 106.869 608.061 null] +>> endobj +1664 0 obj << +/D [1657 0 R /XYZ 106.869 566.326 null] +>> endobj +1666 0 obj << +/D [1657 0 R /XYZ 106.869 524.591 null] +>> endobj +1668 0 obj << +/D [1657 0 R /XYZ 106.869 482.856 null] +>> endobj +1670 0 obj << +/D [1657 0 R /XYZ 106.869 441.12 null] +>> endobj +1672 0 obj << +/D [1657 0 R /XYZ 106.869 399.385 null] +>> endobj +1674 0 obj << +/D [1657 0 R /XYZ 106.869 357.65 null] +>> endobj +1676 0 obj << +/D [1657 0 R /XYZ 106.869 295.885 null] +>> endobj +1656 0 obj << +/Font << /F23 479 0 R /F31 829 0 R /F14 825 0 R /F8 483 0 R /F19 460 0 R /F22 474 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1680 0 obj << +/Length 795 +/Filter /FlateDecode +>> +stream +xÚ¥UKoÛ0 ¾ûWø(£µª§;.[е(Ð5¾ mNâ$F㨋fÆþüHÑq:t·¡@MŠù‘ü¨ÈPÀŸ UέÍÃ$Ëy*M¸h‚ÏEp5U:Ìyžè°XyÇbùȬ‰ž‹›PÁ¥ÔÃᬸb6‰$Û–m‹šf_|[šjЕ]Å’¹Æ¾Ä‚ë< cÍóÌbþŸÁã³—o²A†œy6I-W2ôm0 ¾¡¤–ÜŠ$ŒU걟ŠÉ>ÖRlª(VF°yÙÖ %›l\¤2vÜA%õn}5ƒoWîVðqû%¹OA¹#ñµì 6¸Ð‘^ýz­Áº¯×zG_Ài/A´›0$w›j_QâêWݧ+·Å>lXì{.ÂXJž[ëÁ;Œœ¤ì\ºœu-Š˜+¬qm·íÉÑŠZciÞ1& ë9üˆ`feSnJÅF)ömE†ãºÃÆÁ ÖnCñT‚]Èý+(ééèˆæ!ƒàõÃvH~ŒÀÕí±gý?ª,ç>–;@k´Ö”¬F~iÞ„MùRcAk:jÜX]fI·ŽËí1KO~%õþy©ÇÒù˜?剢üs²ú(÷(Wç(š=`Nòk„,/¤–ˆcIòuùîÎ=¥ò2’k1<ˆ7rÄI>È’b‚®„PC5g6£Ãrhxæ7ïL Ø>$ †":ŸZŠŒZêÑ ûJ?«vì_êOÐe]íª=0nyµw Ù:PN0|ŽíÀbX%rÒ ¹=®OXÆÕžœq7¥åÚhØ^ËmN3€+)9¾Ûah§w‘o><*ãS`­äJeÿû°h®òd¤çøJš0áyj>¼,F[6ëá峸ç´|-VDR$8$°9ßòÛº#SMóòä• Ræ¨'ù>Ò P‘¶ÆŸ<ðá +M< QÒ¢£rí©F7ˆR¤Œ8%†øÎß©.=ÇT.à·: }I}m š,ÈXv¬ Ï_ñD&§™ÙÁï]{¤âÆÇÒÐ]tƒ.c.ûH‚:Íð™›‹¿endstream +endobj +1679 0 obj << +/Type /Page +/Contents 1680 0 R +/Resources 1678 0 R +/MediaBox [0 0 612 792] +/Parent 1579 0 R +/Annots [ 1682 0 R ] +>> endobj +1682 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 572.016 210.907 580.927] +/Subtype /Link +/A << /S /GoTo /D (FM_8h-source) >> +>> endobj +1681 0 obj << +/D [1679 0 R /XYZ 160.667 686.127 null] +>> endobj +1678 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1687 0 obj << +/Length 1299 +/Filter /FlateDecode +>> +stream +xÚÍWmoÛ6þî_!`_$´bøN±lî<ô%h–†¶YI„Ú’#K)‚ýùÝ‘´lGYÒ¬]1)¾ïž{îtd…‹5„ë,Ò™%†É¨XM~™OŽf\D–X-¢ù…[9_¼%á,IE&ãYÂâã?«ã¦JRå'D<…‰%Žäè…ÁS(/ʶ¬‹†¨¶&V*ù8=ùu>aA•”am” +b3…Š\OÞ¤ÑbB£×œË¢ÏЧ„ÁªÕDúdá}99›ü>ˆ¢QÊS°‡GL!õ¡A $ÚÄ£Ð"‰¡A¨3êod<]&h{Sñ)Zâ,BkÀ†£Y¶ž¬”qœÍßÀ&!âMU_¢ÜúÒ¿ÏŽÃømð,î®`ÎYá1BÆnõ¦k{hWþ8·’ø#¹=8“¢¹tgþPÕŲ_ÕÛ­“†P#‚í?Žåb¤ ÓFS[ÉÕXŽâDЭœŸF¤È)ÆUÐJ¹e¯êÁÄ:U—׳3̼Àáü²ÍWš‹¦ Xy²‘¼kÜž >_¼¸Ë!&%¡TÂÑ–.¢kä£Ú/Úï;’íHãŽ^­8‹^6@§hǨt -W‡ÄbÄ*µO¬“þ9Sž2ÇewÕ ñãÅ&À)wx1¼ÀN”ÕnÿÊÌWìðÁ= >`²ã*€õ* +æw e°Ë‘èÏ "£s2¦Ë!HµXǸ¢kZ2Ö3å Ah×R­vЦŠRè :R`û÷:k"¡ãc¥åëû…ÀÞTHϮϗ^· :Ç»EˆXG¿n–@l×0ÙC2¸ÝYsü爘2˜AQJ,×ç7iÐÞ›ÝÂÌ@Álœªgoß¡â?£–s_ æ…ï=e\,c¸Ÿ•BžÅÕ”Ê: ­%â¼uÏÕ6Ê»² Nò Ü7ayWý2Snw‰¼îÝ~Pï)|ЧއÁ˜wš®|W?ä®Tß"K˜–ÿ gaà<÷:c FÑ ýþÚæ«µKw]¿ØºÿŸ¨eQ!¤}:ë€ +ü¨Á;žXŸ+ø0º±îªôËêÆÓãÞøÍy½b‘“ë%jW~+JÝæ3"!{Ψ¯õBöd/@@áЧǒjª ˜w˜U èuß”›:xÇû&üø&`éràwK¹î‹ß@ùcã®m–Ó«ÜUR¡n@C]±äÊ£mŒC¿_áó{æ;ç(àÖOž$B#™€àa䔸vŠÂ@ä'ÿš;:/üËo1p%‰IP±Èñ„ݸmås1â–ÂÅ 8 €øë[X£v§P¤S…wU͆ü¦Âº=d'ÒÉ!N^> endobj +1684 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 1025] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 1707 0 R >> +/Font << /R9 1708 0 R >> +>> +/Length 1709 0 R +/Filter /FlateDecode +>> +stream +xœ­’ÏNÃ0 Æïy +ƒ‰Äq®H qà0VñÓ†6èÐþH¼>¦mÖNã‚´öPùûÿ¾XõHàßá»hÝÎÝ¿Fx?¸PgÕÏ¢…‡ÆÌš±4+×#ˆ‘²@"dehZwóôòöµ^,·ÍÆ=60³ÞµËY<Á·ãœQs¶ÓÑä%!Ã~éæÿƒ“ +FlNàJ?q+‰Kð¯€ó„>1HèpÏÛÃqßnФâQé +ÔB­»„ï©óãÇP³5òßÀ hl÷Éûj´}ÅTì<|Z×´®n¿ºÑíksÅÔÜ/Ã:8û›hªœMXÝõB %¡T@"V s uu‡%Žö ŒR’Œvý1ÀD9ŸQäÀ‚ž*D}R” ¤ +Õ;úƒ0†ÐXib¢œÏ°3÷ç‹´wendstream +endobj +1707 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +1708 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +1709 0 obj +318 +endobj +1690 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [163.49 627.276 181.119 638.124] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +1693 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 396.195 175.982 408.15] +/Subtype /Link +/A << /S /GoTo /D (classFMVoices_a0) >> +>> endobj +1695 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 357.03 183.731 368.985] +/Subtype /Link +/A << /S /GoTo /D (classFMVoices_a1) >> +>> endobj +1697 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.17 317.865 243.839 329.82] +/Subtype /Link +/A << /S /GoTo /D (classFMVoices_a2) >> +>> endobj +1699 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 278.701 186.858 290.656] +/Subtype /Link +/A << /S /GoTo /D (classFMVoices_a3) >> +>> endobj +1701 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 239.536 206.773 251.491] +/Subtype /Link +/A << /S /GoTo /D (classFMVoices_a4) >> +>> endobj +1703 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.17 200.371 250.011 212.327] +/Subtype /Link +/A << /S /GoTo /D (classFMVoices_a5) >> +>> endobj +1705 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [163.49 116.85 181.119 127.698] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +1688 0 obj << +/D [1686 0 R /XYZ 106.869 686.127 null] +>> endobj +1689 0 obj << +/D [1686 0 R /XYZ 106.869 667.729 null] +>> endobj +114 0 obj << +/D [1686 0 R /XYZ 106.869 667.729 null] +>> endobj +1691 0 obj << +/D [1686 0 R /XYZ 106.869 415.777 null] +>> endobj +1692 0 obj << +/D [1686 0 R /XYZ 106.869 415.777 null] +>> endobj +1694 0 obj << +/D [1686 0 R /XYZ 106.869 376.612 null] +>> endobj +1696 0 obj << +/D [1686 0 R /XYZ 106.869 337.448 null] +>> endobj +1698 0 obj << +/D [1686 0 R /XYZ 106.869 298.283 null] +>> endobj +1700 0 obj << +/D [1686 0 R /XYZ 106.869 259.118 null] +>> endobj +1702 0 obj << +/D [1686 0 R /XYZ 106.869 219.954 null] +>> endobj +1704 0 obj << +/D [1686 0 R /XYZ 106.869 163.526 null] +>> endobj +1685 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F19 460 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im21 1684 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1712 0 obj << +/Length 1172 +/Filter /FlateDecode +>> +stream +xÚ­VYoÛF~ׯàSAÂæš{ñЩ]M𯅢mœ‡µDI„I­KQq„æÇgŽ-Ã.´qvçÜ™ofWFüd¤*amåe% +i¢Y7ùa:99W:ªD•ëhº Áéü}lóäÃôU¤M&¤Ôaórú:IuiâÓDÆ­Ûlp¥ã3_϶]½N€ÜÐ$©ŒýmL~œNd Í„®Ê(Õ¢*-úÿkòþCÍ'Yôj¼; ÁgUEÝÄV(Y†u;¹œü:š’Z +›åQª +Š}˜òñY¦«#Í‹x†aµ¼Û v›î¶­»wÖ‰*ã! ¬2ÖAÏõ}S÷AÞ­çHä±;°ê»ÎKëòfæ[ÊÒà{ø«vãY¨¯uò  áaö³(•RTÖÒ1\»$SͰê@Lë8ljý¿÷UÍÓßKù§@'çÚD ó!sQé2f…©Øæ‹½ƒ]*¶`)ÇxÚðòES‘—&J+Qb~Aû$E­ç’¥iq%µ!éT*QdúPÜÄç4}Ž_5j¡‹#ÜDâív ýÇêhšê‡'|̃²§2“"W’ aË‚”O=—¶÷-çît…0X/CÊ~Ábu‰*âk(^C±Ÿ±eh”Ñ´´BM´!ƒW™,…À£ï·ZÄ£ó;ü«‚Ã÷üQ¥La++¿ÎÑå-GNp).ø™6íðÀ£ù6>ǽe›{÷#žïÝIù/þÔðwVß«‡n¾Í©^œ]BîÞ1.›þnŸ7Î'–ÔõËz`¡½U2ô:³`2ÅÞT&‹¯Ý¦™!)‚1w·Æ¾^/OÐóàÖ dôsÖ8‡Å&oݰŸaRÑvýéõû:h4kþÂÔ´0x”-ãkÄw‡9Ñ×Bý©áa72çcË€MŸC8åÌ(té†šãØ ›:Èo†vÇt?@X ·\Sh°‰¿P +;·r"IRñO däñíùm0AqáA}ÅçW9$wu¼uÇ%QrNëm;gÛw˜kš¡ýî©Ë­ï·¡YÈ]Pã«Ìf»i°RKæwá’ ÙR’å©Ù=Mø‹;ª4n;Š3 Æ0 +Y†Â¸f.é\ÐÈ8´òN°ýS¾d> endobj +1714 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 482.806 214.92 493.654] +/Subtype /Link +/A << /S /GoTo /D (classADSR) >> +>> endobj +1715 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [291.467 456.658 309.096 468.613] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +1716 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 374.395 238.083 383.306] +/Subtype /Link +/A << /S /GoTo /D (FMVoices_8h-source) >> +>> endobj +1713 0 obj << +/D [1711 0 R /XYZ 160.667 686.127 null] +>> endobj +1710 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F34 950 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1721 0 obj << +/Length 1421 +/Filter /FlateDecode +>> +stream +xÚÕXÛnÛF}×Wè ‰„ë½r¹A[ uê4I¦’^Š$´´²„ê∔ ·?ߙ٥.–”Ôvà 0,’»ËÙ¹œ33K‘pø‰à–É¢LŠÒ1+t2˜u~îwNΤJs…Jú#ZÙ¾O5“2ËU©Ó³ÌÙt±œõn2%S…£*=ÍD:Ír‘Vu#2íâ“ù¥Ÿ< q­tjlö±ÿ¦óK¿#¢9gʹ$WÌ•UøÔyÿ‘'ÃOÞtp®Lnàž3«fm “¢ŒÏÓN¯óÇZOriIñµ%2š)]욺¢5BH2Go™ƒJ£IÖ“*ø!‹`  Öà|°ì89+·=…»kG{ôúoá¥Òú&“6õQ.¸çb +¿èðÆh±„‡¹mžI—6aü7oü2Hà|±ªñ®fawév¶–ÒÐþßMæƒéjµb³N[Æ­Š®ø~_ŽelÓgäÅÆûrŒdŠ·r~ÜóFŽà MÐJÓ²×óq0|7“¬Á¸è‘!W—Ëj GÑÍYV¶a’% îÅ‹»@Z1%lè8Ø@XJ>!P„R–mßÒ6È¡“×3@ÌË`*ÙÀ*_K†kÉwÑ%˜3f]ïVáÉ `æÜ7ã¢?Öщzã%aœ XJ]¡·{ÎÄÙÆd×-^ÁE¸áð/ÂëJ$%¼FÈ«ÑV +’òÒªÕáVX€‘éb^7ËÕ !‡ãàG=þ Ú©sU¸ÔLX sxÙ¨t裌+|‚„7cšX¬.ÇaNé Îöý’KÐXpUÌÚbã™ÜpwŠïù`f…x„“ +¦ ®kN+´0Ú<ô­î£ïç"yº-&Ø(|Ó >^Ì÷hZÃÐùŸ{ —ŽBcZÈ/gO IÖÌ8S¶ËýpöÛï¨ñOèÛ~Ы"G/ý§¤ÄÛ êÀó`Í9h»¯,wó¢%ßÃu÷W´[QjYÕ‡ƒŸKq×;éù†b_¦ML[xOÈmbÛ¢âÛÃdAq›´ynÞDüŒZbEò!<{˜f›ˆ.·E_ &š6#p7J.ß³DCF®óˆAÃ'ó ù׿ÑôÃà-X>½¦4€^"3XÝkªÆ×8ZÐöû˜Í ´ÆBÍ/,{Z4 ^wa«¶…vG`‹pæ©aKŠ®aK +–‡2LêñÚ}ý9n !ƒ’ÅKÌ“±òáÛ« +)0ÿA`³õŸËP.°ì"pJ õ½Í8òo°ZêÌâkæÃ¸¬¢ÉK¿5–‡ò%Ò]•±FÑh:"k¡*áÚ¯ŸéµC®4}L•Õò’2Œv‘)‡À­`¢rÎŒO‹ATmC–uNk«SK£ŠcÔ‘¬¤lôôjoSÇ(s€:P5•–ÿ[樃Ìy(2¬gØì j>>OóÈvg«9óWݪñ›í@ÑÐ> endobj +1718 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 1000] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 1736 0 R >> +/Font << /R9 1737 0 R >> +>> +/Length 1738 0 R +/Filter /FlateDecode +>> +stream +xœ­QËNÃ0¼ïWì8?â×µÜCrCP›VDÐPÔßgí8qB¹ UQdíÌîΌ͙@¾tn{8ÂýS‡/8¢ˆÔtl{ÜÔDztšYQ(¬÷0Ž 4‚yÔën?†¾:7Ÿ·õ<ÔXRS V°B:ƒgÔë´£±¢°†I‡‚¦- Tÿ“Â0c*¹(¿iËï×Ý,>ÉI§-£–+ˆ†EÒ£‘!“3·Ý©.D5Í2j¹‚¨—ÌÑ&ÏC +E«Óû…"¥$WêoE•öÒ#hÎg®KI5£'ê¨sL|ºÁÌ'€xm¡LêHåãìYïØßÁ3 + |¡Œ»±ƒ<—“(ý<+ÆjbÒÝf2ÙŽN³²Þí,lØuvû;»ÍÙCéæ˜ÕÈf\ +–Í,õ2SÂ2à»endstream +endobj +1736 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +1737 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +1738 0 obj +317 +endobj +1726 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 397.491 178.445 409.446] +/Subtype /Link +/A << /S /GoTo /D (classFormSwep_a0) >> +>> endobj +1728 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 358.905 186.194 370.86] +/Subtype /Link +/A << /S /GoTo /D (classFormSwep_a1) >> +>> endobj +1729 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 320.319 212.567 332.274] +/Subtype /Link +/A << /S /GoTo /D (classFormSwep_a2) >> +>> endobj +1731 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [155.276 281.733 196.123 293.688] +/Subtype /Link +/A << /S /GoTo /D (classFormSwep_a3) >> +>> endobj +1733 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [154.377 231.192 201.063 243.147] +/Subtype /Link +/A << /S /GoTo /D (classFormSwep_a4) >> +>> endobj +1734 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 180.651 214.449 192.606] +/Subtype /Link +/A << /S /GoTo /D (classFormSwep_a5) >> +>> endobj +1735 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 142.065 216.525 154.02] +/Subtype /Link +/A << /S /GoTo /D (classFormSwep_a6) >> +>> endobj +1722 0 obj << +/D [1720 0 R /XYZ 106.869 686.127 null] +>> endobj +1723 0 obj << +/D [1720 0 R /XYZ 106.869 667.729 null] +>> endobj +118 0 obj << +/D [1720 0 R /XYZ 106.869 667.729 null] +>> endobj +1724 0 obj << +/D [1720 0 R /XYZ 106.869 416.784 null] +>> endobj +1725 0 obj << +/D [1720 0 R /XYZ 106.869 416.784 null] +>> endobj +1727 0 obj << +/D [1720 0 R /XYZ 106.869 378.198 null] +>> endobj +1730 0 obj << +/D [1720 0 R /XYZ 106.869 301.026 null] +>> endobj +1732 0 obj << +/D [1720 0 R /XYZ 106.869 250.485 null] +>> endobj +1719 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F19 460 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im22 1718 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1744 0 obj << +/Length 2505 +/Filter /FlateDecode +>> +stream +xÚÍYIoÜF¾ëW4r"‘°ÂÚÈ¢98É(‹Ä‘tdr Ø”Äq7Ù&ÙÖØóçç-Ulv³¥x<@hÖ^oùÞV’«þäJÂÚb•¹BäÒ¬ªíÅW7_^*½*D‘éÕÍ-¼YÿYÿvóÃJ›TH©ýàõÍ«8ÑÎD_Ç2ڔÀ=}ÓÁWEÕ~[·14ÆrlâDF]‹g\üýæBz’Tè­- +gñþ·¿þ–®Öéê‡ ž{„6ÜY«í…É­PÒùþæâúâ—é(i2áL±JTN´f€¯3ÿLeޤ|yé“Üà?ýã”R8Ufš¿K¤^г$ú™‰4·¤ìòÇŸc増1õ¤¨M²“Q«oÆl¾†ÙæuŸ€ºÔˆ¢ü Ö™‰â°ðfMvL$Þ$À‹³ à²À ¶R£×5Ž ¿d(Ð@C!KbC‘’¬`%z²šàoÖóv_n°[Dí¯¸%“òGtwþ»‡™1Øý~(<$@à–ÈTYΦ]2.¥P…\0¾ä%Tøz“U +÷Ö’¸!$€m¯c(4à: ?JÀ"¥²Ñ7¤´FÊfƒ:GYä0NÎf¨úf‡“ yŒœRò©ç Qpƒû^1F†GôÏu½+o7 'tŒw„5rŽ `UD‘bX)Ð#Xâ®rÀÖ@\â}2™b/tó€€yUØh‡¢¿ÝpX ‘¯p#öÙ—k2ì%ƒ“Ä:œvBßE‡kÜÝlw›`[úebýtÉŸ;XÒõÛ2˜_bÓ¾º¶l+öü´ôñåH!ëVe;qåU\!%9Þ«´># »ñ34à½aã£ç‘±Ùú w(ÜnËŠ 4 +ƒ}ýv_·Õ{ÞAçÖãØ ¡ßó*´œ+Ûn|¼ãy"NŒ”Ñ÷ Z³£{†wÍ:¬øœí„©‡ŽÄº&5-YeéÍÞ±éì é²½çi¶_ÕA ÄÂŽ‡ûrô ØœqK‰çÜ{bhèH“£*ÈÎ~Ïë_³ñ?r%Å_3ghox¤DIú«¿-g[^óMÔ¾fx¬ItøÓM®Öû_ –[ Ÿ¬ÒT³r [k¡¼õÛ·òöýS½5Á~ɸò,ºŒ}û¶¢$ªk½Åw´¦"ïæÏiê‰ý'ÂsÎ.Oò/6ጮA¹/ÎÐ^®c`¯Þ½ÀÅ/†z¼ +öÂëÎÇØ"¦ÀDü¨–ò÷C­BιPëgžMî/žFú_Æ`¿>Üj;‹¦J¤*øáò2vC + EäQ¶™µÞ‚—ÿ‚„r@$xø¹qœI¡ oZÛiÙŸ/)œ3AW±… ¹FPí‡%ãP$Q™â³“&ÌÂI"A8ài<¨ÜU؆Ÿú£cñÁäÈ¡ÜHp¡˜ŽÈ¬ + ¸qGg ‡xÄŽÃ{’zð®Tå/*}¢¢Õ\Yh‘õßqŽ[y¤ùyî«s{à?mZ¾ñ;LlBî$<"(•³GžiŠwT²eþÀ¼®qÜO=NN{Û´µ_KÎç1{geÕÇ:ÜÎëzò'7¸§kѯ‡B÷t|ðˆ"¦àßÍoÚr1„íC+9ª®ýÂçžÜ¹Im¸‹:ì?6› åCÝ£X i{FSjy“¼ªŒÐN¨ +ïünÒö ›Åm6© Šîñšc£˜]¤Áfó„8v#S!cûC2•’e[{€ä)¥½séu=^sß´à„s ËzÏôžG&Œt¤a0ÚÞ_m¾†4V¯y€¾‚WüG%Ä+“iÍÃh†C<ÄÁ1RqØ|n1Kp’ÔFf£v–Jn¨™¨Î2²ñŽ›>[¡\dBpÍs%yÃ8åq8‚ ÛfôéÞw_6þfÆÄ”ø0HëÃÀáKÅÑ4Êuï·ø9æš.=Å’ +@w$±Ò{„ºg7²,>ñ–.ïžî f‹ÇNTæ Dâã-®æ¬‘Ž˜2½àøæé¸·<]‰q}&rœD<áZ/Æ3sÄœgÌyÃF}Æ •™ÖoÏ`fÖLù$ªT¼x¤%Õ¦¼aP¾>ÎææNûÁ^°MYóÉú=rÜŒÉyújã§9çB‰6ÿ8Ÿ¡ +(ƒî‘j/Y"™?¢`J/2á€ÿsÆ„Á­%~únrÛ!šÎ‡L¯ç£€ùجi·8›4j(u³ü4iTˤÑLó4*L_p­`÷cõîŠógžÈ¥ÅäE¾=sò/’;ÙãÜi¬—ÒRN¸éUà|Ú¤S+À™>‘6}l…OSZeÓÛCbâyØâó–T¤GuŠÄÂ#=$1éIö‚¾ÏšEÍŒctʾô•cÝ<<Å%fïb‹†×̦ŒÕydþz'Ó?Q¶ãä‹á;ùbkÎ äŠ<+‰çÂTCf”2Yh8}_Ñä¬d”ËjUzŽ7ûÉ•¢ç2EÓéå\‰Š¥àvÉj›Í†[;6÷P›ï+¿…^¼`K³å`B.È£ò4S㇠d‰Ö6'Uh ¹?vü4ëΩ7MI®™‰.&GŒ+fÒ; ¯8=—Òàéxjr_8v"ß“'L>_>o5^>„øÌ.‚ÀõÏÛ…²åXššíë‘©4Ö§–2½Ò ÿ‹ŸÕŸîgoè¥éi?›HŠ´‰Lýoã/V¢ù Ai¨ãs󼋕P½:¹xïüdÔ –°Žñã Q~ÔÉc Îwu5«kÆÀ‘6t– EV“©ù?ÿ—ˆMøþrx}`½˜U& +ßL/¾ò°Ñõû6ƧÅÎÊññ2Í"2Sü…”âU3òT||eû;ŸsçzÏí×1”#ÓÃŽ\ ¿…þ3uo¸[Òikî|K•BO;ð]N¦9gƒ@gUâñïð\|Isò¤ +¨³,¤š —Ü{>=°(aA¼I*2™…ÿY¿n&©„¡³tÁ)ã]ö?*MÉ6ƒÿ ÄÅ7vendstream +endobj +1743 0 obj << +/Type /Page +/Contents 1744 0 R +/Resources 1742 0 R +/MediaBox [0 0 612 792] +/Parent 1706 0 R +/Annots [ 1747 0 R 1749 0 R 1751 0 R ] +>> endobj +1747 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 654.279 260.571 666.234] +/Subtype /Link +/A << /S /GoTo /D (classFormSwep_a7) >> +>> endobj +1749 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [247.509 616.117 265.552 628.072] +/Subtype /Link +/A << /S /GoTo /D (classFormSwep_a8) >> +>> endobj +1751 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [211.532 504.659 247.149 516.614] +/Subtype /Link +/A << /S /GoTo /D (classBiQuad) >> +>> endobj +1745 0 obj << +/D [1743 0 R /XYZ 160.667 686.127 null] +>> endobj +1746 0 obj << +/D [1743 0 R /XYZ 160.667 667.729 null] +>> endobj +1748 0 obj << +/D [1743 0 R /XYZ 160.667 635.198 null] +>> endobj +1750 0 obj << +/D [1743 0 R /XYZ 160.667 569.446 null] +>> endobj +1752 0 obj << +/D [1743 0 R /XYZ 160.667 451.032 null] +>> endobj +1739 0 obj << +/D [1743 0 R /XYZ 160.667 426.918 null] +>> endobj +1753 0 obj << +/D [1743 0 R /XYZ 160.667 426.918 null] +>> endobj +1740 0 obj << +/D [1743 0 R /XYZ 355.188 283.924 null] +>> endobj +1754 0 obj << +/D [1743 0 R /XYZ 160.667 268.344 null] +>> endobj +1741 0 obj << +/D [1743 0 R /XYZ 464.003 175.109 null] +>> endobj +1755 0 obj << +/D [1743 0 R /XYZ 160.667 159.529 null] +>> endobj +1742 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F31 829 0 R /F19 460 0 R /F22 474 0 R /F35 1011 0 R /F32 881 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1758 0 obj << +/Length 628 +/Filter /FlateDecode +>> +stream +xÚ¥TKsÓ0¾ûWø(M±ª§mq$C˜)h}+=¸¶’ü(ŽÓL‡?Ï®¤˜BLf"kßî~ûÙ"åð©à“y™æ¥e…Ði3$ªäz+Uj™ÍUZí|dÕÞͤ¤™*5ÙR[iîÎTIâžÐªÈ† +ÒÓLúxD‹$·xs;7»±q`âZib,}¨n’U"bgÊÚ4SÌ–[ø™Ü?ð´Mxz“ ¯LÏðÌ™€¨!Ñ…aR”ñÞ'wÉ×Ч™,|ã—IÊ·ƒT‡Ô%'ƒÃ—t>ÑL–¤ öºË÷ü}@ ÷ŸÁq¦² κ°d®ë£w´Á16ûî™B-­K7Ä´Ý4¿-´Ãææ¡1gAîpJ!˜5ÆóTÏRÇYÜŒäÏË„§"s€‚ˆ;> UB×Í!`ñùûLÏÔä¤îOîÈÖ‚Ë¥‰ü¹P¢]ykN¡<4ipépdD +ÝÇB‡.0йM_{nÁçÙ¬£oïFd^oÿ@ÍÓ§ƒË¥ _£ï'$èÜûþ ŠôïqŒë-(|Uƒ0Liz1ÌX탔"¾R >Ȩœ-õáãÃîa‡% „#à…)ÿSÏá͈Û^ßNæÌúoQ£^”!w/#…ìùõR’**xŽÛß„Žþs·W7†ÌÍÕUxxD€—àüBUN*dŽ–[Î ‚äpFÅÃå“f­0ð©!,¶ØÔXá¡'ŸæÞyIË™1 +Æ–¢ðc5a ¼uâL2à ~5r‘_öfbÜ+f„dÚc!…ôb-óKr<¹¼lí7âŽ/Sendstream +endobj +1757 0 obj << +/Type /Page +/Contents 1758 0 R +/Resources 1756 0 R +/MediaBox [0 0 612 792] +/Parent 1706 0 R +/Annots [ 1760 0 R ] +>> endobj +1760 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 599.658 186.748 610.507] +/Subtype /Link +/A << /S /GoTo /D (FormSwep_8h-source) >> +>> endobj +1759 0 obj << +/D [1757 0 R /XYZ 106.869 686.127 null] +>> endobj +1756 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1765 0 obj << +/Length 1285 +/Filter /FlateDecode +>> +stream +xÚ½WÝoÛF ÷_!`/2R]î[º`Ð%ËÖvAºÆÛš>(² µ¤D’SûçGϲ3§Ûº EшwGòxä‡"’Žã"›9– +õä»ÙäøBªÈ1gU4[xÆÙü}lùôÃìu¤4gB¨°y={3MT¦ã³©ˆWyßãJÅç-|e\¬ë²™1äC5MDÜ6¨còýl"‚ gÊeQ¢˜Ë Þÿ0yÿGó ^OèìÐp§sQ=Ñ©aRda½š\O~U %˜á6Jdêm##¡™Òvÿ5šÁRQBêøÇòqsY+°:…·¬àŒÞ«whx¹(»‰¦(ñ ÇÙ¾‡ü•Üí¹D©x Z¼L>•Yü¸¡ÝÚo x^§t|ô%öx¶uƒ"òôlôÄ[5Dƒ†¨5inŒ “î‰e"eVjoÙ7US¬Öóð!v|:e<ÕÁ5ßêIYª³p¼õ[ê1’)¾Õszà¨Dð” iƒUƳ½jFGᓪ!Ç7Þëôè9nçw]^“—mG„7e+<`ÔNNþ 0¡ ÓÊÀ•N2Í=Æ¢×™óLû´GàV6l¿ª!!Î[ÀZ´ƒ[2jÖ–q!ŸàM0gÌ>ÞÞ®oѾª@P™¸Äáñ¼nÔ;? pU€*ÅRk½ü é?‰xòÌ 7þ Q"Ê€Õ'¤‚HA7ÜáDêEÏ qÄlž7 +µºu1´;4/‘ CYÿÍ2µ³/1œ¥ø¥ïTˆ/4Õ2-M°Ô>c)â¢ü7vþ•1óÚjNÆ!Û¡¼jv¶^þz1® P!"8Îþƒ2&¡Ú¹g‹X8Á”⋟®ÐÆ—S(»3ʘٕë²)6S¨¿/È\Ìg¬Ìlù×73¯ï} ëù6kŸ<Ô¨åcð ¦×CÞ ù*ªÿ4‚§jXÒM"îªÇPýrÑ!®Ë©‘ñn¯· Ë¼Ž¼™í5œÝ¯ÐÌòÿ‚Õ!ja3¦莚}ý` •/³2?þ]"&Xಧ5£éú~=o·Mˆî¯8 ý>8Ó—óm‡Ú/‰rL§™¯¢VPo &áÂ&-|6ñù®qVˆ¢rN¥ôܫºÇêõíó¹­á¢%à™¡Üµj_|¶OWŸmÐÄâŸ>öcê|³å¶³gŽ H…]d¨q}óUéÉ 1p(ü@Õ&±"Ÿ—´ÑÞO`+»Šãîš(À°Ø¾¹œßâµ#à¬n½ð|í§:”¶¢¢¹_ô-que2¾*Ä^5êíº-Š)z² • §­|u×v,k:QtÐ.‚L Í~ÉÄoCJÃPâRß[,s>ákhÒyéñ†ª}$P·1Tá ÒÓò‰ÈÒÈ”$7Biÿ‹ãN%Že–Ò[%žåTÒ—Ô‘–$9¤àôÊ–á0ÓS˜¯86] ‡Aô?ιŠI¬ÁéãÜ¡¡c:ãöò~†Õ†”øzƒ¸Ù”=nc-Üú ü Ñ~ÑðGU(žHŸá∷¨hCôÛ©²€1l?aç "¨T¤% u\üàS$耱0fÁÎ"Gõ¨·õ2å é8üTr +~¡$.B51»g'~hüQaÅ87™À·ç£ ×¥ íàe¼Ëü.9GBncø7+ > endobj +1762 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 1081] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 1780 0 R >> +/Font << /R9 1781 0 R >> +>> +/Length 1782 0 R +/Filter /FlateDecode +>> +stream +xœSËN1 ¼ç+r&ÎÃI®H 8ôPºPµèV*]ø{œn²›ª-hYOlg&ž(@©Ò—×y+¶âöÙÊ—ØJÜo•eÞÊ»†7£Œˆ,Êf)ú2”¤µ!é,(geÓŠ«ÇÅç÷dÑ­¯›7qßÈ)ç¾ +ïAk…ò+µÏµù`m ·P²Ö“…þ×Ã?:kÁ2P€”½Öø>QQÀTZ1ã³ÿ$ƒaÒ°¨hz1“AÆYâF…¡bŸQ‚%c@WŒ€¡d% R„=‹æ_:ŠAyI! Û yÚìºvÓ]–CÈÃ"¬ôdä½Ö °pŒŒU<åÙj11 +ÀŒþ5®ŒF²2 Ø‹šuï—õDM¶ÖSÊc* Úßÿ`²#d¬J3b|ÃL† =&$½§,î”*¶Í‘æ1q³ÙIîUJއ¤‚á}BÁHí}„ØÛ*X@_#=–7gÎÌÆÌ?%×K>ϲääpœúÀs4T!êñS5Ñ +9ìr–i1\ƒôïTKNÇTG¯ª!:®¦Z!‡]˜êTü`5Žendstream +endobj +1780 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +1781 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +1782 0 obj +428 +endobj +1768 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [239.649 626.924 257.278 637.772] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +1771 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 392.096 229.587 404.051] +/Subtype /Link +/A << /S /GoTo /D (classHevyMetl_a0) >> +>> endobj +1773 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 351.296 237.336 363.251] +/Subtype /Link +/A << /S /GoTo /D (classHevyMetl_a1) >> +>> endobj +1775 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 310.497 240.657 322.452] +/Subtype /Link +/A << /S /GoTo /D (classHevyMetl_a2) >> +>> endobj +1777 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 269.697 260.571 281.652] +/Subtype /Link +/A << /S /GoTo /D (classHevyMetl_a3) >> +>> endobj +1779 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [239.649 183.246 257.278 194.094] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +1766 0 obj << +/D [1764 0 R /XYZ 160.667 686.127 null] +>> endobj +1767 0 obj << +/D [1764 0 R /XYZ 160.667 667.729 null] +>> endobj +122 0 obj << +/D [1764 0 R /XYZ 160.667 667.729 null] +>> endobj +1769 0 obj << +/D [1764 0 R /XYZ 160.667 412.496 null] +>> endobj +1770 0 obj << +/D [1764 0 R /XYZ 160.667 412.496 null] +>> endobj +1772 0 obj << +/D [1764 0 R /XYZ 160.667 371.696 null] +>> endobj +1774 0 obj << +/D [1764 0 R /XYZ 160.667 330.896 null] +>> endobj +1776 0 obj << +/D [1764 0 R /XYZ 160.667 290.097 null] +>> endobj +1778 0 obj << +/D [1764 0 R /XYZ 160.667 230.274 null] +>> endobj +1763 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F34 950 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im23 1762 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1785 0 obj << +/Length 965 +/Filter /FlateDecode +>> +stream +xÚ­VÝoÛ6×_¡§B#†¤D} ØÃ–.]ÛeË¿ mhK¶…J¢'Ëq„ýó»ãÑš½h±"’w¼ß}üîh +ø“¡9WYfEÉs™†«.øa\ߪ$,y™%ábí4Õ;–r•DqR¤ì§úiº‹$«Ç–nZ³ßã2aõ:ŠA4 ¼_Õp*²4c™Œ>,Þ?.é±cÁ“² ã„—…Fä?‚wDX"| ¬°\‚V¤¹æJ~ßÁo³)Æ*wþž(>õÿÆö‘*؈žYt<Ç·°1ý¦¦í/Øv‘ÊÙ2‹Åþ[tûúr3”š'išëR;Ûï…ÌIñ ʃ/"ÈÃMfÏDÁ*„lÍh’¼î+Ìæð™N¾£úÔ‘˜b©x©å—9rg]dÕ¡ÅÈgØ›Áb%[ãqåóá¡Ó¯ýó-æÿW²ù¸£ »H«‹H¥ü žúx/ëݸ½„ù:Q}ÿòRö@ Sdú›SÞÜ!Ô>efØÔãEV¥*аãQ"ôŸ[È‹J[š}³Â¥®ZŒçØ\Óo®v4=Ì©ßÂæŽ–;3ÖDxÚ×Ï»¤CíU›ž¾ÐMú +–º`Kä¢W·õPpýÜìýéÚ"mZr+» ÿ¤„”‘ó-g9Û9†y'¹§¬³û±HÉíšM¢=ú—el´¤ð;vŽéÌÖð(N•b¯×¤0¡]{ðfœ³°°kúŽ[²Ó BÍÉŽŽŽ[ß êpûCëÁ8,NŠaú— {©”¬ÙSyß -:ó±Á€6tÔÙ9º Ä’n]¢L¤g(¯ðÏ­& Ïø9ÏTêð—$uVîq]ÿm%A.J¸F}MSÆ~¤­A?|·½2gwî ŠZŽWhÃ9ñ伜ý¿òäÖÐ*öÌB]ºzÆdT¨æ‘·:tΣ M•O)E¶ú”®à}Áû9qH’mê¾ÌxÆž“©Áv¤‚“£õ †6"uèò‰íL|nä§_6Ü+ O$Gô>~$­%WªøŸ/½¡ž›óó†/óôüùs…Hͧ>‚48uÞqJI‘a…@fQоmFá¨À›7/^Ðb‰&ÞGIFÏýàO8}‘{ Cîá¸GõÁÍ+Ç/O@2¿E÷.® "<¡ië®ÕWŽ[ª\ëÂV2wa­¨À¶9âXqóTðLf§Zi¯w–˜ò©³…)D5H/bé?•À¯P§ªý‚&Qendstream +endobj +1784 0 obj << +/Type /Page +/Contents 1785 0 R +/Resources 1783 0 R +/MediaBox [0 0 612 792] +/Parent 1790 0 R +/Annots [ 1787 0 R 1788 0 R 1789 0 R ] +>> endobj +1787 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 577.432 161.121 588.28] +/Subtype /Link +/A << /S /GoTo /D (classADSR) >> +>> endobj +1788 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [237.669 551.284 255.298 563.239] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +1789 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 467.084 184.091 477.932] +/Subtype /Link +/A << /S /GoTo /D (HevyMetl_8h-source) >> +>> endobj +1786 0 obj << +/D [1784 0 R /XYZ 106.869 686.127 null] +>> endobj +1783 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1795 0 obj << +/Length 774 +/Filter /FlateDecode +>> +stream +xÚ¥UMoÛ0 ½ûWØEAgUß²Ša‡µëкַ¶Çqcq‚:N‡b~¤¤$Îr6‰)Y|$ŸA8|‘žã‰-•Ùé¥TÄ3o)ŸÃÁrö@­œ<•×Di΄Pió¾¼™äªÐô|"è¢Z¯q¥èÅ +ž’Ö›®YNÀª¡ä‚®–ˆ‘}.3‘È9S¾ ¹b¾0ÿ%{xâd–qrÅw?Á†˜Þ“.ÓÎ0)Š´^d÷Ù·”P‚nI.]È}WŒ$B3¥í¸Í a©!)!5½Z®X÷˜c$-è58“*ƒŸPlÜ5Ï ì›eÝ`=§—Ř.Œ¯½ñ£m—ˆ€n!P F!¼­¦ë¡¯ê´šVë-MktX€C\×,†“þ žpÌJâ½k—õb3Ki ±?§ãN§ê?ã8æt‘^#}·ØüÇH¦øçãQù¹àŽ iSV&áÍ¡†HíP!¡¸Tè ·«ï}ÕE +žW}4®ö¼¡k‡0çépvö§–„5[“†Ør&/¨Y(í ¶­oÚ8½ê€É‹ÈŠì••ï‘A§ÚHK0oÌXZ·›)^Y[G¹|m†9¶§³u¢Sïù”©@3@«wøÈ…;â5×3ÒÏ#7¾"º)A +8ôÊðáé îÍsµY §-àŒ‚¶ÀM=¬zvœa.Ba[Aí0þ*Å×U>lªÅ1 ’Ls›>rÅP‹þŠÍ¥1"SµEð?‡©%„å¢Îšƒb†Ñn„À<ÔÎýïü?HÏá/t¼D½Õiؘ}Ù¹š5+ìVQ&Ñ#@*K»x XÆXæ—ä ¹½ÂßvÕ„endstream +endobj +1794 0 obj << +/Type /Page +/Contents 1795 0 R +/Resources 1793 0 R +/MediaBox [0 0 612 792] +/Parent 1790 0 R +/Annots [ 1800 0 R 1802 0 R ] +>> endobj +1792 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 2650] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 1803 0 R >> +/Font << /R9 1804 0 R >> +>> +/Length 1805 0 R +/Filter /FlateDecode +>> +stream +xœ­XKs7 ¾ëWì±í%À÷5M_ÓÉL{¦gM,×nVV";ãöß÷—/m2I­:9˜Ä‚>iE“–ÿåïÛýæÃæû7vúó~óa¢ü©þy»Ÿ^\âcšŒW):ž.¯7Ë1š|R¬íÄ6Å~ºÜo¾ùõîþḿ{øöò¯Í—ÓkðÞn(©œŸE¼r–“Y$ kA1MäRÔÊMØ9ÖÊR£ÌâMÔ²þqÝ8o6Ä^«üpÈ@ÞŒy:Ò@¥ýÄž Õfxï:²¤´õ® ò¹€jËŒICH¶-%øk“ +07BCRN¬÷íÀÍ&ù ¬OaeÏAÇ7¸ŒîÅöîjwõÇÏ "¾/è¬>x}½à‹ÊD±ÎkØa{Ê~îûŽfá_ï ÿÍÆ6Ë \ÀYÈ’WãÄlµòiA6_掌Wá™Ä¶ kK—4D1΄DÆD8 6ÊÜ)P=³Þ·Ái-xtbÅçD!Æ_ó®c4øRR †°­‘59… ‡y$†¬ +Tösß8½/üg/÷§ƒSñp2ƒq¥dÄft‡ÇÝU‡fU”,[б¥X£³¯Áç$×£Q^ð…øF™;¥"ªgÖûvB0ÆrÉÚ…óòÏpPÚ b@"–Gëa³ =ñ¡ý ½­#L_K鈘–[õ=Ò[Ë%°^oþˆ*:endstream +endobj +1803 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +1804 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +1805 0 obj +1533 +endobj +1800 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 170.134 225.242 182.09] +/Subtype /Link +/A << /S /GoTo /D (classInstrmnt_a0) >> +>> endobj +1802 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [217.383 131.254 265.397 143.209] +/Subtype /Link +/A << /S /GoTo /D (classInstrmnt_a1) >> +>> endobj +1796 0 obj << +/D [1794 0 R /XYZ 160.667 686.127 null] +>> endobj +1797 0 obj << +/D [1794 0 R /XYZ 160.667 667.729 null] +>> endobj +126 0 obj << +/D [1794 0 R /XYZ 160.667 667.729 null] +>> endobj +1798 0 obj << +/D [1794 0 R /XYZ 160.667 189.575 null] +>> endobj +1799 0 obj << +/D [1794 0 R /XYZ 160.667 189.575 null] +>> endobj +1801 0 obj << +/D [1794 0 R /XYZ 160.667 150.694 null] +>> endobj +1793 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im24 1792 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1808 0 obj << +/Length 1587 +/Filter /FlateDecode +>> +stream +xÚÅXMoÛF½ëWðH"Ñf?ÉeZ§’4ˆëR$9¬)Ê"*’6IÉpûç;³»¤$“všÆ‰aÀÚoÎÌ{óvHPøc£ á±b’„É +g¿.f/N¹R’Æ"X¬ìÊÅòc( —Ñ\h¾®Úˆ…]SV‘àaçO`hÍYhp²ÅA~À|•7y•å0Ä8£a,¢Ï‹7³ß3æÍ˜S"Ò4˜ ’j…F\Ï>~¦ÁrFƒ73œÓÁ ´)a°ªœÉDδïofç³?†£˜"BŠ`.)I™ßF}¢,AK^œêý$6¸_°+ôskÀ/Áy¸‹¸ëbézUÝåï+×þD}÷ç]· %ö¾èÏÓI‡üÌà‰;rúû{´ì—`X A"\5ùõŒÏ€ +6nqÅs\¡Âw08¶˜2"¥~ +‹M‰^!‹ŠM_æUö3u h8%ÆSæœ +"adÎ$Im<ò¼3 R1NBã~ léð¦èÖn¬[ç®qYì|llwÕDJ@´¯·n"»u›MµôÇ–`ÕZ·Ì‰³êVs. 1üû¢§ºï,Ëà]i‰“c®Í‰ÆÇ M´’ß + þ:Á4SBl¬3Ëžx@èLa˜¦Diá!”Âúê^ñd¸°a¼·H[ŸSƒfºëowUØwW[¯»»~Þ.Ü~7‘œ¼ºxJ$Ôõã3ˆCC0y}‰’ˣП`(Kˆ¤u]å“!n½ÀYÕøÅS=^¨Í„xÁ9)$¡"ª8*Fî%$U½{{`йi9ÕœÐôW=c·Béƒn_ô€•Û²®«@¬ë¨ +·•+¿YX\V½~.Ñùä7u.£΋¿óûDdü)H-·¾¾[Ö·þNG)òWvcïp§A›zKˆÑÅ‘1Œq¨jÙ”9cS TªýÚé KˆNØã–†àIὪޜ¬ bw™ï«¾Â +²ƒÏ†ØÞ–øÿ—šçÈ£ÒdPÇ'¸¢v‘ŠC³ÙV†S<Ó’~\,œÙ ?¸ûË;e¼­Øêª³7~½q¤ÈÖÆÝ^>‚¨›û +0+.yX^ÜNp&¦$Nz +[`0Ø© væÌ@â¤Ï_|kŠÌÑU‚!É'9H”@QJlm­;'‡!MÜEÏz¦rlñSŽªð¢¬!k%pîz÷‹áEv@}™!×îʇ!Sl K¢Â—ö’i³¦¸ÂÉ¢¶A½Ksj華«ìo ‹A†po³…æê>“ùÞ…i=Ñm  Ænm­Wøˆ\Ì•}Äb]´Is°ÚÚÑÔø°]1¼‰ø¦/‰ÊÒ'ôy¯‹y³2ý«r¾¯smʼn›7>{¿èä»/pÊõgVƒ$µ±_Jˆkƒ²bB×¾–°Ràuâ•9ØsiÑï9ï 7Ös«/ƒü{a€dV®5wÞqJù”©‹µwãçŒÉÀ9÷¾ŒeºÂÅNE¨[Ñ€Ã:"¼‰xbGpÉe^åén©þĦ.}Yõ!›Åö¦¨.ûR‹!7öˆŸÆ‚Ýâ +„]ý7½~ï%¥f=*‡8¾Öxã¦Ø·}³ò_¿|âßàd“4‘‡Êj‘B…ç·U? ƒîªoqՖу¹ÚÆÿmѹ)àªÝyòì™k\à·nò,1jÞ| î¹sÈEìšÊ…W–ožîF“x3ƒOØáѵݖ?·\ã)%J´B@œ(e^¼ÔÞã9'Š*ü2³¸Mùu‘Á«.4B\áÅg©€ÜØà=tÿ¶1Ûendstream +endobj +1807 0 obj << +/Type /Page +/Contents 1808 0 R +/Resources 1806 0 R +/MediaBox [0 0 612 792] +/Parent 1790 0 R +/Annots [ 1810 0 R 1812 0 R 1814 0 R 1816 0 R 1818 0 R 1820 0 R 1822 0 R 1824 0 R ] +>> endobj +1810 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.962 641.328 219.056 653.283] +/Subtype /Link +/A << /S /GoTo /D (classInstrmnt_a2) >> +>> endobj +1812 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.17 602.473 219.541 614.428] +/Subtype /Link +/A << /S /GoTo /D (classInstrmnt_a3) >> +>> endobj +1814 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.17 563.619 243.839 575.574] +/Subtype /Link +/A << /S /GoTo /D (classInstrmnt_a4) >> +>> endobj +1816 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 524.765 223.432 536.72] +/Subtype /Link +/A << /S /GoTo /D (classInstrmnt_a5) >> +>> endobj +1818 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [221.135 485.91 239.179 497.866] +/Subtype /Link +/A << /S /GoTo /D (classInstrmnt_a6) >> +>> endobj +1820 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [225.417 447.056 243.46 459.011] +/Subtype /Link +/A << /S /GoTo /D (classInstrmnt_a7) >> +>> endobj +1822 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.17 408.202 250.011 420.157] +/Subtype /Link +/A << /S /GoTo /D (classInstrmnt_a8) >> +>> endobj +1824 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 248.706 179.746 257.617] +/Subtype /Link +/A << /S /GoTo /D (Instrmnt_8h-source) >> +>> endobj +1809 0 obj << +/D [1807 0 R /XYZ 106.869 686.127 null] +>> endobj +1442 0 obj << +/D [1807 0 R /XYZ 106.869 660.755 null] +>> endobj +1811 0 obj << +/D [1807 0 R /XYZ 106.869 621.9 null] +>> endobj +1813 0 obj << +/D [1807 0 R /XYZ 106.869 583.046 null] +>> endobj +1815 0 obj << +/D [1807 0 R /XYZ 106.869 544.192 null] +>> endobj +1817 0 obj << +/D [1807 0 R /XYZ 106.869 505.337 null] +>> endobj +1819 0 obj << +/D [1807 0 R /XYZ 106.869 466.483 null] +>> endobj +1821 0 obj << +/D [1807 0 R /XYZ 106.869 427.629 null] +>> endobj +1823 0 obj << +/D [1807 0 R /XYZ 106.869 371.845 null] +>> endobj +1806 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F31 829 0 R /F19 460 0 R /F22 474 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1829 0 obj << +/Length 1378 +/Filter /FlateDecode +>> +stream +xÚ½WmoÛ6þî_!`&¡#¾Ib1 Ø’µhÚ`Yâ/CÛŠ¥ÄBeÉ•äEÿüî…’í8Ø + (‚Øäñx¼{î¹#-ƒþd œ°ÖiîD&M°Ú,~_.Î^*8áR,ïIqY¾ S}X^Ú$BJí…·Ë7Q¬sžG2lŠaÀ™/:øVáj·©Úc1ÖQ,îE‹?– 鈡]ÄZ¸ÜâùŸï>$A¹H‚˯}1œé\°Y˜Ì +%s?o·‹¿fSRKa“4ˆUF¾ÏÁ¨@¡Mzà°²à”T&¼<¿©>ƒË™Ï7z~ôôÙ®*Œäìe~žlÙ¿ìÖ°£ZƒMØ‚ó.Ryø¥­[?üŒhö“éϸZõwØñ‡ÁR1v=›Y¡¨AÑ€£A° Êù 3‘*KNüT·«fWzW¥Üë™L$™ñXürj'™Éý2#Ö§Ft*Ò™ ¿žà;)Œ¶Þ#CZ¯Ûõ $ ê±@((°ŠÑ(Q\<ôņƒ¾Ÿ¢'7^¼xL i‘h ’L•HÓ Ó|‚$yjIç`HüšvzÁÙë ÀuÑ“‚=™âÙ®jJwÄ&)œµ‡lºÞÝa^êSæª×XIX6³ÇEZ £²(¡3†å}"³üxÀ5ººôDhªÂ£ò>± üKÞ þæ°‹˜œ—ßÎð17‘Õ þ0ea3imÉ0Y’y”7Q {žÕíÈ©k / ²+qc¬àtµˆè}_ŒW?έQPÐÐR)”Êÿ»;(h"îÉÞàWæ,æ§ýíåÛ?äß"èfKæ"4-$'TãÇ=Ú§nf™È“|¢×tÉvãÓ$ˆóTäÒ±à¼ýÍv‡¹Äv- €_ ß°às %Ö*Ωײ?ÖN˜ÌA‰aevÔWe(¤o®žhзj¬’ªä*¹ Ã꯷¸XwÔ0ŸêªF$6ÿ±mõQ']®kXTiâÕx:‰ËªG²ðY¸A*ëÂû¾Û°Æè;ŸJexþöŠ—±©±¤ƒ·ÌnJû7á—5´°¾>>ønvqE \²d{\W,Ø ~ÐÝÏ¡ù$Bhm5|Hó‘ùˆZ‹Úðm¡Þl›ŠeâÔlù¢Ç9:[²ù Ñ‚±;–”USàô++C0¸}¬z9†ÒF\ýM 뜈Ù6‹Ú„¾#ÀÐè—˾ªžgà ×SöqG‚Ž7Û}ŠYFH×ãkÉW|×4GcŸGˆÈÇûHq×ó„¬ö`~:°aù +‘È ØŽ¡£Æ8ó¡“ß}Aí l¥œ¬®º¾4©#ñ+êQ܇X©*†Ô¾j¶bW Š‘¿‰/X95”-uƒ§Šáîàœk..ŒÈKnðLá+ÂÀ‹Ë·Ï™-0~U칎àÑè÷ÜNô§pøâ›cyÎ:Ð?-bvY%‰:vÕøº=xV°3ø(¥'\¤=L; ¥µŸ°˜x©ÍIƒ`JSáUª¶êá*,÷¦¨ðéÉäÆÇêöaºV¸0ȯÿòb°Â:û}·é¾³@6Ö'ÏneáÒ‚¯\ ÃÿÿóðÖB¹t¦ãüT2A*>qö—%^…áíWøe€•\¨ØÎŒÆ‹M&)±ßâ'€ò¦y©æ¬ÑøüNžñä }åñu¤Sà#âï%7ÂoA£)q§ÀE®nœ¼"¾ñd£L²Px?WšÿŒv;ÚS='¢)—Ào'€pá»oåïH»;ÆŒÁ_9©L§ÄY¯wTÂ-íø÷ ŒgÙoÀl¨)ƒÿ$ý7|endstream +endobj +1828 0 obj << +/Type /Page +/Contents 1829 0 R +/Resources 1827 0 R +/MediaBox [0 0 612 792] +/Parent 1790 0 R +/Annots [ 1834 0 R 1836 0 R 1838 0 R ] +>> endobj +1826 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 983] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 1839 0 R >> +/Font << /R9 1840 0 R >> +>> +/Length 1841 0 R +/Filter /FlateDecode +>> +stream +xœ­‘¿N1 Æ÷<…G`0Nì8Î +bak{O@uEü¹¡Áëãö.ÇU° ¡ V¾ÏöÏN#ÐñLq;„}¸^ <¾…=Ä“ÕÂv€›ÎÍ +13t»0–E¨ •8ZNº!\Üß®ûËî9Üu°ò̧P Y©Àg`b4b¯öZö¦U ¦‡>lþÆ.³’‚hÂTG¶“ûÃà o8®,(üÐX"¦’ÀrÆÂv‚nÞ_~‹ŸD'JÅh$þ)ÍÞ0^}BKðê™gÂä·ef¿ î«Ìœ…°VOIœŠ.•ó»«QÉ•"ª4ˆšeô!M˜ü¶ßì7á{ˆ"%£ÄÅ 弇± +_ƒä…Sendstream +endobj +1839 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +1840 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +1841 0 obj +268 +endobj +1834 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 425.319 229.061 437.274] +/Subtype /Link +/A << /S /GoTo /D (classJCRev_a2) >> +>> endobj +1836 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 386.465 260.571 398.42] +/Subtype /Link +/A << /S /GoTo /D (classJCRev_a3) >> +>> endobj +1838 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 191.103 224.606 200.014] +/Subtype /Link +/A << /S /GoTo /D (JCRev_8h-source) >> +>> endobj +1830 0 obj << +/D [1828 0 R /XYZ 160.667 686.127 null] +>> endobj +1831 0 obj << +/D [1828 0 R /XYZ 160.667 667.729 null] +>> endobj +130 0 obj << +/D [1828 0 R /XYZ 160.667 667.729 null] +>> endobj +1832 0 obj << +/D [1828 0 R /XYZ 160.667 444.746 null] +>> endobj +1833 0 obj << +/D [1828 0 R /XYZ 160.667 444.746 null] +>> endobj +1835 0 obj << +/D [1828 0 R /XYZ 160.667 405.892 null] +>> endobj +1837 0 obj << +/D [1828 0 R /XYZ 160.667 350.108 null] +>> endobj +1827 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im25 1826 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1846 0 obj << +/Length 1584 +/Filter /FlateDecode +>> +stream +xÚ½XmoÔFþ~¿Â¢_lQ/ûj¯QU©MÄ›H“ûRœ;'gðÙÁg…þùÎì¬}¾8…*BpëÝÙÙ™gž™Eþˆ@ð”ÉĉÍX*t°Ú.~_.Hd,KT°¼t’ËõëPƒd+«ÃgE·Œ²$Ì/*š8ªò݇*<+.‹(a‰°¨W0VÂZ&&z»|¶øc¹þì˜3•eA¬Xf žüañú-Ö <[àš >˜3RÛ…N “Âúïjq¾øsTŃX¦ÎÞÑÍ”N=£Ð !äà… +s˜tޤ&<‚±÷%Õá:þ´Î#t\xtb§ØàÁ:sêÏ—ÏaŸRá;ô·tôÝ娱P:\Á¸¸c¤NfúDÊiœÂŸÊzUõk¬{92ž*ïÖ/s=)KÁ(ZF?!Rló5¿Î¼‹ÌfÆ¥ØÓz3¸‡1.»¼†Ÿ•ƒŠ\ãt~Õæ[rÿ²iiàŽße„0œq §)Å”ÀX ÞÜ&Æ8‘éØfO7ñèéV&ÁqÔö숽Z1m9"Xú&9í `ÿŠñ²è6 y¸Þyüô a€b +80¥nû.ÒŽ8“hò†í·-H;ÚEªÁ|Í´²n÷qq™÷Ò*Is#æÞum¿êš–Íí‹%¨P ü‚çÜì-Œ ç0R|f+D:âëM˜–ÆÛJé€EÜ‘±ëâ[ìü’/ÿºË-™á6ˆ³”“~¹¤H¨<Ù½W,qÊQÅÎËáÉ‹W‘´áoÔ¿%î^õј÷#Z”÷MMpàú ¿8aàð€g‘Q¾Žô˜j5"iÃnS¤.aõÚu´ÒÀ¸ï®{Ï›aÝ öÅÿ|LxAÆ0«õ¾ƒt…©÷{Øç6¦`φÂñíÖe_m]‰q¿v¼¸?wb›0+ÌA¦)ø—}íjnWÂbãWoòªÖ¡èR¸³IE‘@²»¬‘*3k ˜>\ +÷qF$ìú»9cKmâI£~(if>)͸.Ì7œ«™3–©”ÿB7+Yú£Ù6w+eÜŸñJÃnPSA¤jr?“}½+¯êáÎ_Ódé( |©£Í(€%þoÐOîó_/žÃz·ŒÒ,ÌßsÞJ ~˜C;ñ´âS1W¯‘ZfJsw özMƒvš^5ÍQn¥/V6í^ï±kwÛ¢Ûë²¾"AL®lüþ»õÖŸ éC’In=ŠQÒÊ׌Åî š‚¦²ù ?@±ä0QzšØ&S¨+è qžöÀ"dÂ7ÂǾWãKì}Š5õ>Ç®§Û­ÚòKçü½-0¨7ßÑm/u˜ËM‰Ð µ£Ïr{] j·Ô“Gâæ–5@鸞¼ ú|Wt4¨]¡Œ«rärŽ}©Æ¡…%Gk¤¾€«ÙRݩҭ[Ò鼎à6Õ­;c[æÕè–¸µÊ+wDïÞŽ6„‚¨†’©Í1ñn=d¿Ý|Ãc܃}5Løôì6¥ï²ðªÙíÅ|NS†<8ÄœŒv}å[è Oª¢sEnS´4ãÚ|€@fYxÖPX Ð +ž„Ïáïòʱ¨.j?>€–æ½ÿžji áÚi¿DƒýIÛ\8r¡ºtÅÈùœÇ÷à:"9gÒ*€áÔ%Y;Á×=ïG;=fÞL?™ÆäÛa¿ç| MŽª]7#·|t ªÅɹ¼/ËÍäõDƬú)És_hðA5€u7ü΂1m@äcä̽ÈUQmÞÝ)稱m¶žoð1X㎪ªûHuÏ]yBûláìÅÝ× ïG‘‰ï|ÜÓøˆ7 OŽ žG“ÛÐa¨• Ï!áøåpÀ¬Ð +oHĬ2ø/8ð¼ìh ˜æv=|Hƒ TpK‹§‘J€:ˆ‘Ÿ9cô‹´5¤ ~mSüxâKŒØ«> endobj +1843 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 655] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 1861 0 R >> +/Font << /R9 1862 0 R >> +>> +/Length 1863 0 R +/Filter /FlateDecode +>> +stream +xœ•ޱNA D{…K 0özí]·‘hÒ…ì@” W$Dâ÷³$w'"Ñ -¬7ž1“ ÿ¼qn8ÀãsÆ·/8 \Ð46.Z‡¢B’+¶\×Í)Œ‹“q*ظ[nOíåuß>à©áª{ßA8(~CRbO}7‡)ÕŠIªQ }νcUÖ"dõïBËä¹ÇöÃŒyfÃõ«©TòÀ}wÞ#Ÿ¢g> »+…¢†fÊÚ-IÕ‰Ëoå6c÷+8žéS'endstream +endobj +1861 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +1862 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +1863 0 obj +209 +endobj +1851 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 455.616 166.241 467.572] +/Subtype /Link +/A << /S /GoTo /D (classJetTabl_a0) >> +>> endobj +1853 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 417.773 173.99 429.728] +/Subtype /Link +/A << /S /GoTo /D (classJetTabl_a1) >> +>> endobj +1855 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 379.929 223.432 391.884] +/Subtype /Link +/A << /S /GoTo /D (classJetTabl_a2) >> +>> endobj +1857 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 342.085 206.773 354.041] +/Subtype /Link +/A << /S /GoTo /D (classJetTabl_a3) >> +>> endobj +1859 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [193.71 304.242 211.754 316.197] +/Subtype /Link +/A << /S /GoTo /D (classJetTabl_a4) >> +>> endobj +1847 0 obj << +/D [1845 0 R /XYZ 106.869 686.127 null] +>> endobj +1848 0 obj << +/D [1845 0 R /XYZ 106.869 667.729 null] +>> endobj +134 0 obj << +/D [1845 0 R /XYZ 106.869 667.729 null] +>> endobj +1849 0 obj << +/D [1845 0 R /XYZ 106.869 474.538 null] +>> endobj +1850 0 obj << +/D [1845 0 R /XYZ 106.869 474.538 null] +>> endobj +1852 0 obj << +/D [1845 0 R /XYZ 106.869 436.695 null] +>> endobj +1854 0 obj << +/D [1845 0 R /XYZ 106.869 398.851 null] +>> endobj +1856 0 obj << +/D [1845 0 R /XYZ 106.869 361.007 null] +>> endobj +1858 0 obj << +/D [1845 0 R /XYZ 106.869 323.164 null] +>> endobj +1860 0 obj << +/D [1845 0 R /XYZ 106.869 257.867 null] +>> endobj +1844 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F19 460 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im26 1843 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1866 0 obj << +/Length 396 +/Filter /FlateDecode +>> +stream +xÚ¥RMOã0½ûWøh‹ÍÔã¯ÄWX@*vëË!mƒZm? ´ž™8m‘8®"9oìñ›yóŒÒЇÒ&!ÉØ$¨ÑËÅV\f1¹±N&HÑÉü4$æåƒŠQ?æ©tÞ¢7gùNW®ñêJ£Ú´‡GNýÜÓߪÅë¶Ûi}Û¯u…j¿cqŽ T\jdå 5ë?‹‡G#—ÂÈ©(gï„©fJr+|Àb3Æ1¿NTè#4>ÉÊÖCïG1¤ë›˜?knerÓœ ( ӮϚ”´ó )ƒÕ·¾OÕB@°¶ùÏÞ›"Ñ"¤ÎFx!ÕþkïyÕéÊ» f4Ü úUwàᮼíUÖh¢b¯äËݺ/Gƒ »‚¯.8¸(Áœ‰> +¾×.ªî…d¿Œ;¿a¼Â¤Dý·„펖%¸eÜ–Ž8ÐÔ +Æ>-Ó¿1ï~¸ÓýÞ’M†žœæRÚÅβ+ Áx~(ãѼ0æ}Zð—£érM™k…Ööèá'ÄH©+endstream +endobj +1865 0 obj << +/Type /Page +/Contents 1866 0 R +/Resources 1864 0 R +/MediaBox [0 0 612 792] +/Parent 1790 0 R +/Annots [ 1868 0 R ] +>> endobj +1868 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 656.77 228.342 665.681] +/Subtype /Link +/A << /S /GoTo /D (JetTabl_8h-source) >> +>> endobj +1867 0 obj << +/D [1865 0 R /XYZ 160.667 686.127 null] +>> endobj +1864 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1873 0 obj << +/Length 1428 +/Filter /FlateDecode +>> +stream +xÚÅXYoÛF~ׯ Ò + 7{òŠ[IĵõR$y`DÊ&,‘²HÚpòç;ÇŠ’,+ ÚÔ†ïîìrvŽoŽ• +$ü©@ÉDè8 â4‰²Át1z9=?Ö&ÈD›`2£““â}h…NÆ‘Imøv¬Â¼.šy5ŽTX#Ñ„Gó¼mqªÃS$—³rUÖÓH2ÍT'ã“×£ß'#å/¤0YDFd©Ã«¯Fï?Ê Éàõ÷ÒàæR(8µÙÄ ­R¿žÎF ¬dé„4Ð²ÂØxWµPJƒ¤P*T!qáÌA øß2á”@]Xÿùqºm¼ÔfÄúlò¾1&\WàÆ©™PÁªn»Uã‚,Suvþx3Ž`U”s^Oñ +rÀ¬|­ÎvîU‰ˆµ£‹ªêé¼/¼xJmÎÙDÈÄxÕÞ瓈„çm¶EU‹‹}>N #×|~Ù3C„ R Ke騫út`ã¡…»¼†”CD¢‘ªü|•/XñY³â‰G×Ú†*|ñâ.r”u 7fÀ£ÐëÁ"CÚ4£CÛs‚Ö*Dxþj¡“à·@lp œ- Rº8)‘9· §“þÁgÊhy[v Â=,ZoE»1“r€Fk:ÆÌ©’=sâDo¼ü·@ +æù |û÷]‹ L2pÿf0i0[vo(ùAót?ÿùüërÁ„½9orƒÿÈémwŒ»+Z\ø=„Ð-È®Xa£‚ØRtFÎ +k4¾ÈtJWmâ0N7N‡ Ñ´kVϘÚå—U}Žsˆ&7œÏ››²íøLQ¶Õjì ì‹‚‰Ëy~‹rQdâäœé³ÍÉ«ž$™qûÊÄ0‘föûüy]a0t}>ßgh´°2ñ?H#÷8a¼¦ß@Æ kGarØÂ`'oܦ+b¡© +–m‰©µ§ “ðòkP–"–PH&Ö><’óÅ’ŒÚõÅ:ƒ‚m*¤u;F=™ãù~Š +& ²ä  Úò⦴ú}ÚT†çÕuY3D@sD1ð  VRH>ñ °¬±ëiÝ·;ÈÞdÚ¯<ÈÝ=î#Ô‘ª $Ÿ¢ ˆÏôöÑq±?# ­ +§üGƳMÅÚÊ€ª°.?)éZŠ$lÚuŽëª¦>€aC½Ãp»Ä6öØÁ ¦‹n¨è˜y)}XH¹ éÓÏ8ÝÆ3å¿ÂŸAG˜‘GÄ4%â fúZÚ_RÀ”U¡Bëˆ`&ûÞpüò8Àc32ê¦+ßmìûÅ™™z> endobj +1870 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 1081] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 1892 0 R >> +/Font << /R9 1893 0 R >> +>> +/Length 1894 0 R +/Filter /FlateDecode +>> +stream +xœ“Ën1 E÷ú +-“.R¢ÜÈ"‹M=?P¸Hóð8Hâ"¿_ÎXÉnÜ #^‘Ô=@§_ù®Gól.¾³ýõjž-Í[õ³íå ›bÅAŒLv¸5û2²Q '0°FsöõÇöçÓæ~{><˜«ÁÞhî½I œC²oSûR[v(@¢ëÑpÔ~ºÞ,k +ÌÀ*”¼ãxʽ3ì‘ õ >F³Òƒÿ‹$'ÖGâ÷$ß6¿×ÃÛÓBrʻǜ!wEh½×\ÇK¢02$šœøO±¨$“I/… s½}ݽŒÛ݇0‘ô±"u4Ui8)9HÍÿ_B«Q"L8k‰2¨O‘^‰·ŠQöD«Ýã‡0âbîaªÒMfÂùòëˆ ­æÎxR½[uA*ŒÏì{ÓëÌ–ÈyеÙê]ã]J‰–ᘠ+zE÷#ÈÞº”d(Ÿ(õÊAÛ/'Î,#Y"ý#…=òi—5§„íÉŸm–ªÑc†ä;£rØå¤Ó:l%Ì, îßVkN Ûƒ.VÛ¤T«YB‚Ð[í”Ã.jõÆüFendstream +endobj +1892 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +1893 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +1894 0 obj +437 +endobj +1878 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 397.034 174.405 408.99] +/Subtype /Link +/A << /S /GoTo /D (classMandolin_a0) >> +>> endobj +1880 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [163.584 358.212 214.56 370.167] +/Subtype /Link +/A << /S /GoTo /D (classMandolin_a1) >> +>> endobj +1882 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 319.39 178.003 331.345] +/Subtype /Link +/A << /S /GoTo /D (classMandolin_a2) >> +>> endobj +1884 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 269.609 178.003 281.564] +/Subtype /Link +/A << /S /GoTo /D (classMandolin_a3) >> +>> endobj +1886 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.17 219.828 219.265 231.783] +/Subtype /Link +/A << /S /GoTo /D (classMandolin_a4) >> +>> endobj +1888 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 181.005 207.254 192.961] +/Subtype /Link +/A << /S /GoTo /D (classMandolin_a5) >> +>> endobj +1890 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [221.135 142.183 239.179 154.138] +/Subtype /Link +/A << /S /GoTo /D (classMandolin_a6) >> +>> endobj +1874 0 obj << +/D [1872 0 R /XYZ 106.869 686.127 null] +>> endobj +1875 0 obj << +/D [1872 0 R /XYZ 106.869 667.729 null] +>> endobj +138 0 obj << +/D [1872 0 R /XYZ 106.869 667.729 null] +>> endobj +1876 0 obj << +/D [1872 0 R /XYZ 106.869 416.446 null] +>> endobj +1877 0 obj << +/D [1872 0 R /XYZ 106.869 416.446 null] +>> endobj +1879 0 obj << +/D [1872 0 R /XYZ 106.869 377.623 null] +>> endobj +1881 0 obj << +/D [1872 0 R /XYZ 106.869 338.801 null] +>> endobj +1883 0 obj << +/D [1872 0 R /XYZ 106.869 289.02 null] +>> endobj +1885 0 obj << +/D [1872 0 R /XYZ 106.869 239.239 null] +>> endobj +1887 0 obj << +/D [1872 0 R /XYZ 106.869 200.417 null] +>> endobj +1889 0 obj << +/D [1872 0 R /XYZ 106.869 161.594 null] +>> endobj +1871 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im27 1870 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1897 0 obj << +/Length 1569 +/Filter /FlateDecode +>> +stream +xÚ­WYoÛF~ׯ òD"!ýxèCb×r4n­>ihŠ–ØP\…¤l¨ýócIÑ–ƒ¤m`ÀîìÎñͱ³Â‹áOx2ŒÉ½$Ë£Th¯Ü.^.Ï/¤òò(O”·¼¡ËÕ?É‚ËמÒq$„r‹WË7A¨2íŸÂoоÇ/åŸ[ø•~¹ßVmÄP u +ß¶(cñÓr!œa©<óBå™AýŸ>ÆÞj{¯Ì»tæ¹·]èÔDRdî»Y\-~™D D™Î½P¦dûè øuâ̱HÑ”çÙ‘Éo¸­Á¡nØ x¢”ÈÌ·¸¸â…Òù#sèls¶VÑ®+äjobÜÜâ±O½ßâÿëŒô+Ñ=cî;ØýûCtdl"ä@ æââ8Ù)oߣY/ˆä’=¸ LâÍÌ";Á#Áˆ)áe A¡Èt¤¤BG¹Ö$í’ƒ“7¶Û‚¸$õ‡MÅD ¸ ]`”oÝ$óËMA`Á±µÛ×ïpC…»ËÂ¥‰\1óúÀ¦ˆühŠHâ(IÇøQ`ìœÀÎýª;µ^©(Msw¢hWM£,ÍÆœLŠT§’¤Žb%¦ä2qC1[²“BÂRÅ„¤ð#–Ø åÆœò;Ó^¨udDJÒ4J’)žÚ?'€̸ºÁ!,©ñÏq¹êË®Þ!³¶êÃ4A ˜k²YCnHé¦nyò·:L-IžgóJ¾VU3«4¦è‘êÉ=Ô&’c¹©{nåØ+´_·›1Ç0eêÁ­ß`Ú-\¢ä}‰ú?-ï(Ë&bß“wøIi·[܆ÆÄqûú{1)íëþ ª §­?£ÂªŸ¼À%äÅ`Ô¨’' +.À;ň¥'òËéŽÐ/‰ÄOŒM½®lHø}‡" +üG­‰\Y£†zUñŽûöA›Ñ"çÅâÅví N#Aˆ*wtÈr ëklíÞBK¨ŠÊÿϪäL$&ƒ¿»bÝe Æe¤!_7UAÑ)Ô3Öéé«ÀƒÖAÌÄÿ­­ÙÅ®¯$ئÀ#´LL‚m±)Ü#Ï¢,t21Ì@Ì™%ß©ÿî‡Êm¹:L]zžøãÖc=°~W`ºu¹oˆÂ>®… îH¿´÷cÓÒéþÀ®Dž½+†‘;,œd®;º\ˆU­Üâîx‡ËRÇdžÛŽ;øÜ5uµ +±¬l˜èDù/šÆm`óN“Ê3¯Ù/ájÀ`K“N°!ý’2Žd­xÅÞðî%†‰ + çĨFÿd*ý+ru<Q‡ïûø±)Lj8§/FWQ#Áb°Ö`ê°­ÓQZƯ(‡G‚9zÅûn›„òºâ¢F'𗜠c¨mZj—v}`öÛºœ¢Á–Nîµkg™›!¾ÍÇÓ&qæ|é¬k;¦Ÿ¹ÓÈt4ºþw·Íf!a"¥\&2¹ù¶±è¥ëúÎe \ý—Óú#¯ÉSM!S¡€QĈoÓt‰]Çu|–‰MÂNÈblY£S¬¿b +TWc׬½Ü÷CQß×'ÄWÊÿªð¼öt ÍÖF¥ßÇÉwˆ`9æœÝml{,€Kšu¡Ù⦠ÉÏÌ›{ÙsliŠeTJw+¿F,ýŒSgرeã®WÅìÈ%\tL52øxçÙ©'¹ƒÙ×0²dÇòñ[Ö•öŠá‡ +µ‡cZq§dšúµvÅÃË8kÆ‘ÂñÖÕdTwìê«£Di`'27qRÕ4teÜÍ£Žƒ/IùR ËWÃïÆá]jqºÜœ¼Ê”Áð¦\ò"’2ûŸ/3´ežLwzfj/‰òTÏŸ"­ ÜÌðt4øpà’Ç!EáóDÄ Mÿ6oêY5w_¢ÏžâÇSþ¸FA¦/•W01µKLàÙOüY´¼¢Ìëè楈Sº}Ðβ@ñ·(×Ò¦zF)'ó×€:à£|éF~st;”‘‰5>ƒ‘Œñ3nß (nM² ‹ÛeÔeþ†GBŽ1ü6[űendstream +endobj +1896 0 obj << +/Type /Page +/Contents 1897 0 R +/Resources 1895 0 R +/MediaBox [0 0 612 792] +/Parent 1891 0 R +/Annots [ 1900 0 R 1902 0 R 1903 0 R ] +>> endobj +1900 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [238.968 654.279 303.809 666.234] +/Subtype /Link +/A << /S /GoTo /D (classMandolin_a7) >> +>> endobj +1902 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [267.391 553.689 312.97 564.537] +/Subtype /Link +/A << /S /GoTo /D (classPluckTwo) >> +>> endobj +1903 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 314.388 236.505 323.299] +/Subtype /Link +/A << /S /GoTo /D (Mandolin_8h-source) >> +>> endobj +1898 0 obj << +/D [1896 0 R /XYZ 160.667 686.127 null] +>> endobj +1899 0 obj << +/D [1896 0 R /XYZ 160.667 667.729 null] +>> endobj +1901 0 obj << +/D [1896 0 R /XYZ 160.667 617.922 null] +>> endobj +1895 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F31 829 0 R /F19 460 0 R /F22 474 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1909 0 obj << +/Length 1331 +/Filter /FlateDecode +>> +stream +xÚÅXmoÛ6þî_!`_$4bøª—b°5ËnY³Ä´ý ZŒ-Ô–INêíÏ$;r“ E¨©#y¼{î¹ã1Ì£ðyŒÆ„G‰%)‰™ôf«É/ÓÉá1^JÒHxÓ+³ršð%áIŠDú§óu³àGø)ü7ˬipÈýó „©+]ër¦AÄ•~”Ÿ¦o'¿N'ÌR"ÒÔ I…‡ÞL>|¢^>¡ÞÛ Î%ÞŒ)a°j5‘±"œ%î{9¹˜üÕ«¢^Èccjo;÷˜$BF»ÆƒÍh?cÐhg"ëD¬À ø²~ÄrË /àÁáq² +ž+S£}zðدÂt+³·lŠªD•KÐ(„_ëÊÛdË¢ÔYmå°3ñ3Ü~‹#=_ãŠÁÒ_éw-ìÚ™šùÄšÃÓ{XL"®ŒA?ål¹ÎÙŒ ëdLh,*?ŽõÄ$§ìô© 2YìÑÂH";-?À ÓˆD‘r&I³ê¤\ mÐüaj3„Ç€âœ5èeó:[Yw¯*‡Ñi·Íy ¯ïŠ[)åp`ĉL ‘½ MˆqÑöØ0n`ž¬xâUÀ-o WØk–\f;,c$Uj›egëÏH£bf9uªÛECêçÃP 1$@#‰%Ìþ”Å#0qÀ‡ˆX>™,8©¢½°ª[+ElßX\›Ý™KØÁì)‚y h7™9Ãb‰“DYs0±Ì“PD1„Jq¿*›¶^ÏÚª>°Ò6ûR”s'~ë"Œã¯v:+s;ØX±Í›NoQÚßâÎüëeŸ›dŒYÈÁJÁ/Dƒ¥h¡¢F‚Žà +ÆŒ=Œß~D""¹r€ð=€äºÃâ1KùÓ¢k*@Uä]¶÷EâÛ6îDÍs(á÷ šA{/ ƒiÔ£jìYvñhm––™“4mÖêÿ§;ÙèöÏ÷–¦†È;TµT0T~2g/tÛ‘Q[ëóbÕÁìÃcJ»Q*þÖÛdaÒ±y>¿/÷ûò;üî2}uçÂ9ö/ªÕ5^M¦?ŸÓ'åõŽiÏÌDS´Ö*Á §—ãÂÎI*b8Êe$ùãͬOÒ½­‚›éKx2îqŽÿx‡†ý@—3µáùzŒYWòð:Y™ +¸5“îbù?­Û Öí§JÈ© ,y4IvHS@˜\ѸÆrR™Œi‘Û©SHS3ÌìjŠ}µãÐÎ0â¾sßcÝY>_592¹3ËP¾ªç8f!Üô¼Ð¸’(~få]=rÖB(Ń¡Œ‘*}$’˪q÷€'M>·ºv¢yV”ý,\™xËÞ xžaU«Zý®|06)QO/™+0Ò¶þ70ZÃcfƒ±9ÚÑq¡¢ŒDÍ Ô¨Ü¦ël×=£¾A 3¢úžÆ2èÄt]ëe£ÇM\cš§’•Ýõ•`á:À­ óâVwÁvsh•wUÛîªÀÍÚ=®ºš3/«a6~ +Â61\Á{£âYàýóRT| ¸÷ …'—а¬.¿÷QmŸçîÓ?y$´Ä)ô[O±ìH¡ü‹MÀ”!Óa ŠÑ 0ÌÇGÂÿ¡Áø½hí6¸óÍ«WvðlìäY "_ãC±v’sbß 2PùÅ~Â+´æöã7g¸«Wô‰3ê,üÜ¢êÊlÓˆ£ÇSJ¤@bãÖÌ=ŒÕàqȉ¢ +ÿt±¨£rë¶að5ºB\ðâYêNñ—ò.vÿ½«·endstream +endobj +1908 0 obj << +/Type /Page +/Contents 1909 0 R +/Resources 1907 0 R +/MediaBox [0 0 612 792] +/Parent 1891 0 R +/Annots [ 1914 0 R 1916 0 R 1918 0 R 1920 0 R 1922 0 R 1924 0 R 1926 0 R 1928 0 R 1930 0 R ] +>> endobj +1906 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 895] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 1931 0 R >> +/Font << /R9 1932 0 R >> +>> +/Length 1933 0 R +/Filter /FlateDecode +>> +stream +xœRËRC! Ýó,ÕEBl]¸pQ{ÿ £ÖÇíLmgü}C :mutX„’pNV›|Š]Œj­®½~Ù¨µ¶»§j£¾ä1 ÀàêáYíÓ¬’Ob„‚Fuñð´YºÛËáMÝ z&¡¯*& r¨¿rõ’ZþuÆcvGå9Ep,÷én9Y0$H> +endobj +1932 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +1933 0 obj +353 +endobj +1914 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 425.671 168.787 437.626] +/Subtype /Link +/A << /S /GoTo /D (classMesh2D_a0) >> +>> endobj +1916 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 386.999 176.536 398.954] +/Subtype /Link +/A << /S /GoTo /D (classMesh2D_a1) >> +>> endobj +1918 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 348.327 175.263 360.283] +/Subtype /Link +/A << /S /GoTo /D (classMesh2D_a2) >> +>> endobj +1920 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 309.656 181.932 321.611] +/Subtype /Link +/A << /S /GoTo /D (classMesh2D_a3) >> +>> endobj +1922 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 270.984 181.932 282.939] +/Subtype /Link +/A << /S /GoTo /D (classMesh2D_a4) >> +>> endobj +1924 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 232.312 226.405 244.267] +/Subtype /Link +/A << /S /GoTo /D (classMesh2D_a5) >> +>> endobj +1926 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 193.64 193.417 205.595] +/Subtype /Link +/A << /S /GoTo /D (classMesh2D_a6) >> +>> endobj +1928 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 154.968 186.858 166.923] +/Subtype /Link +/A << /S /GoTo /D (classMesh2D_a7) >> +>> endobj +1930 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 116.296 187.135 128.252] +/Subtype /Link +/A << /S /GoTo /D (classMesh2D_a8) >> +>> endobj +1910 0 obj << +/D [1908 0 R /XYZ 106.869 686.127 null] +>> endobj +1911 0 obj << +/D [1908 0 R /XYZ 106.869 667.729 null] +>> endobj +142 0 obj << +/D [1908 0 R /XYZ 106.869 667.729 null] +>> endobj +1912 0 obj << +/D [1908 0 R /XYZ 106.869 445.007 null] +>> endobj +1913 0 obj << +/D [1908 0 R /XYZ 106.869 445.007 null] +>> endobj +1915 0 obj << +/D [1908 0 R /XYZ 106.869 406.335 null] +>> endobj +1917 0 obj << +/D [1908 0 R /XYZ 106.869 367.663 null] +>> endobj +1919 0 obj << +/D [1908 0 R /XYZ 106.869 328.992 null] +>> endobj +1921 0 obj << +/D [1908 0 R /XYZ 106.869 290.32 null] +>> endobj +1923 0 obj << +/D [1908 0 R /XYZ 106.869 251.648 null] +>> endobj +1925 0 obj << +/D [1908 0 R /XYZ 106.869 212.976 null] +>> endobj +1927 0 obj << +/D [1908 0 R /XYZ 106.869 174.304 null] +>> endobj +1929 0 obj << +/D [1908 0 R /XYZ 106.869 135.632 null] +>> endobj +1907 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im28 1906 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1936 0 obj << +/Length 1761 +/Filter /FlateDecode +>> +stream +xÚÍX[oÛ6~÷¯0ú$¡KR¢.ö°%KÑvٲƻmK±µJb*Ë Œýù %;±»]Ñ $^¿ïÜd5•ðSS c²iœf"QÑtÞL¾ŸMžŸèpš‰,§³+Z8+Þz‰ôßÏ^MÃH +¥B7x>{íayG¾òê|µÂ^è[xko¾nÊÖ‡FŸ÷•(϶(còÃl¢œa–NƒPd©Áó?NÞ¾—Ób"§¯&ùe¥IBîÃeB5Ma Þ½Ìyo¯AÅ8ñr~µ¶/±•z·U¿ä1x+Ï.ª›oк] L]×U¿.Jy'\]û&„Fó£à){Åï‚ÄÁøù¶(žBøA” b]GÛÛ¾ÞðÉÕ¢µz…@ŸŸY#CŽ„ +cxŠŠî÷Nª„¦ÛuÜ`N/î3 +©³AƃDh€:;Hƒ›áO÷MéäÇŸ}zßù`83¸eÁ…Ën7C‚’°¡ ìÒÄBûŠDE$ë(GËCjæë:HÄÁ¶àvG¤ôë®åþ.­+@7¯™æ·¤å lox|ÕÛnäÕQZÕpSy+|§Ï&*`„ÁÑDjÌ×§ +\Àöuâ}ø¾,ìn®×½óÛ:øp|ÝÄCݹZ>ã1tM^¶e¹(ªvqŸ@í-œ÷ôvß—›òq }‚¢ÿ Aûj&‰HeÊÒ¿®‚à=@íý'ì&EªÌÃyÙŽ¶‘&B¦T—÷©v¦E<» ¹Õà¾sôgÛ\“- ö×yÀ +É´¾ÁÜ ¶*˜›9äDè÷œcë£eŽØ,J +‰°tæõ<@íuƒ;.ýže÷ŒåìókHÔê¿3ÃßÄ^^¯‡°ø ª•QÝ]®ÏhBre»æ­”=mÛSP¶5³7_Ž/ܺl<¯€•h7€_n™ÙVK'M#ÔAÔûÚ‡¡HR·!‡„³/œ,IFæM‚ˆ”û‚ÀŽd¨Ü:¤] +¸de¾£Ò0” +޵£9j=U€ d²G(Ò‚O £ábÞ (9”ÒÆ;&Œ{É«9Bd§ˆ»šwÕ5NV–p½oÐ’L_š”N˜Ýb´±V8Uã +%H„ب,6)É‚™v圎ÅUS ÕyÇÓ·hD9 +»AàinTQ+VŸKçA\w:@P3=Ö†5[V¬H”*ZI »4Ç´EsËržUûꮎÊoX6Г”µÇ•G¦ê¥ÑŠEÕýá¦)ǃ{7ÅÍPL ·r,íV}·¦Pb«+±€s?ñ¡ü¶„¦ñвnW!ÀHÁ{¿áº¼åÎ1ŠØ´n*§Â ¶Ÿ7¥M·ÿÉÙQÚŒ—£ã™ØØ;ÅÛRH*JmÁ·Ãr*«aÀ¥âý[éà L€Â (û¿cTù$V¸ât[{=Au¥öκQ#R´, VkÅ[°*Ç÷P`B_È­—•Ë®ÍÙ ZV¾t,™ ËÝ{œ®wM`ÎÑðȶWƒ’ÝÐh˶]z•{£qJ}ל ÿ€9Á +ÒñH!)RæpVQ¸®"7€ÆzUò‘״ɲëT—è¹^BCx +DHc¼?só$æc|#RT˜oÝl³åIíòâ%Ù·Ï{ÊŠ hR{¿¶_³[U䊴gŒôYK“/s—ACÒ€Ò­îB=T¥»YØ1†:å힟0$” <ø›ýj@F"£&3«þ`éLJ£O~Ë/} þàV  E›GÖ?1ú2'žr!†‡Ò‘óœ9Û=J©ÎÒÄ3¸`ú^n‹L>áŒÂõxÕ¾ºwYR€È ¥q$²u\î¨ûjM™Ë¹8t'LKRJn<£syoèú7èn¤G¹5öñ€XÈtƒåÏ·>Í*Ä8b]Â<Ÿ½Þž«GgÀ… †ô§ {¾…`W$]¦r—ÛI™.?Cãæå˜;Š’åPb;‰†Jú"ÎrWûº¶”A·‰‹]…• +×ÚyWôxËÓÇb¹÷‰j°)¨’”‰ù·> endobj +1939 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 630.369 273.052 642.324] +/Subtype /Link +/A << /S /GoTo /D (classMesh2D_a9) >> +>> endobj +1941 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 591.514 260.571 603.47] +/Subtype /Link +/A << /S /GoTo /D (classMesh2D_a10) >> +>> endobj +1943 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 552.66 260.571 564.615] +/Subtype /Link +/A << /S /GoTo /D (classMesh2D_a11) >> +>> endobj +1945 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 513.806 271.402 525.761] +/Subtype /Link +/A << /S /GoTo /D (classMesh2D_a12) >> +>> endobj +1947 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 198.821 230.888 207.732] +/Subtype /Link +/A << /S /GoTo /D (Mesh2D_8h-source) >> +>> endobj +1937 0 obj << +/D [1935 0 R /XYZ 160.667 686.127 null] +>> endobj +1938 0 obj << +/D [1935 0 R /XYZ 160.667 649.796 null] +>> endobj +1940 0 obj << +/D [1935 0 R /XYZ 160.667 610.941 null] +>> endobj +1942 0 obj << +/D [1935 0 R /XYZ 160.667 572.087 null] +>> endobj +1944 0 obj << +/D [1935 0 R /XYZ 160.667 533.233 null] +>> endobj +1946 0 obj << +/D [1935 0 R /XYZ 160.667 477.449 null] +>> endobj +1934 0 obj << +/Font << /F23 479 0 R /F31 829 0 R /F14 825 0 R /F8 483 0 R /F19 460 0 R /F22 474 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1952 0 obj << +/Length 1366 +/Filter /FlateDecode +>> +stream +xÚÍXYoÛF~ׯ Ò +)×{ð Ú]I*4µõR$y )Ú"LRIÙuûç;Ç’ÔáÆGk´0 ­fgwg¾ùfvÖÊ‘ð§%#¡ÃØ ãDDÊw²jòz>98ÖÆIDg~NšóÅG×:™z&öÝÙT¹yÛ¦yƒí–iÛâи'ùùÔƒéupTà #((©”©éçù»ÉOó‰²fxR˜$q<#’8@#¾L>~–Îb"wœ‹K¡@«šøQ ´Šíïrr:ùuØJ:žŽÈôÁí(_?ÜvÌB”ÒàYÚ‚œê Gߢ|»¿À=tTê,G7ŽãM¨ðp?¡#Nçïa1n\­á£cÁ±ª§: ´*Y^ÑÆxœxxß½Âã›Öš¤\Á§êdëX‰Ptî7E•ë…µN©QÏ„ŒŒEà»ý}"í<=³Ëý}-Œì÷ùaY¥À¶Ê'µ·õrV¹E—n] 8½hÒŠÑ8_5<˜õ dšW zµË"åû@bÇ# Àù‚$‘Q‘Îæ˜X6²†o+Àãh|rFJyÃÆ¾àn3K‰$6™õa}†Œ)2&Ì,ï–+JwÑZ$ý*1ac­D1m>IíAŠ=F†À°é}’,,v7KÛËï%h(ÞÔ('†Í( -T䣷¤=\Á¢ºíšuÖþa 4$ô9N5UË¢.º"I‰Æ K»HM³g¸$m)p0Z°´ŸMé;v < —#Ç× +J·K±–§Á^Â7„A#Z^ %ŒŒÜà )õUàî†&>x™’ü±î/ò£{ Ör…A»à\¨{ÊÿN1 çi´ûã½*0kÝe‘ì’Ñæ ò8e×êüæžðpièciƒÛKºucƒÜáJ›óÃÂ2kÅÝ-ÐËðÌcbþ5(h(ÈmÞL5tÔ[PbÕMG(1_Wõ«×§8Yõ~—Œýƒ!>ÍÁq.Ân™ãÈŸ—]ÊCÂa­ìœÍ\ZÐÒ¹W}Jå-Ij AD«1©›šË&¬pÆàß r{õÒäuZ‹a#Í +)ÒÆ˜Ð¶ ºW$Ô7ölŽÁ,,ÿÔ® È †ËtL 2me¹AÜT†×±ð¼/+m†bæZš~Ùß0_¡-œh׿EŽ­<»È»#O_vÓŠÔ2ZCDèÄ‚“!œFDö¥õ-Bɾד]/€<´‹ÍÍ® [ ŠCBªº*Ÿ§9É +Ž»Q†zÆ®æ?ŠrãJÉì·Ý.Ã×"1ìJ!µ¹¿[ÕÐÔ&wöª8sçAýD¼ßtÿü âþãÚîù‹×ä-^ äìü†H»s§õÌm +ðüQ‘8£3»¾lߨ‡â²Îwï’ý꟭›f¬KݘáSÛê> dáSCæ1ÐЉ8 þChšü‰y´½ø)Ñ[U—?öCÙÇqHÄõVî–çgé‚·Ã%½ê¼Üg÷s–(­knìͶ®øšmv.²G+±GM?€'€…"€˜þ³·/¿¢í›dx¥øÐÍ&ÂIçÔœ˜À=½­§ð.‚x½û‰«dH%ÀOÀà}Ññµ+ >|ù’g¸Á-O~˜šßþ•œþ>¤zá®.ùgJ}‚¼Iûgá° ¼Ó\aMÌR<á·^qçó-µ':‘"à +€DäVfß´Á豇å:Àÿ0„#«·ŒÒ§½BTxñ¬àO-ñ[ê>tÏUendstream +endobj +1951 0 obj << +/Type /Page +/Contents 1952 0 R +/Resources 1950 0 R +/MediaBox [0 0 612 792] +/Parent 1891 0 R +/Annots [ 1956 0 R 1958 0 R 1959 0 R 1961 0 R 1963 0 R 1965 0 R 1967 0 R 1969 0 R 1971 0 R ] +>> endobj +1949 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 526] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 1972 0 R >> +/Font << /R9 1973 0 R >> +>> +/Length 1974 0 R +/Filter /FlateDecode +>> +stream +xœ•±n1 †w?…Ƕƒ'Nì¬HŒ(y +¨…àxýºpw‰¥Ê`åÿÿø³ˆ1ü±nz8Âû§àn€#ò՚ʦÇEs³º)–„m ·gŒb”8& )cëá壆¯]wzm?°l¸òð7˜’rMxÊÅ£¥r SdÍB©â©ƒõÿð¬•Ô* +GŠÆWüú¼ŸÉ+å`¤úœ(‰,×â£ÅÂìõ·«™|Ã'„ÑŸZÏþ$¸?&ý‡”|ÊÄTŒ$Þ+=¶o°‚_f|T`endstream +endobj +1972 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +1973 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +1974 0 obj +210 +endobj +1956 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 455.577 172.883 467.532] +/Subtype /Link +/A << /S /GoTo /D (classMessager_a0) >> +>> endobj +1958 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 417.713 180.632 429.668] +/Subtype /Link +/A << /S /GoTo /D (classMessager_a1) >> +>> endobj +1959 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 379.848 209.662 391.804] +/Subtype /Link +/A << /S /GoTo /D (classMessager_a2) >> +>> endobj +1961 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 341.984 201.581 353.939] +/Subtype /Link +/A << /S /GoTo /D (classMessager_a3) >> +>> endobj +1963 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 293.161 191.701 305.116] +/Subtype /Link +/A << /S /GoTo /D (classMessager_a4) >> +>> endobj +1965 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 255.297 190.456 267.252] +/Subtype /Link +/A << /S /GoTo /D (classMessager_a5) >> +>> endobj +1967 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 217.433 243.717 229.388] +/Subtype /Link +/A << /S /GoTo /D (classMessager_a6) >> +>> endobj +1969 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 179.568 250.11 191.524] +/Subtype /Link +/A << /S /GoTo /D (classMessager_a7) >> +>> endobj +1971 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 141.704 204.016 153.659] +/Subtype /Link +/A << /S /GoTo /D (classMessager_a8) >> +>> endobj +1953 0 obj << +/D [1951 0 R /XYZ 106.869 686.127 null] +>> endobj +1954 0 obj << +/D [1951 0 R /XYZ 106.869 667.729 null] +>> endobj +146 0 obj << +/D [1951 0 R /XYZ 106.869 667.729 null] +>> endobj +1955 0 obj << +/D [1951 0 R /XYZ 106.869 474.509 null] +>> endobj +1957 0 obj << +/D [1951 0 R /XYZ 106.869 436.645 null] +>> endobj +1960 0 obj << +/D [1951 0 R /XYZ 106.869 360.916 null] +>> endobj +1962 0 obj << +/D [1951 0 R /XYZ 106.869 312.093 null] +>> endobj +1964 0 obj << +/D [1951 0 R /XYZ 106.869 274.229 null] +>> endobj +1966 0 obj << +/D [1951 0 R /XYZ 106.869 236.365 null] +>> endobj +1968 0 obj << +/D [1951 0 R /XYZ 106.869 198.501 null] +>> endobj +1970 0 obj << +/D [1951 0 R /XYZ 106.869 160.636 null] +>> endobj +1950 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im29 1949 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1979 0 obj << +/Length 2475 +/Filter /FlateDecode +>> +stream +xÚµYKsÛF¾óW°rØ€Áƒ—«ö°+Ù)Å%Û+ñ–ä ‰Ð(EÞ?¿ýšRÞÃVJUÂ<{zúñu÷PÍ=øSs?uÃ0GIêÆJÏóý쟫ÙÏü`žºiÌWZ¸ZÿæÄþâÕ¯ó@{®R >¬>.–A¢ë…rª¬ë°87 |}'?î‹z>ëËÅR9M4fïW3% ,=7H“ù2pÓ$Äó¿Î~ûÛ¯gÞü×Ͻ@ÎLÓù~¦ãÐõU"ýjö0û—%¥å†^4_ú1ñn/ãÏ•rÓ0ßF»À°ŸÂ?WgÊ×ÎM,ö0”•ü/Öp‰8tnp¸èò¶<àdÙÀ?ºÇÏ’±˜–¾v=æ — pÊVŽ $L¹ÈÁO訶©x|ϧtøÉ¶jç€Ì´1Ö"¯¤8JÅnäk:jµ+Qê:dÒ¢9m‘­e&«×Ü8dH¦ã³xY.Ì0'°fOÇuqA‹qÙ†˜Ýs'ã•Ï‹ÚmYôHá•çš OvÍÏÊÍYʹ‰ÄéŽ9.ß k½“( î„ôUèÜÁþÛ›[î X§i{$£€LÞ´ÅïžÒUaFH´´ Nˆ'<¦èy;\UAWÊû²ÁŽìkZü‚´K>ƒÖ¸‹¥bçΞ¿çKŒÅ£$Ï‚ÛmÑ·¥9ã™__¸Ü±#£Ø²«ô;!í{RÄÒX—8ä‹NÑ øt`+L•óªâù¦ß-7ÅÔzîMÅô÷B¯cl Ÿ(AôÝÂh(հ䜑fBm¿ebh›cqÅG‹LÆ7X­lÞè lîk¶ý¾áï76xê3_<üðñöÓ-77Ä8mÎúÞÜAÈL5tÉ[>,¬Háaè]qǽ<#¡B«'6¨Yöwƒ[¢ñ¢(ŽÈå¼,“bs¿¬Q<¤‹ðÜhG+K¿ ð õÙÉ줴(rÐ$6²ñ‚IÕÅ †uf¤ó=d)°™ápe ]Š?VF°ßÁeUf¥;£Lú,÷€Õ«èo¡XúÐ>v†—Zô “7YÅH«62ç‰ÂˆA˜@”†+öûæ0Ñ:Ë糸¾Fåoð;8‘ßnË:«xrÛdUÇMä¿9ài_ÖÛÑî²ãí9ƒ.6_Р2ÙŠvƒ]¹? LËÍëùÙc¸½€„ù×cÙ•=ò× 'AjÜ„\T6ÄöœGa$F{†CT®ÜMVŽ b‚‚€JùÎ톷’U㊤@:Xã‰ßÈxŠ­³*ÈúAE8‡J>ÖÆà ëçw{ÀYÉØñ6—ZÅο)º;‰S!'Q>0›ÐÀU5ÎþÉýÆý•¹’:/H¢9¢>ä˜xÀ@zÄYQó" ?léåØE–Q9¥½°Ð(9æcsmõU\ŠvuC8á>—ÒγúGi>òVî; yÐ#ä„ï–4Èa˜bgº¹ýdÐ +†nym¶çî(…ŠB.ÜÙÈMÎÈèv_QÚ¥‰z¡Ar‹¼—.¸!ƒ……~˜2c¸úfA,)çÓ΀fȧ $ãHWÔ˜Â`´Ý‰t±{v*Ñ~.3ž–Ï›.>Ïø QV˜Z7Åö[nÊ‘íBÄdl늖 «Å„Bkç ÷vÙaÀI€xôN@‘œ¨?’‹^I.)Xgݲ„ ƒ(›B7)’3!–$p„» Žè\<C÷ìlÁõrÔªŒÜ‹+`ûšeÑßÿXû}³-¸ºÃ^I«=¼ 1‘j(.ÉL–J§®ŽôiŽEšIxƒ +ÎdàØÞc¸b·(RúÌüö]‘Sr˜ý‡ÙÖå-÷sx¥e2>d­¤TDûCÑ…T†üÃS_îåÐÁ±‘¿(ŒÊËîêRA9ªú§÷-½QüäfÒ&swRc&Fe fhT£Q‚onXWXk”™¼|/ìøÓ°Hع£‹ì¸ñÅÀ!P#ÝÇ:p#LCk º‚ÌäêRœIOãL`ãLe±oËX/q†‚Œr(ô¼“ºwaÊéqìyÆ4åúbˆ8 s×»Br¢³ò/c…Ø(ÿrßÇoQT¬Ö¬õ¤º ÔÉsé~jS—JÅûS¢:ñ§û°€ã—¯êXH¥·ÅâPžéx•B€ §¶áµ–ó%wT\Ëâr®Å©`\óÈy¶KÙV’JÑ–ørÖi@:æõ‡cyy¨ãƤò ’Hbåþ`_‰ú‚Êù$2qZ¤UØŸ™Ú—<ÇG*†c±/kÈÒiIȃy՘쀫;Ï{ãAd› /2Ú¾U‚ƸK¥»¡§Úõð¤DŽ% [lÑ~i¯`hV’ƒOŽúfŸqä2º9á´ %ÂäÁF¶_xUã»,3yÒå’m¯Œk )&¯Ã&‰SWíw£G鋤©IäÝ—l‹ºhÁÖ)~:&'<­qšªb4¶È{ò"ùŽFéQ†º0uuÀyl‰Ïˆ’³ âlÝÝÙ~â¹)$P¾ï¹Qäÿ¿¿Cº‘Õ‘ýBÏ#8E3„?µ„ÎÃ+ {h«\²Ðj¡¼ˆ_ñ?Hå#VšÞÙ8|aûú'ìüÄG$ôÊí/‹ rÖ[¹we ¨JÓ„«’scçïÀ:My1¿‡Ÿy†äŸ‘nC{ +Ì~ +¹gò¹Ät·\bS8\{黡§ñGŸHEFs¡¬‰Gù®&ZAÊa ¤Œg…ÿšª&£Âÿjy5endstream +endobj +1978 0 obj << +/Type /Page +/Contents 1979 0 R +/Resources 1977 0 R +/MediaBox [0 0 612 792] +/Parent 1891 0 R +/Annots [ 1982 0 R 1983 0 R 1984 0 R 1987 0 R 1988 0 R 1991 0 R ] +>> endobj +1982 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [203.875 588.686 237.001 600.641] +/Subtype /Link +/A << /S /GoTo /D (classRtMidi) >> +>> endobj +1983 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [247.26 577.284 277.203 588.132] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +1984 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [231.268 559.106 288.166 571.061] +/Subtype /Link +/A << /S /GoTo /D (classMessager_a2) >> +>> endobj +1987 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [388.628 336.221 418.571 347.07] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +1988 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [173.508 300.356 213.636 311.204] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +1991 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 124.597 234.983 135.445] +/Subtype /Link +/A << /S /GoTo /D (Messager_8h-source) >> +>> endobj +1980 0 obj << +/D [1978 0 R /XYZ 160.667 686.127 null] +>> endobj +1981 0 obj << +/D [1978 0 R /XYZ 160.667 667.729 null] +>> endobj +1985 0 obj << +/D [1978 0 R /XYZ 160.667 422.576 null] +>> endobj +1975 0 obj << +/D [1978 0 R /XYZ 160.667 398.462 null] +>> endobj +1986 0 obj << +/D [1978 0 R /XYZ 160.667 398.462 null] +>> endobj +1989 0 obj << +/D [1978 0 R /XYZ 160.667 287.876 null] +>> endobj +1976 0 obj << +/D [1978 0 R /XYZ 160.667 263.762 null] +>> endobj +1990 0 obj << +/D [1978 0 R /XYZ 160.667 263.762 null] +>> endobj +1977 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F35 1011 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +1998 0 obj << +/Length 1317 +/Filter /FlateDecode +>> +stream +xÚÅWmoÛ6þî_!`_d´føN©Øt餱.ñ—¡éF’¡¶ÔHr»`~w$-¿ÈiRti ¦ŽÇãÝ=ïHQøc£†pD:I‰a2Ê–£ßf££.¢”¤ZD³¹ÓœåïbIOD"ãé˜Å5 yœÛ…ƒ†,¶-ŒZŠøżhŠ*+P_*1~?{=ú}6bÁ‰ %"M£‰ i¢Ð…ÛÑ»÷4ÊG4z=¹$ú cJh-GÒ(ÂY¾£‹Ñ_½)M¸qŽ÷‘ðˆçRï†Nb4Œqca!±,ÆaT|ޏ@0pýè$ÙNn(SgöböÖ7` À5m]Ù +>2g'e¼„íxçk…_SÂwÕvÍjYTc˜ïˆßŒ§;»1C4Wn»ŸÊ*[¬òàc=i5"ûóÐŽ!\öÓÓ'7C#BÍxÐúuù$eD +<’N묺YG…)(»Aðui¯»ôQÏëÆ§01óÿâÅ>M˜T„W',¥DË!Žn‘T å”¶ÇŽG^8ÁÑÙRÐèU Œ‰6¤™ô–¥ Fóî0’*µÍ·«+ô¯Ì<=¦Ewƒü¡qÞ†ÊM’˜ê à²r·þ’23H&x¤Á:Bf.©¢%P"»Ãj‘ Ã¼QÁ¢Œ9ºñ™A„$„ÅœñãE@µdkǺ¬«›ç^ÚÙeuc`aÇyÑ"I\Tà¿ÜëW«%ˆ¯œ¸ñª5æ~¼U×ãõzkG˜r¦lWaú&"~ž<.ŸJä^·‚ü +N$5Añ’B Ø·„G#ù‡3=á +Š ©æR YþßâÄ*Q—¹÷-[¶yÈÍ„8÷ Ö|ê¼Ç¶ +ø‚iQä X³ð_eÕùó^Ù i»§ÓÅ‚Yˆ»uÅ¥;Cjœ'·0¹‚b}·ÉÆôïA1ÑÐX & |釻|Óƒ='ÌôU#¶Î“?þD¿_¢“3ˆçx’vý½‡Z ò•ìqë¢èüA+Ýá Ð5‚è#"jÝѲËÓ¢ Dôqô?A½+³Õb ñ|s0oWn=¸÷ ¤ækyË!m ó·‹£²~Yau;·y¹òGˆ'j·¢`¿ža·É‹ ŽñúúuB5‡Ë ‘€ÙwnBx÷:˜PÂMºî^ßÉ5ð!B,@,ÃŽ§Zc]»^µ®&=/»›ÂSÉu ‹g¸¬÷êJ?(÷ät Æ™üIJô1´áÛ ™ô÷ +ì.»­Æ¯Gðþiêm[tSÛvý]çÔ57$pá¦$IBy4Q”H©¾ää«‹Ž/ñšyO¥I¨‰é€.1< tí-bž,ѯʦÈÖeâ1‰Ö„sýcŽùcÒ¬“üp=ïÓœ—›œ…Ž|í*$ÉêéH½WSOñ-´ñ/^E·*°»Ô+° J¤š€Ì5†‚ÅóCNà‚ô„Ëo}ˆú'mx>ô +i’BÍÜòr†ˆK¡â‹»j ?Àw§)[£çð¦qÏm…ÿá½ø¦ìü‚+Ÿ=óƒ+4pç'ߎ…Æû8”§ 9'þ÷Øâ¸þà?­;¼¹ÿ8µë‚Ö›aÔÄ$¸˜YÜᚮݲâ¹kždJÁ‹â¯YxuªMÄNUøÜ×L¯é©‚ÞVf\Ò-L!ªAzq/õ/Ç'{Lù»ÿ¡üß_endstream +endobj +1997 0 obj << +/Type /Page +/Contents 1998 0 R +/Resources 1996 0 R +/MediaBox [0 0 612 792] +/Parent 2018 0 R +/Annots [ 2003 0 R 2005 0 R 2007 0 R 2009 0 R 2011 0 R 2013 0 R 2015 0 R 2017 0 R ] +>> endobj +1995 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 1066] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 2019 0 R >> +/Font << /R9 2020 0 R >> +>> +/Length 2021 0 R +/Filter /FlateDecode +>> +stream +xœ­’ËNÃ@ E÷ó^ 3žÏc[‰ ¥ùªPThŠšVâ÷qN• R•E”kÏ=7[$°í3¼7µ9šÇ×'sêJúÚÔ°¨¤X —#T[Ó# o1ðœÑ†ª6w/ßoëý}õiž*XJãΤˆT,Ãq‘Ñ{oCÂè „XDbç14ïfõ¿…Ѧà!F‡™S—àùp:7õá<†Pl”Œè °” ZJP¢ü•»:] Éo@ŒA&{ñ§qÔ‹us…µ}wK®½¶ÒÃI8êþ“Ŷ=²—Ι0Ôuzc]©G +è +p*C–ç3c¢Keî±}è•$ãCYŽ’}¶(›4BTê:б®Â"ËÙë)Ã$Ì4‚s}߀Ðå*L—ÔCÊÜC!zõœÙB–æ6¸¶endstream +endobj +2019 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +2020 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +2021 0 obj +329 +endobj +2003 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 397.677 160.845 409.632] +/Subtype /Link +/A << /S /GoTo /D (classModal_a0) >> +>> endobj +2005 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [163.584 359.188 201 371.143] +/Subtype /Link +/A << /S /GoTo /D (classModal_a1) >> +>> endobj +2007 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 320.698 175.263 332.653] +/Subtype /Link +/A << /S /GoTo /D (classModal_a2) >> +>> endobj +2009 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.17 282.209 243.839 294.164] +/Subtype /Link +/A << /S /GoTo /D (classModal_a3) >> +>> endobj +2011 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.277 243.72 239.062 255.675] +/Subtype /Link +/A << /S /GoTo /D (classModal_a4) >> +>> endobj +2013 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 193.275 218.338 205.23] +/Subtype /Link +/A << /S /GoTo /D (classModal_a5) >> +>> endobj +2015 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 154.786 215.1 166.741] +/Subtype /Link +/A << /S /GoTo /D (classModal_a6) >> +>> endobj +2017 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 116.296 212.443 128.251] +/Subtype /Link +/A << /S /GoTo /D (classModal_a7) >> +>> endobj +1999 0 obj << +/D [1997 0 R /XYZ 106.869 686.127 null] +>> endobj +2000 0 obj << +/D [1997 0 R /XYZ 106.869 667.729 null] +>> endobj +150 0 obj << +/D [1997 0 R /XYZ 106.869 667.729 null] +>> endobj +2001 0 obj << +/D [1997 0 R /XYZ 106.869 416.922 null] +>> endobj +2002 0 obj << +/D [1997 0 R /XYZ 106.869 416.922 null] +>> endobj +2004 0 obj << +/D [1997 0 R /XYZ 106.869 378.432 null] +>> endobj +2006 0 obj << +/D [1997 0 R /XYZ 106.869 339.943 null] +>> endobj +2008 0 obj << +/D [1997 0 R /XYZ 106.869 301.454 null] +>> endobj +2010 0 obj << +/D [1997 0 R /XYZ 106.869 262.964 null] +>> endobj +2012 0 obj << +/D [1997 0 R /XYZ 106.869 212.52 null] +>> endobj +2014 0 obj << +/D [1997 0 R /XYZ 106.869 174.03 null] +>> endobj +2016 0 obj << +/D [1997 0 R /XYZ 106.869 135.541 null] +>> endobj +1996 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im30 1995 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2024 0 obj << +/Length 1511 +/Filter /FlateDecode +>> +stream +xÚÍXKsÛ6¾ëWèHNJ ’èLÝdš§ëÒIs )Úâ„"в«éŸïîbII–{úˆ3ž1ñ\ì~ßîb!5•𧦱Öºi’9‘*3-–“g³ÉÓ籞:á=]ÒÂÙücšðÓìåT)”Ò{F:3ÁI¨‚:_¯±§ƒÓ¾qPl–eB£Ïû*ŒTÐ6(còËl¢XH +í²i¤…Ë,žÿeòñ“œÎ'rúrâçn  g:7]NLjE¬2îדóÉûQ”J% ‰â”tŒÑjšÁ@²oÌyÙƒ†Iô‹ip•Wo]¶oäþ³^…VehÁ êw© 5ç~rÙâ䜅àl†öe'ÐÔ§ÏÕÊ(6Bé¾`®"E`Gêf»u¾á5½®Ù®ßä Wk\‡q´88÷k:¯ƒê3Ρ*Ú€`+ßÀào·Ï2!;Öá^ÄcÀÔ݉7ÏŒ8gÇ>óüõ;Téç”FOs†¦¾CLÑi0;o֙Ȭýž‰²N(uêq>Œ‘õm‚˜= ¥—sjø©Þzâ.ó¢“(CröYË€5#âþ«Ø; ­ém_¾k¾F›iœ™oÏÙ%æŠò˦lŠmyø¯êy@I%mýß«k©T ‹Q°ç[ç}ÞõÔ´C>8 +þ#ïºìÆlþÇ7ƒ™O çöý\ñ¿zlÓ÷díHÉTh>žo!ixíÜOZ’ +•¦·8kW Ì R6±rLÅ.ìÝÌûwr{ɉ„Ĺdû Ìð¯å»IÓJ¤&~¼ÞW}Þe¬¿¡ 4±9 ì¤“–«MÏ€· Sƒã›&øîen(ȾUÑSp5;(}Úú='o®öj\Üà¶~ˆ5ho–øÿ"„Ñ{p÷Õ iué/ä®C›y½Ù·ŸðŽ»+SfFèøð>ó6¨i—·ò"EÛô”ÛÚs[,r ¶]•(/¶L¸Û©¢)’t ’8BÜá;Ö^k‘¦Žw`þ=šŠ,ÍÆ,jSÄ¥<–Î&µâu¾´#Àꄆ²Û%`§”p¦ä´ðÐÈ ŒV%$Í $Mu‡€Tl‚S¸Gç«ðF+–Ô§ 뢫V8Yµêm—Þ_»§øbW®Û&Ç»¼œ}ЍÜc̽äæPþÒK ½¬AÑ€X{?˜-*¬½œ +~£9Þú ¹áçóÆË?ŠŠme4tƒ«süwÍÏ °<¿Àw_ Qd¤ñ»3Ç÷éniÉ9Z«Ç“ÚuQÕu޵ϾAÐÛÑfŒéÊ5?†|AU%Ç|CƒÍߌJ–+²ðÊö ‡pàý&ŸyQ4mkô Î 7‹²cðß2Ø|Öš^Ð@66ôôÄW¨’å>=U#éuÈŒ7æµÜú­g¤q×qÍ #PŽðíÏ˹œüƒõ‘ïí9ú÷œ>´£4xÀ5«¬oEÞ¦XÊøn'*wF{eð}ÏT;zã·\cJÅ:´ûEå!Á½…w]Ј0Z3Ò!8GÎK®Ê¦ìò¾œïDuí’ï3è jÐuÝ¢U7#þ—¤×Ç·‘²B g…uöa·Ñ›–¼wž×˜Ç·¼¡K3ÈcÒ$ÿòg »dôùñ73M„KÍþAœmƒómÂ’;኎j4Þ#J&H̵ý«ª÷SWWØ>y‚'¾s‚¶¾}ê6PÀ#oA¡ ¹#vsº2æ¾ó‚\Îï@‡„Ò5¬g‘£øk”ÛÒÈèk±“ÂZ@pIɶ‚ӲݙÅÂJƒ¿%œ“;ËëöàQ±0$K;Ÿ[e<Ëþ Îxàð/¿‚lëendstream +endobj +2023 0 obj << +/Type /Page +/Contents 2024 0 R +/Resources 2022 0 R +/MediaBox [0 0 612 792] +/Parent 2018 0 R +/Annots [ 2027 0 R 2029 0 R 2031 0 R 2033 0 R 2035 0 R 2037 0 R 2039 0 R 2040 0 R ] +>> endobj +2027 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [238.968 630.369 264.844 642.324] +/Subtype /Link +/A << /S /GoTo /D (classModal_a8) >> +>> endobj +2029 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 591.514 232.908 603.47] +/Subtype /Link +/A << /S /GoTo /D (classModal_a9) >> +>> endobj +2031 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 552.66 240.657 564.615] +/Subtype /Link +/A << /S /GoTo /D (classModal_a10) >> +>> endobj +2033 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 513.806 240.933 525.761] +/Subtype /Link +/A << /S /GoTo /D (classModal_a11) >> +>> endobj +2035 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [274.934 474.951 292.977 486.907] +/Subtype /Link +/A << /S /GoTo /D (classModal_a12) >> +>> endobj +2037 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [238.968 436.097 303.809 448.052] +/Subtype /Link +/A << /S /GoTo /D (classModal_a13) >> +>> endobj +2039 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [274.159 322.999 309.775 334.954] +/Subtype /Link +/A << /S /GoTo /D (classBiQuad) >> +>> endobj +2040 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 264.646 222.945 273.557] +/Subtype /Link +/A << /S /GoTo /D (Modal_8h-source) >> +>> endobj +2025 0 obj << +/D [2023 0 R /XYZ 160.667 686.127 null] +>> endobj +2026 0 obj << +/D [2023 0 R /XYZ 160.667 649.796 null] +>> endobj +2028 0 obj << +/D [2023 0 R /XYZ 160.667 610.941 null] +>> endobj +2030 0 obj << +/D [2023 0 R /XYZ 160.667 572.087 null] +>> endobj +2032 0 obj << +/D [2023 0 R /XYZ 160.667 533.233 null] +>> endobj +2034 0 obj << +/D [2023 0 R /XYZ 160.667 494.379 null] +>> endobj +2036 0 obj << +/D [2023 0 R /XYZ 160.667 455.524 null] +>> endobj +2038 0 obj << +/D [2023 0 R /XYZ 160.667 399.74 null] +>> endobj +2022 0 obj << +/Font << /F23 479 0 R /F31 829 0 R /F14 825 0 R /F8 483 0 R /F19 460 0 R /F22 474 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2045 0 obj << +/Length 1270 +/Filter /FlateDecode +>> +stream +xÚÅWßoÛ6~÷_!`/Z1üM±,ɺµ]°¬öËÐöA±”Úˆ-¥–œ"Ø?¿;’’íÊÉŠéÄ¢Hмû¾wGž0øã g– +“'&wÔr•ÌדÓÙä䥉£ÎÈdvígÎÊwDQÉÓLæŠ\¤œ4Ф,V§iÆI±ÁAÎVEÛbS’·Õ5ŽT˜\a«†ÆZ’fˆÕé‡ÙëÉ/³ ¶dŒJç’LR—k´äÓäÝ–”–¼žàXž|†6£f­'Êj*xßW“éäÏa)–dÂzû‡DÂÁe=“Ð)Îx….qt zO½GÖ3xYðãý²ýŸÐ³¼N^æû`e"§Œå~ƒéì |$%@h›º¨S‘“. \¥çž´fYËÚª›vÀôÝüVlP˜uå_»3ý⯱öÍ9jj˜û÷& й£ñ+Ž *ËÇÑøåï …?§gá-|,)ë!Ö´Ç s*E~€ñ´ÂPcrÒvËþhÞÀÀ™–¤"ˆÃàÉÂ{>å”Anú„ÌøøqƒýÞÉËT8Òxz–5õc,AvQ’ŒâTèüûstëB´ÌíÀÞY²4×_ÍÒ-rÔ´KX¦y¢à•~Ir÷¤D]nªÖÔíèXÖHV×#¹ œ«ªûêÈ5­V!i@ÈšwÁ©"<®°Ï‡DÃKLèv@ô€m7a°îüZ÷aÆÚçÔùvÕ„EÜ“"t³ì»]Q»çÕ-¶FI5ä¶,Tsýý5¼>÷Ä"Ý"øcú”¤uÇõÛ-ª€ñºÇ¼ ÷nyå‰*ºÆo£ÿ­ßôih™7¡ê ӬξLùK”‘„}{»NŠÏuµy‹–i`›Vöÿ ²éö¿aÔ õêµóP;¼WŒ¬—’ZÛ—°E]YBªÍêµEHªñJXŒÉ¾zy(Û è‚Zß#yj¸ã@+Ä/ôþ×M¸ÅZs¨>TKBä÷3dFIM¦÷u +`*d›»QP øë›Æ_¸Ý¼Äé‡@Üþ˳gÏBã +¸ƒ—©4á6·‰=oixžùpIš›ðZxÞËðòëP­Ë@^#4š8/p‡;\ºñŸUÏÆD8FµòëÝšÇ ‹ÞyœAücþ´ë8o. çË!Nxq/ý·`ød¢§î†È|endstream +endobj +2044 0 obj << +/Type /Page +/Contents 2045 0 R +/Resources 2043 0 R +/MediaBox [0 0 612 792] +/Parent 2018 0 R +/Annots [ 2050 0 R 2052 0 R 2054 0 R 2056 0 R 2058 0 R 2060 0 R 2062 0 R ] +>> endobj +2042 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 1066] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 2063 0 R >> +/Font << /R9 2064 0 R >> +>> +/Length 2065 0 R +/Filter /FlateDecode +>> +stream +xœ­’ËNÃ0E÷þŠY‹Ác{üØVbÁ‚Ei~ *’¢¦•ø}&;‰Ê©ÉÂνŸë‰5èîÇ]£NêñÕÁÇY€z+»V•˜ ¡3ÑCµWCwè;‰-Zy jÔÝË÷Û¶^mÛûêS=U°–ʼnŒ –• aôs‹Ÿñ=94 Lèµ2v¨)Ë=öƒâ8Èim†°Ü¢.wdaôsG‹Ÿ…)‡¤ÑÅYˆ™²Ü#‡ÒR”Û9B¢å>HF?7¹øY˜BD)Aše˜„åa­~c3¸¶endstream +endobj +2063 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +2064 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +2065 0 obj +327 +endobj +2050 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 390.947 176.785 402.902] +/Subtype /Link +/A << /S /GoTo /D (classModalBar_a0) >> +>> endobj +2052 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 349.69 184.534 361.645] +/Subtype /Link +/A << /S /GoTo /D (classModalBar_a1) >> +>> endobj +2054 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 308.432 228.286 320.387] +/Subtype /Link +/A << /S /GoTo /D (classModalBar_a2) >> +>> endobj +2056 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 267.174 227.816 279.129] +/Subtype /Link +/A << /S /GoTo /D (classModalBar_a3) >> +>> endobj +2058 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 225.916 194.33 237.872] +/Subtype /Link +/A << /S /GoTo /D (classModalBar_a4) >> +>> endobj +2060 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 184.659 244.337 196.614] +/Subtype /Link +/A << /S /GoTo /D (classModalBar_a5) >> +>> endobj +2062 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 143.401 217.604 155.356] +/Subtype /Link +/A << /S /GoTo /D (classModalBar_a6) >> +>> endobj +2046 0 obj << +/D [2044 0 R /XYZ 106.869 686.127 null] +>> endobj +2047 0 obj << +/D [2044 0 R /XYZ 106.869 667.729 null] +>> endobj +154 0 obj << +/D [2044 0 R /XYZ 106.869 667.729 null] +>> endobj +2048 0 obj << +/D [2044 0 R /XYZ 106.869 411.576 null] +>> endobj +2049 0 obj << +/D [2044 0 R /XYZ 106.869 411.576 null] +>> endobj +2051 0 obj << +/D [2044 0 R /XYZ 106.869 370.318 null] +>> endobj +2053 0 obj << +/D [2044 0 R /XYZ 106.869 329.061 null] +>> endobj +2055 0 obj << +/D [2044 0 R /XYZ 106.869 287.803 null] +>> endobj +2057 0 obj << +/D [2044 0 R /XYZ 106.869 246.545 null] +>> endobj +2059 0 obj << +/D [2044 0 R /XYZ 106.869 205.287 null] +>> endobj +2061 0 obj << +/D [2044 0 R /XYZ 106.869 164.03 null] +>> endobj +2043 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F19 460 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im31 2042 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2068 0 obj << +/Length 1057 +/Filter /FlateDecode +>> +stream +xÚ­WKoÛF¾óWðH"áfŸ$·@µ\»MЉ‰ôæ@‹´DD"JŽkäÏwfvI‘–‹´`€š].ç›ùæ±crø¡´Ì¦¹e™ÐárœÁ« ©BËlªÂâ–Õ‡(KãÅëPi΄P~óºx'*×Ñ"ѦÜíp¥¢ó~e´¼ßÖm ¾Ü7q"¢®EÁÏE ¼ gÊæa¢˜Í â>|äaððuàÞ=€ ˜Ö†Û@g†I‘ûõ&¸ÞŽª„Ìð4LdF¶ÎÈPf™z£¬<˜Ë„ÔÑy&îa«l6ð¬+p"3Ñ9n×»eßÜá˦ƒùñê"ŸÒ”HÍ8yàE©¨¯w][¶±ÌA3íÜ @ïä¦Ýíû{ØØöôØÒ± öí ^d,•šÔë™VœŽá)¿l¶w›z¦Ì¿Lw‚¶ 2–lEtM’6ênݹ +]ý“ EÞ÷õÁ6y£—¨á“Û:xF´ÈìAºí±ÑÞ»”h­¢_÷“óëºoœµƒ»>fàî-ªé¶xZGû5ÆÆÉ¿udUn¤sÒœ–Eç|è;zšÊvå•ýþ”•~÷ƒ 3TÆga˜Ò +‚m˜±.ÀRv”NðUBys KE¿”èRÕÖT1þ£Û—Ç€‰“!ñ¯Ðõn×@RÒ¦Õß•ÿô}ƒIЗûΩ½,‘ާñî)ÐE ¨§$ûŒùV·ËÇ™ƒÙ‰Œ¡µu›!¥'a2?kOúªwÉ)]ïç©"R§iÚ«¡f$‡n*`Çgý×#<ÁYÆíH‰Øø´÷]§#~ ‘øÏñ×ún÷ Œ!^wkʽzqˆŸVݪ›é•'Ñû¦Æ$÷ÏJÌPÔIPÞ¹wÏUåÉ3s”3r t:êNO¢»xÀÜJÛ×_„V=Wâ߉µØÜoïfz©®ÃDgLÂ1íú7ØQ'ݵüÎ;æ*h1p/\'ÖpáÄ£ñ—åä“+l/ÌÉ×t½"§¨ù 5ïvh/}åXkœ”8Í’sùü´àK®rƸ± ¯Bˆ»àkÓ%tÅ6¾ÝÌ& Q4JÿnUFA;Äê ±omºâLP›M‡&<Ðå¿r/ =jœ#IË?ݽCÌí¨geCßúhGc Êü{ÇPŤMÇfCu˜2›ééJ‘ÑÊD×0' ¾&®‘{ „±à)å¾Á'Pó†$zÕ¸™ŠäÅ \¼p‹Tôèä«X¥—¿ƒy©}^»î“[BRºÀáâ’Ï}i)xF#Ú¹,QýÔÛÑ7õKÊ8i9ü'¤/ù¶ôin'xÖ8ó§"Â7t  =pcjÒ¥¬+[`±ÌWHqäÿ:­ö§endstream +endobj +2067 0 obj << +/Type /Page +/Contents 2068 0 R +/Resources 2066 0 R +/MediaBox [0 0 612 792] +/Parent 2018 0 R +/Annots [ 2071 0 R 2072 0 R 2073 0 R ] +>> endobj +2071 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [200.38 603.132 230.046 612.043] +/Subtype /Link +/A << /S /GoTo /D (classModal) >> +>> endobj +2072 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 495.156 214.643 504.067] +/Subtype /Link +/A << /S /GoTo /D (classModal) >> +>> endobj +2073 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 318.746 238.885 327.657] +/Subtype /Link +/A << /S /GoTo /D (ModalBar_8h-source) >> +>> endobj +2069 0 obj << +/D [2067 0 R /XYZ 160.667 686.127 null] +>> endobj +2070 0 obj << +/D [2067 0 R /XYZ 160.667 667.729 null] +>> endobj +2066 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2078 0 obj << +/Length 1328 +/Filter /FlateDecode +>> +stream +xÚÍXmoÛ6þî_!`_d´fø"ŠR1 ز%k» m š~Pm%1jK‰%eHöç÷IÙVä$Ûš.Cˆ¯Ç»çž;#Žn˜Œ“ NRfDÌVƒ¦ƒƒ#©‚”¥± +¦gvåtþ!Œ˜’ÑJ¢ðd(ÂMΛeVG"ÌiF…‡˜YR?«ÐªÜàØ.8Ë×y1£u<‰ThÌðãôÍà§é@x]Fœ©4 FŠ¥‰&M®>ò`>àÁ›Í%Áhs&°j5ˆŒfR$¾¿L¿nDñ`$Õc  ˆâ®EP’ŒBÂ*2IIÍjÒÔèðÐöªÊõÆd†5‡LGÉ.Rt¬æÊJŸLßb“RáåÄ×¶À92 çÔœÑàZ묠rE[¢pµ]C—´¹ódÚ9PËÈøÍ¢˜-›¹×KˆíºÈ0n”·úÛ¾ÃL”úé“Ò:5g}9Z2Å[9ßõì„Ô­^C±c}øÌZÒÀX‹Dv¾ÎV¯3˜kžgDCÄ‚V¯^Ý¥ˆbœ úÇ’\\-¸£iÑnÛòjË;pðz¥dðc [6’#¢d‡J‚¥ZïRé}óiéJ<9Éë ¢畇1Úâ$4˜¨@É"Ûý§\˜žÔ·Xí²ÐrÍñ+ÜV%‚[,ÇÁva"2‚¥FZ‡ËMTÆÐ2,‹ª^73ŒõÕIÈP1¾°_¥[=Gšs´ïi ¿!îªì}÷˜Ê1‹,wHcµGãyþo”}Ôë!¸U.æŽnë–§•ý[»Ñ¿ ±Sx<ÔÊËh…ÕNùEQçë"[R/ «:Ã|m|cª¼þmñimÉRŽ;èSXýÞ #…Õ6ŒR&Ðx4KEº7ýú™MÄ$ýËäè—w¤î÷C\'S§ZFZîG‰E0‹'yíÀ¬/r‡ñå}ŸgÁð6ÍÒB2ÝkZAØ`5À±GÚý~$w«KJËnâlM¢rš¾¢Í Òÿ[µ(Ü’Ÿoÿ?gö8\¼Ö='Ž$n„râ9\¡iñ€ã¨âOïÅs€ôÕ|1Æ=]®Ž)z+Ô=®¨°ÚyBþ=±ä?XΓ¡d±ZÙ Ùû£q…å±Eé£à¼z:ìa9ñÈñTè&ÿÝ\ÄÐçÇnˆQÌ`^÷¦´²ºljrY줛¦Æ„¯2ûÒbœ?RuC×L“pïM SÆñ$xŽ$Ò³%Wmezʹꙇ2_·æmÝBÆíËD2ž¶uà³™…zœ?h“t’Pn+f÷xI•¥›ÂÕFˆ¶ó¢-7æd<•´©vHôL·÷Þ´±f"º¯ª©Ú^x‹Òí>ÅY‚â­£pmoЉU­Û¼*kƒ–ÛV‚þ6*µî?Šöhu÷¨u_8"D§-ÊûBHÄô.J¿<IÐÏgËG(“ëwTfß­Yí쌪üG’Ó}Žî^ ›Œ_ùËbFÊ•s[în—ÖvRÙu¶l\ +ë i¥tE¢Þ4æ üî_þ]¶y©ExS¤(ÑwЛ’-‘Òáä¦âÛ\U4Lˆ +Ûÿnhú‹—ËÛEí¦è§‡/^¸Æ'pã&ßUæÚÚŒ™û’0ˆüìºxþº0¥Î±”vmÄà 2¯â,£®Iti·å/ F¤hÎ4Å1Ö¬™Ôë­Åm1ÈY¼}dj¿nW¨•EÒ2ÀKgé?%§/—­ëþRJ1Rendstream +endobj +2077 0 obj << +/Type /Page +/Contents 2078 0 R +/Resources 2076 0 R +/MediaBox [0 0 612 792] +/Parent 2018 0 R +/Annots [ 2083 0 R 2085 0 R 2087 0 R 2089 0 R 2091 0 R 2093 0 R 2095 0 R 2097 0 R 2099 0 R ] +>> endobj +2075 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 555] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 2100 0 R >> +/Font << /R9 2101 0 R >> +>> +/Length 2102 0 R +/Filter /FlateDecode +>> +stream +xœ•޽Ž1 „{?…˃Â'±³i‘()€¼âçt°+ÄŸx}¼,‹@¢A)¬Ìç™±#F×¾Ç\6p€ßYÄ¿ï¨ËGÅ`6! cÙ@gcŒ‘4*ª'qQ°4ð3Ù¯.õâ¼”-Œ Nm÷ªL>{Æ+´>qÎÌ©ª"×0ÿ®Ôœ$ÁÊ9“¦poŸwÏB‡A“æEÝÁí!^^XÓ}½ZtR¬móMxð>÷É{Á¸†@9bðI¼­ø JN_•÷ŒÍ¦p$ÐPdendstream +endobj +2100 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +2101 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +2102 0 obj +201 +endobj +2083 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 453.522 174.682 465.477] +/Subtype /Link +/A << /S /GoTo /D (classModulate_a0) >> +>> endobj +2085 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 414.61 182.43 426.565] +/Subtype /Link +/A << /S /GoTo /D (classModulate_a1) >> +>> endobj +2087 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 375.698 175.318 387.653] +/Subtype /Link +/A << /S /GoTo /D (classModulate_a2) >> +>> endobj +2089 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 336.786 221.119 348.742] +/Subtype /Link +/A << /S /GoTo /D (classModulate_a3) >> +>> endobj +2091 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 297.875 221.603 309.83] +/Subtype /Link +/A << /S /GoTo /D (classModulate_a4) >> +>> endobj +2093 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 258.963 224.758 270.918] +/Subtype /Link +/A << /S /GoTo /D (classModulate_a5) >> +>> endobj +2095 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 220.051 206.773 232.006] +/Subtype /Link +/A << /S /GoTo /D (classModulate_a6) >> +>> endobj +2097 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [225.417 181.14 243.46 193.095] +/Subtype /Link +/A << /S /GoTo /D (classModulate_a7) >> +>> endobj +2099 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 142.228 223.432 154.183] +/Subtype /Link +/A << /S /GoTo /D (classModulate_a8) >> +>> endobj +2079 0 obj << +/D [2077 0 R /XYZ 106.869 686.127 null] +>> endobj +2080 0 obj << +/D [2077 0 R /XYZ 106.869 667.729 null] +>> endobj +158 0 obj << +/D [2077 0 R /XYZ 106.869 667.729 null] +>> endobj +2081 0 obj << +/D [2077 0 R /XYZ 106.869 472.977 null] +>> endobj +2082 0 obj << +/D [2077 0 R /XYZ 106.869 472.977 null] +>> endobj +2084 0 obj << +/D [2077 0 R /XYZ 106.869 434.066 null] +>> endobj +2086 0 obj << +/D [2077 0 R /XYZ 106.869 395.154 null] +>> endobj +2088 0 obj << +/D [2077 0 R /XYZ 106.869 356.242 null] +>> endobj +2090 0 obj << +/D [2077 0 R /XYZ 106.869 317.331 null] +>> endobj +2092 0 obj << +/D [2077 0 R /XYZ 106.869 278.419 null] +>> endobj +2094 0 obj << +/D [2077 0 R /XYZ 106.869 239.507 null] +>> endobj +2096 0 obj << +/D [2077 0 R /XYZ 106.869 200.595 null] +>> endobj +2098 0 obj << +/D [2077 0 R /XYZ 106.869 161.684 null] +>> endobj +2076 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F19 460 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im32 2075 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2105 0 obj << +/Length 750 +/Filter /FlateDecode +>> +stream +xÚ¥TKOÜ0¾çWøèbâW÷X(H J”Í 8˜$°QwšÍ‚Pÿ|gÆÙA{ªVÊŽÇãof¾yH–ÂO2儵Že…¹4¬ÚF_Ëèä\iæ„Ë4+ɰ¬oy^Ä÷å%Ó&RêI¹*¯âD†ŸÆ’oün‡'ÍÏzøW¼Úo›.aôc'’÷bDßÊHN$©Ð®`‰®°èÿWt{Ÿ²:JÙeî^AŸÎ±mdr+”,¦ó&ZE?f(©¥°iÆ•Sìs2ŠI)œµËlŒ€€µ‚™T†Ÿ5â*ßnàÛÔDnùª›]5´ÏxÙöð¡d.2eÈG¹nn“NH²ß¡´Ô(`=´&´¸> endobj +2108 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 542.288 236.782 551.199] +/Subtype /Link +/A << /S /GoTo /D (Modulate_8h-source) >> +>> endobj +2106 0 obj << +/D [2104 0 R /XYZ 160.667 686.127 null] +>> endobj +2107 0 obj << +/D [2104 0 R /XYZ 160.667 667.729 null] +>> endobj +2103 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2113 0 obj << +/Length 1396 +/Filter /FlateDecode +>> +stream +xÚÅXmoÛ6þî_!`_d´bø"ŠT1 Ø’ek» Yì/CÛŠLÇBeɱ%ÙþüîHJ¶£Äź-A‹æËéî¹çŽwf…?0ªOtè”(ùrôÓttrÎE’4ÁtnwNgØ1Ž„ŽÃ‹1 kò°¾Áž–Ùfã†Wf>ŽXhÖ°ÉਂAnÆŸ§ï‚8áD&Ò T)NŽ~žŽ˜W'¢D¤i ’j‰ÊÜŽ>~¦ÁlDƒw#\ÓÁŒ)a°k9Š•$œiÿ½MF¿÷¢hqeMèmââäÐ(ÐíbŒƒahÚÆB4LÉð†Þ6‡WÖ²¹Y;ÜU'çz,|mœZá“é{8'D¸¹\ZQY|Ãȸù йó,\ÁË·ò‰²¸lD·/[vëeQyíDnî+<Ü,:¬7ÅÆÈñ›Sœ…Ä©ÉÓ=™" —VÑïŠ*/Û™7‡±Ý¾Xª„ëû¡Eë–/êú†,†2#Bs¿é‡d‘N§±W(¶»ÞV½IÈ£¢É,‹,üÎôNg7kD ž×+ON ÷›7Æb „Š1`<ü#;‚[`M…”vÓþØRpG);qòv)DpVÙ‚ߢ^r,‡´c${´»l¯K4 w,»0Í©GÃÙÆãïbX+€XŒ@Ùó@5¼÷@ \|ZŸ¨¤ðÏÜÁ {m @H0…àÇ„ +'ƒ”C&% +@—çÕ¦Y·yS¯ÉP¿ˆƒ ‘À““B´W0’”ÂHЪàjÅØ?Õ5!1öiUgæ[´<ã¶@ú5mV:rm1Üêæf{lšó1¤E—na±5U~ß²¤ h˜@6SÀšT ùjª¬%:¿ÒóM3÷ùoPïQÉ©yZ>Ð÷qÌ#ÆÑšyØ™KlÓT¢ÃÂò$,Må§Vc)Âlm?—]C&ó>rq +ƒÌ=üö¦ÈÛ2óKs{Ú ñn[ŸjïŸÍ¥UݘÕž÷`ià@Ìò„CøÊÓ—rà­c\»¯wÙoÈ6ÊH"d—ÏžSÍl¹²‰®igžà§pë vÞ“˜q@tŽãÙ]מkÆ nŠ­¯8ž¦‘;œU3/)º*Q?óŸ1Ì1ªË¦¹p÷"$oºšà‹í¼1³c¹"Ò‚(8ª‰çwár²²ùÙXш#™‚‰Ã»¤Ï½“ ¯Ìˆ ­Ê­£íÛâÚ妶¯°û7«Þ‹ÆžtÓ…?÷ëŸÏë¶3³ÂÑâ¨ÇTEñË9ìlWM.޹ ªa•>žØ¿Ù]3À_ú¥ëdz±³:Ä_"7…-O!J¾ìˆñîBCó âBd—«¶ñ ×•Or8ß6°àcÁ§+[t<Û…hËî:4lÖuyºÈ7fW®–؉ø+Çí?¯]Š[½ŸbP—ê ˜íX&aV¶_¹¡˜†€á‡7Ôeߣ@a³|pùÒ¹±QR—Î¥¹ƒݘAŠË ìüìÐ'ºë{ïçt¯h‡ò1éÛ2ëD;µh§Ø{´p‰¨®SÃëo(T­tŸ ¥BHÌPwé‚zvA=4uÚFÎHÆaJ>–OXUÚXàÀ××é»ß |“Õ·]1´ )t6{®Ÿ¢cb!à ôÍðGÙú›æX Mì/?¡~_4n ¯> endobj +2110 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 1212] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 2134 0 R >> +/Font << /R9 2135 0 R >> +>> +/Length 2136 0 R +/Filter /FlateDecode +>> +stream +xœSËN1 ¼ç+r&ÎÛW$8”î Š¶@·¥‰ßÇÙn²©¶Qå°ñÄvfÖ(UZýwÖŠ­¸±r±[‰ÝQþÌZùÐð!1` ’—Í\ËP¢växåQ6­¸yÞl·Í‡xlä„ßEôà¢Bùz÷…ý­F¥³¶Âz2`5ïWeÁ xrâHÙKa‚EP–yxHü­Èó?‹•¤Œ š¢wT­`Œ UIûÄéÄH3ºBF/@Eî(jzøü[÷Š¾Ò“‘ÊmšW7€R5FJ»IQGÆAÖcùwÓ9³k§T6piG,7›žã^§ôQ±H*¨>÷š iÙÊ‘s´ üÂMœô˜ß]¸3[³ùUñûÆ_i朖±¢ƒ£2S6‹EÓ +9ír‘jv\’Óæø¨.SÍ9y"e¢…ê`–L•⹚Šj…œvaªñr¨endstream +endobj +2134 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +2135 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +2136 0 obj +432 +endobj +2118 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 400.495 157.524 412.45] +/Subtype /Link +/A << /S /GoTo /D (classMoog_a0) >> +>> endobj +2120 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 363.465 165.273 375.42] +/Subtype /Link +/A << /S /GoTo /D (classMoog_a1) >> +>> endobj +2122 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.17 326.436 243.839 338.391] +/Subtype /Link +/A << /S /GoTo /D (classMoog_a2) >> +>> endobj +2124 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.17 289.406 219.265 301.361] +/Subtype /Link +/A << /S /GoTo /D (classMoog_a3) >> +>> endobj +2126 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 252.376 243.092 264.331] +/Subtype /Link +/A << /S /GoTo /D (classMoog_a4) >> +>> endobj +2128 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 215.346 244.337 227.302] +/Subtype /Link +/A << /S /GoTo /D (classMoog_a5) >> +>> endobj +2130 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [221.135 178.317 239.179 190.272] +/Subtype /Link +/A << /S /GoTo /D (classMoog_a6) >> +>> endobj +2132 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.17 141.287 250.011 153.242] +/Subtype /Link +/A << /S /GoTo /D (classMoog_a7) >> +>> endobj +2114 0 obj << +/D [2112 0 R /XYZ 106.869 686.127 null] +>> endobj +2115 0 obj << +/D [2112 0 R /XYZ 106.869 667.729 null] +>> endobj +162 0 obj << +/D [2112 0 R /XYZ 106.869 667.729 null] +>> endobj +2116 0 obj << +/D [2112 0 R /XYZ 106.869 419.01 null] +>> endobj +2117 0 obj << +/D [2112 0 R /XYZ 106.869 419.01 null] +>> endobj +2119 0 obj << +/D [2112 0 R /XYZ 106.869 381.98 null] +>> endobj +2121 0 obj << +/D [2112 0 R /XYZ 106.869 344.95 null] +>> endobj +2123 0 obj << +/D [2112 0 R /XYZ 106.869 307.921 null] +>> endobj +2125 0 obj << +/D [2112 0 R /XYZ 106.869 270.891 null] +>> endobj +2127 0 obj << +/D [2112 0 R /XYZ 106.869 233.861 null] +>> endobj +2129 0 obj << +/D [2112 0 R /XYZ 106.869 196.831 null] +>> endobj +2131 0 obj << +/D [2112 0 R /XYZ 106.869 159.802 null] +>> endobj +2111 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F19 460 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im33 2110 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2139 0 obj << +/Length 994 +/Filter /FlateDecode +>> +stream +xÚµVÝ›Fç¯à”²a¿€”‡Ô׋”¨ÕåŒú’äÛœ¸D§üóÛºTI›V–ØÙÙ¯ßÌÎX†)üd¨œ°Ö…YáD.M¸Þ¿–Áók¥C'\¦ÃòŽ.–›÷Q‘ÆË7¡6©R{æ²|'º0Ñ"–Q[ îttÕÁª¢õþ>Ä@ŒÕØÄ‰Œºê~+éHR¡]&Z¸Â¢ýOÁûi¸ ÒðMÀg_€›Î…ûÀäV(Yø},ƒw³*©¥°i&*'ßç`T(¥pÖžGc8¬5|„Ϥ2ÑU.ŽÀªš¾õ‚Èmt…ìzX÷Í›>Çóëâ¦D‘˜'\´Žö€„*¢n›´Í} TÍü•~ñ c´ '&úJƒ`ŽuvµÚã•¶9ÀwˇÇÊ;ôï ÍÀkÜq6 >J¸'s‘)Cî•;¼ª SÍaûа'¬‘;pìÈ0˜=²„t5ŽÕ/ßóe%*d|¦ ~¶»iŠ<ꎄ¢ë‹sA4HÂ:ªPØ_šÖWWK`Þ²Æúp’kIo +¦p}Î!Ü©M ¹]Ý7#Y¶Et×w{¤Ü !ÒK@ºEèq³ž@ ’¥ªƒ¯6He)@>P(KH='·ZµÞÀìº~_ÍP¼Žâ~¿äª8’ÉoÅ" VçHªû)G—Yæ«‹Žmô]Ëu±À8«Ã¶æúƒòŽ~®º~xÁu ­`.li…6ªÛ +ëÌäCþä0Á¯ëºá +fÉö;^^ò¢žÚI˜J¤‚XÕ¿¶ƒåqzWõ‘¹·Õèƒö˜ï8 Ì?›Øë«±cµ”ÄžL‚ƒ‡ú°~¼\ÊÿÇðë + +(5úo½Ôî.bPU–„NíEi¬zò ¥¡Çõœ[ÁIXø®'÷Ì™Þ:Çr&rë§ÜRo;õ‹©ÁPÓ çœ³L%¬Y¥©úÖë(w¾oØVø^`Xu>b~¬LS—àk¨3PÏå3nþl[ÏNA‚&rsÒHoŽÔ“˜&S-4Iì$ç}~¤åï¨úgôwß‹·b÷d"ÏsÔZ)”*~v*k¡\6÷°y*›0.7çC™Rb´–0Ú`w5Œ @¢Œeša‡…³ŽfÜÛf䣆§Ñ‹g¸yÆ›*zdú&Ö$fÀs° /H8ëîy‹Ó†2†›×Tq,õ(Ó<ÞÏu…ê?£ÞŽd`ða©)—Â+@pÉ)¶5çŠo;Q€³Á¿@™Ì¦¼Yï x¯†tiÇÿ.e´e¿Bm#¡¦þÛM¬endstream +endobj +2138 0 obj << +/Type /Page +/Contents 2139 0 R +/Resources 2137 0 R +/MediaBox [0 0 612 792] +/Parent 2133 0 R +/Annots [ 2142 0 R 2143 0 R 2144 0 R 2145 0 R 2146 0 R 2147 0 R ] +>> endobj +2142 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [435.526 613.15 465.47 623.998] +/Subtype /Link +/A << /S /GoTo /D (classADSR) >> +>> endobj +2143 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [244.121 600.641 281.564 612.596] +/Subtype /Link +/A << /S /GoTo /D (classSampler) >> +>> endobj +2144 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [454.233 600.641 501.5 612.596] +/Subtype /Link +/A << /S /GoTo /D (classFormSwep) >> +>> endobj +2145 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 546.02 211.211 556.869] +/Subtype /Link +/A << /S /GoTo /D (classFilter) >> +>> endobj +2146 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 533.069 211.211 543.917] +/Subtype /Link +/A << /S /GoTo /D (classFilter) >> +>> endobj +2147 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 425.401 219.624 436.249] +/Subtype /Link +/A << /S /GoTo /D (Moog_8h-source) >> +>> endobj +2140 0 obj << +/D [2138 0 R /XYZ 160.667 686.127 null] +>> endobj +2141 0 obj << +/D [2138 0 R /XYZ 160.667 667.729 null] +>> endobj +2137 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2153 0 obj << +/Length 1462 +/Filter /FlateDecode +>> +stream +xÚÅXÛnÛF}×Wè …˜ë½òZ»6’4ké¥Hò@S”MX"Š´áôç;³³¼ÈT“iZ÷2;;söÌ쬅ÇáŸð˜ c/Œ íeÛÙ/ËÙñ™T^Â’Py˵•\®Þúš)=T¬ýß«b—cSù'›t·Ã¦ô/çðóu^çe–Ïß/_z:”̄ƭÎ~]΄Û=àL%‰(–Ä÷þ8{ûž{«÷^Îp.öî¡Í™©íLG†I»þf¶˜ýÑ«â^ #kqï‚ôšîû0>º!„D? WìཉBÿšàü¢O‘ñ/stjM¯í¯sïø,ƒ„û‡2²Û,–¯`½R~ +,‹ \“Š^#4Ò¦ªi”ÉžJ*µUùCQf›våvbÓã‘rþ8Õ±H'nÚž»™*Q! …tR?MÜ Á´Ò{½(oÆ^MŠ^e½¯Ú_ápz]§[ò}]ÕÔ3c}þü1-„6Lƒq£àD½xê\#Pfܶ´h`Ž_lÁØÓ +â  zÅZ³‹=ª–3¦ÊE{µAû3bÂë¼¹© ÉýÕÎÁ§|„¦)à€d±ãÀ;.¢ ŽØã³  ÞqÃá¿ y%¼ä,qÂ"BÜú¡°ëNóuÚnXF·‘~UÍM $¨P¡ýʯµí®À#mÚt3U¨$ÓG¸b”›&a:ŽÿÓcœÆf\%}üpu ~Ó¹×@e·ä‚÷zâ],OºTø¿¹×ÿ¬[Kqj¨*·—Ä4ÙæVã·ew1×ý%¹Bç# .j‰‰‚Eñ)ÿ‡À¡aB)2È£dX§8$s³opƒ%C½°BëS>ÝN+A‹–}6Ä\n£^sO7ggVgâ@€ +7X°[„PÔMì®§–B˜™¤KÔã1áÌDæi9åg $pSÓ¿ñ“Ó(Ü%Í›óÄ£,jg3¼@ð&dàë×äÓæ&§ãØàTŠnh&ÃÕö µM îïÒMku•߸±8E¯ `͸t…ÂÕ¯§d –Ö*ùŠj•Sˤ]Vp²¨~?*Y!ß&æ[JÖ¾J%-çy™×X2ÉDùµ--õ±k£è/ñVj¹Óf'¯qaJÖ–4Ôö™Õ\Ó E'øÑdL‰…æp¤8½ÆÕeÖ 6Ä8ÐJøËnñG¸- +Ë0æÆªuï;̾®ÄE–8wÆÔÙßÇÜÍMè§¶ ¶þíœ\]¹"¸*¬oôm*ú¦eÕìUÔûSÑ}å,Æ6´ku#—D(Û>µ0_ÝvÚç6‘bû<­¹˜Ã3έYt|Šªmê¨ús?"IC­€p‘œËC\°hwÏ2&k·ŽK2ñ›t@ _XÝã ¹qš(ŽÜNw#4ï± JÈ@î²è4:̵ ‘λÕfS¡s÷TØ„ 0´6VÅäE‚q¨“oÉ"ã[•^½Žfý#D{!K Öe2 ¡VÆ_<”søû)"v8ŒÙMð±…¹Ê"õªhh +‚Æ®> endobj +2150 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 810] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 2167 0 R >> +/Font << /R9 2168 0 R >> +>> +/Length 2169 0 R +/Filter /FlateDecode +>> +stream +xœ’MNÃ0…÷>…—Àb˜ñ¿·Hl‘Js* +…F¨*ˆë3NìØ!Í”…•gßûƃ@Ó—×]/NâöÑÈ—³8I¶Ê²ëå]Ç›QF*z%»½ËH’v`QK0ìzqõðq8?_wo⾓>yyó;Ý ³«BÎ’ÔÊhPFöÂx¶ÑvRŽ“b‚3+¥j©ÔªW¡6}ʆÀö½Ørž¿á Äx-´Þöó}‚[åq LhxŠRy8Vàþ×ð ¡Ö0 ™h8ŠŽòÇm@k¥uà­ó#Í×Óü½V‘°Áƒœ"pª‰½Tp@0:Ääï!ùÁ¦Þ^š‹8=rþåB \|,üJÊ™ü[Û˜JfŸÈa§fIû:´Êü–ýÍŠ/Ÿ£‹oÆÉ·ÎyñU‘ø]UãÛ(ó[V}KÃÅ}7â+‡È÷endstream +endobj +2167 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +2168 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +2169 0 obj +341 +endobj +2157 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 423.731 156.749 435.686] +/Subtype /Link +/A << /S /GoTo /D (classNoise_a0) >> +>> endobj +2159 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [163.584 384.243 196.904 396.198] +/Subtype /Link +/A << /S /GoTo /D (classNoise_a1) >> +>> endobj +2161 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [221.135 344.755 239.179 356.71] +/Subtype /Link +/A << /S /GoTo /D (classNoise_a2) >> +>> endobj +2163 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [225.417 305.267 243.46 317.222] +/Subtype /Link +/A << /S /GoTo /D (classNoise_a3) >> +>> endobj +2165 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 265.779 223.432 277.734] +/Subtype /Link +/A << /S /GoTo /D (classNoise_a4) >> +>> endobj +2154 0 obj << +/D [2152 0 R /XYZ 106.869 686.127 null] +>> endobj +1065 0 obj << +/D [2152 0 R /XYZ 106.869 667.729 null] +>> endobj +166 0 obj << +/D [2152 0 R /XYZ 106.869 667.729 null] +>> endobj +2155 0 obj << +/D [2152 0 R /XYZ 106.869 443.475 null] +>> endobj +2156 0 obj << +/D [2152 0 R /XYZ 106.869 443.475 null] +>> endobj +2158 0 obj << +/D [2152 0 R /XYZ 106.869 403.987 null] +>> endobj +2160 0 obj << +/D [2152 0 R /XYZ 106.869 364.499 null] +>> endobj +2162 0 obj << +/D [2152 0 R /XYZ 106.869 325.011 null] +>> endobj +2164 0 obj << +/D [2152 0 R /XYZ 106.869 285.523 null] +>> endobj +2166 0 obj << +/D [2152 0 R /XYZ 106.869 228.423 null] +>> endobj +2151 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F19 460 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im34 2150 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2172 0 obj << +/Length 391 +/Filter /FlateDecode +>> +stream +xÚ¥RËNÃ0¼û+|tY¼~žò(R‘ÐÜ€ChƒZчh +ñóìÆ)Eâˆ"9³özvf×(5}(Mï“ 1A…NNWâ´'#ce‚¬¬ŸûÄzv¯¢)ë±´N¢6'õUQÚèÔYjÙtGVoèoÔômÕ® »f·(JT›5sˆ‹Zà  Ô`S”¥…=×÷Z΄–c‘Ï>SÍ”äJ¸ÊƒÁ8ÄK1·?TèD—diª^ûÞ ùúcæAcÅRNFñp˜AN¸Þ,º–%›ÿQýSË{câ?•[ &¢EHÞÆàd€T¹ßÊë9ÉrÖ«É'µÖ«Ý¼íXç¢ãm§êuPÜÏ+Måj±ËGýÖŸqp”ƒ'&úÌø¦°Aµ[r½vî`¸Â¤Dý’ÃfÍ ³\2nò K¨+ƒÎiÃôïÌ»éï´ÇýK2IÓ㣆S_ªÞÛ4ÄøƒíҀ׎ŸIÀ°ò~µ ¸žËRw9ºÌµü—ÑšÙÏðò‘¨tendstream +endobj +2171 0 obj << +/Type /Page +/Contents 2172 0 R +/Resources 2170 0 R +/MediaBox [0 0 612 792] +/Parent 2133 0 R +/Annots [ 2174 0 R ] +>> endobj +2174 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 656.77 218.849 665.681] +/Subtype /Link +/A << /S /GoTo /D (Noise_8h-source) >> +>> endobj +2173 0 obj << +/D [2171 0 R /XYZ 160.667 686.127 null] +>> endobj +2170 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2179 0 obj << +/Length 1422 +/Filter /FlateDecode +>> +stream +xÚµW[›F~÷¯@êCA æÆ%ª*¥›&ÊeÛíÆ/U’ x‚ÁœUÔ?ßs°½¶Ú´UµZ3Ìœ9×ï|3H/‚?éÉ(*N½8ÍD"Wl?-O^(íe"‹µ·\“ä²|ï¡mêÔø¿ÜV_p¤ý«&ÞVë ”~ÕðÓUðqùÚ3±6¶NCªqrñór!ý0:˼P‹,µhýóâýÇÈ+‘÷zk©wãHHÚ.Lb…’©{oï¿Íª"/T ù<¡< N›ø4 +ð‘RÍ‘$Ö¿‚iLb Œe]õôtÑ„„´‘ˆ4@Cvâ8ÁrzŸ¡äQJ@ŠŽ‡„˜hâÉ«­¶Þó°áàÎz €Mf'(‘"³ö%7ûUƒn ŽëjÜt0ŒürpY3‡´H Ó€%;´ÿC$“³ôá`J.!¢«Ë©þUî’ò!²üKÞ þ¦°‹ X– &߈̰™ÛÀjÎý0a5qâçmÉPXå“zœo‚ö4üV·#W®ÍÝÌ0æc%Îc X×1<1{ßãõïkk€ ¢Ô c)”Jÿ¾ßÐBv±Ûq%åzSÓs¾zñöWLò³kÉP¡ 0õéês“D¤Q6aëß{—ýcïjìœÝ~ÆËÀþK¥=ÀUòÛÝ ‰ìZ¸`~?‚+,´ho¨1'š9†~¨3aàbc„•É Y1IǘÏʤŸ×Ø"UÉ-òœE_ïp±FóíEÖ4"²éÿ@›˜r¹©aMe³˜Ê Ŷ + ËÚbS%oXÃLßmùetü†{®Þ^ã@¡—¸õ ¿­±fm1ÖVð1…ôï7 ¶ «™-k•´»äݰ‰žã¦âõýàÝzŽË• âj«ÕÞ*¡÷Ÿ(sJÃ3õ‡z»k*çM³ÃR Ì$G]ò:ñ4D + +WE˜$:ž¸dçrŽ¡èSŽA†ëO9>‰9¦˜ïkˆ[¶ëû)´aGMMS’®;×ùõÝ&PeÚr[­Guûq¦Ë $À츚¡¬ýJ™w3·Ê8%gÜÙplóe~´ç&€»®ÛónB;u éíÝc–ÃÁò(ähT©K®.7G÷%v¦ØoùþIÉȉ_ø +…"ŽÇ£Ü‹T7·ºf’ÈÝÚ]Õ"yNþ•UÄut>ÂËäÆIÔSi&䓊§q²ÂföÛî 3™B16g_RÁ¥3ƒ{Jµ0üò¾ø{Ãõã|4^,2¼»hª‡ÑÖ÷µ àôL©­ üxhË(ÆBÁZ‡ Í›zä%nLø¦xôˆ+Tð•oóWRïfn?‚°†4 û©iÿ’`æpÈjàÛx],r´ðUw´­zLSY$¬…¯Hé…;úí!âoe¿ÅbO%³Nî(3R Cº0…(éE[öá3RSñþ9bîendstream +endobj +2178 0 obj << +/Type /Page +/Contents 2179 0 R +/Resources 2177 0 R +/MediaBox [0 0 612 792] +/Parent 2133 0 R +/Annots [ 2184 0 R 2186 0 R 2188 0 R ] +>> endobj +2176 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 983] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 2189 0 R >> +/Font << /R9 2190 0 R >> +>> +/Length 2191 0 R +/Filter /FlateDecode +>> +stream +xœ­‘±N1 †÷<…G`0Nl'ΊĊÔöž€ªEPnhAðú¸½Ëq'XP+ÿoû³Ât>cÜöán×Ooáñbµ°íá®s³BŒ†Ä Ý> eÑ¥„²¡iRèúpõ°Þ}\w/ᾃ•'>‡jÈ™ +|&F#öRáê•Þ³æ‚)Âi6C—Šš)ƒä„©h'ïN¼á¸² ð?@c‰˜JSÅÂvnÞ?ˆÅÎ/’'JÅh$þI‰&¯®¾ ¡%xõÌ…0úm™Éo‚ûY +ª«Öê)‰5¡ä¹²ì±¿­1Kƒd3EÿÏ Ò„ÑoûM~¾‡(R%Ά˜)Ë>Ä*|Ðç… endstream +endobj +2189 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +2190 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +2191 0 obj +267 +endobj +2184 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 425.319 175.263 437.274] +/Subtype /Link +/A << /S /GoTo /D (classNRev_a2) >> +>> endobj +2186 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 386.465 206.773 398.42] +/Subtype /Link +/A << /S /GoTo /D (classNRev_a3) >> +>> endobj +2188 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 179.148 165.964 188.059] +/Subtype /Link +/A << /S /GoTo /D (NRev_8h-source) >> +>> endobj +2180 0 obj << +/D [2178 0 R /XYZ 106.869 686.127 null] +>> endobj +2181 0 obj << +/D [2178 0 R /XYZ 106.869 667.729 null] +>> endobj +170 0 obj << +/D [2178 0 R /XYZ 106.869 667.729 null] +>> endobj +2182 0 obj << +/D [2178 0 R /XYZ 106.869 444.746 null] +>> endobj +2183 0 obj << +/D [2178 0 R /XYZ 106.869 444.746 null] +>> endobj +2185 0 obj << +/D [2178 0 R /XYZ 106.869 405.892 null] +>> endobj +2187 0 obj << +/D [2178 0 R /XYZ 106.869 350.108 null] +>> endobj +2177 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im35 2176 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2196 0 obj << +/Length 1235 +/Filter /FlateDecode +>> +stream +xÚÍWmoÛ6þî_!`_dtbx|‘ÈbÐ&KÐvAºÆ_†,Y‰…)rjË ºýùÝ‘”%ÇN‚¡É2I‘¼—çž»#!âø"a™Ö6Je¨¨¸½ŸŒö…Œ,³©Œ&—nãdz5>Ÿ|Œ¤â @†§“OãDï!®óå’f2>˜ã¯ˆ‹ÕuÙŒqÐæm5N ž7$côËdÁ€„3iM”Hf&ý_Ggç<šŽxôqä×îpŒ:­®G*ÓL€ ózt:úm- +$0ÍÓ(™³}팈@1©Ò¡7Š¡Á2E£@¨ø¤)?%ÚG^”h{¦‡e*þR’ý—åÂý6EIŽìš!N¤XÙ.R’Ç»3ÉÍ7Äs'_ªøŠT´nuá·^#ÄÌËvCd,Úiø¡jŠz5 vôûTÆx¦‚Ÿ?mËÉX¦LX&ÇÑ"6{@L矷ÜM€3V£”Ûö¡™uî.pPµ9¹_ÐQí+Q]*˜2Ž«ÑW$·2‡6 ÇŽIÝÙðaïõL£ƒ9r&êi“¬%+ÉŒ‚ Þ³ZyóyuQ“ …'ÉqÙΈë<ž.„ªÇ4Ò Á„‘î†Ó•K߆ö]ù}ªÊ›¶rl¡ïÕ˜êùSQ}Í9Ž$ß +7V `W¼M_’Í”)¡7Pܯ‡¤tèuX=3o}Õ´+ÝejÙ¹^|(ô;Òv¿^'äb3xñÇœjòÚÏÈ5lªa0ºôÃŽ|}&ºX¿ÏH²÷$Ÿ÷~ïLI O†Š05áRòz€9‰¶Œ§v#§eÛ¡²ä⌟óŽ’¦D°R×Ûª²iýê-Mó.ÅVå‹Áþú”@uÇ['‚i¼àuŒ¥™øï!Ïáa¼©}?Žw~èÕù°¹~å ïà6ñm^¿ ÆÝeä ¤%Ò¼ÐÿªÝ¤ÚUÚÇÁ÷-¡U¤o®àwÕè^où+¹©;î7åàûüa9ÊöPov“Ÿ3þ/br„´÷¡pÄC<WÆIVÛ]Á®PâsÁ»<$ pùzè]õ1½Ô¡è›-Ý|¶ ‡ ß,d9`Nªï~N¢ëºVwôÏ…íÌbi81¡X)©ãÓoøÞÕ;÷Š«–ô™žÆôPÐôÛçªõKî]Üøñþš¼ñ“ ôÍñqšb§{Aøò……#$Eÿé§¹»²MýäÈ%¤?!Qð,fÁÎ"'ñ·$wîΔ?ºç½°˜:HEޏdη"¼ uï6õº´r–BÚÑL‡}x_jN–´žˆ2éÒ Îi ºþ ¦Î@endstream +endobj +2195 0 obj << +/Type /Page +/Contents 2196 0 R +/Resources 2194 0 R +/MediaBox [0 0 612 792] +/Parent 2133 0 R +/Annots [ 2201 0 R 2203 0 R 2205 0 R 2207 0 R 2209 0 R 2211 0 R 2212 0 R 2213 0 R 2215 0 R ] +>> endobj +2193 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 869] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 2216 0 R >> +/Font << /R9 2217 0 R >> +>> +/Length 2218 0 R +/Filter /FlateDecode +>> +stream +xœ’ËNÃ0E÷þŠY‹Áϱ½E‚-”f‡XAK ¨P‰ßgÜø‘ªÊ™›yÜã‰D2=ù|ÄFœßZxúP»Oåxà¢ã‘‹Æè–b,Sà%e€$ŠÝ N®_7oýâ´{—Ì8u-atäà3uÏ¥y®¦ÀM#ƒ°Þ(ä4 }}WÞDä}Í?Ê2IÉQ»ÜT±'%v¾mk€ÿh>m¢0ÑÑTÙï²> +endobj +2217 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +2218 0 obj +353 +endobj +2201 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 425.671 223.36 437.626] +/Subtype /Link +/A << /S /GoTo /D (classOnePole_a0) >> +>> endobj +2203 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 386.999 223.36 398.954] +/Subtype /Link +/A << /S /GoTo /D (classOnePole_a1) >> +>> endobj +2205 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 348.327 231.109 360.283] +/Subtype /Link +/A << /S /GoTo /D (classOnePole_a2) >> +>> endobj +2207 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 309.656 229.061 321.611] +/Subtype /Link +/A << /S /GoTo /D (classOnePole_a3) >> +>> endobj +2209 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 270.984 232.825 282.939] +/Subtype /Link +/A << /S /GoTo /D (classOnePole_a4) >> +>> endobj +2211 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 232.312 233.24 244.267] +/Subtype /Link +/A << /S /GoTo /D (classOnePole_a5) >> +>> endobj +2212 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 193.64 239.467 205.595] +/Subtype /Link +/A << /S /GoTo /D (classOnePole_a6) >> +>> endobj +2213 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 154.968 241.888 166.923] +/Subtype /Link +/A << /S /GoTo /D (classOnePole_a7) >> +>> endobj +2215 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 116.296 278.905 128.252] +/Subtype /Link +/A << /S /GoTo /D (classOnePole_a8) >> +>> endobj +2197 0 obj << +/D [2195 0 R /XYZ 160.667 686.127 null] +>> endobj +2198 0 obj << +/D [2195 0 R /XYZ 160.667 667.729 null] +>> endobj +174 0 obj << +/D [2195 0 R /XYZ 160.667 667.729 null] +>> endobj +2199 0 obj << +/D [2195 0 R /XYZ 160.667 445.007 null] +>> endobj +2200 0 obj << +/D [2195 0 R /XYZ 160.667 445.007 null] +>> endobj +2202 0 obj << +/D [2195 0 R /XYZ 160.667 406.335 null] +>> endobj +2204 0 obj << +/D [2195 0 R /XYZ 160.667 367.663 null] +>> endobj +2206 0 obj << +/D [2195 0 R /XYZ 160.667 328.992 null] +>> endobj +2208 0 obj << +/D [2195 0 R /XYZ 160.667 290.32 null] +>> endobj +2210 0 obj << +/D [2195 0 R /XYZ 160.667 251.648 null] +>> endobj +2214 0 obj << +/D [2195 0 R /XYZ 160.667 135.632 null] +>> endobj +2194 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im36 2193 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2222 0 obj << +/Length 2037 +/Filter /FlateDecode +>> +stream +xÚÍXKsÛ6¾ëWèHMK„x‘`niZgú»¶.$F¢eN%Ò¥(§iÿ|÷Eвè&m§ÑA$°X,v¿ývA=Oà§ç:É”IÃ< ¹Ê´›¯v³/–³gÆÎs•§v¾¼%Éåúuä”M± .º¬:*¯VGͶÄ1½Üû=?^—·‹Z”ªW( ]šEÁ/Þ.¿™}µœiÙ>N”ÍóylU1ìû;ȪÄ䃒:È€óI÷à 8nðK8ïÅw— ¢ ˆðÎh]1í.Ñèká>y@¡¦ZóæÑUSï;>ØØÝqªàÀóX;å½ÿ$Ïoqª€‰½¸|… šÝ= º£±fÉæÐÝ:~~(¶‡òŸ‹A̾h«$Kÿý tÕ +‡~:†àÜÆ,S!ÉYõß±.ÿÓÖí‹ #´- ç@© +ÚŸ áëz_SKôQh"FAT4<< ó÷:æ B¥Dp®®T Ή*D AèDI°* 铳3Y§›‹ì›$±g‡ Ê&V>`Á¨ì߯×ù±2(At*[h ž*‰Ë»Éæs>ß¡ÞW*`8µæA¦rX DÇ‹Q`‹o`¶ú•^Ÿ@¸¶¢lâ|ˆü( pó.=5²C°¶¨ÿ-­Î¶p€Î¼Ø)Xq¤Šë‰ÔI©¢£SªÀHAy-q°ä Mð?±ëχb‹¯yTp‹w”T¢¢¹•J¥>ëÝ­ºà(V:Q¹ÏÉΪ>?¿ÖÊäzòüg‡F_åAd%wA9:$øN]wšºÇØb®ûÅGéÓ|<Í7¢Nuj'T0‚Æ2íËt¯ŸOÍì+¦\~¤’ÇË‘Mb&|E"Átj8±º_vÌ>”­©'!]'Ô’2urÃA\åz"óÀ'd(´Ú:¥$­J&¼mZ~(øwøSc·ÇxWT5Ü`QŽÉ«xÊ©&’©>^à˜¾+B¹Þƒòú°ði„÷°~V1. ‡U¹Ÿ N´/øhK…á}|/ŸÒ¶H69ÌÞQù+y…,¬ËM12)øÇXU½UÇ‘Á0 4/«ÁÉGÍwè–ÍÝ`’nþàŸç9¼£NÕFÚ; !½†ý`´n$] +ØÀJ»y’@ã^¢ïÌ1 5´=&õ’§›¢:o^ŒV©7C»%QRç)ëÔ«/ì:4û˜'Í_áÉWåtÏ‘ ÷ãÄ' º]ë$¨, ÿ?ž|E TM—›«àíOš|#¸÷ôíþ뇪í Å~;A§!S™¡ÓÑ'(îêÅS %}v ,COŒYx„èž®Õø¤3¬ $Ùõ‹7€$UÕ÷r@‘¡£Ða +å0Ê(GQB97¶²,à½ò§‰EOS”«‰ô[öYƒ–”·ÅaÛ»rà$‘º¿ßé ++Ïže´J¦JÌuÙ÷™£oÜü²‰¥¤ù-rz³ce•äíÓñKùäÐÓŒzöBZZÔŠ"m„>Œ°v¢ý‘÷Hó…ˆlʺl©3_wo‰ÅÎ!ðL[m…“«zsÚž’Šçç÷r —0'dà'}A³ÆˆµÍ`ÎKè?…âƒ5Êû÷>ËggAÎÀnžªNuÚÇЋÜÈ3ÀgÎ;q!Š{q/ÿ\¨VôÁûþ¾îendstream +endobj +2221 0 obj << +/Type /Page +/Contents 2222 0 R +/Resources 2220 0 R +/MediaBox [0 0 612 792] +/Parent 2237 0 R +/Annots [ 2225 0 R 2227 0 R 2229 0 R 2231 0 R 2235 0 R 2236 0 R ] +>> endobj +2225 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 630.758 223.432 642.713] +/Subtype /Link +/A << /S /GoTo /D (classOnePole_a9) >> +>> endobj +2227 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 592.682 206.773 604.637] +/Subtype /Link +/A << /S /GoTo /D (classOnePole_a10) >> +>> endobj +2229 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [193.71 554.606 211.754 566.561] +/Subtype /Link +/A << /S /GoTo /D (classOnePole_a11) >> +>> endobj +2231 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.136 443.782 200.371 454.63] +/Subtype /Link +/A << /S /GoTo /D (classFilter) >> +>> endobj +2235 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [200.131 164.925 226.366 175.773] +/Subtype /Link +/A << /S /GoTo /D (classFilter_a7) >> +>> endobj +2236 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 125.2 177.864 134.111] +/Subtype /Link +/A << /S /GoTo /D (OnePole_8h-source) >> +>> endobj +2223 0 obj << +/D [2221 0 R /XYZ 106.869 686.127 null] +>> endobj +2224 0 obj << +/D [2221 0 R /XYZ 106.869 649.796 null] +>> endobj +2226 0 obj << +/D [2221 0 R /XYZ 106.869 611.72 null] +>> endobj +2228 0 obj << +/D [2221 0 R /XYZ 106.869 573.644 null] +>> endobj +2230 0 obj << +/D [2221 0 R /XYZ 106.869 508.015 null] +>> endobj +2232 0 obj << +/D [2221 0 R /XYZ 106.869 389.638 null] +>> endobj +2219 0 obj << +/D [2221 0 R /XYZ 106.869 365.524 null] +>> endobj +2233 0 obj << +/D [2221 0 R /XYZ 106.869 365.524 null] +>> endobj +1580 0 obj << +/D [2221 0 R /XYZ 302.397 270.351 null] +>> endobj +2234 0 obj << +/D [2221 0 R /XYZ 106.869 254.808 null] +>> endobj +2220 0 obj << +/Font << /F23 479 0 R /F31 829 0 R /F14 825 0 R /F8 483 0 R /F19 460 0 R /F22 474 0 R /F35 1011 0 R /F32 881 0 R /F29 818 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2242 0 obj << +/Length 1196 +/Filter /FlateDecode +>> +stream +xÚÍWßoÛ6~÷_!`/2:1<þ”ŠaÀš,AÛé¿,YYŽ…9R+Ë šýó»#)[ޤX¤’:òÈû¾ïŽ$D Ó:‹Lš1 **®Fo&£½C!£ŒeFF“™8™žÅ©ŸOÞERq ÃÇ“Éûq"Sï!^äË%õd|Ðà««²c£Ë»jœ@ÜÔäcôûda g2K£D²,Õ´þ—ÑÙ9¦#½yÛ ¶qÍ,‹®FÊj& ýÅèdôçÚH`š›(Öí}Œˆ@1©Ì0ÅpÃÒâ¦@¨ø¸.OËÖí7n1œš}8VÇŸÊ™·–uQR{‡é ZQe@¤¤Pq×Fˆ¿9G÷ëìk·‰CjL :_øžã"ï‚Ro曽à6iç«çóÄŒ{Cþù qý4ÔÌj\À0/†¸)þPöeŒ›l‹‡“²ëÑ isqÆÏ‡9GyS"XÆcUYwÞzÝç‡ËÚUù¼°Ã#°'-¼v1cÅËÀOƒ~,ØO×e¹ñ!>ˆ=Þ*òƒþ›ƒeS>BÁ½†»Ç…ÃbiÚ­=·ÉçE^?G¹[5¨×Ý=ûÀë•ý(8¢c²ªb!E<Ä#4¸ZN¾ºþÒu‰¿¼÷€g4^›åË¡w¹áXl¨EâÒÕg—u‹Ú9H&Ô“ßè$sGWô…WŽ _Tƒ &Ä•’:>ùŠ[Mܹg[µ¤ÏpãIÓ_,Vï«Î›Ü¸öíýWÔyå;äè«oKƒ'9Ÿðå S\vÆÍ?¾›;oSß9r¥±u3$úncöYääþšü6îŠWþìÞñ"ãøôGq .ÖÅV„'£Þ„‡‹æŠéL/3Æ à|—9_2ójD”i-ý¯àœ¢§ð? Êvendstream +endobj +2241 0 obj << +/Type /Page +/Contents 2242 0 R +/Resources 2240 0 R +/MediaBox [0 0 612 792] +/Parent 2237 0 R +/Annots [ 2247 0 R 2249 0 R 2251 0 R 2253 0 R 2255 0 R 2257 0 R 2258 0 R 2259 0 R 2261 0 R ] +>> endobj +2239 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 833] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 2262 0 R >> +/Font << /R9 2263 0 R >> +>> +/Length 2264 0 R +/Filter /FlateDecode +>> +stream +xœ¥1oÂ0…÷û7¶ ®Ç—°"•ž@h¨(¤‰¿Ï³'@;Tj"ål?¿ûÞE+Ã:¼]ÝÔt¤—EÎ':²‰R*›š'âšý–Z‹á"S–]©,ö5=;ªUÕ|?ûOzõ<ÇÅ•¶Õ/dµ`é`ÍmY`ÉFD”ÜT´ü;ÖäF‰c;F9€§»Ã¹jzn"pàü“FÀ°.¢–çýŽt}å¬9ÓññÚ½SHr_(s¥»u»ŸlîSÒ0½˜  ÂY™-†õ½o;B˜6DTœº»ò¡{:èô4b¯Ë;Ð¥§Ä7Û{72Ìé +Ëe€ôendstream +endobj +2262 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +2263 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +2264 0 obj +254 +endobj +2247 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 425.671 224.08 437.626] +/Subtype /Link +/A << /S /GoTo /D (classOneZero_a0) >> +>> endobj +2249 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 386.999 224.08 398.954] +/Subtype /Link +/A << /S /GoTo /D (classOneZero_a1) >> +>> endobj +2251 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 348.327 231.829 360.283] +/Subtype /Link +/A << /S /GoTo /D (classOneZero_a2) >> +>> endobj +2253 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 309.656 229.061 321.611] +/Subtype /Link +/A << /S /GoTo /D (classOneZero_a3) >> +>> endobj +2255 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 270.984 232.825 282.939] +/Subtype /Link +/A << /S /GoTo /D (classOneZero_a4) >> +>> endobj +2257 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 232.312 232.825 244.267] +/Subtype /Link +/A << /S /GoTo /D (classOneZero_a5) >> +>> endobj +2258 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 193.64 240.186 205.595] +/Subtype /Link +/A << /S /GoTo /D (classOneZero_a6) >> +>> endobj +2259 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 154.968 241.888 166.923] +/Subtype /Link +/A << /S /GoTo /D (classOneZero_a7) >> +>> endobj +2261 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 116.296 278.905 128.252] +/Subtype /Link +/A << /S /GoTo /D (classOneZero_a8) >> +>> endobj +2243 0 obj << +/D [2241 0 R /XYZ 160.667 686.127 null] +>> endobj +2244 0 obj << +/D [2241 0 R /XYZ 160.667 667.729 null] +>> endobj +178 0 obj << +/D [2241 0 R /XYZ 160.667 667.729 null] +>> endobj +2245 0 obj << +/D [2241 0 R /XYZ 160.667 445.007 null] +>> endobj +2246 0 obj << +/D [2241 0 R /XYZ 160.667 445.007 null] +>> endobj +2248 0 obj << +/D [2241 0 R /XYZ 160.667 406.335 null] +>> endobj +2250 0 obj << +/D [2241 0 R /XYZ 160.667 367.663 null] +>> endobj +2252 0 obj << +/D [2241 0 R /XYZ 160.667 328.992 null] +>> endobj +2254 0 obj << +/D [2241 0 R /XYZ 160.667 290.32 null] +>> endobj +2256 0 obj << +/D [2241 0 R /XYZ 160.667 251.648 null] +>> endobj +2260 0 obj << +/D [2241 0 R /XYZ 160.667 135.632 null] +>> endobj +2240 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im37 2239 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2268 0 obj << +/Length 2055 +/Filter /FlateDecode +>> +stream +xÚÍXKsÛF¾óWðT æÌø–uV®Mâ’Wâ%q|€(ˆB- ($(ÅΟß~ú±›JvKUâ`Ð3Ó¯¿îžgð§ç:+”ÉÃ<QÚÍWÛÙß–³o.ŒGs;_Þ‘äòömâ”-Ò… .¹lRT?W»ŸmòrSî÷<¼ªîªt¡“J4+[ms—„"}·ü~ö÷åLËÑ‹LÙç «bðx𯳷ï²ùí,›?ÃwaþãLiÚÎ\á•ÑAž7³ëÙ?‡­lT®€­LA:÷FX=0‘¸J½MHÃî€:6 `’î5Í‹d…¯ðb·K½:ø%ÓnÓU;~Z—5¯Õ‰B»¾¹ß [§ÀhøµÊMçÂú‚%ÃQF{ýÓsY•™8lòYðc<ë|Žü¦±½øñ25!ù6…è.ÁFëˆiw‰ž@X øì…ÚúÆšgWm³ïذ±»¹ƒç í”÷þ‹<¿ÁW%¼Ø‹ËW¸ Ý>ÀÔ¡«0·,Ùº‡CÇãÇrs¨þ¼,Øwm•ù_„®^áÔ¿Ž!˜êX*d‘·þ#ÚÅÿX»}¹Å a„6ab +„« ý þÑ ák‰>n;m*AEËÓ:0ÿð¬c"TAç*àJ@Õâ;Ù +ÑBúQ¬*Bþ?ÉÄ&ëTf£Èþ’evbLP6³"ð% F5¾¦f +õ «¡E€xª".ïZ$›¯Ù¾C³¯×T¼ðÕ-O2•Ã!:^Œ+X| oëôø„k‹ *Î@œˆGY€›wù©’‚u‡û_£&pÔäèŒ}ĆLÁŠë$U\O¤NJ™N©3%å vÄÁ’'ô‚‰]=”|ŒIsÀ#n(©d‹öN~)•ú¬?t{Ôè>€  XéLEIϺ™Ú¯µ2QŸµb4ú*‘•Ü5·ˆèdpù§«ýjW?àËš8c‚ªŒ8"ó¶¿^þÀi->Ð>Ô +QOMqÄE’û#ipO]¨Ü0T–÷5F2æÉ"µí·¤'Ì^Ôé@{ð¸ï”›úîW¤ýŠayÄÉ4¬ÜrHÉ?@¼cÍaæ×®ëŽ@ÏGKv*]äÖ@jÒ Þ´»oIÛÁ$ †ϲZ JAê=|K&ÁüNïx¼ÂÓÕÍšçð‰Ð ã±{Ñ,<³Ý×]Ý"vm–”›öܺ]E†À¨ü­×‡@ Kº“Í䫲‘¹§{†É»¶e;äö¯F¬¹–£v¨³ g#ÆséÏÁá×¾g±7”!;ô¢Ì\1Šhü)Ü]¢6Bi¯ÊÑš7)ôå²ÙlÅ,åvn€²$°·çÑ‚m3YfÎ% (n­20÷,õŒ¤ÞkÚv›vnð"ÀlR¦Ó而Wº‰ ْ̊ȇV6©µ|ž¡§÷NÑ8ÜR.6Ì>3A¶î)¼q9ØüsJèzñöøÐ¦Y«"N¾†ÉIqôpçÈ€„ŒÆºç>_$­rP,Î^cøÍ'/a?‚—)ecô}¡´~Tµ +Áõåý¯i©†Ç£òh†šÚ·0î +pcÌOI°hKÙä”ûÅÉúa¬´M¿Ýàú°è +Rð4#܈ wÉvÄ:4q$‘ •pða¸…¶JÌ]Rhäx2 'ŒCGžXÂs}Râæ u"[ÞuqB/9Ó&+derñ.R<ç94Ø:§®¤1:¼ØÔ0»¡èò7´r‹ô{àƒQz]R@ˆØÐx,0Î1ÁƒÈˆdû^åGQ†§ÇÔÃqpùê×€·%6‡Uµ?Þ¨[(Œ}½¾'Ö-÷½Á¡˜0%’˲##ƒXàmrhï×åH?Xrœ«F*ˆÔÐU5:\”Ûôëiñ ß4D±®G€1óˆL‚Ä™JÁÀ¼ü…ž˜o‡‰áp‹ÈŒ*á(+­çI޹q9–œ7Ç<ÕЙÜK*SˆŸ§²Ñ*÷fh½Ä3jÊ + {ñòn¡[³ÏIÕü÷¤úŠ¡÷9F…;w¦ ö’AEøÿcÔW”]õùjd£ +ÞNHÕÄQ´à6Ô_Þ>Ö»ïwg¸7€ýÎ|†{G¦¸±hÒõ™ô1.ô #!4«cR>Ð¥¢ßt…—$»~ñ´©ºykŠ ˆçð³Œw%¼s¿+õ-œܨŒÈž{òc‘ȽÚ{u&—}¡6Õ]yØô_µ8é¨éo~GÂÀrµg­²suéŠNüDÇ]IÒß'my³¡ÿxŒDS¶Ú!é…L„Ƴï{í¨‰F4ô¡„µ|%8aWyBV+Ed]5Õ®ìž]„ïˆ EÏc/íø¨Í¦E«ž¤K?^uh‹Ó»†ë™³ _ÈÂ/ú¶2â u?áh±Tæð{’5ÊûÇ>Ë'hÁÊÀnž«X¸1KPdœõÉõ{èJ=&·{œÆ/:Ë©ðxünùº z…è•/¿úŠ7¸Á{~ù&µ9¶Åày™¹Rüû’>Q{e#‘Âf éñy‰W%žðˆ[·´¬úšÀfb¦<’8„²vòG‹~}æñó|®ó>j^äFžsÞ‰ Q Ü‹gùßá¾@µ¢Þ¿më¿nendstream +endobj +2267 0 obj << +/Type /Page +/Contents 2268 0 R +/Resources 2266 0 R +/MediaBox [0 0 612 792] +/Parent 2237 0 R +/Annots [ 2271 0 R 2273 0 R 2275 0 R 2277 0 R 2281 0 R 2282 0 R ] +>> endobj +2271 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 630.758 223.432 642.713] +/Subtype /Link +/A << /S /GoTo /D (classOneZero_a9) >> +>> endobj +2273 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 592.682 206.773 604.637] +/Subtype /Link +/A << /S /GoTo /D (classOneZero_a10) >> +>> endobj +2275 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [193.71 554.606 211.754 566.561] +/Subtype /Link +/A << /S /GoTo /D (classOneZero_a11) >> +>> endobj +2277 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.177 443.782 200.412 454.63] +/Subtype /Link +/A << /S /GoTo /D (classFilter) >> +>> endobj +2281 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [200.131 164.925 226.366 175.773] +/Subtype /Link +/A << /S /GoTo /D (classFilter_a7) >> +>> endobj +2282 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 125.2 178.584 134.111] +/Subtype /Link +/A << /S /GoTo /D (OneZero_8h-source) >> +>> endobj +2269 0 obj << +/D [2267 0 R /XYZ 106.869 686.127 null] +>> endobj +2270 0 obj << +/D [2267 0 R /XYZ 106.869 649.796 null] +>> endobj +2272 0 obj << +/D [2267 0 R /XYZ 106.869 611.72 null] +>> endobj +2274 0 obj << +/D [2267 0 R /XYZ 106.869 573.644 null] +>> endobj +2276 0 obj << +/D [2267 0 R /XYZ 106.869 508.015 null] +>> endobj +2278 0 obj << +/D [2267 0 R /XYZ 106.869 389.638 null] +>> endobj +2265 0 obj << +/D [2267 0 R /XYZ 106.869 365.524 null] +>> endobj +2279 0 obj << +/D [2267 0 R /XYZ 106.869 365.524 null] +>> endobj +1581 0 obj << +/D [2267 0 R /XYZ 302.397 270.351 null] +>> endobj +2280 0 obj << +/D [2267 0 R /XYZ 106.869 254.808 null] +>> endobj +2266 0 obj << +/Font << /F23 479 0 R /F31 829 0 R /F14 825 0 R /F8 483 0 R /F19 460 0 R /F22 474 0 R /F35 1011 0 R /F32 881 0 R /F29 818 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2287 0 obj << +/Length 1284 +/Filter /FlateDecode +>> +stream +xÚÅWÛnÛF}×Wè ‡ë½r¹Fa µ«"I »±ÒÆy`¨•ED"eŠr`ôç;³»Ô%T 7#ˆ¹×³³gÎÌŽXDዸ!J™(Ë ÑLFårôÓdt:æ"2Äd"šÌÜÂÉô}œçɇÉëHHJaðvò&IE.ã‹„Å‹b½Æžˆ/øò¸Ü,m@£+º*IYÜÔˆ1úy2bÁ€”aò(Ää +Ͻÿ@£éˆF¯G~î3´áLc¢åHjE8ËC1ºý¶…b‚E³(åÚÙ¾½ ˜$Bfû·‘ 9ŸŒoÐH‹¶åx±éÀz wZÀ'­â·vf[\bëÒâ5NÇù>Kx¬4{¬¯ À€Ubc56ÖÕcÂsœBÆw”)˜ÙtÖo_ùïú©ÆUÝ&­ß¶ö;ª‘ºÖ‘ŒKˆ·Š›³˜&Wήªº\l¦ÁzÆvë¤&TËÀÍCM´ÌÃôõ$‘ùGq"hs>`)eTƳ`•tË^ÕÛ»!IUWÔ=W›)÷m±ôœÌšÖ7nnv~sô})1—S +Ï•猣0¢5™tköšNýÎ0púj)òè²­E;¹¥[\)ˆ¤ü@oŒ¥öõv³ùˆöU¥Ó•íæ#4ž®‹rGS WŠbDkOÈCèôp€Ó’ó œÓy~ðŸù‚E9ìpqÁ´ÀK¸£áâ×kSd9ð¯Ä+ê«ìš– ­L9`Œ7Azkeª(…– {Áéš±¯,ÁÐ;nsF$Ù›,˜Œ2±ÃàoÑêB´©¦!m7N ¿µ½`6}k«Ù§õ0tõû@Ž.=Á= Ä\ξŸó8¤Fs4ã…™­òòaÖÿz7x™@ŽžxŽg`Vë­ÇˆtötœïÔ0 ÷@$·¶ódWNK¼~†V(™¢u—¶³­ó‹á +º®*7‹"LÍÜ6›(œzB˧ÿć訦³×õÎOC'a2WÁJ2%žËIÎ;¨¸ÞÚ+*Š2’ Õg¯ÿÓÌb¹ri­ÛLû@øŠ–˜†×™!¦Tp ºqïˆésOžëæÖ7î«ÇjÉôk¯QÔÓ€Ž:]-ÐLû/‰êˆfX–C=Ÿh ÈÂ$%ǧïåÿ4#ꨃdÚÀîåÊW @ZSW4îa]m‚«ÖM÷@÷5Çþ›— +yø‡ÑsPo±˜°Pt]:guXcU(";õoã¥^—mµÂÉ +¯\’Põü×¶Èò4Næ~¹ð‡/ŠíéYÆþ +Kf»ô%¥ƒ + +dã¾i+gÂÒJÙÌü··§&ïröGp„P«í^ÛŒ¡&ªô÷Ò9 ¡õsÀVPùJüÓkß=ƒIeàÈW‹Ô}ï˜îºF¦8¼$Ï<,w RrâAÒôœ¹ÑôüÚ9¡Æ‹†º"D}úŸ–ÿ‚pŒ¾ Äm9&¡p0XFíbg‚)E +ß‚¯á)ƹÈhÂhc¦ð/øéMÕù©*d l_œ`çÄw>"ГoÃï‰ jÌáaä- [ ?ù.”º€0õ_°]øXÛB±“`gY ü#â6n}áœÁ …"’ð¢ÝÝÊ‘jwí”Ã#‰¿µ2–õéM…u{ô0PŠÃ!je> endobj +2284 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 1176] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 2304 0 R >> +/Font << /R9 2305 0 R >> +>> +/Length 2306 0 R +/Filter /FlateDecode +>> +stream +xœ­’ÏNÃ0 Æïy +ƒIì$N®HLâ€ÄXß`ÚÐ`´­ˆ×Çý“¶ÓÄzˆü}±¶‹lû çº6GsÿêáílŽà:«ë*5³ +“‡jkú,’ÑQt&âUmn^6§õbÿÙÜVïæ±‚¥^Þ™äÑ2Gø2,mfM÷““Å(pÚ˜Õ¯èNgàì1‡ÔÑÏ#·”ëýßyeZá¶0u¼§Ã¹9Շ抅cþ‡)¡x5¢ q]5W> +endobj +2305 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +2306 0 obj +323 +endobj +2290 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [253.625 627.342 271.253 638.191] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +2293 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 399.291 224.91 411.246] +/Subtype /Link +/A << /S /GoTo /D (classPercFlut_a0) >> +>> endobj +2295 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 361.638 232.659 373.593] +/Subtype /Link +/A << /S /GoTo /D (classPercFlut_a1) >> +>> endobj +2297 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 323.984 265.231 335.94] +/Subtype /Link +/A << /S /GoTo /D (classPercFlut_a2) >> +>> endobj +2299 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 286.331 240.657 298.286] +/Subtype /Link +/A << /S /GoTo /D (classPercFlut_a3) >> +>> endobj +2301 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 248.678 260.571 260.633] +/Subtype /Link +/A << /S /GoTo /D (classPercFlut_a4) >> +>> endobj +2303 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [253.625 166.83 271.253 177.678] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +2288 0 obj << +/D [2286 0 R /XYZ 160.667 686.127 null] +>> endobj +2289 0 obj << +/D [2286 0 R /XYZ 160.667 667.729 null] +>> endobj +182 0 obj << +/D [2286 0 R /XYZ 160.667 667.729 null] +>> endobj +2291 0 obj << +/D [2286 0 R /XYZ 160.667 418.118 null] +>> endobj +2292 0 obj << +/D [2286 0 R /XYZ 160.667 418.118 null] +>> endobj +2294 0 obj << +/D [2286 0 R /XYZ 160.667 380.464 null] +>> endobj +2296 0 obj << +/D [2286 0 R /XYZ 160.667 342.811 null] +>> endobj +2298 0 obj << +/D [2286 0 R /XYZ 160.667 305.158 null] +>> endobj +2300 0 obj << +/D [2286 0 R /XYZ 160.667 267.504 null] +>> endobj +2302 0 obj << +/D [2286 0 R /XYZ 160.667 213.439 null] +>> endobj +2285 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F34 950 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im38 2284 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2309 0 obj << +/Length 975 +/Filter /FlateDecode +>> +stream +xÚ­VKÛ6¾ëWèTPÈŠKR¢zh7u´Ûnw})’h[¶…È¢+Éñ +ýóáPªÝHÐ ¬†ÃÑ|óøfd +ø“¡9WYfEÉs™†ëCðÃ2¸]¨$,y™%árë,—›·,åIÅI‘²‡(Q¬ê"ÉÖQ,Ù„…™ÜM:ÓƒÔ£2a¨¨¶UWµë +TRå9+ÊèýòMðã2>¨Xð¤,Ã8áe¡1¤?‚·ïE¸ Dø&À»"<ƒ,¸«Cæš+Yøs<¿Í®D«Ü%2eV|šØm#U°²t’@ü{8˜vWÑñLí©œ­"ðÉ÷ßbØ· (ÚìPjž¤ @j®Kí|¿2'à `”_FP;‡›°{Œ +¶AÈÆ ¶£›×í–ð™4ßÑC}HL±T¼Ôò˹·.³Í©ÁÌgØ»Îö=‚nQ½ñõðÐé×þyõÿ•|>©Â.ÓÍU¦R~Oý¼—ÕqØ_Ã|¬¾ù%{¤‚)rýÍT7§„Þ§Ìt»j¸ªªT:vçàêvw‹°ƒi±a¶Û9Îè=‰G3TDx:WÏÇn»Ê›Ö-=ašô ˆº`+?Ù¨ö0¿\=×½×n-Ò¦¡@°s±KæOJ(oÑs–³£c˜‘ q +Á¶š‘Œ Ѯ޵í1¾,cƒ%ƒßqrÌÁì âT)özK#úµ'ïÆ ‚ÝÒsØ“?X{XŽžp¤:ïý‚© ÀO?ã°¸)ºñ_24´ìi V:°º§ö¾ŻÚ‘ê`çìF¸–ôÖÙ%Ð!ÊHv†ê +ÿœ4bê|ÆÏy¦R‡¿¢[çååêo/~ÿr?×´eì:ŒÃOÛ+sñÎAÑhNßñÑE9ÇãÉ ¬!)öÌB]‡zÁd4ØÌ+o}:8W@Œ<ÔHtETžJZû/ +¼»nŒkR?‰Cw»ª­:3\°grÕÙ™àå†Ãh<ƒaŒÈ¦ÄµA„èںתÇ/U +®ui+™»´ÖÔ`Üœq¬¸Æ*x&³©_ÚÛ]T6}ê|a Ñ Ê‹XúO%ð)ÔÔµ¿Œ?+Tendstream +endobj +2308 0 obj << +/Type /Page +/Contents 2309 0 R +/Resources 2307 0 R +/MediaBox [0 0 612 792] +/Parent 2237 0 R +/Annots [ 2311 0 R 2312 0 R 2313 0 R ] +>> endobj +2311 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 577.432 161.121 588.28] +/Subtype /Link +/A << /S /GoTo /D (classADSR) >> +>> endobj +2312 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [237.669 551.284 255.298 563.239] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +2313 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 469.021 179.414 477.932] +/Subtype /Link +/A << /S /GoTo /D (PercFlut_8h-source) >> +>> endobj +2310 0 obj << +/D [2308 0 R /XYZ 106.869 686.127 null] +>> endobj +2307 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2318 0 obj << +/Length 1446 +/Filter /FlateDecode +>> +stream +xÚÅXYÔF~Ÿ_a)/7}º»Qˆ”pD@›Ýy‰€‡Áãa,fìel/,ùó©ªnÏ—eƒÂ¢ÕNßÕu|u´EÂáO$Ò3c|’;ϬÐI±™ü>›Ü},Uâ™ÏU2[ÒÆÙâeêùôõìi¢4gB¨8y6{6Í”Ó郩H×ó¶Å‘J6ÐÊ´è7e=…N7ïªi&Ò¦F“G³‰ˆ dœ)ï’L1ï Þÿ~òò5Ož<„µЇ;½O6m “ÂÅñzr6ùkGJ(Á Ï“LZâ}'ŒL„fJç‡Òh +L ©Ó“ +FÝÙ +›e¼[h ƒ ‘5éi¹,·(BY% +q÷±;Ô^êrw ¥Ò¶Úœ¯ËÐ?¯ºb*]ºŠKHk7TK¼ºÄá6,•¯¸P4Qta¦ÀAЮHY¸]ú£ë…e¹ÔtýOU]¬ûEäRˆý>m·:jà—1ˬvqù¤B},;¶Ó1’)>Ðùu¤LpË„Ì#W†¶=©QÚ('ˆÝÍkhH2ÒN8=»o‚ÔË&*ä„öŸÁï*hëÞ½Ïa$ g e˜±9?y0áN‘Äü¨O8ÎÆ‰»O6Ê'@T²U¶£¬ sÜ¡J0oÌ!ªNú7ˆšª y^v+ôž.Ú¨E½W“0JÈQ 'à8ÞŽ´:‘~ÐDÀMÇ+n8ü‹pP‰ÄÁÂ: ^X…"0ì"€"8Œ Îhß(ðɶÛöE×lÙ˜ÇL •SkÛs™Ρ§øˆ_°¹b‡¢àX7c8gÐòe~!å·p{N/Ð+›j]m]ηÿI±‚¨œ¢* Ýís7·é¼^„N±`‡t®Á ×aTÕ1Ôó8ÓBà,¿*¨ÿAÛò +³<‡‰¿G¾Å5“½\@ç_Òb¹¿2DÇ•¹qšyüç äó·)$•Y mtû«‘å8—Yã¬ìbºU4‰áw•ºó°)ÏOaµ ‡¦¬ŒL4Ú¢/°_¶a±nŽÉ!wßÍTrÂs¼ïãÑÆsÌ*p$HÕ¹¸}{mª_0”F\a)©¢¥ §ÑØ=)>Î5Kl%xÈy÷·‚¹ó-E1Üí<º‹°u]^êÖmWõpepUº¡ïv¤Q©–0¾ÁTtÃÞ¦^_âÜÏTa"æ‚™w8ºá4pªvœîØ„åf ¿¾¼–n߯ðÈZ-\b f¹u€@Pï^ôÓ"#í¾ÚiêöqÏ.Ï8‡‰b9¤È#ÿ§Ø;GšÑï2b°9¬_ ë´±/¿£öƒÎ~”sv•]Ò¦ï® !ÊYî†Ré6¬Ðòçý5àëÄgušsÖŒænêòJ3·P\õ‰¿§‡©“nßÈ#‘”f\ù¸÷çj$‹ƒj^Æ ]E¯”k±á$e2þƒå² uX®‡ µ¤È‚©ã5 Ø×mõ¶*¶˜oC ‡1<…Ã!ù6[|‡TŸhø| +… ²G}B™+á÷{fFçÇLâȧrL[+fü€»ÌT‘h`·‰-=èr5A½Ã·+΄¬ JE%ÄÊzX-%¤÷= Ú§uW¼¡lIP.Æ6ð!Ò B³ÙýQ¬ê±àðv’^ŒKŒò|Ù8˜æFÌeüÿø‚ €+,%ÃËn÷ÖÓð4ñðv<@ç •¬•IÏ.ë)4 tJWU‹ÓˆXÁó-bð˳ª Kô)¤ýwpp' Þ ¡ËÐ?™ªuhœ9eñžió. çu„.þ 4NÐÙ۔E>‹9’¿@º )CÑ"=gƨ@/–d+â§³²–'†ñ,¢‰ûÔ#$ÓDKùXyüÈ’š$ÔTБƒ ÿ®E„endstream +endobj +2317 0 obj << +/Type /Page +/Contents 2318 0 R +/Resources 2316 0 R +/MediaBox [0 0 612 792] +/Parent 2237 0 R +/Annots [ 2323 0 R 2325 0 R 2327 0 R 2329 0 R 2331 0 R 2333 0 R 2335 0 R 2337 0 R ] +>> endobj +2315 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 677] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 2338 0 R >> +/Font << /R9 2339 0 R >> +>> +/Length 2340 0 R +/Filter /FlateDecode +>> +stream +xœ•¿NÄ0 Æw?…G`0±'ÍŠÄÎѾÁI¥…ëp¢¯OÒ¦ÜUê‚2øO>ûûÉŽ]y5ž'¸Âó»Ço¸"/_[8OøÒåÏ„, ™xìzXÇMÉŒ £§E°›àámœÛaìçÇî^;e×DÅu‚6Ûü œó‰†æ”´±¼¿þ˜(½4žX6Ö­¬ÄÁK N å}~“  j‘d1Uʦ+÷zÃpt±»[ÔR…•\YÞqî4µ¼1”‘]++Bp óŒ"g‘¨&Ò]g¿¥‚üüs©endstream +endobj +2338 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +2339 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +2340 0 obj +251 +endobj +2323 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 449.264 221.146 461.219] +/Subtype /Link +/A << /S /GoTo /D (classPitShift_a0) >> +>> endobj +2325 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 408.654 228.895 420.609] +/Subtype /Link +/A << /S /GoTo /D (classPitShift_a1) >> +>> endobj +2327 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 368.044 229.061 380] +/Subtype /Link +/A << /S /GoTo /D (classPitShift_a2) >> +>> endobj +2329 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 327.434 241.542 339.39] +/Subtype /Link +/A << /S /GoTo /D (classPitShift_a3) >> +>> endobj +2331 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 286.825 263.266 298.78] +/Subtype /Link +/A << /S /GoTo /D (classPitShift_a4) >> +>> endobj +2333 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 235.256 277.231 247.211] +/Subtype /Link +/A << /S /GoTo /D (classPitShift_a5) >> +>> endobj +2335 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 194.646 260.571 206.601] +/Subtype /Link +/A << /S /GoTo /D (classPitShift_a6) >> +>> endobj +2337 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [247.509 154.036 265.552 165.991] +/Subtype /Link +/A << /S /GoTo /D (classPitShift_a7) >> +>> endobj +2319 0 obj << +/D [2317 0 R /XYZ 160.667 686.127 null] +>> endobj +2320 0 obj << +/D [2317 0 R /XYZ 160.667 667.729 null] +>> endobj +186 0 obj << +/D [2317 0 R /XYZ 160.667 667.729 null] +>> endobj +2321 0 obj << +/D [2317 0 R /XYZ 160.667 469.569 null] +>> endobj +2322 0 obj << +/D [2317 0 R /XYZ 160.667 469.569 null] +>> endobj +2324 0 obj << +/D [2317 0 R /XYZ 160.667 428.959 null] +>> endobj +2326 0 obj << +/D [2317 0 R /XYZ 160.667 388.349 null] +>> endobj +2328 0 obj << +/D [2317 0 R /XYZ 160.667 347.739 null] +>> endobj +2330 0 obj << +/D [2317 0 R /XYZ 160.667 307.129 null] +>> endobj +2332 0 obj << +/D [2317 0 R /XYZ 160.667 255.561 null] +>> endobj +2334 0 obj << +/D [2317 0 R /XYZ 160.667 214.951 null] +>> endobj +2336 0 obj << +/D [2317 0 R /XYZ 160.667 174.341 null] +>> endobj +2316 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F19 460 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im39 2315 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2343 0 obj << +/Length 698 +/Filter /FlateDecode +>> +stream +xÚ¥TKsœ0 ¾ó+8šIpüäÑc“&3ée›å–æ@Àákÿ„šÆ½wAã †ËÑ÷#VõjOý)7m ñÉÓÖzá+×T* ¤ÕT—~p%ÿ‡×(ˆ°4,Þ±!ÐîïM†ViÍ©ÅרÿÂâ.«¬âŒ–¹Zo²‡’šl߆>sg<¨V¤J8ËpN`Ýz|µ³7'ÝÍ˳3/ üY ›3¼`èÑ]3çŽa¢dTk e ž»²? àÜRq*¨f–ÏNÓÁoÕ.¨r±°…èíÅ\ú—`øeâ4µßsÖczendstream +endobj +2342 0 obj << +/Type /Page +/Contents 2343 0 R +/Resources 2341 0 R +/MediaBox [0 0 612 792] +/Parent 2347 0 R +/Annots [ 2346 0 R ] +>> endobj +2346 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 554.243 175.65 563.155] +/Subtype /Link +/A << /S /GoTo /D (PitShift_8h-source) >> +>> endobj +2344 0 obj << +/D [2342 0 R /XYZ 106.869 686.127 null] +>> endobj +2345 0 obj << +/D [2342 0 R /XYZ 106.869 667.729 null] +>> endobj +2341 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2352 0 obj << +/Length 1353 +/Filter /FlateDecode +>> +stream +xÚÍXÛnÜ6}߯Ð ‰h^u Š­SIĵ÷¥Hò he[ð®´ÖņџïÌÒj½o‚$naÀ"‡Ôp8sιÂãð'<™2cR/JR íå«ÙoóÙщT^ÊÒHyó š8_¼÷S|œ¿ö”æLåŒçó7A¨íÂ_fm‹=忬á)ý¼_U.ëÊ ~]¡Ùïó™p„œ©4ñBÅÒÄàú7³÷¹·˜qïõÌŽÝAÖLSo5Ó±aR$®¿œÏþ] %˜á‘ʘb7#=¡™ÒÑt7šAÀšCPBjÿt ½>”ð¯1Þƒ]Àb3ì þ·ÖpF£` FSTyÛ::I¦YÃ0b5É’Rþ}Á:2uà߸Œµ]SÂpui»+ÊW^üE±´¶m˜efדéÖ‚"f‘Ô´âOe•/û…‹KˆÍ<3k—…Ÿwý@Ð:qçëu±`WŸq3 à—퇂 –¤ÆehÚ«êjL4Ê.«àA›*pƒRæì²ÉVvÃuc§û'ü/"Jè„ÒŠH1mqàÝbx* ·|«MÞu†£W+ͽ—5€ËÛà+=kˆ·&XjÌ`§ý'U™[м-º+$÷­Ë¦Þ¤KÀ§È(&bAïà"ÞI«m¸ÁÒnø[ÿûarÅ’d\ç Ý$°2ÝK672æ ÙŒ“?ßa\¿ s[ße–»1ܶ;Áц:7ÈA Ó=D/ìÖD n‰¹!@N¥PÃ,œŽ7¬Œ€‘Q /À¢>ïêæ9Zcžë’3:‡>l/뻢ílaT´e$>xYØw×Ëìã"VbãÒÚ/œTàô›ž"‡˜ñÁv JÍ„Šè©£xSÙÐp-Åwj „‰…h… TÀyRàýiŠ˜–Æf‰‹=y²»uYúšˆÃâ-ÆV—.¸|YdÍ¡8A’Ȧœg6«ˆŠA%:›ð¬rǘurŽvExgi{eÕYi©2giá³S|·-" š®Ïœ»-ý&}CHž°q‡Š±‚ +a,Ãå·’1ùj2âì˘'$ʆØBÕyáèSçVX³Ê™ÖXÊŒh’­Š®hZÇœz¨œc˜×•y¿Šº—]?§ökLŸ â×#Å +£„%È+…î’§WÎlµ¦ÏI×/v|¦X&a\› ±@CB‘k'‰WN‡ÇDÚîJÉé¬G`Ù[8ÇÑK¼¡lâ@cß:‘xÏûÆV²š0y»¸4ò‹{ˆ¡UÝïª_H•0‰ºD…ŽŸ¾Ð–•N>à(ýÜÆ»7VuÅsúE¦œȃ¼Xxæîn6Û%TNãÏ#‘ˆ 7o’!™&_ +²‹Ó ˸–ùGrüu×C ÿö¯,æendstream +endobj +2351 0 obj << +/Type /Page +/Contents 2352 0 R +/Resources 2350 0 R +/MediaBox [0 0 612 792] +/Parent 2347 0 R +/Annots [ 2357 0 R 2359 0 R 2361 0 R 2363 0 R 2365 0 R 2367 0 R 2369 0 R 2371 0 R ] +>> endobj +2349 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 923] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 2372 0 R >> +/Font << /R9 2373 0 R >> +>> +/Length 2374 0 R +/Filter /FlateDecode +>> +stream +xœ­ÏNÃ0 Æï~ +ƒ‰ãÄi¯Hvc¬oP6k'mëÄëãôÏÚ .H¨‡4ß—Ï?ÛŽ]þƳná¯ßÏpDî­é¨[|ªÌ,‘ÙQÒ« 1ÆÄ£+Q)GÁª…»—æRï·o÷Õ'> +endobj +2373 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +2374 0 obj +272 +endobj +2357 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 422.528 221.146 434.483] +/Subtype /Link +/A << /S /GoTo /D (classPlucked_a0) >> +>> endobj +2359 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 382.561 228.895 394.516] +/Subtype /Link +/A << /S /GoTo /D (classPlucked_a1) >> +>> endobj +2361 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 342.593 229.061 354.548] +/Subtype /Link +/A << /S /GoTo /D (classPlucked_a2) >> +>> endobj +2363 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [238.968 302.626 297.637 314.581] +/Subtype /Link +/A << /S /GoTo /D (classPlucked_a3) >> +>> endobj +2365 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 262.658 231.801 274.613] +/Subtype /Link +/A << /S /GoTo /D (classPlucked_a4) >> +>> endobj +2367 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [238.968 222.691 273.063 234.646] +/Subtype /Link +/A << /S /GoTo /D (classPlucked_a5) >> +>> endobj +2369 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [238.968 182.723 273.34 194.678] +/Subtype /Link +/A << /S /GoTo /D (classPlucked_a6) >> +>> endobj +2371 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [274.934 142.756 292.977 154.711] +/Subtype /Link +/A << /S /GoTo /D (classPlucked_a7) >> +>> endobj +2353 0 obj << +/D [2351 0 R /XYZ 160.667 686.127 null] +>> endobj +2354 0 obj << +/D [2351 0 R /XYZ 160.667 667.729 null] +>> endobj +190 0 obj << +/D [2351 0 R /XYZ 160.667 667.729 null] +>> endobj +2355 0 obj << +/D [2351 0 R /XYZ 160.667 442.512 null] +>> endobj +2356 0 obj << +/D [2351 0 R /XYZ 160.667 442.512 null] +>> endobj +2358 0 obj << +/D [2351 0 R /XYZ 160.667 402.545 null] +>> endobj +2360 0 obj << +/D [2351 0 R /XYZ 160.667 362.577 null] +>> endobj +2362 0 obj << +/D [2351 0 R /XYZ 160.667 322.61 null] +>> endobj +2364 0 obj << +/D [2351 0 R /XYZ 160.667 282.642 null] +>> endobj +2366 0 obj << +/D [2351 0 R /XYZ 160.667 242.675 null] +>> endobj +2368 0 obj << +/D [2351 0 R /XYZ 160.667 202.707 null] +>> endobj +2370 0 obj << +/D [2351 0 R /XYZ 160.667 162.74 null] +>> endobj +2350 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im40 2349 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2377 0 obj << +/Length 997 +/Filter /FlateDecode +>> +stream +xÚ¥VKsÛ6¾óWðNL>r¬Ód&¾¨{è¤9@-¡¦H•¤ãzò绋9ö-£Ø÷~»XHÆ~2–¢à*/㼬x!uÜœ¢ßêèú£ÊâŠWy×÷^²Þašk‘¤Y©Ù¦{l’L±ü´{$f즳ÓDÛ»ö>I%kÇ>}ÓU¢dU–|­?G¿×‘ þSÁ³ªŠÓŒW¥AïÿF_¾Šx‰øs„¼2~‚½à¤N‘. W² ç.ÚF¬¦DœªÂǼ&¡b)yeÌË, (HD2.!H©4ûÐb´3¬ë0d̨0ìƒObjFwF¦àÓc×ËKxR¥¹0•7¿­oA9ËØ„&ULðñ>öÄ›æÑ¡­OC’‚ľíèÜ (b'ÜM}¢Yð\iï§>:`êêµ4QÝéܵ'ï´G÷s [Z¼(ÆpµEŽqÃB/^†®+EŠ3Öaøh 5Ž(÷<¹ÆvDôv1¯‚òBÚÎN—¦†žÈó1_s ƒo-ú9ûh¼ßt‹u‡8ÛŠ7á]¾ÄÊ\b%£•P€ãunöAÃù ³°øù¶æ}@ïnß’ÄË´®€(+"Ú‡t4SK.Ï^i ¹¢üL"ž„^vIj û§m¨=shEí|QOÉkÌŽm‡ð%XÃ’à¾b[žmË0þŸ½£,ÇÉÍ$ WR2Ò°¿¸æ–Clm Û>hóy’–¥d5ÊQa3ÒF—‚µÿ¹i¦lX»Ö.$ïõ Ûlx#“³‹Ãé*¢&>ô‹˜¿]Y–韓^wþ¶µvt¨Z Ò!-¤Yº8Q†{² íH—c +ôhô:зþV@o¾u]—b à†PGé@¹£ÎõûÃÃâ$YÇÆ'{¡³Áj­¿®X«µw‡•5 LC»”ÒRB¨·oK@³£`šÇu’@Õììðê¢)ÂvAÐ%+fM·N#äù"ÛÀ;´};þ(îþ‡©q8‘2—0¼®|³¸åêÿ-¤SK²÷4”áýZ§²4<ÓŒfÃME5•âÕôÆ +OçèãÅÜCøñç7 à2Fr¥Ê_|°èé -¿>Z:ÎyUèË7Ë—Dg†mŸûhVê}2QH‘c­€7øçàÖÍÄr=iÞ¼{G›x&æ&Érz¥Ç@¹ã´b»Ð…anÃá“ï´ÐŠdþF0Bl,zø†¦¯Ö^ù.S•àÆd¶’…O«¡j@ß­§ŠaðoA.ó¥j&È] #×ÞBˆb/ú2ß•ÀU¨¥jÿ©iendstream +endobj +2376 0 obj << +/Type /Page +/Contents 2377 0 R +/Resources 2375 0 R +/MediaBox [0 0 612 792] +/Parent 2347 0 R +/Annots [ 2380 0 R ] +>> endobj +2380 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 500.754 175.65 509.665] +/Subtype /Link +/A << /S /GoTo /D (Plucked_8h-source) >> +>> endobj +2378 0 obj << +/D [2376 0 R /XYZ 106.869 686.127 null] +>> endobj +2379 0 obj << +/D [2376 0 R /XYZ 106.869 667.729 null] +>> endobj +2375 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2385 0 obj << +/Length 1452 +/Filter /FlateDecode +>> +stream +xÚÍXYoÔH~Ÿ_a±/¶ÀMŸn­VB—v6™—ðàxœ`Åc'¶'!Ú?¿U]í929`EòtWwW×ñUuUDÀáO2cÆdA’fÌ +‹É³Ùäñ¾TAƲD³c·q6f:ú8{(Í™Êgo¢X¥:|‰°Îûg*ÜkáW†ÅrQ6 †|¨¢X„mƒ<&/fáˆ9SYÄŠe©ÁûÏ'ï?ò`>áÁë ­]Âî̲`1ÑÖ0)R?¯'‡“¿V¬„Ìð$ˆ¥u²¯”‘ÐLédSÍ@`-@(!u8­a¶,"%ÂÓÙ%JŒ +X3ªßž%êq 7èÜ·)JÔëñ~ºi6”CgfR*,›Op4ÇpnNÄ3¼d Ÿ"’6®RPcH–Mq¢ RZ‰ ¶.c“0 r€ýÁì©»âù:T“àcdœ~è–ÅÐvj!RÁŽÁ£Çu{Yöle_u‘‘° \ætö¬Î¯P´ +Öœý¸ÃM%n?_úŒà6²]¯ÆR3¡0K)fSõen½À»a™×» •d²÷œßá„‘›­"—2ݹÅÒÒ€wå–&{y;7Qƶš®Ì»û$…U^PŠ˜ò ‚kÌ09-o¼W‹šò ltWà`ZÓ¬jJMMî)=†hãò ü\T®_ÅvõÁƳÓbÁSy+¹"¡]’åXt¾º´ÎŠÜe(˜Äô#•._PþW?sY³/ßRØž½Ä޳ºÓµœ%6ýy~Í_æ.„F_n¡N¦ÐÖcЬèoþv<Ø|Ro¶êÖt؆öwCÐ::»ððª‰àœLÈ둌ÂÈ\ùlð ÏÔ›j ¥Ê¿l8~þ'ir„Œ®h -¯1€° …Báû{³V;–Ì@ßD2bÏø}æÐo8^ð¼ºm`e¼Ëü#9Ç]ø/ê/Gàendstream +endobj +2384 0 obj << +/Type /Page +/Contents 2385 0 R +/Resources 2383 0 R +/MediaBox [0 0 612 792] +/Parent 2347 0 R +/Annots [ 2389 0 R 2391 0 R 2393 0 R 2395 0 R 2397 0 R 2399 0 R 2401 0 R 2402 0 R ] +>> endobj +2382 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 1081] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 2403 0 R >> +/Font << /R9 2404 0 R >> +>> +/Length 2405 0 R +/Filter /FlateDecode +>> +stream +xœ”ËNä0E÷þ +/gXÔTÙåGm‘XÌb$ ó¨ÏN#†Fü>•Ž8@ƒ@½ˆêÆå{]²8üÊsÝ›Góçœíõ“y´´UëÞwúR¬8ˆ‘ÉvWfl#‚ë£ñl»Þü:Ý<¯ï»—‡ßÝ9éì™®½5)sHöeؾôc‡¤[`Îmo8 B¦*l&£÷àT(oë©áÆ0#C¢!—€æêÍJƒ|‹L%ɘlL¤æaöwû´ûßowÚ!˜H +©¡©ÊŒ“’s€4ç'Ì=J„ ÷Z¢ çD¤ÇCâ­bA”‘hµ»ÿF\ŒÀ-LUfÂL¸?üÒôN˜{nŒ'…гÕ$äG0QÔ–“ ÆÁûw±½|ØÜn¿Â[ˆÀ Ü0¼©q¼ :AB-Ÿ‡‹úhºbÔRicObõaÈvM)çIZ’®ˆ {rÌü×gJ­²Üåêè€oÁRf÷yÔº¦”ó=OQçªQ³„¡Ú(Ë]Fuž"Äj;ýù'×éƒRM]JâÓFYìqгLÄ2Áèyf^Ú‚endstream +endobj +2403 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +2404 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +2405 0 obj +434 +endobj +2389 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 397.462 230.556 409.417] +/Subtype /Link +/A << /S /GoTo /D (classPluckTwo_a0) >> +>> endobj +2391 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [217.383 358.861 270.711 370.816] +/Subtype /Link +/A << /S /GoTo /D (classPluckTwo_a1) >> +>> endobj +2393 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 320.26 229.061 332.215] +/Subtype /Link +/A << /S /GoTo /D (classPluckTwo_a2) >> +>> endobj +2395 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [238.968 281.659 297.637 293.614] +/Subtype /Link +/A << /S /GoTo /D (classPluckTwo_a3) >> +>> endobj +2397 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 243.058 252.197 255.013] +/Subtype /Link +/A << /S /GoTo /D (classPluckTwo_a4) >> +>> endobj +2399 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 193.498 289.999 205.453] +/Subtype /Link +/A << /S /GoTo /D (classPluckTwo_a5) >> +>> endobj +2401 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 154.897 280.618 166.852] +/Subtype /Link +/A << /S /GoTo /D (classPluckTwo_a6) >> +>> endobj +2402 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 116.296 284.285 128.252] +/Subtype /Link +/A << /S /GoTo /D (classPluckTwo_a7) >> +>> endobj +2386 0 obj << +/D [2384 0 R /XYZ 160.667 686.127 null] +>> endobj +1904 0 obj << +/D [2384 0 R /XYZ 160.667 667.729 null] +>> endobj +194 0 obj << +/D [2384 0 R /XYZ 160.667 667.729 null] +>> endobj +2387 0 obj << +/D [2384 0 R /XYZ 160.667 416.762 null] +>> endobj +2388 0 obj << +/D [2384 0 R /XYZ 160.667 416.762 null] +>> endobj +2390 0 obj << +/D [2384 0 R /XYZ 160.667 378.161 null] +>> endobj +2392 0 obj << +/D [2384 0 R /XYZ 160.667 339.56 null] +>> endobj +2394 0 obj << +/D [2384 0 R /XYZ 160.667 300.959 null] +>> endobj +2396 0 obj << +/D [2384 0 R /XYZ 160.667 262.358 null] +>> endobj +2398 0 obj << +/D [2384 0 R /XYZ 160.667 212.799 null] +>> endobj +2400 0 obj << +/D [2384 0 R /XYZ 160.667 174.198 null] +>> endobj +2383 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im41 2382 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2409 0 obj << +/Length 1703 +/Filter /FlateDecode +>> +stream +xÚ¥XYÛ6~÷¯ð[%$fDŠÔ 9ºr Û¬[ Hó kµ¶º²µ‘äÝýóo†²½Gš¦A€%5rf¾9=蟞ê(U&ɦI–«TÛi¹ž<ŸOžœ˜xš«<‰§ó 期 +¬²:œÅ™ N›mÆ&¸œß`iAƒ¡šp¦ƒ¢§]/Ä TUWmÊŠHQ’dAîÂÏóד_æíõ˜E*Îóé,Vyæ Å—ɧÏÑô|M_Op–Moh)M\ë‰M2:óßÍälòëþ©8W6¥§LÊŒÅzš!9¶è¬H%RhXA·$ ¡3¢%'M JK„+áX²…ô]o¬xrB°í±š«tœÐJ–hòG¤SaÌ|دÅuÝÑsö ðâ8®C“mM´s!lÚ¡zOÏÄø´ô ‹èðÝÇ» æ‰r¹eDCXçBˆw]v?NÞ¾‡šÏB +‡¹èU¬¯šš-9ü4TÕbû1ü³SxÈøŒ\)z_j“W’'ËÂËw‚|Ž›†hNà9É£îâsɘc‡²cÐ$!XnÁ'%ÒEmIî¼úJŠ[\ü¾lé—È™‰b«uðœ#¬,¸ÂàFC¬+®j«±ñݺ~¿`Ü1•½8ÌIt×¢é4³V¦ø}†y#ÛžÜAcIŒ&<ˆy½V·ª+(ËýÝb/ö'|ehD(U9CòÍ +có(¶Ýè÷ÚÿÒ£»Góθ­þlYmªŽs÷x bDÛµC¹Êže4¤=¦ýä›eÃO<½?£k§bK¿*ŒãŸAÿiDxP«{Sº±9ç3m"ºÿƒ¿Qý¯]>û·ÓDå©=Npv]p¶£"èjŒ2wàC¼Ž_þ> endobj +2412 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.17 630.369 219.541 642.324] +/Subtype /Link +/A << /S /GoTo /D (classPluckTwo_a8) >> +>> endobj +2414 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [221.135 591.514 239.179 603.47] +/Subtype /Link +/A << /S /GoTo /D (classPluckTwo_a9) >> +>> endobj +2418 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 249.65 185.059 258.561] +/Subtype /Link +/A << /S /GoTo /D (PluckTwo_8h-source) >> +>> endobj +2410 0 obj << +/D [2408 0 R /XYZ 106.869 686.127 null] +>> endobj +2411 0 obj << +/D [2408 0 R /XYZ 106.869 649.796 null] +>> endobj +2413 0 obj << +/D [2408 0 R /XYZ 106.869 610.941 null] +>> endobj +2415 0 obj << +/D [2408 0 R /XYZ 106.869 555.158 null] +>> endobj +2416 0 obj << +/D [2408 0 R /XYZ 106.869 389.241 null] +>> endobj +2406 0 obj << +/D [2408 0 R /XYZ 106.869 365.127 null] +>> endobj +2417 0 obj << +/D [2408 0 R /XYZ 106.869 365.127 null] +>> endobj +2407 0 obj << +/Font << /F23 479 0 R /F31 829 0 R /F14 825 0 R /F8 483 0 R /F22 474 0 R /F35 1011 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2423 0 obj << +/Length 1308 +/Filter /FlateDecode +>> +stream +xÚÍXÛnÜ6}߯Ð ‰h^%1h $v$©Q7Þ—Æõƒ¬åzË’£Õnôç;CR+­×·"5±yçræ ghPøÇ®‰R:H2MR&ƒâjòf:Ù;ä"ÐD'"˜Îí‡ÓÙi¨“èlú>’Æ„_<™~ˆb‘Ép?ba•/—8áA¿yX¬®LÁ Ë»2ŠYØÔ(còÛt¼1%BgA,ˆÎêÿ<9=£ÁlBƒ÷·÷Æ Sëàj"SE8Ëü¼šœLþ܈b‚E“ 橵}ã ˜$B&co$ƒ%£—á1ÙT°dÐÌOý E?R彃ÖAXøhæ¦Å/L]ôiï0C†6H=‚HtÞ‹¯#øÚÙËíoƒrØø›2‰ú;Ôˆ î"ØÄiæzK5KI•ÕýSYÕjæ-dløN¦„¦Òƒñ󮜔¤2óÛÇ`è'Ó6d±+Gq"h/ç×$bFSÂxâ­’ö³wõb0 Ê.G×­W=”á —ó‹6¿rÏïúqÄušôêÕMB1©H +Êc–p"3Ëéà3† +•ÙÆc˸þ¬_Ø{w%ypз‚^ñF²$“l‹_Œh¥Æü:^#ÊÂñåÈt ' gK¢Pb +è ‚9'<ö<=ÝAÓ ¼‚ˆgcÊš.ŠÂæN dpÊr²€¥ˆŒ$™rjÌ<_UœL2ˆ€B.»vUtñ$ ‹6RtÀL€Îj[º½ÜýB‚¶Ë.†# `füÉkœKãna7šÕÅb8P¡ 4Ù…#æ`¨ÀD ™ðˆ¥0t`WÊØ64æ1˜$DB®8H¸=½™y3ËDÓ#ò­üq¡[[ûÊ™ÏæÊäí`æf“…ˆboò&>­M·0βë¼r3ô .cã½k`:¿qÀ§Ûdç‰Ïã^šî j ƒãG ì¯›Ù¬•­O1áP ,ꈾµ<øMÚf»%îð÷?ÐÊ×´©»‰ÎÁª;¨+Mh¢·òéÄø\òp¦áù)=ó™„1j0  •Øû®4uçv×8ÅÚÄX™§Å=€{ìЂbN’”?ììû`g?쯙ó !uG·A® "?äù=xc½ïü”WgãBb놅¼‡; ×yõ”WÕ5X÷·¯Q÷á EW?#Ü”&X²¡¹~ÓÝ…4#’‰¢0.¬neÞ×q¬»ÛWfŸ*67pÛ²|]öGV˲¾ð±Ò£¤ ¿V}s8ö£(±Z:7v]w§n¥´?TÈÿãzöÈÙUDÐh_nw»\€W>*t›vxÜÞþ‚•‡h}4ìAç¹Õ´.’Ø +tf«E;Ø÷±¶ñ··aq‰ÑJþm¾”Ýb«/Hà {q®!¼öŒå5Õ÷zÜv˲+›Ú-–þw×sËwßâë*¯Í“tSÀ€·¹Uìƒ}Ç] ­|ª„¿Åœ+ë>ÊÛVBÊ0–bûC¸üîç1Ñøs•ÍóEB¬¡òŒ,žbÐ¥PáÉWx¿+$½SË%.£Œ&˜a°×Ø„ûPvn˾ók7Þ“nrŽ‚¾º1¼·“дØ_ú•ÄA¡ úÒMs+mæ&om­ní | +ÂÛ2$ÞÎ"Gñk”‹ôp_Ú?WpÈ÷%\RwaùÇ®ÜÆÒ Ø˜’„%=ë”ÿnƒ¥•%´»žeÔ¥þá”â€÷!ü®¥ÿæendstream +endobj +2422 0 obj << +/Type /Page +/Contents 2423 0 R +/Resources 2421 0 R +/MediaBox [0 0 612 792] +/Parent 2347 0 R +/Annots [ 2428 0 R 2430 0 R 2432 0 R 2434 0 R 2436 0 R 2438 0 R 2439 0 R 2440 0 R 2441 0 R ] +>> endobj +2420 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 821] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 2442 0 R >> +/Font << /R9 2443 0 R >> +>> +/Length 2444 0 R +/Filter /FlateDecode +>> +stream +xœ­‘?OÃ@ Å÷ûÁœÏöýY‘`¦4ˆ©¤¨Ð¨j©Ä×ÇIs!,H(Ã)ïÙþ=ßy$ðý7ž«ÎíÝõƒÀë‡Û V=VÜ4f(#ûÍÚÚbÁ@¾€&T†¦s÷»mûØv—Í›»m`aÅ—R¡ Ÿ.dBÒ~€'L@Q³À¡uË¿Ñɉ8G,£ßm¶Çö0±+CNÓ?0³ØÊ‰},sy|ÿŒšY>AðŠ’áÙF¾8!ôEK7êýTÚ~ƒDŤ°µÆ3aôëf“_óc` BÑŒ…¬$pŠ˜h®œÏX_YºS¬Á‘„¶Î³¥í'XF¿n=ùUø-?jž…™)ç3,ÌÂ}êRŠÛendstream +endobj +2442 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +2443 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +2444 0 obj +287 +endobj +2428 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 425.671 225.048 437.626] +/Subtype /Link +/A << /S /GoTo /D (classPoleZero_a0) >> +>> endobj +2430 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 386.999 232.797 398.954] +/Subtype /Link +/A << /S /GoTo /D (classPoleZero_a1) >> +>> endobj +2432 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 348.327 229.061 360.283] +/Subtype /Link +/A << /S /GoTo /D (classPoleZero_a2) >> +>> endobj +2434 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 309.656 232.825 321.611] +/Subtype /Link +/A << /S /GoTo /D (classPoleZero_a3) >> +>> endobj +2436 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 270.984 232.825 282.939] +/Subtype /Link +/A << /S /GoTo /D (classPoleZero_a4) >> +>> endobj +2438 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 232.312 233.24 244.267] +/Subtype /Link +/A << /S /GoTo /D (classPoleZero_a5) >> +>> endobj +2439 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 193.64 252.169 205.595] +/Subtype /Link +/A << /S /GoTo /D (classPoleZero_a6) >> +>> endobj +2440 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 154.968 264.678 166.923] +/Subtype /Link +/A << /S /GoTo /D (classPoleZero_a7) >> +>> endobj +2441 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 116.296 241.888 128.252] +/Subtype /Link +/A << /S /GoTo /D (classPoleZero_a8) >> +>> endobj +2424 0 obj << +/D [2422 0 R /XYZ 160.667 686.127 null] +>> endobj +2425 0 obj << +/D [2422 0 R /XYZ 160.667 667.729 null] +>> endobj +198 0 obj << +/D [2422 0 R /XYZ 160.667 667.729 null] +>> endobj +2426 0 obj << +/D [2422 0 R /XYZ 160.667 445.007 null] +>> endobj +2427 0 obj << +/D [2422 0 R /XYZ 160.667 445.007 null] +>> endobj +2429 0 obj << +/D [2422 0 R /XYZ 160.667 406.335 null] +>> endobj +2431 0 obj << +/D [2422 0 R /XYZ 160.667 367.663 null] +>> endobj +2433 0 obj << +/D [2422 0 R /XYZ 160.667 328.992 null] +>> endobj +2435 0 obj << +/D [2422 0 R /XYZ 160.667 290.32 null] +>> endobj +2437 0 obj << +/D [2422 0 R /XYZ 160.667 251.648 null] +>> endobj +2421 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F19 460 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im42 2420 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2449 0 obj << +/Length 2102 +/Filter /FlateDecode +>> +stream +xÚÅYK“ÛÆ¾óWð–Å1æ \僼ʪâG¤hyIl°$´D‰$V ¨­Uþ|ú5 Hpc)Š•Ú*b0ÓÓÓϯ{°zšÂŸžê4W& Ó,*×nºÜN~XL¾½6vZ¨"³ÓÅ[¢\¬~Mœrf6·Á%¯gÖ$ͦúgÕ68c“«™N6³¹NÊýgLòߪ·U[í–Li£CRä³ß?Nþ²˜h`ž*[Ó¹UEðxüûɯ¿§ÓÕ$þ8Áµ0}€qª4Pm'.÷ +Éûfr3ù{ÏÊÊåÀÊä$yTÅêi€‰l¨ÊMÕHYHº5Ê–åÉo©v¤@WµÉòœ•°°“/qC³½‡©CW¡7VLÙºûCÇãåæP}øâë;¡«—8õî肱Œy®BZ0ë/‘®øléöå†ÚTã@™ +ÚŸäà_w½ûšxY§M%QÑðô ìáYÇÄPÙIDp®B\IP5¸&¬0Z(„þÄ( Vå!û¤êH%ëTj ¡ý-MíH— lj…àSâ+•í𫕃ƒþ“VŽÐB@0U”w bÍ3Öï°Û×w;x'Zñ$#9lœãÍH°„Í7°Z¤×'\[Œ¡S¬ãg%Š#-D›wÙ©Æj‹üoP8jt„³ÊÑc}¢`ûâ$S\ÄQΘ))M`ÐKšÐ? \ßÊ ¾Éî€GÜRN ‹æ­<)“bÒº=J hÀÐ%èT“('Ôì‘þZ+Sè‹ú”F[Ah%uA…÷døs±9W™sÒù3hþ ,C}Òڸ䗘*ë ºm‘ûäµ}ûe[ßãbM1Šª” " ÌþfñÇHÓÑü~}ö˜øöl´Ì¡ƒ1Ø0fõ8†”` ÚQROÔ áëšüìÉÞmÓIT“Î%×µ0Šýá–dY3$’õ–ñ§¶Gº,•ü&5ª*8æ9î8•ˆW¥wuÇÁâ‡ú¨ø¢€Žz ¯8!¶ì…5ó“@~ò£vµƒþf? óUµâÉ·HÝòxÙVeW£]ïxc—žèÔÍ=µóFäÙtÑþ-ó€cä ð.ž¿«Ù¾ã©%Ë'¯³e-«¦H:ÔPûä9ÊÑ@Ƶ'ªú'U%œÙó3ªŠAGªâ$eq †6J_vO—;/®øõvÓ3øÎ“w„awÄ1ÿ1F"¯Ku‹2<òŽ×dƒIeæ w¶4¾âƒ©%ê.R¿,{^Ïàz%{5—ÜÏ‘ª¸¿Ï I¨žGsÖΤ©¹”è ¸Í ýyŠIñ_8¶ñ®w‹8F­k±ÂS-Ö)öV.½1Ö(‡6G ‘…«Œ0µ_7/›•ˆ¡ÅÚzûf/C†ïcc5œÛRPÕÛš-Ä“ê;ÈÙt}Œ`\(kô +•]dž5Gà5þ@fQrÿ*væ¾ì˸|cú\wÓL¹æú{…ææÚ7æhGÔµø A§”Ç_0çOuÇK˜¸óê›oxp‹ y 0KÜZ™y£øyEŸ¤¨Æ×r'À‰//)®¤f6:Í%".K<á²nhܲÐè¦H•÷p³ƒäR¢üQã¹Q>õøÿ‡Lgñ •ºe´QŽx¡ ‘ Ì‹gù™Ÿ©‰¾û7WÐñãendstream +endobj +2448 0 obj << +/Type /Page +/Contents 2449 0 R +/Resources 2447 0 R +/MediaBox [0 0 612 792] +/Parent 2464 0 R +/Annots [ 2452 0 R 2454 0 R 2456 0 R 2458 0 R 2460 0 R ] +>> endobj +2452 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 628.916 225.107 640.871] +/Subtype /Link +/A << /S /GoTo /D (classPoleZero_a9) >> +>> endobj +2454 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 587.156 223.432 599.112] +/Subtype /Link +/A << /S /GoTo /D (classPoleZero_a10) >> +>> endobj +2456 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 545.397 206.773 557.352] +/Subtype /Link +/A << /S /GoTo /D (classPoleZero_a11) >> +>> endobj +2458 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [193.71 503.637 211.754 515.592] +/Subtype /Link +/A << /S /GoTo /D (classPoleZero_a12) >> +>> endobj +2460 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [173.157 386.883 199.393 397.731] +/Subtype /Link +/A << /S /GoTo /D (classFilter) >> +>> endobj +2450 0 obj << +/D [2448 0 R /XYZ 106.869 686.127 null] +>> endobj +2451 0 obj << +/D [2448 0 R /XYZ 106.869 649.796 null] +>> endobj +2453 0 obj << +/D [2448 0 R /XYZ 106.869 608.036 null] +>> endobj +2455 0 obj << +/D [2448 0 R /XYZ 106.869 566.277 null] +>> endobj +2457 0 obj << +/D [2448 0 R /XYZ 106.869 524.517 null] +>> endobj +2459 0 obj << +/D [2448 0 R /XYZ 106.869 451.742 null] +>> endobj +2461 0 obj << +/D [2448 0 R /XYZ 106.869 329.277 null] +>> endobj +2445 0 obj << +/D [2448 0 R /XYZ 106.869 304.537 null] +>> endobj +2462 0 obj << +/D [2448 0 R /XYZ 106.869 304.537 null] +>> endobj +2446 0 obj << +/D [2448 0 R /XYZ 190.5 220.694 null] +>> endobj +2463 0 obj << +/D [2448 0 R /XYZ 106.869 201.689 null] +>> endobj +1582 0 obj << +/D [2448 0 R /XYZ 164.155 119.783 null] +>> endobj +2447 0 obj << +/Font << /F23 479 0 R /F31 829 0 R /F14 825 0 R /F8 483 0 R /F19 460 0 R /F22 474 0 R /F35 1011 0 R /F32 881 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2467 0 obj << +/Length 800 +/Filter /FlateDecode +>> +stream +xÚ¥UMsÓ0½ûWøhO±ªOÛê +a¦ÀPZ_ íÁ$NëÁ±‹ã´Óáϳ«•ê@¡˜²’Þ>½ýÐZÄ~"––cã¼´¬:^n¢WUt¸*¶Ìæ*®ÖX­.[¦WÕI¬4gB(¿y^½K3Uêä8IWo·¸RÉëþe²Ümš>cª§6ÍD2ôȽ©"ádœ)[Æ™b¶4xÿ÷èâŠÇ«ˆÇ'݃ wZo"]&Eé×]t}z¤J0Ãó8“…Óþ\0šiÉP‘d +þ„áÉ +œÌEqêvºæK3GGx°…(›é-šuÛê’þáóïq +ÏqõϘÓªøcDþäÙHïAÓGTú2µ&©PÈáB™©+KíáÓMãåƒ[Oà}ZeYiBu!4á!v† –G\ܵ㴫»+‚•3*“C2`hÆ¡Ç\»4$M)”AÆ%º›š‘VטU‘0×i<ÎDÁr©kå> endobj +2470 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [253.929 583.57 280.164 594.418] +/Subtype /Link +/A << /S /GoTo /D (classFilter_a7) >> +>> endobj +2471 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 542.288 233.351 551.199] +/Subtype /Link +/A << /S /GoTo /D (PoleZero_8h-source) >> +>> endobj +2468 0 obj << +/D [2466 0 R /XYZ 160.667 686.127 null] +>> endobj +2469 0 obj << +/D [2466 0 R /XYZ 160.667 667.729 null] +>> endobj +2465 0 obj << +/Font << /F23 479 0 R /F35 1011 0 R /F29 818 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2476 0 obj << +/Length 1370 +/Filter /FlateDecode +>> +stream +xÚ­WYoÛF~ׯ Ї’ˆ¹Ú“äET®ƒ$u«Êz)’ Í”NNã·0!ä“XRN*Ø¥X`6+ A½,Ðõñuvœ4¨­S; ¾¢máü÷x\é°+7Û +ƒW*lÁJ ¶vÁIÎû¦¥í%%P„ŒÌH{bG¤,‘Æú®¬—ÕnåÝâ §SÆSåÃüá\OÊRp–¶§3Œ™­ŸÑ"X¦-?žÛ„%‰ñ.i'õº^G‡ƒ²ÏOJ™Xár~ßæ +÷nˆ{ +³’î\^>…‡€˜,—`-‘`6ÅÒŸ üÜXF¡ã±ÃÏnaüzá\5€”à–x¯Yô„=ÁŒ`Ö˜cÌLw ÄE¹$XÜýº!WO >dH€œlH¦RJÐ{.Ò³Lâ@zM¹ÀPä>?ï¹áð+è´A§žÙÔC Ìj23‹Œ¢2tC=zP“¤a^¯hª##C§׫(†3Íʺ§"Ö¹_éú¼/ØyŒ±ë*/fïÛb¼ùãiuµd†gAœìð÷Ý/$ì³½;ÕÛU1;ç¯ë_~Ã$¿Œ€±æ„Ê + +K©>÷1MYÆí€­ïýÇÞ•ØDÛüéŸG@œ%,æ“ä7Û ØÔnà‚õ]¾°Ð‰ ½r=:pÎ1ôce™N™µfF¤'Ô ,%<^y”i–Ø"ÅŠZäÊ)î–m¹ÅÍÍ×Ï2¨fÜdÿ?…>aÍùº„=-4щjaÂay‘wNñЦMMß®Ù$ØÜÑJï¹×îòM³ó +n‰õ€ÙìÆ“É ÕÝÀø% ´N?…îc“:%ˆ»_ý.önû"€ÛoË-¤?)PV\PAÖ¥#YÈÂWxø¹Œ¸‚‹ã€pÂo¿öû 0på¡v8»ߣ! µÇT>¾u²nJ7)Ü 8_/ †xÓ®#‹pÚð°.zçúîŽ|ÄÊáò­´ ]I1Ô 0p4¯ª­»­‰ñhÍsen6¨{A[{¿ÝöI˜KW}Ñv +bµÇ +YîÅm8Hnœªõ÷_ ô(0Bhw¸"‹A,ŸÅ¸Ç¶¯1êÞ/P`ðVéQ჻/èø6G ¤¨|#œ†î¨ #Ü×­{®C(ÿ8ÜÊÔ‰p¯̨±Üxâ‘âyÓÁÞß\¯ò£3ÓžƒþÌíð ÈQ5]wõàÐÉqųä\žºª}3=+È™ån_Â¥U:¼ãKE> endobj +2473 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 895] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 2487 0 R >> +/Font << /R9 2488 0 R >> +>> +/Length 2489 0 R +/Filter /FlateDecode +>> +stream +xœR»R1 ìý.BX~Hr CO’û2 áqE€ßGNÎçÜ$qak½’w-9@ëÊöeo¶æzíã»ÙZÜ]ÕmÙÛ›N/³ ‘‚íÖfŸ†–D(Zò@Bd»Þ\ÜÏoç«ÏËîÙÜuv¦Ô'#RòÁ~•êCêð.2º¨Ao¢x¬Ç×zDÎ.)PyÇH¡oL ¢aQBP”ôf¡ÿÉLŽ >ˆÞä½u²z{Íœ•’xp¹™¨Àh%E`~Œ´$5äSQ£éÿ2„,¼·ÌY˧¡ÅÇËïn)JsSÑä”@;Ú´#-ic‚G–"e×¾½›™ðÔ\øäÜØì!ô:cX .N©Ÿp†°ýhI™@Ê !«tŽ•ä% >D¦UÖWgÞ­ÍBCߤVζ略>T©$.Aæ©È´ŠJ™oA`ÇÍendstream +endobj +2487 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +2488 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +2489 0 obj +348 +endobj +2481 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 425.319 175.263 437.274] +/Subtype /Link +/A << /S /GoTo /D (classPRCRev_a2) >> +>> endobj +2483 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 386.465 206.773 398.42] +/Subtype /Link +/A << /S /GoTo /D (classPRCRev_a3) >> +>> endobj +2485 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [422.325 285.321 448.809 297.276] +/Subtype /Link +/A << /S /GoTo /D (classNRev) >> +>> endobj +2486 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 191.103 179.525 200.014] +/Subtype /Link +/A << /S /GoTo /D (PRCRev_8h-source) >> +>> endobj +2477 0 obj << +/D [2475 0 R /XYZ 106.869 686.127 null] +>> endobj +2478 0 obj << +/D [2475 0 R /XYZ 106.869 667.729 null] +>> endobj +202 0 obj << +/D [2475 0 R /XYZ 106.869 667.729 null] +>> endobj +2479 0 obj << +/D [2475 0 R /XYZ 106.869 444.746 null] +>> endobj +2480 0 obj << +/D [2475 0 R /XYZ 106.869 444.746 null] +>> endobj +2482 0 obj << +/D [2475 0 R /XYZ 106.869 405.892 null] +>> endobj +2484 0 obj << +/D [2475 0 R /XYZ 106.869 350.108 null] +>> endobj +2474 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im43 2473 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2494 0 obj << +/Length 1375 +/Filter /FlateDecode +>> +stream +xÚÍXmoÛ6þî_!`_d´bøþR ¶fÚ®H †¦T[I„:R*ɺýùÝ‘”-GI– C:MHñx¼{øÜñ.,¡ð%Ü¥\¢­#†Édy9û)Ÿq‘8â´Hò3/˜¯Þ§ŒÒy&¸d"]äs–¾™•éËuÑu8éa¿Yºœg,Ý€Ä%Êz.xÚ}…³>×óùëÙÏùŒE#2J„³I&ˆ³ +mø<{ÿ&«M^ÏÂÚŸ0¦„9—\ΤQ„3çëÙböÛVŒ(ª“ŒoÿÖ!ž0I„Ôc$k¤»—éIéÍ]ås'ÒV>®Á£Ò—0ŽNšAì¬lýïzY¢7Gv ž®ô‡,rJˆ´-ËUõ¨†£p&\8/:u$(änO#\yßUõr½YŃÛÉIC¨‘Ñ»ï§z 1ÒÆå0'CÈÅTâDÐAÏ3F a\G«‚Ÿ¯ê‹àK[T}QÏ#¢£+ü\œ·Åe€á¬iÃLA1\ÏçÀ£Ï‹7y¤ +$qp÷p»ÉgäZz¡ñØiØ?¼º”29l€2ÉŽ5ÙV³ÅÂíц§Ô˜6ï6Þ¾jèñ¶ì/ø4]uJ¹ÃŠ)`FB•ðûO)3LÃ`{5<Ÿ—ŸÊ)q9TéZïÛÙcÆkxÌD½DnÉ1Ï}©ÚëU´ãøªÃ·\†Æ²ÝÉ`±M]¬X«ú<Èc0öUÕÜL½ñ誾Í/N8µûŽe(áesX0 +e¹ Ì¢z¯ fÄ8½°{Õ|¦áÐ,ePú+ÀÜ7„`Á¾3d¾1TPH‡ +ì¯|ß¶ +…ÿ¡Û»e[]ábµím'Ý $\‡Úákú,tÏØ º£7\›ÂýFc0a數äükûfA¸ÃŽ.´m€$ê`…WŽŒB¥‹/ÐÛ+dˆ7²êð3†£:Å–HáO¸ò7U–üßê0~ù 'ÏÂä#*úÆïæB§e‹ÐÄ/'$nA¥ úS˜^Û*L~ñký: GMI´sY úkÔÛx¢–Ï=¸Ã2Ò1à°ŒLQ;·á)WÐ g”h¦‡Ä®¢ÜƉôº„ ¼”ñ,õ7Ç¿œ°”wø"ÌÿŒendstream +endobj +2493 0 obj << +/Type /Page +/Contents 2494 0 R +/Resources 2492 0 R +/MediaBox [0 0 612 792] +/Parent 2464 0 R +/Annots [ 2499 0 R 2501 0 R 2502 0 R 2503 0 R 2505 0 R 2506 0 R 2508 0 R ] +>> endobj +2491 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 547] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 2510 0 R >> +/Font << /R9 2511 0 R >> +>> +/Length 2512 0 R +/Filter /FlateDecode +>> +stream +xœ•Ž;1 D{ŸÂ%PÇIìl‹Ä€\€Ï‚€Ý‚Äõ ,‹@¢A)¬Ì›ñ˜É!?Þk®[8Áxpwº'êǺÅI.°*B¤Šóº˜ÃÈIL¨ŽÌ4`na0¯ëM^®ša>À4㬘÷I¼Á#™KØ4<×°ø¯ÔYE^=ÈRWº¸ß}Œ>z&N?Šžk¹Câj»¯h0ŠŠM1~ /Þ¯}ó^(\½O豋x5RùT¾wlG0ƒ;qO³endstream +endobj +2510 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +2511 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +2512 0 obj +198 +endobj +2499 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 451.288 228.342 463.243] +/Subtype /Link +/A << /S /GoTo /D (classReedTabl_a0) >> +>> endobj +2501 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 411.486 236.09 423.441] +/Subtype /Link +/A << /S /GoTo /D (classReedTabl_a1) >> +>> endobj +2502 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 371.683 246.579 383.638] +/Subtype /Link +/A << /S /GoTo /D (classReedTabl_a2) >> +>> endobj +2503 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 331.881 244.31 343.836] +/Subtype /Link +/A << /S /GoTo /D (classReedTabl_a3) >> +>> endobj +2505 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 292.078 277.231 304.033] +/Subtype /Link +/A << /S /GoTo /D (classReedTabl_a4) >> +>> endobj +2506 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 252.276 260.571 264.231] +/Subtype /Link +/A << /S /GoTo /D (classReedTabl_a5) >> +>> endobj +2508 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [247.509 212.473 265.552 224.428] +/Subtype /Link +/A << /S /GoTo /D (classReedTabl_a6) >> +>> endobj +2495 0 obj << +/D [2493 0 R /XYZ 160.667 686.127 null] +>> endobj +2496 0 obj << +/D [2493 0 R /XYZ 160.667 667.729 null] +>> endobj +206 0 obj << +/D [2493 0 R /XYZ 160.667 667.729 null] +>> endobj +2497 0 obj << +/D [2493 0 R /XYZ 160.667 471.19 null] +>> endobj +2498 0 obj << +/D [2493 0 R /XYZ 160.667 471.19 null] +>> endobj +2500 0 obj << +/D [2493 0 R /XYZ 160.667 431.387 null] +>> endobj +2504 0 obj << +/D [2493 0 R /XYZ 160.667 311.979 null] +>> endobj +2507 0 obj << +/D [2493 0 R /XYZ 160.667 232.374 null] +>> endobj +2509 0 obj << +/D [2493 0 R /XYZ 160.667 163.663 null] +>> endobj +2492 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F19 460 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im44 2491 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2518 0 obj << +/Length 1683 +/Filter /FlateDecode +>> +stream +xÚÍXYoÛF~ׯÐSA"áv—Ëåá·ÖmÒ& ’ZB‹"É-Ñ*IÅpûç;Ç.IYŠÛ °ö˜ùæ\ª¥„?µT2aœ.ã4‰Š–›zñízñõ³P/3‘Åz¹¾!Êõö­‰(òFÞUQl×~{ùuÅ+—¾ò`¨¼¼‡Q‹Ú»Â…â¦èŠfSÀ’Ô¡ô”Tþûõ‹Å÷ë…²BRè,[Zd©A~_¼}/—Û…\¾Xà^º¼ƒ± +¨êE”ªÔΫÅjñóÈJ.ƒ0!Á&é©"ë] oSå= c¯¹kxª8ª‹ÆSo°Ä9ÿôe½Ç}·\á®È?ìýN´ÈŒÏ>õ£$LU‰bžwx2‚S4Ýòìæ€'7CÙ"¡= ˜b¨›R"3†”Øývx×5][m4Ì`rÏãU];¾“Fª,áW à, ‡ mŽï¦n•Иö¦ˆœnEÝv÷•S¯·gR$À%Ü+›?զߓÍ-{NÝ’BÛ¢ây{ÿÐì +v¹Î]EB¥¬ßD ÙùnM–ƃ¥uÏò–¬ÒYü2P¼u·+7⎧}>ðº|`ÝQÑX±v$Ë\­˜ÔšŒ«u葽ڊpóábäݱ}ôL9X­ÛMÑKâ±±;7(q"_º㵉ˆÃˆ®]áµQœx¯6?"%¸bìÑ+ºJJo +&  ìêÜN,¢õ=©¼¯Qìýê£À(‰gMƒÄí¡§‹RÂÀ½4¢èî`çCsç³»?”]?ÞK.”³ÓŸºÇ%_Ú~xÊP­€Ž0ÈQ©øBÑnæÅ»vE×O°µÔds\%oÚnAÿ?•e£ +8¼ÁqÑá9»B¹Nðx”ÖÉã[ÐÞó|væ ‚*ÑÈÙÃ*éÎð(`ñC)Cv¸txa¢ƒmaLbó6ðÔ ò…ÀM…‘÷Šó› AêÐp BYð™ŸEÞ“%,\4Þw-Ñlµ¨ña>ø#`”îXŽ£Â„‘&ˇÀáP(†‘ &Z©t!‚%㨲(ïâ¢/†×ï¤Òð;…ù«ßÖ€BÄ1Á ÿ¾Œhéäl±;Ãg?ίQþoü )k¯ÍD)‘¦‘%ÏñÓÌË«Cq +˜*‹•%¤D$³Âac£,ž© òÁæ N0Ðì°EÈ(W1UX›p&<çâkây91¡†à&fœÿÞïZäs»«Ð“!º9³uT{.¢”*š­í€ËÐZÞ»‰s_þáî¸aNƒ¡lЇ2¯ì•erdPî™¶åj[4¶tœæ ô•œ¹…ò<Øì6AÔÓŠ²+öcQé§ÚèY&¤[WÕ”)™ëkcÃ¥f.´çÂB+abó0,ÂÏ ‹ ñjÍ€Bm;I¤—A +“Ô_Hh˜ÿ*4À£øŸ‡Fïzç>Gñë‡âÓ±!SN{Ì f}5ÙçcdØ4K›¶›Üêa`H–±»ä¸¹‘ KMYÙEvsÔjÉttv fgïfGŠéï)fqœkˬG‘ 9"ªÙy·}3±?×ùµuþ3Þ«àD¦ÿ›ÿÚ´æP°Ëùµ{ò\\°m6X?t™…3ɇ™ÂPDÒIÍ¡(ÀeÉQ—¼þ„Lܲ”È-> endobj +2524 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 260.776 182.846 269.687] +/Subtype /Link +/A << /S /GoTo /D (ReedTabl_8h-source) >> +>> endobj +2519 0 obj << +/D [2517 0 R /XYZ 106.869 686.127 null] +>> endobj +2520 0 obj << +/D [2517 0 R /XYZ 106.869 558.819 null] +>> endobj +2513 0 obj << +/D [2517 0 R /XYZ 106.869 534.705 null] +>> endobj +2521 0 obj << +/D [2517 0 R /XYZ 106.869 534.705 null] +>> endobj +2514 0 obj << +/D [2517 0 R /XYZ 313.954 463.442 null] +>> endobj +2522 0 obj << +/D [2517 0 R /XYZ 106.869 447.011 null] +>> endobj +2515 0 obj << +/D [2517 0 R /XYZ 200.878 378.239 null] +>> endobj +2523 0 obj << +/D [2517 0 R /XYZ 106.869 361.808 null] +>> endobj +2516 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F22 474 0 R /F35 1011 0 R /F32 881 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2529 0 obj << +/Length 1304 +/Filter /FlateDecode +>> +stream +xÚíWÝsÔ6¿¿Â3}±¬èÓ²™NgZ 4@$÷ÒÆVržÜÙ9Ûæè?ß]IöÝq)$Д—n%K«ÝŸ~û!PøÇž¥² I3¢™ ŠÅä·éäà‹ #Y"‚é¹]8-߆Œò(\2žM#¾€Q*ÃÇó¼ëPá“~YXD1 W°b‚©#ÁÃ>ï+50]Gï§Ï'O§æˆ)YÄ‚d©B–“·ïiPNhð|â¾}™–eÁb"µ"œ¥~<ŸœMÞŒª˜`DÑ$ˆ¹¶öñ€I"d²í‘$`T`ã2<5h`SM÷ðc¡:ë#ŒN͹i_…AGÓm¬ð`™YõgS„HptVÝåfʶ‚¹ëˆ§¡=µvÓ縰]ä5~èÝÜ;Êäæ{»°‰¸cy¶s.Ó$áÊüSUóUéÍcl³NjBµôîÿ¼¯G-SÿùÔt„!³}=ŠA=¿ìÁ3ª ㉷JÚeGõÌ꼨úq)FTdXât~Ñæ GÓ:L±äÁ `Ñ£GŸ3ˆÉ„0¡á¼„™Z"Kdå4µ‹¶eK±a¯Ÿ88ZHÊëÜÏt=Fà®åöŽv¦ß\În(:×ÿØ 3("%’òW35‡„žÝ˜§ý—1œÒýzsøòíý5‚"3u¼ÁüØšå +rï:‚‚óÐ{ Óû¶RF¡†hÿ/Íls›ÉV޶,¼™C1Ë4áBî„ç™éÑû™q pùÙd5úÝŽŽµw©XÛ¬´Î@*ÞÌCa]é6ýÑ¿ÏçK„*Ÿ?˱{«ÿ4-Twláºo(Ä·Að“±Öøòa‹µ mXš"«»n$߸¶ÕÐbùC¦ÝnrÐáE^Õ÷×¥ím×'ÑØÜÞ £ºê«±eØFÉ%§k3žW[þ|¬úÙç.íòuÜxr™kÚ½{ ;ŷТºðÅ?Ýø°F“ãÆ«D|ò¨ù,œÌЕ½øûñÖ¾kzsR©g€Ç• Zao®$IÒÿÛ†23_\Ù×C¿*‡r Í Br¢lF¸üî÷2(Éð¡æ3ãóFB+žÁSqËä)²K +ž­áM¯m¶làËV +tƒÑÄ&+…ÿ³pþ¢êݧʷ(?~€ƒnð­ü:Ih°(µ~æ”ø-–ßas醹 áÒ ž¡œ»tÀÓ3$ÞÎ"Gõר·±{ÌCD3à% +Ž.ÚúVø·°Ú¸ÊðÆ)IX2„‡òë¶àaðâ´ºDæ¢PƳÔ_œRøpƒ5— +Ìendstream +endobj +2528 0 obj << +/Type /Page +/Contents 2529 0 R +/Resources 2527 0 R +/MediaBox [0 0 612 792] +/Parent 2464 0 R +/Annots [ 2534 0 R 2536 0 R 2538 0 R 2540 0 R 2542 0 R 2544 0 R 2546 0 R 2548 0 R 2550 0 R ] +>> endobj +2526 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 833] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 2551 0 R >> +/Font << /R9 2552 0 R >> +>> +/Length 2553 0 R +/Filter /FlateDecode +>> +stream +xœ¥ÁnÂ0 †ï~ +a‡à4Û^‘8pò*l)‚Vâõç¤M:¶&­•Û¿NIi¤ðNçÑà Vûßz¸¡ŽR:Ž×NÄF +„î£E#³ªˆ4ÚZyÐyXìÛþÚ½íÒ]`ãp'Íg¨ÍØð€Â’„VìeÙ4¢fÃÞ[8ü]“²VЦъÅÐÛ®î¾2:Á; þ‡ÔáX6ÂÃûOså”aQIâ? ¬ù1Ÿi›³IIËg1DgYÆPt¦šãgßée¬Xš§ÚúÛÔT˜ôt•¬ó¼o ržÁ_Òg·°wð £¾~Oendstream +endobj +2551 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +2552 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +2553 0 obj +244 +endobj +2534 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 425.671 226.46 437.626] +/Subtype /Link +/A << /S /GoTo /D (classResonate_a0) >> +>> endobj +2536 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 386.999 234.208 398.954] +/Subtype /Link +/A << /S /GoTo /D (classResonate_a1) >> +>> endobj +2538 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 348.327 229.061 360.283] +/Subtype /Link +/A << /S /GoTo /D (classResonate_a2) >> +>> endobj +2540 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 309.656 266.366 321.611] +/Subtype /Link +/A << /S /GoTo /D (classResonate_a3) >> +>> endobj +2542 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 270.984 246.8 282.939] +/Subtype /Link +/A << /S /GoTo /D (classResonate_a4) >> +>> endobj +2544 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 232.312 295.244 244.267] +/Subtype /Link +/A << /S /GoTo /D (classResonate_a5) >> +>> endobj +2546 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 193.64 236.505 205.595] +/Subtype /Link +/A << /S /GoTo /D (classResonate_a6) >> +>> endobj +2548 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 154.968 236.782 166.923] +/Subtype /Link +/A << /S /GoTo /D (classResonate_a7) >> +>> endobj +2550 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 116.296 240.657 128.252] +/Subtype /Link +/A << /S /GoTo /D (classResonate_a8) >> +>> endobj +2530 0 obj << +/D [2528 0 R /XYZ 160.667 686.127 null] +>> endobj +2531 0 obj << +/D [2528 0 R /XYZ 160.667 667.729 null] +>> endobj +210 0 obj << +/D [2528 0 R /XYZ 160.667 667.729 null] +>> endobj +2532 0 obj << +/D [2528 0 R /XYZ 160.667 445.007 null] +>> endobj +2533 0 obj << +/D [2528 0 R /XYZ 160.667 445.007 null] +>> endobj +2535 0 obj << +/D [2528 0 R /XYZ 160.667 406.335 null] +>> endobj +2537 0 obj << +/D [2528 0 R /XYZ 160.667 367.663 null] +>> endobj +2539 0 obj << +/D [2528 0 R /XYZ 160.667 328.992 null] +>> endobj +2541 0 obj << +/D [2528 0 R /XYZ 160.667 290.32 null] +>> endobj +2543 0 obj << +/D [2528 0 R /XYZ 160.667 251.648 null] +>> endobj +2545 0 obj << +/D [2528 0 R /XYZ 160.667 212.976 null] +>> endobj +2547 0 obj << +/D [2528 0 R /XYZ 160.667 174.304 null] +>> endobj +2549 0 obj << +/D [2528 0 R /XYZ 160.667 135.632 null] +>> endobj +2527 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im45 2526 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2556 0 obj << +/Length 1422 +/Filter /FlateDecode +>> +stream +xÚ½WKsÛ6¾ëWðHNB„xñÑ™R;ÎLÒ8®¬K›æS´Å EÊdWÓ?ß],HI–3vOG3"¸öñ}»  üxÀ“Œ‰4Ò¼`WA¹œü2›¼92(X‘Ê`víVÎæ_BÅ”Žb™«pZ­»ÖØ +ßdxÒ˜õš†Óê:ŠyXõüµ%.Ht’…<‘Ñ×هɻل{ËqÂdQ±dE®ÑîíäË×$˜O’àÃçòàÆ ã°j9Q™f‚çþ½™\N~UÉ‚© T‰Ì¹<Ä yƒ ÝáÒšÞ‚Wiz´‹#ÍÃûÚ.Hf nê» +jéõº´ «H‹ðvCå–6›vîÕ.!öUSÛͼbô›3Àu3Šq™ÂçΧ?žÑÂ|·Â;}‰<ìj4 %øÂCðù3l“(Q @'Ÿ@úûCŒS°•热'1@Eñ(Â~f„6?ÎŽ³_?£›o#Èùe–«ÜB(0/p•S¬ûìÄiÆx–1W¬PÊ3Õ­¾K¨³¨nä‹ôã$RÖzNö¨ …ˆÔz5’èþ“ÈOG ÅH‘ŠdÎr­”£ü_sdëEß(·ŸïQÄ º†N:€j¹ÚXn×z +P¾±0AòµçÁu†—*‰[ŒÝ˜†÷%2_%%ZëÚH¡í»æda`®½©vƒ‹[Üf‡º‚ñf‰ÿWQ ÿUÿšf­- Irí™SÿuÝE: M³y¢´x®˜ü€¹ ·¼îú僞çò¾k­ëu]C”–„n»ñëöꨬ0µ_MW[Ïs±s…§ K3é#rÔ Ü…ƒ»ÀCãÈ{)Y–~¶Øc¥˳|l”:CHªcMc‰ä~ÒŸ0(!oc +’ åŒ*€‡>U…8g§ËU =WA¬ÓPt.Âb8a€¸Pá©Ø‚ÈÔØ+„%Óá©«uÙ×+œ¬;êÃDO\I$:§F8û¸×øëµSA’9RX»Ü)_ãÂ~iö³ BOìH½ m„© Ä˜-P?ĺêXÛÓkéLÚD¦vÕCKi›¡‡wµ¢7çr‡šúÒ™õ•†÷ j> Rê¦þ*k[*»Â o7†Š%ýóx A[¥'1R5ëw L]ˆþ”{‚²Yú¾Pú˜ c4ƒ ßP®0S·46è·§—ÓÇ`<Ô ©>Á3ÊŒ蜀™Ëþ ²ýÓqkäÐc”„tÐLêy­q:"ƒ¼”ÞÞY׳·[ º¢Ë‹oûIŒç[˜¹Ý ¥Ž5ëjÁ-ú™â‘NæcL‹çyyAàûDžšy]˜QO˜yæ9qÞÙAv”‹‡(Œ½sÌ¡@η§z}Œç/Ãc9vÄ é~0Þ¹ž»k ¶Ÿudý½ëXí¡q‘»Ç$„Û¼OFí4^¡.™c´ê1/™¢Fc¸, îÛXAce½7{{.!¿çr`Å j*×v ÌŸÍpšjÅ‚Hñxkó1Î lPVººçtYcëî ÒØ.|1¸þŸ:®ºhîSËø¹›ª­zc´ TÕwKÙ‚—Á g£ +^hÛ›]›ÆæåT<ÕôhÔÿÙâè"*àö•ã¹V°4)~ìƒÌÚùcsü¦TAÊŠLíßk+JêðrÛFð€[ˆ!%ñ®Ã“ÔÕ†Æ@æcmi +Ówž¼zEƒ+T°¥É‹H¦ôÚ{ 4j÷ÄD„9LD|5­' _Þ›¡G5ð2ïbiЪîܶŠQ$Lk¸Ø t%(ýÕAï"ŽÓX=pâé@œöëö‚VNBˆË^´¥ÿ >1P÷z¢­Aendstream +endobj +2555 0 obj << +/Type /Page +/Contents 2556 0 R +/Resources 2554 0 R +/MediaBox [0 0 612 792] +/Parent 2568 0 R +/Annots [ 2559 0 R 2561 0 R 2563 0 R 2565 0 R 2566 0 R 2567 0 R ] +>> endobj +2559 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 630.369 187.135 642.324] +/Subtype /Link +/A << /S /GoTo /D (classResonate_a9) >> +>> endobj +2561 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 591.514 206.773 603.47] +/Subtype /Link +/A << /S /GoTo /D (classResonate_a10) >> +>> endobj +2563 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.17 552.66 250.011 564.615] +/Subtype /Link +/A << /S /GoTo /D (classResonate_a11) >> +>> endobj +2565 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [236.799 440.115 266.742 450.963] +/Subtype /Link +/A << /S /GoTo /D (classADSR) >> +>> endobj +2566 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 345.09 172.606 355.939] +/Subtype /Link +/A << /S /GoTo /D (classEnvelope) >> +>> endobj +2567 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 278.214 180.964 287.125] +/Subtype /Link +/A << /S /GoTo /D (Resonate_8h-source) >> +>> endobj +2557 0 obj << +/D [2555 0 R /XYZ 106.869 686.127 null] +>> endobj +2558 0 obj << +/D [2555 0 R /XYZ 106.869 649.796 null] +>> endobj +2560 0 obj << +/D [2555 0 R /XYZ 106.869 610.941 null] +>> endobj +2562 0 obj << +/D [2555 0 R /XYZ 106.869 572.087 null] +>> endobj +2564 0 obj << +/D [2555 0 R /XYZ 106.869 516.303 null] +>> endobj +2554 0 obj << +/Font << /F23 479 0 R /F31 829 0 R /F14 825 0 R /F8 483 0 R /F19 460 0 R /F22 474 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2573 0 obj << +/Length 1313 +/Filter /FlateDecode +>> +stream +xÚÝWYoÛF~ׯ Ò ×{r¹A] uä0’Êz)’ð‘}!c<¨Ïï&亄V]ŸUûü'â–zN‚îqBšoR7æ +^þ}aÅ]µeæ_«kÑjEnpræÃůðgÔƒǰ@ïä»1zËòhfø0$:Ìê™#òÊÅl´÷àLÁ°r£²îœ5ëÌÏ´ðf÷f §»W¼-ºpDØóîmrµÕþô÷½(æp†P*ÿ9Apð¶9˜üÊ&XÓý4÷òÝ{”õY¹mâÞŸeyõ7À‚´©Ø _œöM†§Ù¿jH/1ö¯º~å…s˜ çH¢í/ûΑÎa@Þ”´9ƒ‚JιM]]#û'ŒX`ZúØ…Ï-YíœÂñ5ZîžÞ}\ÄiBd +_iH*øÃC^‘îýÆ´ÛàÝ ð¦ÞdüJ…Ræp4#`0Ñ[;g‚a­Y3äÙ¹D:ØÇüzX·û{ áÖw6ƒÚ¤ú‡ÿ]1ÿ¨Ü퉴ÁYÕ;EÙÿÚãò|±SÞòVÿémÅx޳ „ßüÛÒû) ÷<ý•dÚ{H<¼‡:(9aêâkÉUk’Òt¨~Rº#Óe&[ñ(w 73„ó›IöYÄ“p +õšMˆ¹w{W}Ã…sü¼¯]{… Çf/B¢Xj.ûÖcÄ%X_ +-/°Ë¢öùv(“|qÔÛ¶ñ*Z²˜Ú +ìC¡faJoS+7X¹ÆbÓjÈ !š¶+O0T¤PáÙ54Þ +CÇ>}e‹ÓhyF“›…¿ çÛ²sK¥k+-}òÝ`ŠŒ®ý!‚¢£À°[ù™1ñG)°¾pCèâb[éâà•+pí <Õ!ñræ²_#߯ž)žØ"M¨Àá`H溠Üw¥j«6¼€ +J˜’„%CÜ*¿oÇ< Ú ËK÷Ú‚•ñ.õ'§ >¸ð/ŒåïŽendstream +endobj +2572 0 obj << +/Type /Page +/Contents 2573 0 R +/Resources 2571 0 R +/MediaBox [0 0 612 792] +/Parent 2568 0 R +/Annots [ 2578 0 R 2580 0 R 2582 0 R 2584 0 R 2586 0 R 2588 0 R 2590 0 R 2592 0 R ] +>> endobj +2570 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 298] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 2593 0 R >> +/Font << /R9 2594 0 R >> +>> +/Length 2595 0 R +/Filter /FlateDecode +>> +stream +xœ¥”Ë’Ô0 E÷þ +/…dùµ…bÂbºóLÍ Éb€‚ßGNb;¡“®b¨^8¹‘¬s%»Èbù-ëíhžÌë“Ø‡æÉÒô©.·£}3èÇl&±Ã½™³È2"Ää,9’½Fóât÷ëîû§—ÃWón°7úÅpAçìï²ù’º”¥œX"€œc— „¦'U9hRM¬sºÜêZw{ÖÆöAJEêYû7æ”Z/{endstream +endobj +2593 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +2594 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +2595 0 obj +447 +endobj +2578 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 425.274 217.576 437.229] +/Subtype /Link +/A << /S /GoTo /D (classReverb_a0) >> +>> endobj +2580 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [217.383 386.401 257.731 398.356] +/Subtype /Link +/A << /S /GoTo /D (classReverb_a1) >> +>> endobj +2582 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [238.968 347.529 261.467 359.484] +/Subtype /Link +/A << /S /GoTo /D (classReverb_a2) >> +>> endobj +2584 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 308.657 263.266 320.612] +/Subtype /Link +/A << /S /GoTo /D (classReverb_a3) >> +>> endobj +2586 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 258.825 277.231 270.781] +/Subtype /Link +/A << /S /GoTo /D (classReverb_a4) >> +>> endobj +2588 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 219.953 294.804 231.908] +/Subtype /Link +/A << /S /GoTo /D (classReverb_a5) >> +>> endobj +2590 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 181.081 301.445 193.036] +/Subtype /Link +/A << /S /GoTo /D (classReverb_a6) >> +>> endobj +2592 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [274.934 142.208 292.977 154.163] +/Subtype /Link +/A << /S /GoTo /D (classReverb_a7) >> +>> endobj +2574 0 obj << +/D [2572 0 R /XYZ 160.667 686.127 null] +>> endobj +2575 0 obj << +/D [2572 0 R /XYZ 160.667 667.729 null] +>> endobj +214 0 obj << +/D [2572 0 R /XYZ 160.667 667.729 null] +>> endobj +2576 0 obj << +/D [2572 0 R /XYZ 160.667 444.71 null] +>> endobj +2577 0 obj << +/D [2572 0 R /XYZ 160.667 444.71 null] +>> endobj +2579 0 obj << +/D [2572 0 R /XYZ 160.667 405.837 null] +>> endobj +2581 0 obj << +/D [2572 0 R /XYZ 160.667 366.965 null] +>> endobj +2583 0 obj << +/D [2572 0 R /XYZ 160.667 328.093 null] +>> endobj +2585 0 obj << +/D [2572 0 R /XYZ 160.667 278.262 null] +>> endobj +2587 0 obj << +/D [2572 0 R /XYZ 160.667 239.389 null] +>> endobj +2589 0 obj << +/D [2572 0 R /XYZ 160.667 200.517 null] +>> endobj +2591 0 obj << +/D [2572 0 R /XYZ 160.667 161.644 null] +>> endobj +2571 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im46 2570 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2598 0 obj << +/Length 1016 +/Filter /FlateDecode +>> +stream +xÚÅVMoÜF ½ëWè8B¬É|JšÞZ§4¨»»—"ÉA«•mÁ+ÉÕjm8ýó%‡#íÆ2Ú=,ÎCò=r8+c2–"ç*+â¬p<—&®Úè§MôöJéØq—éxsã-7»ÏÌp“%©. [Õ‰V¬¶¸Öìr_(*¶JRÉê›z¨»ª†-iœfRØäëæCôó&’!p*¸v.N5w…ŰDŸ¿Šx‰øC„º"~Yp VmdrË•,Âz­£ßfWÒrmtœªÜg> endobj +2601 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [225.417 654.279 243.46 666.234] +/Subtype /Link +/A << /S /GoTo /D (classReverb_a8) >> +>> endobj +2603 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 483.824 172.08 492.735] +/Subtype /Link +/A << /S /GoTo /D (Reverb_8h-source) >> +>> endobj +2599 0 obj << +/D [2597 0 R /XYZ 106.869 686.127 null] +>> endobj +2600 0 obj << +/D [2597 0 R /XYZ 106.869 667.729 null] +>> endobj +2602 0 obj << +/D [2597 0 R /XYZ 106.869 606.963 null] +>> endobj +2596 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F31 829 0 R /F19 460 0 R /F22 474 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2608 0 obj << +/Length 1273 +/Filter /FlateDecode +>> +stream +xÚÕWÛnÛF}×Wè …„ë½/7( +´q]äbĉõ6ÉCQ‰”É• ¡?ß™Ý%…nƒ^ƒÂ°8ÜËìÌ™3³C–Pøc ·D)›èÜÃdR®'?Ì&g\$–X-’ÙÂ/œÍߥŒêi&¸d"½žMYúÞr™>]}¢HÏ[x²´œf,ÝŠ5 +U3ç “–`IÆ,'TsdNr £¹Ò/:–=I÷{ãÀÙ³µ4Éy tLŒÌÍRiõ %±JSòjûcïc¼¬œg%Mç}DP b +-€u‚HІûßSfFPaˆ€`"˘÷TQøga—`I«}š@Â0êámŒßÉ(%tÀ+‘¶MïºméÚŽŒ-Ì8èÚ?5˜:˜˜)JAtd,„Û0öç­Õ€ŠÆêŒõyöWLý#4ï0ãÚz±rìÂsÓ“ôv»—žùü󈇾p¡#TÙ—Ë!‡ªi,†qf`\>.ê/_¡ ßcš…Z€]¡ÈÝbͨšr÷0â™ejñ A®+à®=-Öè‡6H—¢ó¿ëÊUŒ‰9 +Bq«ËíªˆS ¿­š* Æ +¼ûw¢è‹¬«^5‡HÄ•^‚LB@ø× +Ò­Rîq0ö†Ç”¢Œh¡öUë¿4³Xo|9sÛášû.17ÿŒLXpBÈt_»eƒ /7õ]̵eöÉž9AGÑÌ£väéf…fVÿ©à Ó¹¿¾i Ã*õôÓ—ªi¦ …뤜bï¶Þl]„»mb(p|ë`"Œ÷M+ﻌã».ê†à+OZ1–û±s,‡=Xíû¡y¸Ͻâ¾ìê NÖCK9jÆ á3òÿÓŒ ý—ò6Ï–~§i[lkßSo`ÿªÚ·×xNœvørïËYèkÈÀ*Èh¢æéÎÈ….nëO:öµGºö&Äà¤ëÂRchZ¬úxF‡]ñpç {—bàÁ¥"BQ¬nÚÐÀ-á8¨€í"> endobj +2605 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 1269] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 2626 0 R >> +/Font << /R9 2627 0 R >> +>> +/Length 2628 0 R +/Filter /FlateDecode +>> +stream +xœ­RËN1 ¼ç+|Ævœ‡¯H qàÐvÿ ´<·¨ ñ÷¤íf»«ŠRµkgbÏxBÚ]·nín§ +/[·>PµÌ[¸k +iȘU¡YºcC&Œæ ¢G5¦uWÓׯçÅÏuóî“oΉÁ·d/¥WƒL8³"EØ,ÜìÚœ}dP‰èIâO½p•òQ2²\@0 Q#¤lÈ‚«ínÓ®vg²IBDÑ‹ì™P©TŒæ²³ÝÇ™biÍŠ(j@8ì¯ õ\{ü•$ŒdðYNހޝö| +}D +à¥Äã¹_^ƒñŒåÍ ªÅy®"Ñ«¡ðI¤_íù +œLÄlå!ÊÀÄϨ&Œ¡ô›š•´ý`Ó +t| ¹ç+p2ÁJxa`b€Œg÷ ¸”¶”endstream +endobj +2626 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +2627 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +2628 0 obj +326 +endobj +2611 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [313.096 627.027 330.724 637.875] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +2614 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 393.299 220.316 405.254] +/Subtype /Link +/A << /S /GoTo /D (classRhodey_a0) >> +>> endobj +2616 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 352.979 228.065 364.934] +/Subtype /Link +/A << /S /GoTo /D (classRhodey_a1) >> +>> endobj +2618 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 312.66 265.231 324.615] +/Subtype /Link +/A << /S /GoTo /D (classRhodey_a2) >> +>> endobj +2620 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 272.34 240.657 284.295] +/Subtype /Link +/A << /S /GoTo /D (classRhodey_a3) >> +>> endobj +2622 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 232.02 260.571 243.975] +/Subtype /Link +/A << /S /GoTo /D (classRhodey_a4) >> +>> endobj +2624 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [313.096 146.429 330.724 157.278] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +2625 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [310.021 128.805 327.649 139.653] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +2609 0 obj << +/D [2607 0 R /XYZ 160.667 686.127 null] +>> endobj +2610 0 obj << +/D [2607 0 R /XYZ 160.667 667.729 null] +>> endobj +218 0 obj << +/D [2607 0 R /XYZ 160.667 667.729 null] +>> endobj +2612 0 obj << +/D [2607 0 R /XYZ 160.667 413.459 null] +>> endobj +2613 0 obj << +/D [2607 0 R /XYZ 160.667 413.459 null] +>> endobj +2615 0 obj << +/D [2607 0 R /XYZ 160.667 373.139 null] +>> endobj +2617 0 obj << +/D [2607 0 R /XYZ 160.667 332.819 null] +>> endobj +2619 0 obj << +/D [2607 0 R /XYZ 160.667 292.5 null] +>> endobj +2621 0 obj << +/D [2607 0 R /XYZ 160.667 252.18 null] +>> endobj +2623 0 obj << +/D [2607 0 R /XYZ 160.667 193.354 null] +>> endobj +2606 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im47 2605 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2631 0 obj << +/Length 1060 +/Filter /FlateDecode +>> +stream +xÚ­VmoÛ6þ®_¡O…D _õR`:w)Ú®K–øËÐôƒl˶P[ô$¹Ž°?¿;í:È€[aÀ$ïŽ÷Ü%c?K‘s•qV”<—&žo£_¦ÑÕµÒqÉËLÇÓ¥·œ.>2ÃMž¤º0ìní`¢Ø¢Q ÙdSõ=MïêeÝÕí¼†¥T2c‘|š¾‹~F2 ¦‚벌SÍËÂ"æ_ÑÇO"^D"~¡®ˆ0\‚Õ62¹åJa½‰î£?N®dÆKÇ©Ê}¸Çøµ‰AŸ‡ÿj“¤’­\×à8¬·Ij!‹ƒdMOË ™f&}‰f:M¤6˜ÔÊòÂÚ8-y•Ÿ´9ESÜ€nöƒ7OUÉ3sn­¼ÝK™úñ +­®®‹¯…NKÍ¥U>[ä~Ïĵ‰*ØÐ%’9È@kÃ&kXTíª¦åï{Xn•³Y[YÝõ/È7èɹ´\ ¾-·¥õ¾„ÌŸJöÁy‡‹ý×! foÛ¬kLâ‘$7- 0œŸI¤ž‡’ïT*^Zù}!L:‡Ì’l‰!,†[âèk½ù~è 4`›ƒýÛ5–þ†|Þ器>íÅ8)¿§þÞëz7¬ŸÂü˜¬^½¾‡’ÝQ!¹þéX7/œ&pÇ«nUONTª"¨$ì*M×Pe›U}3Ç©š:Ìç€ÜhÚÕÂU‹éº™_ÃâMwÕP×i]?îÐvu0mZ¡ØK˜Ú‚ÍùÁ|XCÛ!àú±éƒtéº +ÄßRŸ‚€’I(ïÐs–³gy“q +Á¶®6#UDÇfÕïÆ—elpdðg]°ÚVëŠ'©Qн]’Áˆ~Ý>¸ñÁÂÄ-iÖäº1¤–c ‰¨>¿Þoø¯¿Ã&Ñÿ’aEÁí:JÖôt¼Šmõ¹Á„V$ÚºSv#¨%í:ø:DÉ®¢ºÂŸŸ˜:?áç> endobj +2633 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 530.119 161.121 540.967] +/Subtype /Link +/A << /S /GoTo /D (classADSR) >> +>> endobj +2634 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [237.669 503.971 255.298 515.926] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +2635 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 419.771 173.99 430.619] +/Subtype /Link +/A << /S /GoTo /D (Rhodey_8h-source) >> +>> endobj +2632 0 obj << +/D [2630 0 R /XYZ 106.869 686.127 null] +>> endobj +2629 0 obj << +/Font << /F23 479 0 R /F34 950 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2640 0 obj << +/Length 1720 +/Filter /FlateDecode +>> +stream +xÚÕXmÓFþž_a©_l÷öÍÞÝS©T¸^A“ôC |0‰s‘Ø!qhÿ|gvÖŽs¾£¼ª +qÞ7ÏÎ<3ÏÌ8"âðODÒ±,sQn3BG³õèþttr.Uä˜ËU4]øƒÓùóXp›¤Jj¡âÉ4ñc˜Y?X»U|VÃSij$ñN¬qPV‰’qS4KœÕ°\%/§F?MG"(‘r¦œRÅœÍP‡7£ç/y4ñèшöÞ˜3á\´i“1)l˜¯F“ѯ(¡Ëx¥Òxý;ƒd$4S:ï[¤h£Á*!¤ŽÇ èÞÀʙ׳‚a‰Ãw`•ACal5Y<.å–웕hÐɹíc† +°xÍdŠP)oËb0´ÀÐb±ŸÃÊ¡S:ÆÝjöÍI6ÿ—Îzd o3ºUº£k…a¹ÔþÞï–ÕlµŸí„8œÓ†q£ +ßåf´ Ûãæ °(߱ˡœL2Å[9? PH7LÈüH«‡Õe ì oŠ* 1Sâb[¬ÉêE½¥Á8‘6u`5:=½HBçÌ*ˆ$¡4Ë}(Eo N¸sÒø3ý±´öÕ°pòp –ŸÕRÑ!ªÒN°ÖL‹ü(¬sYÖ«gûW*ËEÊ“²¹Dïòx¾ êF"ƒ¨T.’N½à °¤ApIÀãpHR+4¼•q=~“ÖÙˆ,B^TU <ªçc螸›¤ }òûK &ó¬Óìi)½îFR†5;L.ç¿"ÿÑdëTÜËXÏË«e‰÷ø-§^!7ÁCª‹àóRHßr×ê9Æéu\!‚rî:å¾VûaXïÿv~þ“W庒Im[|µû'ÿÀëïvË<®‚·df˜’"’“ÚÇwˆJtQC‰ÈÂm>ŸCf8\†8tV.Šý +ÓfnÁ¥™Šëj×l÷³¦Þ²! S "TNO-4L3Îa¤ø€ÒŒ·1ÓUoC…s¦eô¥øÄ*J–¢Â˜ËÏQ÷CYã +u¬—sRn×Ûæ gØ„{ç1é< "r7—%i^ =澚Áò²Ú@ƒ¥zu,œ»Ðe’I¤LWÈþuëÍçÚ§ƒ}^ÂÁ<ƒÅº³Í'† |µ>”jâ«Y9ÌÔð:ÐS`NÉi®Æ’ ÑÛ<í5*=È oj_ƒCèÓœqaBkLغÍ~K@#¨?\…äÇŠ‹vq¶E´ëŽH½¸Di ýä=ü„»Þ¬‚Œ…á×ʯé1rªSÔM|[w5T褉_üå _=‚‡ +Ž=ñ°/àŠYc¾¼t|ºÚGÁÍ4ÆVžY«¢éiÈ>ÊNAŒ‘euᛡ2,yšnÚiCŸ+©6..VP´M~gv ­T¹Âý­„\ ¡ÆôÆ‘0/¬!„ŠjNƒm?Ú«pý¥ïÛ}KÏ¡0Zo Ä} mËÜ }t^ýº +¡_•o{Ù8D}ÒuN=) âÓ:Lë=çES|L“ŸMÁ³Ð AµeÒdß4²FÁ§W.œ}Á¹Xcá«G† ´ù ¬Ç£¡}:èV©ÿÐ.è³ò™¥á +ѯ¥¥O ЂP ‡î«Ýò¢ûŽ¥¶ß#ãœ^ÆØ¿LjúémœUFæ¨ø¶œU2 EtvI³bV—UøŒåÁNBYlU /ÆN¼ý̽ò— ¾$¯©éy >Έú>kìheã¹^êWð:r~§$~û–Éþâ95Ã.gFÆÓiM?§ ‡[¶¶ÎhyŸ`ºñCßž´ì÷,y ‡ë·?Üœ{Á€TÏ\K›r‚pðù•‹O«‘ÔÜ^uÒ\²#òBÿŸ2¶ç(iK™Ué£ö( ´ð3ª¿žv7Ųò£:¥àjõ²j|„bU·QÒþõÞèm½ÆÈ^¯`lØÒ@_À1x¥%¿ôW<ŤËûÉôs‹†O'‡âà«)¶xZeñä}•À +§Ço‰µY¡ÿϱÃ^í™ûxÙЖÿE²¢ñƒ;8¹C“W(è=Ÿ%*‚#¶aeÌÂ+˸~MÓÂK›ÓägÿÛÄÖ¿¡@†à&fAÏYâ¯PnM½ëÙ/gYŒ\ ±"ä´ì`6´Ž×ø“i.ò–[Y8׃Ú íe)G‰PÆ»²¿$ç8­ÿ$–&endstream +endobj +2639 0 obj << +/Type /Page +/Contents 2640 0 R +/Resources 2638 0 R +/MediaBox [0 0 612 792] +/Parent 2568 0 R +/Annots [ 2644 0 R 2646 0 R 2647 0 R 2648 0 R 2650 0 R 2651 0 R 2652 0 R 2654 0 R ] +>> endobj +2637 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 571] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 2655 0 R >> +/Font << /R9 2656 0 R >> +>> +/Length 2657 0 R +/Filter /FlateDecode +>> +stream +xœ•N91 ìý +—@a’8q²-‚ÀæÇJœ‚çãe@¢A.,ÏiCM=í^Vp‚ñÂãæ'´/ª[Ë +'YÉB@)a^Cã²è=Y+ÅRfÌ ×éíxX=†y³Œso!%r¬‚;ÔÆ`Œº£x’ˆç”•ÚXDŽު¿WiyÝ÷}98•ðžæaÑ?\øàªætâ#Tö¾Z¦KìÉP^Ød #¯ +ÇI>ï„õæðV“Nendstream +endobj +2655 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +2656 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +2657 0 obj +192 +endobj +2644 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 452.509 229.033 464.464] +/Subtype /Link +/A << /S /GoTo /D (classRtDuplex_a0) >> +>> endobj +2646 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 389.283 236.782 401.238] +/Subtype /Link +/A << /S /GoTo /D (classRtDuplex_a1) >> +>> endobj +2647 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 349.967 229.116 361.922] +/Subtype /Link +/A << /S /GoTo /D (classRtDuplex_a2) >> +>> endobj +2648 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 310.651 226.875 322.607] +/Subtype /Link +/A << /S /GoTo /D (classRtDuplex_a3) >> +>> endobj +2650 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 271.336 277.231 283.291] +/Subtype /Link +/A << /S /GoTo /D (classRtDuplex_a4) >> +>> endobj +2651 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 232.02 260.571 243.975] +/Subtype /Link +/A << /S /GoTo /D (classRtDuplex_a5) >> +>> endobj +2652 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [247.509 181.746 265.552 193.701] +/Subtype /Link +/A << /S /GoTo /D (classRtDuplex_a6) >> +>> endobj +2654 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [273.578 131.471 318.41 143.426] +/Subtype /Link +/A << /S /GoTo /D (classRtDuplex_a7) >> +>> endobj +2641 0 obj << +/D [2639 0 R /XYZ 160.667 686.127 null] +>> endobj +2642 0 obj << +/D [2639 0 R /XYZ 160.667 667.729 null] +>> endobj +222 0 obj << +/D [2639 0 R /XYZ 160.667 667.729 null] +>> endobj +2643 0 obj << +/D [2639 0 R /XYZ 160.667 472.167 null] +>> endobj +2645 0 obj << +/D [2639 0 R /XYZ 160.667 408.941 null] +>> endobj +2649 0 obj << +/D [2639 0 R /XYZ 160.667 290.994 null] +>> endobj +2653 0 obj << +/D [2639 0 R /XYZ 160.667 151.129 null] +>> endobj +2638 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F20 463 0 R /F19 460 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im48 2637 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2665 0 obj << +/Length 2514 +/Filter /FlateDecode +>> +stream +xÚµYYoãF~ׯÐÓ‚D¬6ûâa ;&ÉÀÛ»Án64E[„%ÒKRöxöϧŽnŠ´äL€ÁÀ€ÙdWWWU×ñUKÎ#ø“s%BÅéüûµ *2¶0ü¢Œ +TÉJˆ3)³ ÑÒ}É.~¹ Uœ†`îq¬€6"ÒÙ E¤÷´@‘jGÑWr{¸@vm¾“Ȥ…6Ú×P*)b|½ŠÙW©h´Úþ•ŠöŽà®ŸË7ämÿ +ÁñÊ¢oÚ#xllköHT÷8,—l€ +Æ5 +Ñ#óùBf ·ß‘RdÖîqî¾—`3É’h9OA”ØY[&ÖYaܺËmÿ¸íÃ…‡ïrà±Ápa5³ÝÊV¢#»½`#Ø7ëöwёȒl§±ÕA³Ùg©´ˆ"5b‰‰Ñ"À»i÷ùZ-L’¸y½d¡‰ÙoÛšßk2Á3¿Tõ  2>[ Ø—l!)lÃT±ÙžÒ_ÔÀhp{ÁóJÍýiÁi* ˜sa¬ˆeâòpƒÔ%!a©LpN›á.yµvþ œó)mõˆ“UCþñÚï¢ùB¡’”Ø_ßü ‹µZ¯D¾îѱØex.ß.™¼9·{„Ûþ¸ÙÂ<ÿ3mëÖyב‚¸›LD¬Ø«nVÙ7 +$Áa «¶A?~ª–“cHƒœ]î‡"@Ê3%p‚G„¾_¶wh‰ÂÉ‹ä}ÃÏ+"8Eé–•ûvLJCã‘Ψ@µ)Y¢œW %VõbÐf[¬öÄè¼Gc$ ™ªãa¾îÐ~I ú.@¬¦ãˆŠ[,D8Ó7Ž–òݪòâ=ákÉsh¡-šl]~âU 3,Ûœ®©ùó¶«ê{vÄå@ä6ã$AH¯ßžÞGMÑ„¶äoO—t„tT%= [™8 +nÉ1˜¢_á™uŽÜ;¿’HCbC¶mIS1°X€heßMËTÞåPEHN£mº—ƒÇS´MùL'ìlsÈ+Y¹óUÌvb=>’8MÛw<³AÃá Ê¢ÀT3¯k\k¦Ã“Êûœ_ªÚ=‡œí”Ã-sd‡¼d2öÒMŽ•DŠŠ–; Ø‹AŸªÀÔÞ£(~»À¾ûð_*amVŽ´Hâ/7±[8и™¿ì*/~!.QÉÓ0³¾kºP:&Î&þ©Ég²ò*ŒeyOûà¦k¯Àû²ÿ §·+.nå.Ô¹ƒ'Vo_!$5Žï²|‚臘> ¸ªŠ“©Ñ‘/Èo°_(ð¥ÄLûÛ-@7ê¶¢zÁŽÓûZgBÛl·)÷ìYÌÖ´ÝR§Ð'Z4²Èä·>ìwÿ¼.~Ñû_‰#³¿Ót~×ïÿƒÛ±UÞ<Ñeü×ï¶TÓ¥.ÛpèÌÆÜM"T¦¦W»VqÔ<@XèÐÔp¾àè¼¼Ë9ÙZ€fÀv}KUÚiî6®%p~a>l=¼6éÔA¥wБ8ÐRJëéò–ÀÍÆ!KBDృ&å°ƒ¬øÉÓ=ã|¤ð ƒowpzIÐ`¨à@UíTC䳂ÔJ +\‹I)^¼3 µè":Š]dÄ$öShc€<[\aJŸlØøò («Z#°bÚº\——eúÆ@ÈpG´÷ÚMõhŽÊ}{¡¶m»—Î×wÚwÃŒšögì½ÚAó ÷È…P 5ã*vgRöÞŠ[ohA–ŽñQÔäyaƒÇ|„„o`}Š” .k&ØS¢ã]ž}“Ûч ê¾å~Ï#PüNËÐ!KÞ.»cÖw¿Ð| Ç×ñû=£¥|¤åóš_>—mãºõÐÐu®¥+††Iªš±÷ºEÓR‡Á7“°è¹¢=Üv«7 %¯:«8ïý:J§aÌ òÖÍ”X€*°‘\ò7¿&,èÒjY¶hâêDqzw“€4§ß þ~ƒ{9‡0kÚÿÐQŒ³MÊ §Ënô¡«>wàæwøL ´Ñ¨ QÌ÷­2’"†„ömo ¡„¼Q?”PæÛßZ"–}Ö2Bf©:6Ó²DO«GaG³5?t`r[ Χ5/BnýêÓ¶>µOS|0ìÑ|7iŒÈñMšÓÕpóóÌ9Ö© ºÀ9=KÏ\ܺ°ûo].ˆ í“‹fp2$*ŒÊëÕäàïsí€ù—ABÐL#’á‹”‹03àîÅèö0xC4€¿½IG0üÕåÜ!$žM‘¸ø +ÐTþèG +ÿ{Cð““®ÏÛž'±œŒ—¬êÓM¯IÈÖs +hw ènľt h‚®ß]­mÄ~Ð Îá…güu¿˜¸ß^ÜQèÉÌcØÄŒ½ŸË2dÇë8 L’œÊùŠ +ïñ!†ÿCŽù¹ê´K+ϾûŽ·Èà…'?†~ \µîË•à'ö›0‡ý&ß§yÜ/?’y\ÓÉl$$EáD,òÊ .çËë# +%•EÐáhP[¹+⹑Ýi¼€.(²ø»T,cÿc‘ut#Ë@·dˆšÉÀ¼¸—ý¿Šð)xÒŒ9endstream +endobj +2664 0 obj << +/Type /Page +/Contents 2665 0 R +/Resources 2663 0 R +/MediaBox [0 0 612 792] +/Parent 2679 0 R +/Annots [ 2667 0 R 2669 0 R 2670 0 R 2671 0 R 2672 0 R 2673 0 R 2676 0 R ] +>> endobj +2667 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [199.491 640.816 244.821 652.772] +/Subtype /Link +/A << /S /GoTo /D (classRtDuplex_a8) >> +>> endobj +2669 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [435.332 502.972 451.577 514.927] +/Subtype /Link +/A << /S /GoTo /D (classRtWvIn) >> +>> endobj +2670 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [105.873 491.017 132.495 502.972] +/Subtype /Link +/A << /S /GoTo /D (classRtWvIn) >> +>> endobj +2671 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [155.22 491.017 200.8 502.972] +/Subtype /Link +/A << /S /GoTo /D (classRtWvOut) >> +>> endobj +2672 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [186.984 449.482 205.027 461.438] +/Subtype /Link +/A << /S /GoTo /D (classRtDuplex_a5) >> +>> endobj +2673 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.356 425.572 230.686 437.527] +/Subtype /Link +/A << /S /GoTo /D (classRtDuplex_a8) >> +>> endobj +2676 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [378.981 213.957 419.108 222.868] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +2666 0 obj << +/D [2664 0 R /XYZ 106.869 686.127 null] +>> endobj +2668 0 obj << +/D [2664 0 R /XYZ 106.869 579.934 null] +>> endobj +2674 0 obj << +/D [2664 0 R /XYZ 106.869 382.501 null] +>> endobj +2658 0 obj << +/D [2664 0 R /XYZ 106.869 358.167 null] +>> endobj +2675 0 obj << +/D [2664 0 R /XYZ 106.869 358.167 null] +>> endobj +2677 0 obj << +/D [2664 0 R /XYZ 106.869 186.02 null] +>> endobj +2659 0 obj << +/D [2664 0 R /XYZ 106.869 161.686 null] +>> endobj +2678 0 obj << +/D [2664 0 R /XYZ 106.869 161.686 null] +>> endobj +2663 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F31 829 0 R /F19 460 0 R /F22 474 0 R /F35 1011 0 R /F32 881 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2685 0 obj << +/Length 1716 +/Filter /FlateDecode +>> +stream +xÚÝXYoÛF~ׯÐã +‰6{òЇ4‰‹& ÒÆB€"É-Ñ6a‰tIÊŽÛ?ß9–%Ê‚mZ÷˜óÛÙÕSzjRé}:’TÆÚM—›É‹É“c§©L#;]œábõAh­fskœ¶ât1Óâ5ô'ž¯³¦Á¦/*øj±œÍµØÅy9³F´Y[`¯‚áröiñjòr1ÑAˆ¹’6M¦s+ÓÄ£ L>|RÓÕDM_MxîÚJê4n&.öÒè$ôדÓÉo=+mµô*šÎMLòw +%c}—ùlît"š¶Î³ ¶SQ€| 7›6«[èæ(÷ +Çb‘mÛjª,³õúnÚ?†q ËÎy¾ìè—ô‹†Ñ"«a¨-S'âG/;Ò2°faZ”`93±¸ú¨¼‚Íh¹º£‚D\ u¶ÉÑ  Õ\k™zOÚmˆw‹»€W€4°ÖŠ¢á/9 ´Ø)¨…D>‡ÎŸ£E#fê¤K$R[iࣽ7èݪ6Â(xGþ~±½^“û??}Ú´Õ5Ï¡J8Ê«`K^HZÒÞ{~š'D'n}Š® 6 |‹®ÃF¶]¬¡µŽœW^Ã϶}Ra¶×ô˳ìfÙÛ*–‘qÄûç-¤Ä&C³Þqç >1Ú;ù•ÚÎÎJl›°ˆŒö&ÞdŒ}˜8mXE[ßàOU„© …_÷*Œ "ÈëJ{bdB0=AÒrÕI‰‚!MG€ ]êêl~$VÖ9I"c¿w$Ì–;·Esl_…/í´¹&3U5£€¤ ÉàñW!EXMlëNàà—ã±Æž ±÷æ÷C$‰R™Ä”3‰Œû2–Xél|Ip0æAH<ùx‹±ül–z±&ŠúݲËÒr¦¯<1–UÙ„(…‘7Щ¥c€FmYšoQ(þZ…È)Öï(–Iây“¡ÿµ`9Ð:iÒ(ÐÍq8O" ì8Ó"|»—¹&NM‹¦(/^á(çàãz†(™€q¤˜sYÙ§ðºá¹¢ Ä{`7Øáã3ãÌ ´åŠuÞ¢€uàÑ^îVí2¹ÏÅìâDg˺j‰W•9#U/êmÈH؃2”3äÕ94\Qæ±ÊÚlçxÃg%/9ENW/kB„ºKp´¶zàC–¤XÍ8RîãCúyŒ:> n˾¨f„É¿­ ¡/ö´Bä´n·¿ær÷ÂÀ\'JÆ ” ” +Êþã8@J@=µK#M´KeÇz¦R'6P„h:C1¸Ã‡3†àc¬½örÔü[h1R;©=”¡Ú7ù̧\š´Pc@QR9ˆS„ÏMd¤‹Ý^fm Q©¶¸(óP—\ˆŽ%ˆ¼t‘ˆñ‹ÛkqZüyÙ¼’S›®6Ò ›MR‘g¡¨×§5´‹rlM­œL;AËÑž0™tÆaüé- ,‘5¡#ðÞæd™¯ž½îÒŸÊM$ë—–+Cü«©–çñæÕv+vV ›1Á5|ŒËš!˜Ù"¸õ¾4ùb_œ©Ù™‡Æ2ÎÎZ2È›X¨ì^mø?ÃLÿfF€™à¥yK û=€‡uî ˜i"}€™÷–\'³4âë܃çÑj  ç£ï?™`ˆ^sã!ñ÷àê€QPôý,Á*1õ(žF"£‡Sª?÷ SoÅã÷¢g ðÛŸlýÎÍð†¤êÏ‚˜«>žÆhÀ×tïxP2\¢˜¡AAH ì@03l°&Š1;:ÈË͘›±R«äÛûY‰ûAÆÃàÒ°ˆkÇ}ìD5†gùw‰Ã2´éiÆÐŽS("_ø¼ôq¼'ô¤§Ç™#0Ët$qDéÿ$F”ËË|Ç#ðßn›ŒIéͪ +œDi/Ã+®]v÷ŸlXÊßâÉš’‹¼„S±ÍW;V5„Û:´ÇzÍF):uàïÂG‹§GŠŒ1‹0 }êPèxäIntP [tåeþY^Ž›ÂQ¨(ÝœýÖW9K7Á.øzPtÓH¦P¼žå¬§w9ȲøâÀJ‹™V½øxü^-OÝs´Ÿ?ÂÎ#îœ!£;nÿ:³Qˆ­0òN†%ÈX_q7#n+îüÄ>´Â­b!ƒœË Ùß _ ÈR.MMª¤÷`s°KLº-*úÚs#½røé¨óžtóh€YâeSÆC°2îåÿ2ŠžÔLçÿ&:&`endstream +endobj +2684 0 obj << +/Type /Page +/Contents 2685 0 R +/Resources 2683 0 R +/MediaBox [0 0 612 792] +/Parent 2679 0 R +/Annots [ 2687 0 R 2690 0 R 2692 0 R 2694 0 R 2695 0 R ] +>> endobj +2687 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [419.036 654.279 437.079 666.234] +/Subtype /Link +/A << /S /GoTo /D (classRtDuplex_a5) >> +>> endobj +2690 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [175.999 471.917 216.126 483.873] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +2692 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [175.999 374.759 216.126 386.714] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +2694 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [175.999 277.601 216.126 289.556] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +2695 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 234.935 237.336 245.784] +/Subtype /Link +/A << /S /GoTo /D (RtDuplex_8h-source) >> +>> endobj +2686 0 obj << +/D [2684 0 R /XYZ 160.667 686.127 null] +>> endobj +2660 0 obj << +/D [2684 0 R /XYZ 239.04 645.811 null] +>> endobj +2688 0 obj << +/D [2684 0 R /XYZ 160.667 631.87 null] +>> endobj +2661 0 obj << +/D [2684 0 R /XYZ 403.12 560.608 null] +>> endobj +2689 0 obj << +/D [2684 0 R /XYZ 160.667 544.73 null] +>> endobj +2662 0 obj << +/D [2684 0 R /XYZ 459.437 475.404 null] +>> endobj +2691 0 obj << +/D [2684 0 R /XYZ 160.667 458.973 null] +>> endobj +2680 0 obj << +/D [2684 0 R /XYZ 459.437 378.246 null] +>> endobj +2693 0 obj << +/D [2684 0 R /XYZ 160.667 361.815 null] +>> endobj +2683 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F35 1011 0 R /F14 825 0 R /F32 881 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2700 0 obj << +/Length 1234 +/Filter /FlateDecode +>> +stream +xÚÍWmoÛ6þî_!`_d´bHŠÔK± XeH»`™£/CÛŠÄØBm)‘ä¸Áþü_â [·¤ X'’:ÞóÜÃ#)<?á 3%^”¤,Ê+–£·ÙèèD†^ÊÒ(ô²+™•|ÅT:ÂDùÓq(ýþ¬*+û>Yä]‡¦„®@øæÊ´¦. 4 ¥¹/„ÊÞ~ÎFÂMp¦©„,M4N{3úð‰{åˆ{ïFØ—xk°90j9R±fR$î}1ºý¾qŽ@Æì&zé ÅBí‡?>"Bá÷Ðr†W`˜Xû°9ü$h˜d!Ž£“d—œ]ó&¹ÈÞÃGaè·à€¾Ê=z_/¶ïìôøÔZ¶"yÌú•éžc³H*rü]U‹Uéæb;NŌǡùý¡Ÿ˜Å*uÝSJ›?àE°D ^~<@¤‹"½Òi=@"ÚªÏkx Ê/±9ŸµùÒ½jZkLÇ2awY½Ç›ûúZ2s"„LFsëÝ@þy§1 ÚµI@[APÃÑé€7 o«–`ãY¡öö4#Xªõ®fÎW— ²°J83ý¼“ûeç(T[Ž„É_)™}ÿ‘‹ø€K4äKDELYn>rÍ«šÚmC9°|[møýÃ0a]‡ÂKÀ%‰d/b KcIS›«|µ@_Q _ké7u×·«¢§l@ãºêçÖj®I¬M/°!Ù›>5v\ÞŽuèϰc…â6u6;$%QÁØÓ-+æ¬ð‹…xœ ‡ÑGLIíÀÛõˆ• —² »4ð¯‰ô±üÝbx DG‘]ÃT-æ.…M‡”tùÌ- Û ÇjC¶E ©m˜X”Ϫvóô6G |¹rvï–$ÚŪ¥4Qþj'€¥é:,n³a™BÛm¾XÑ ¤ê©˜Ù“p=Èè RƒyþÇÒžX´ Ëâ³Å|…d´ÖF˜5NTZ˜×HFŽ¥ª3Ãê¨ÍÚ¾»ÂŒ4 “zl 0@Qw?wÔÝÐ0+óÚ¾·´HúU[WõÌ6U½S-‘»ëMJž…é™é3|…yx˜{Kæß nº‰ÐYf­àÌPY\1h-ƒ:‰Én ðÛ±0™ÓvT›Å‹£€Æ¡tóšôI!â:¤ó?¬ªžŠš³?îï®J‰%/Z³$‰þþü%a«L<}aOb7\ÚG“Ããɯ¿an~ÃQ1³+ô–„€õ€(ÍÖT“¥ü7¬Ã ä{á©2tI±õnÕ÷ëæ^¡|¾Ì–O8K³6Á—TjkvJõ×,£½$…Ï™¤¹Ûì¶§”o·žö²&ÿ—¬›EŸgÕòåå©4ÄïvÛ¾ZnÏ(nEíî­ÝÐqò¦.íÍhk¥á" +) S¨Ðñ¼;Ú[¨;ùoî +Ž’)TÿÖ3„­Bí_ÜÕcx ÄeÕa3fBðˆê—ÆÝûª·]ˆ ¿œ¼zeKtpg;ÏÇaää·u-SfŸª:~óÙ¾æÃY_~ɇkׯ \å}æB,rœá]7v‹y4z2åLk¸æ!1Á*Ü…Qo¸9h¼¡GÛkŒvãv˜pÏ!_H!zq.ý§äøärHÝ_¬1×Åendstream +endobj +2699 0 obj << +/Type /Page +/Contents 2700 0 R +/Resources 2698 0 R +/MediaBox [0 0 612 792] +/Parent 2679 0 R +/Annots [ 2704 0 R 2706 0 R 2708 0 R 2709 0 R 2711 0 R 2713 0 R 2715 0 R 2717 0 R 2719 0 R ] +>> endobj +2697 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 727] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 2720 0 R >> +/Font << /R9 2721 0 R >> +>> +/Length 2722 0 R +/Filter /FlateDecode +>> +stream +xœ•޽NA „{?…K 0þÝÝk‘()’Ü‚ŽpE ¯/—‹‰maí|ã3 òôÎs;Â׎ïßp@9¡elG|êv(椭a¿ƒyM0‚º0ÇÚÈÌp·>¾ ¯Ã}ÿÏ=®Ò:€ˆPÇ`Z fFUk$Ž_o°ù_§&7 Íîb§ÊÍqéct¯%—þè™Ï¼CãŠó×,*©àg:o„3_r/|’—R©tÖF%Ò¢f:e_)·»XÁ/×°OUendstream +endobj +2720 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +2721 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +2722 0 obj +198 +endobj +2704 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 453.522 164.304 465.477] +/Subtype /Link +/A << /S /GoTo /D (classRtMidi_a0) >> +>> endobj +2706 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 414.61 172.053 426.565] +/Subtype /Link +/A << /S /GoTo /D (classRtMidi_a1) >> +>> endobj +2708 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 375.698 211.903 387.653] +/Subtype /Link +/A << /S /GoTo /D (classRtMidi_a2) >> +>> endobj +2709 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [146.399 336.786 203.297 348.742] +/Subtype /Link +/A << /S /GoTo /D (classRtMidi_a3) >> +>> endobj +2711 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [146.399 297.875 184.091 309.83] +/Subtype /Link +/A << /S /GoTo /D (classRtMidi_a4) >> +>> endobj +2713 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [146.399 258.963 197.651 270.918] +/Subtype /Link +/A << /S /GoTo /D (classRtMidi_a5) >> +>> endobj +2715 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 220.051 243.717 232.006] +/Subtype /Link +/A << /S /GoTo /D (classRtMidi_a6) >> +>> endobj +2717 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 181.14 250.11 193.095] +/Subtype /Link +/A << /S /GoTo /D (classRtMidi_a7) >> +>> endobj +2719 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 142.228 250.359 154.183] +/Subtype /Link +/A << /S /GoTo /D (classRtMidi_a8) >> +>> endobj +2701 0 obj << +/D [2699 0 R /XYZ 106.869 686.127 null] +>> endobj +1992 0 obj << +/D [2699 0 R /XYZ 106.869 667.729 null] +>> endobj +226 0 obj << +/D [2699 0 R /XYZ 106.869 667.729 null] +>> endobj +2702 0 obj << +/D [2699 0 R /XYZ 106.869 472.977 null] +>> endobj +2703 0 obj << +/D [2699 0 R /XYZ 106.869 472.977 null] +>> endobj +2705 0 obj << +/D [2699 0 R /XYZ 106.869 434.066 null] +>> endobj +2707 0 obj << +/D [2699 0 R /XYZ 106.869 395.154 null] +>> endobj +2710 0 obj << +/D [2699 0 R /XYZ 106.869 317.331 null] +>> endobj +2712 0 obj << +/D [2699 0 R /XYZ 106.869 278.419 null] +>> endobj +2714 0 obj << +/D [2699 0 R /XYZ 106.869 239.507 null] +>> endobj +2716 0 obj << +/D [2699 0 R /XYZ 106.869 200.595 null] +>> endobj +2718 0 obj << +/D [2699 0 R /XYZ 106.869 161.684 null] +>> endobj +2698 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im49 2697 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2726 0 obj << +/Length 1693 +/Filter /FlateDecode +>> +stream +xÚ¥WKsÛ6¾ëWèHN,„ ŠÌ-±ëŒ“¸umÍd:IDIl)Ò¡(;jÿ|÷жÜÉ¡ã Åb÷ÛÝK=ŽàOM®¬ÍÇi–«©NÆ‹íèÝlôúÒÄã\åi<ž­Hp¶ühmÂIlw³Pa–%Áyåv;ÆÁE¿:X„ìAb‹ƒ¢ct®+qÖÀr~›}ý2i1b©8ÏÆ“Xå™E¾¾|‹ÆËQ4þ0â½GGJçùx;J¦VɼÝ~ïUéX+¥ã‰™’ý½Cf¬µÊ­z”(°&ÉáŸÒ`œ6IpQ •,¹²‚ÿÅ\šÚà‚\Ù-Úò7ËÞ×—Ùª‰IT€¢ú»BÇA[¸ +Ü÷€ðâõÕÅ/DQ¡BT¢§*5 )yš ì¦A·)pÛfKv֡Ƀî 3Ú”;–kæáÄÚàÏbÁÎðbþx²q5L–U±c…l qÑ;êmpºÞ°ÀQ´Ùw$+,”–ˆZïˆ`Ž,àJrwY'Á†ÁÀ6P’àqSˆÔ®a°šZðZ²7åÒÛñ:€ràQ]Ð:F 2®ìxõkd#W/yòØbºáù² ýz¶xF€Æfh' ÷ès A`]à»ãÝkXáèô¦{:˜‚å¢iŠK¡Œkw½aÆ£-† ÖÝz¸_rôž¹Á¡SðçÁ¯‘ŽpNp}VbÅ‘ vÛÞãÆÌ^…Xª<߱Ȣ©1ð_ÑvT—ŠH:þYUç&]¯û!´ià*´  ‹´!y×¹áUà`×´ ÿÔ ‡éj üÇs1™Jõt<É­ÒÓøç4b€mòIw€^zòÈNÉðòÓoÄÛpÆFa$ŒÕÁ×nyþHi‹i·á…»èü¯W¸®d KsÇy)ÇŠÌ ˜<»’a狸öwƒt@y×ÊöbÕ®®:ŽÀË*ì4ËuMvˉ +Ѥ°OÔÕÔ®â×®÷[ÑŽ+âyª…ŸRÊ•]×bÄžN›V¶œè[È=×ó-©ä´Â!­K½-<–«ƒÃ2¾¬pÌ7ÉÕ®E¾POr)%ÿ>÷üSóCVcg–üC®ö Kn¢¥g–k4À„ë¨Ò‹*4,‹•CU'sÓCé!)xÇ«ô|Rc,&6σ«•Xó3Þ\ykÉÜÓÊY9•;oY¹9–~ɘo•ò‹|Ö +C Y¹òw˜×UƒW<ò +s_[6òÌqûàiþøJ³¥})s…·£¸’ +žúeôÅõéF;!§ ™‰;ž%Àa!’>ÖÕ_²±â¦ÃöÀÓsîq0–Hâûƒåýþ +ß™3^¼A`ܾâÙ'xåBÎÕþÌ?•NôöŸ=ë–Û†}zïÐÐ¥I·=>‡§Š9àþ=‚ñ;_hUÅ 7ÔÔC5Ÿ©WXréjTö¤ÜŽé0–4îGpåV¸Çç4Âï™UìY¯ZN9sçóÐõoAZ òxÞòhÂx™(2Š{¸gí!lC[<}Þ$i¯…§!ŸçÔñ-v‰ipæõBSZGéŠ÷Û#áÄÒc>ï%ŸöÝÃf2QI®ð°á^ÕFA)º ¢ˆzñq¤­eùÞÔÅî +Ôw(Šñ{À£ ‹Räþ«ÍÈ‚ó Ð/$¶Äe%¤Î1’Û*rß—I‰[^ÿ„QÈÖÒá•õi©ß{ÐöÏÂÙ.µ5ÕîÚ7sÂ?§?6§)yµzB„½™OÞ×!©‘Ë{ÊdzSSÑ Vx¶|ÛãëÖûẢõZ¸76ÁßÌjÍË´6 _®È©Áw€;2ç08ð] *œí{ +æ?é‰Þœ·^¡Öqƒ'ªÚfëaÕ7ƒî¨„ÃKh2y* õ8¥àòÏ)mUœÄXVÙœãG¦'¹Çn¶néU»¦Ö¿T›“ÏGÆJk$6…týߟ±2yÚÓlÿ ™ŒS•O“aH1IbÜ -v@„+F]øNŽRê-þ\>âw nIõÒøüN^ñdŽŠ<¾ ãÙB +·ÒB#K²$N1ˆ&qòž;Ÿwù7`Ã4Pbç¡úÔÛЙ‚Ÿ“G@y€8àÂÄ·J²G·'>®ü^OuêcgEn6*!]qÎì(ã]öà\"1Ã¥èôóendstream +endobj +2725 0 obj << +/Type /Page +/Contents 2726 0 R +/Resources 2724 0 R +/MediaBox [0 0 612 792] +/Parent 2679 0 R +/Annots [ 2729 0 R 2732 0 R ] +>> endobj +2729 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [298.727 559.66 328.67 570.508] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +2732 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 318.385 226.404 327.296] +/Subtype /Link +/A << /S /GoTo /D (RtMidi_8h-source) >> +>> endobj +2727 0 obj << +/D [2725 0 R /XYZ 160.667 686.127 null] +>> endobj +2728 0 obj << +/D [2725 0 R /XYZ 160.667 667.729 null] +>> endobj +2730 0 obj << +/D [2725 0 R /XYZ 160.667 446.021 null] +>> endobj +2723 0 obj << +/D [2725 0 R /XYZ 160.667 421.908 null] +>> endobj +2731 0 obj << +/D [2725 0 R /XYZ 160.667 421.908 null] +>> endobj +2724 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2737 0 obj << +/Length 1468 +/Filter /FlateDecode +>> +stream +xÚÕXmoÛ6þî_!`_$´bø*RÁ2`Ië!í‚vއakûA±•Dˆ-¥–œ¡ÛŸßII¶å6k³‚X_ŽwÏ=wGŠþXÀ¨&<1AbR¢™ fËÑñtt0æ"HIšˆ`zigNçïBIbad8‰›ßîNK|áÉ"«kלä—QÌÂ|ÁO9Ë¡—¦2 чé«ÑËéˆù½cJDš± ©Q¸óÇÑ»4˜hðj„c&øÚ”0˜µI­gÆ¿/Fç£_:Q4ˆ¹¶úvð€I"d²mh…F0Æ­,l Ç¢¯Îx[ÀŽØÚŒÍ&,¸§L­äóékX#DhíÆ5Ù¢) ½´ëÝX¶žCOQá› q´¼…Ÿuã†g8Õ)€­š¸-yºµ'Ó$áÊnú]QÎë¹W±~žÔ„já­þ~(G Š»á‰u$¹Þ#…#[)? ˆÓ„$‰ò*I;ë´¼n@$Š&+á1ë@¡… »ZeKgõeµrIÄ ’ +ÆOËÃÃ]¶0E‰vK8Q|2P#´²Ñ´\ê¹a;N—Š/*`MÐ'îÄJAŒá[üa$Uj“?o×èŸbæøq–7×èLÎkžìáa +è‚9'B0»þ=ez#6xë å#Õ°@Ñ¢Œx"G¨ ËÄ7+ËåE}ÄžÃãáÙïÌIh¯Â½!Æ!Ó½æG:xÌ0=Œ~ƒÚÿA‚˜:m-³%’|aµdM~t¯ÍÍáa #‹»ÐLøCÀð “QÜz¤# +&ô‘2o­¿óÞ€×#úÜ öxÛ.0¾vÑQr¥™ Íúh‚=Óvœ˜Dt:<;óeìŽ_‚N“]-$'\š–Ò¶ÿùé¸ý‚Öå±ÃoUqô‘ã/°É€›]cf $Ž#)uT‘_fëÊH4Ä¿âaUÖÍj=kªKÌ%a"'„a¢ûh‰¥Ðt7u4cû´n5Ô6!’«-U±zñµÓuž‹š_ +ê;Ô­*æN³ºÉVM¯¤„ýçûõE™–[ +Ÿ{ msi51a†DŸÛÚÝEy»Æ(sc`P¤D xXÏÂDz¬ºýFüYv}o•ÆŠÙ™„å#¶+™h¹B»œqXpï5Îü;ã†éˆ®ˆ‚¸ƒª¡ ÀòGŽÊÝŒ +ù ¨Ú¼i]»´ƒÙ$0ÖöjBÀè Ä'Žj³^9|Õþ;Ÿ6aZvÕvÎ,àÕFÌt,Dõ\Wµn¶e]s»ð2.W»òÿŠŒ{üå0†s)Ñ åÉÕ@i‚®›¡«ÀðÏäÒ ùhŸô±;o±íc{ÓWÔ]?¡›¼Ÿª2¿×n®ºô 1k²'ò‘yR LxZjÅï)[ ´=½;´Îp¢Ó‡Wïôafi~ú‚UÀ5Ã6SznTPû3Áº¬‹«îÔé3¾ËÉýYÁ-Æ X?ñœWüe_?wpÈ¡¯¡û±Ò­è]æÃ画îèÙÞ><Ó!—-ó6":’ãY[==ˆi¯+‡34MÌ6JˆÐÀ*ˆ •¶,Ú8šcå_9.¥Û´rªãnEIú¿ $,c”wBIÜ—+û;rUºÒƒ¬’JK8á™}œÚ­sÞÝ·8Zeƒ—}[Îì&mi‹> endobj +2734 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 1016] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 2751 0 R >> +/Font << /R9 2752 0 R >> +>> +/Length 2753 0 R +/Filter /FlateDecode +>> +stream +xœ­‘=OÃ@ †÷ûÁØw¶ï²"10¶Ä€˜ +­øR¡‚¿›äÚ± ¡ —{_Ûí#d Ã7žë.ìÂåR`ûvÀ½UuW­› pŒHI Ý„!A +%…ÌÈÅÜêÂÙrûyóvÞ>‡ëú˜­Qø +QQ-z®4R°ˆ”6ðþVC33’)HÎØ˜õèxD YÆÜüÐ +%(E0‹öÀÕþå'¯pòŸßywU0¦ ÷^ò!(a‘,ý^ˆjh7Ül…WOœ £_;úUpß4¢ +$3_{HL’QlªÌkl.¼»¡«Þ±áÍ*,3ûôr‚UaôëÔG¿ +§fr޾i3e^ÛY„oåIˆHendstream +endobj +2751 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +2752 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +2753 0 obj +276 +endobj +2740 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 425.486 168.732 437.441] +/Subtype /Link +/A << /S /GoTo /D (classRtWvIn_a0) >> +>> endobj +2742 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 374.763 176.481 386.718] +/Subtype /Link +/A << /S /GoTo /D (classRtWvIn_a1) >> +>> endobj +2743 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 335.995 175.318 347.95] +/Subtype /Link +/A << /S /GoTo /D (classRtWvIn_a2) >> +>> endobj +2744 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 297.227 173.077 309.182] +/Subtype /Link +/A << /S /GoTo /D (classRtWvIn_a3) >> +>> endobj +2746 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 258.459 223.432 270.415] +/Subtype /Link +/A << /S /GoTo /D (classRtWvIn_a4) >> +>> endobj +2747 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 219.692 206.773 231.647] +/Subtype /Link +/A << /S /GoTo /D (classRtWvIn_a5) >> +>> endobj +2748 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [193.71 180.924 211.754 192.879] +/Subtype /Link +/A << /S /GoTo /D (classRtWvIn_a6) >> +>> endobj +2750 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [219.779 142.156 264.611 154.111] +/Subtype /Link +/A << /S /GoTo /D (classRtWvIn_a7) >> +>> endobj +2738 0 obj << +/D [2736 0 R /XYZ 106.869 686.127 null] +>> endobj +2681 0 obj << +/D [2736 0 R /XYZ 106.869 667.729 null] +>> endobj +230 0 obj << +/D [2736 0 R /XYZ 106.869 667.729 null] +>> endobj +2739 0 obj << +/D [2736 0 R /XYZ 106.869 444.87 null] +>> endobj +2741 0 obj << +/D [2736 0 R /XYZ 106.869 394.147 null] +>> endobj +2745 0 obj << +/D [2736 0 R /XYZ 106.869 277.843 null] +>> endobj +2749 0 obj << +/D [2736 0 R /XYZ 106.869 161.54 null] +>> endobj +2735 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F19 460 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im50 2734 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2761 0 obj << +/Length 2471 +/Filter /FlateDecode +>> +stream +xÚÍY[oãÖ~÷¯ÐSA!+.Ï—ú°—8Ø$‹ÝÚjƒ6É-Q6a‰tHÊŽ·¾ßÌR”)o‹¤s3·3óÍ‘šEø¨™ÎBç²Yœfa¢ìlµ;{³<{y®Í, ³ØÌ–^¸\ÿ(eç £­2Áår®‚ÐKmðv›·-5Mð®Æ¯ +Vó… +öX±£FQͺ¼+©Wc¸šÿºüþìÛå™òL,¢ÐdélaÂ,uÄÃog?ÿÍÖgÑìû3™{@; +U–Ívg6q¡V©ïoÏ.Ïþ6R6S›Í:aþ{ ÛD _"•+/ÏÓä4dÁª®Ú"|ßÿ|Ê·3¡6Í?dYC²ì$Ã~f`4òyþãǹNƒ×sh{) Å16ŒL6È™‰Lih"ít劈ݞµ&ß"ß/‘‹îi¢.×]%dŒÂö,މÎ"±¡Õ0”ŠC•¦w1w&(ȴݾaã.Lœ9ý$ÁÍÖeÕŒwµLt7X[ÈXUüÞI«Å`¾»Ã÷–]GÖn¢"¬¢[oäww9V†S,´ •‰ñëBåþœ­?L¬»À݈¤µ*4Æü¿YaEzÂÊ&hX«Ð^¦ÄÐSY•Val’ÿµ+[»Ù/Iiq†ò 6"{Ê?HÐbÕÕÍ ôa¶`_a¶¥ÉòºgSÁš”`‚’Œttü9ïF£¡Â̹1uÞÖž¾P¹JÌ©ëàt¯½»î;i´ä­»»máå΄â,Ôˆ|½X8µžwLL¿èp @´ó· —kBÚêÐX="Ý«‹Icè×Íô4‹Vo Å´žõú¡;FüÐíH ¼¨ÌÒutøŠB|)œ¢´ ÞIt m–[:“`œ ×®šòŽ&Ë!5<ñºÍ.Ó|Â%Ö,i%#®Íäó-ÓØõasù~-d¹WVVØ譴ذ,¢’0Ö–YÞ”â:&I$™ù—P@SAS“ëÜs ÷9²B{ŸëÓ³áÇŽ|–•pÀ,èxˆÄØä«BèpŒÄï{èkʤk»6u#‰ä~óHjôJòü;¢Ð$%Æ,é{¯Ž²•,K÷Žˆ×ÂÚªc{a´íÓúÕÙõH1ØÊ‰U?aÁýûê”^EžŸ0KîjƒvOʹµ”\<­ØAq O'm»r±¢e‹¼®ñV иl*=Õ§zÝŠ–ØdôÅâ`݆dåPΙTôA4<#åîŽe­›.²2.mP¦x?ë•Ôq|¹Þ7ó…uI¯ †“𜷌ûlËâ¿ÝMÍÇ®[3‹kúÀé5Á ówtJSÉh›S|i©÷®JÚ%Öö«Þûˆ•+RÅ£ì醕F!庬®OȘ¯šš-,è39†Æ™§_Ðxl˜•,R?µ§h„Õ‰J ‚©Œñ¦ƒ0câP¹‘õMq"èz÷:Dü¢ñü?1¢Üˆ­ÙoÙ‚ ö&“ëUÅ–=•Ü:%öÙÞ”d.`¡è¾ò(tÛí9§¦…$ Y>ÉÈeZÓhrªŒV&ROVü¶'qîçdëŸÿøÒb*ÆÔ~h§®oï2´á{KC'ú‘‹PâÀ[á‹‚ù­*$¡!ßå£-Ÿ(g‡Ò¾œûºáàŒõ ™²ˆÃIk!”uéS¹ |›8Ô:>‘•´ÏJo9Ý´@l}&äÜô—£õÌ¢wRÐ,L¬ö;ªs|šcï©}.;.¥ÆÉ -°:ä\ 3^0 +‘¯^Ú01ôA×¢ËQAåS¶!ÀØ…@¨ÞÂiá±í” ‡‰Ê'^÷W"žŠüÍF'`p–† â‘ æDZB’'¢Ÿùb•yþ#t÷‘$|=ÇZNÅòÐa K}œ"Ÿ\" HWLEU蔋×ën_ÑÖW=/$#‡(ÄhC<§yM¸©‡Kë⾇«¹Ë‚|Îë8=æ#âSìó§@p [Ø#Á¯öÀ†¤noRø)N<È#á3¸Gv8”ª÷‹y‹’J…“t‚Q’«¯mò7?ÿçßâëâ)'€¡ª/*¾&—ïÿEç¿­Èá8a…a;¦¼óÈ›òvVKµfX5•i•7ëö%‰Üã€~4n0gÑJÿº)òá3è¡që3onjY¸’açk® cÑ ð‹èCê縙¯äº5 Æ*.Ì0|$1 xEOå‘=‡6"[ç]ß"«G‰·0Ý£éÊ#zj|Ñ)šœ«/Z|EwâQÚÑiÑ·۫@ê½þô>”³—Rø“ˆ…Å ¼¡ +`/‘'ÅÉèH”“¶üÌ +É|ÑG•*܉,Å9ô@xöµŸÐGžI":Ôöë?nqa}H= t^ƒ_Ÿx¶’_Šn7¡וl"(ÜÝ’ MÃPÓô±J¬!Ž,ïVÖ†Y¹û¤I'qhSºQ* +cõ_þWb ÊÁ{|dg1ÜÊŽ}[’/BÞå#t”a€¡Ç\\v.†}#øÿPvÏŠÁ¸ýöê|#+"ô(íOsÄå¡ ¤*(­/(1WßJ7gjké|ÇX½yxþ <$Aèù\åsδ·â¤ð‚/΢Ð9h•HòñÎãb/4üÅÒS±Šû?œ_7RÒ¡eZÚå?ɲŒÎrÿFmÊ¥]oÂÿÁ”z•endstream +endobj +2760 0 obj << +/Type /Page +/Contents 2761 0 R +/Resources 2759 0 R +/MediaBox [0 0 612 792] +/Parent 2679 0 R +/Annots [ 2763 0 R 2764 0 R 2766 0 R 2767 0 R 2768 0 R 2771 0 R ] +>> endobj +2763 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [273.578 654.279 318.908 666.234] +/Subtype /Link +/A << /S /GoTo /D (classRtWvIn_a8) >> +>> endobj +2764 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [253.289 612.946 298.619 624.901] +/Subtype /Link +/A << /S /GoTo /D (classRtWvIn_a9) >> +>> endobj +2766 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [283.07 484.005 309.692 494.853] +/Subtype /Link +/A << /S /GoTo /D (classWvIn) >> +>> endobj +2767 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [229.736 453.872 247.779 465.827] +/Subtype /Link +/A << /S /GoTo /D (classRtWvIn_a5) >> +>> endobj +2768 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [298.844 441.917 344.174 453.872] +/Subtype /Link +/A << /S /GoTo /D (classRtWvIn_a8) >> +>> endobj +2771 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [432.779 216.152 472.906 225.063] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +2762 0 obj << +/D [2760 0 R /XYZ 160.667 686.127 null] +>> endobj +2765 0 obj << +/D [2760 0 R /XYZ 160.667 560.727 null] +>> endobj +2769 0 obj << +/D [2760 0 R /XYZ 160.667 385.323 null] +>> endobj +2754 0 obj << +/D [2760 0 R /XYZ 160.667 360.675 null] +>> endobj +2770 0 obj << +/D [2760 0 R /XYZ 160.667 360.675 null] +>> endobj +2772 0 obj << +/D [2760 0 R /XYZ 160.667 186.647 null] +>> endobj +2755 0 obj << +/D [2760 0 R /XYZ 160.667 162 null] +>> endobj +2773 0 obj << +/D [2760 0 R /XYZ 160.667 162 null] +>> endobj +2759 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F31 829 0 R /F19 460 0 R /F22 474 0 R /F35 1011 0 R /F32 881 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2778 0 obj << +/Length 1594 +/Filter /FlateDecode +>> +stream +xÚíXÛnÛF}×Wè‘D¢íÞIæ- â"i‹´¶ ˆó@K”M˜"]’’ëöç;3»¤(Q¾- SKîpn{æìpŔߘ +1iã© =]¬'ßÏ'ßH5MXbÕt¾"Éùòs ™ááLÅ:8 • ÚOÛw%Þ«àM‘6žf«p&‚¬áR.2xÊB˜ðËüýäí|"¼íg*I¦3Å’Ø åß'Ÿ¿ðér§ï'8OoaÌ™©õDG†Iûûbr6ùµWŧ3‘¿]ñØÿùx£E4m¥k'A~6nØ´iÝ¢ÛÀŸEAºi«uÚæ‹´(îBý%ù×* š]· ïï"pÒvìÖ[nŽ4+ +6¿øÑ&Á>• ïÑOiöYe´mG–™H\—ס°pääŽ4Ú}œŽ @Ï)…=4ð1Œlp“` ¡ÑA€§aËÿpp@Ÿóî té}ܬ½¦´Í+ÌjJ{åOÔPñ¢H‡_¥·x®‘ú¹Ë¬ÌêtxÞÖ©ª;¿pòj°KUEá’šwé8çB÷‡Z¯Æ•- pŒÂf™DûŠÑ 8=ÝaxþL€]Øž@–TÄ%ÿáÁ¥;õ¤ÒÓ˜žZ–@ÉŒN/• Îî€" ž Pné +4·tBfð +Iù1oÝT^º7ß¼xá¨àÎMþ*ëŽkkÿ䔹ß7¨ T^»[„®;…›Ò®áïÕÌ»¸HÑÂUWôZ澚$lÆ@‰CB" +káÙÉì"žIØU [a»53^n`1Mº0…(éE[æ/Iç5\vk÷7kbsendstream +endobj +2777 0 obj << +/Type /Page +/Contents 2778 0 R +/Resources 2776 0 R +/MediaBox [0 0 612 792] +/Parent 2795 0 R +/Annots [ 2780 0 R 2783 0 R 2784 0 R 2786 0 R 2787 0 R 2789 0 R 2790 0 R 2792 0 R 2793 0 R 2794 0 R ] +>> endobj +2780 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [365.237 654.279 383.281 666.234] +/Subtype /Link +/A << /S /GoTo /D (classRtWvIn_a5) >> +>> endobj +2783 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [122.201 484.426 162.328 495.274] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +2784 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [200.131 466.802 226.753 477.65] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a16) >> +>> endobj +2786 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [122.201 381.599 162.328 392.447] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +2787 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [200.131 363.974 226.753 374.822] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a17) >> +>> endobj +2789 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [122.201 290.726 162.328 301.574] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +2790 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [200.131 273.102 226.753 283.95] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a19) >> +>> endobj +2792 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [122.201 187.899 162.328 198.747] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +2793 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [200.131 170.274 226.753 181.122] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a20) >> +>> endobj +2794 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 128.993 177.034 137.904] +/Subtype /Link +/A << /S /GoTo /D (RtWvIn_8h-source) >> +>> endobj +2779 0 obj << +/D [2777 0 R /XYZ 106.869 686.127 null] +>> endobj +2756 0 obj << +/D [2777 0 R /XYZ 185.242 645.811 null] +>> endobj +2781 0 obj << +/D [2777 0 R /XYZ 106.869 631.87 null] +>> endobj +2757 0 obj << +/D [2777 0 R /XYZ 294.112 560.608 null] +>> endobj +2782 0 obj << +/D [2777 0 R /XYZ 106.869 544.73 null] +>> endobj +2758 0 obj << +/D [2777 0 R /XYZ 228.524 469.735 null] +>> endobj +2785 0 obj << +/D [2777 0 R /XYZ 106.869 453.857 null] +>> endobj +2774 0 obj << +/D [2777 0 R /XYZ 228.524 366.908 null] +>> endobj +2788 0 obj << +/D [2777 0 R /XYZ 106.869 351.03 null] +>> endobj +2775 0 obj << +/D [2777 0 R /XYZ 228.524 276.035 null] +>> endobj +2791 0 obj << +/D [2777 0 R /XYZ 106.869 260.157 null] +>> endobj +2776 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F29 818 0 R /F14 825 0 R /F35 1011 0 R /F32 881 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2804 0 obj << +/Length 1487 +/Filter /FlateDecode +>> +stream +xÚÍX[oÛ6~÷¯° ­Þ)Ë€5­‡¶+ÒÙŠ­íƒb+‰PYN-9C»?¿sHJ–£t Ö¦‚Ø$Ežï;WšEþXÄ-QÊF:³Ä0-דNjÉÑ”‹È«E´8w«71c:I—LÄóEÂâ0Ëd|RåMƒC?ÙÀ7‹—IÊâìXã ¨Áã6oKœm`¹NÞ-žOž.&,(‘R"l¥‚ØL¡&oÞÑh5¡Ñó‰öŒ)aÖFë‰4Šp–…y5™O~ëE1Áˆ¢:J¹qú÷€xÄ$RIÚ(z1.ãYº·°ò½†Áé®@FÅ'0˜ðÙø…Y{ÎaÁ ¶E½,ÕÑ4‡ZHëΚ//!`o^;~1ß­`¥Dþ„Œ7H^{Nxî(­`”€QCüaÜœÆ Ñ\¹ã~(ëeµ[¥ÛP#?ŽåbdÏÚ××@¹üŒöý4ž2ÊHfUPJºmÏêËž1„ÛæuÜ¥ðÈ ùÅ6_{Ü盭̞Š·Ê#øztÓ‹¨Ä¬€5'à#hûèx µÜ +7 ÇÎͺwÃÂѳµbÑ“ 8T´÷©´—,É„>p*F¬RC§zµ;CC•Kï)/‹öÍJãUX”{š˜ŸÁœn2÷þ[Ê̈N?F Tœÿ`ÂZxKÑ]í¿¨;¢WaCéß„IiŒ;N.óÚí¬ÜkÇ0da¤µŽ_þq“`®,‘™îµýb rˆg{k˜†'=“Ù8ÝL=EuN Ç,ˆ&wAƒ‘Q9t)ê + 0¶`©`¤)o‹ãyû]åÑÁ‹øgÈü3X|ˆ‰+‹ËŽ!ÁÀ‹ërYÓÛž!÷`)Ñ;ó4ˆRÑÏpe1"ÑmY¯éýrøø÷éô)è4»©… JÓEÁ½Ì#ÀÍi¦híóá³?Ÿâ!¼÷ä¤~ŒùÙuLn›céÌä‚B°(ƒc\‡ŒÎ ¼$ A±OŠó|W¡ AfQ"ÞÔM»Ý-ÛÍ–Œã/å B KCd3µÀTAˆ¼¥‚ŽBò™aì3±ˆê÷n5ÒWÉUP×ûɾª€¾˜ýŠ;k+ï–.®QÅM¹òÊ5m¾è¹«;PìužÚÄíeá5ÏÿÊÕ/Xöõ« ¸]°m·‰â˜à_YßÈÍÕ×btö –èŸCuµ ,4=*(äß ’ÏæÉ‹€ªÚàÊ…/”E;Å̕ҥ f„׃õÝÆÀpσØî¶®b8Óõ$Ô}kwæ o!ç H~`ô*xÅùÖSÒÕ¢æ}ߊªq©J¹5$˰²Rhµþ¾Å*XhQ®C_3´‹ËmÞ4MÓí[,”jB¡Ñý–r±ãª9|¸Â˜ls/ñîVRÿ%F[ß#q¿ß»®wT7ÛTCGÏ8T“ŒhßÙ_ƒô·g’ÔhÐÑT¤ÓA¦ÈƒÊú¢êºÞqØ´!Íä°ŒU…b†½ZQ ⨬¥þ{ðý_̘zö½ùw5ãˆh> À©—p/ÜmÊó¾wÙÕÍa¿íšA»sÿ2nÀÚ>GÖ>uMèmŽÄ˜…´uùCGòtyÙYã½·|Ùݱ¬ÝË´.bü —ÖÌvœQxg4þΆ—9ôIw7Ýûäè`#SftðõüTŒÏ‡[–ÑY¾XR‚gº\Ø,•0ÈàÆ'¾ö'A¸ÕÖÝßþ$4t®Ò[`–BÅóu_–ý…¬ÁeôAFuŒ”*üÞ^”­ä~©ýøäNøÉ +úèǯ¡!§£÷…• ¯8;Å›÷~š;i+?ù'ùÖ½!@£&&AÏeŽâ¯QîÆÕŽâ¡kÚ¹¥D)zàÅ'²eø­@íaC,+¤™Ít—>TØ7 ‡Á…ÜÉ‚Kœÿ-ÉZ> endobj +2801 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 869] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 2818 0 R >> +/Font << /R9 2819 0 R >> +>> +/Length 2820 0 R +/Filter /FlateDecode +>> +stream +xœ’=O1 †÷ü +À`’8q’‰µ=‰1•òqCE¿ÓK.wjnHüÆNÞÇ>tþʺîÕN].<¾©˜ÃQ]Ö=\ur˜DpH.B·QC™P'€5FN ]¯Î–ûÛ›÷ýy÷¬®;XHŒÉ³‡Ï|}©-£ >‡½r‰ £•ýë¸7¥f+9«œ· µ3³™^­äù?ñ$F®Ôg˜9Ê·æÉ…ˆ–'Ui Þš€”&¶•V%8š8{‘Öý‹ÅD-0Á3zk0«ýËï(œ”ª4™µGg3~¬´ª­"#âÄ£µåx÷òþƒr„ÂN§þ뵇^B›‡äòÕ)–iJ‰ZgsÅL’ &陼:I²Ä =O•ù-› A¬Ÿ~¾·„\ù“c‡=„cGËm8Õ2×FTÇM˜ß!†ê Á‰Ë¹endstream +endobj +2818 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +2819 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +2820 0 obj +348 +endobj +2807 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 425.69 230.556 437.645] +/Subtype /Link +/A << /S /GoTo /D (classRtWvOut_a0) >> +>> endobj +2809 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 363.117 238.304 375.072] +/Subtype /Link +/A << /S /GoTo /D (classRtWvOut_a1) >> +>> endobj +2810 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 324.455 229.116 336.41] +/Subtype /Link +/A << /S /GoTo /D (classRtWvOut_a2) >> +>> endobj +2811 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 285.793 226.875 297.748] +/Subtype /Link +/A << /S /GoTo /D (classRtWvOut_a3) >> +>> endobj +2813 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [248.129 247.131 294.621 259.086] +/Subtype /Link +/A << /S /GoTo /D (classRtWvOut_a4) >> +>> endobj +2815 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 208.469 280.496 220.424] +/Subtype /Link +/A << /S /GoTo /D (classRtWvOut_a5) >> +>> endobj +2816 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 169.806 224.606 181.762] +/Subtype /Link +/A << /S /GoTo /D (classRtWvOut_a6) >> +>> endobj +2817 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 131.144 224.606 143.099] +/Subtype /Link +/A << /S /GoTo /D (classRtWvOut_a7) >> +>> endobj +2805 0 obj << +/D [2803 0 R /XYZ 160.667 686.127 null] +>> endobj +2682 0 obj << +/D [2803 0 R /XYZ 160.667 667.729 null] +>> endobj +234 0 obj << +/D [2803 0 R /XYZ 160.667 667.729 null] +>> endobj +2806 0 obj << +/D [2803 0 R /XYZ 160.667 445.021 null] +>> endobj +2808 0 obj << +/D [2803 0 R /XYZ 160.667 382.448 null] +>> endobj +2812 0 obj << +/D [2803 0 R /XYZ 160.667 266.462 null] +>> endobj +2814 0 obj << +/D [2803 0 R /XYZ 160.667 227.8 null] +>> endobj +2802 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F19 460 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im51 2801 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2828 0 obj << +/Length 2384 +/Filter /FlateDecode +>> +stream +xÚµYYoãF~÷¯ÐÓ‚BFöÅÃ@ær090³¶“`7›ŽDÙ„%ÑKR6œýó[_U·H/0XÉ>ªë꯾n«IBj¢’,Öi>Ió"ΔÌ×go¯Ï^_h3)â"5“ë%¼^üÙØ©éÌä6ºœõ¿?|Úöh0Ñ»UÙuòzY-§3Uí”~6óŠZ“$³‘RÙôÏëÏ>\Ÿ)¿ø,‰MQLf&.r‡¥ÿ}öÇŸÉdq–L~y¤÷$V4j}f3k•ûïÕÙÕÙßw¢”‹5“™Uq¡3È¢#3þ•ˆ&¯/ò¡/Úx˜êé/÷ñzíA£ûòŽ#݉üR>µ°ó¨ ²ÀÖoü*ãLÛ³3e;O»G¶E9ì÷JöÛËÖà +SŽžÚ_ ì“ÈùÌŠ·È7ßr ¹±¼¿ã›;uÐÂïËÊÑœÏ(o~Î;‘Ùmf§ý+CÅÙÉÛL´ÕI¢O¡>)n\œQñ9À{íñþy×sµÁ¦E‹Qÿo{àÿÌ îED’h¾]S52¾€ðžj|•اtã2bC†–*D½dæ¨èü|׆l~dÜvÓaWaÄÍÆ—+ôQÒ€#úÒ놥µQ±Nœ¯½›w€¦jÕëèÒ8×Êû^¤ªWB.4•R“{¹vLºf…‹Qou¦¸ð¿H½LlMv’zùž¯ò㋟ÉþO0ûÍ´p~m·:N’Ô¶¸¨.§.§xUÇnHÉ]¦Ü`Š4ºêïÎÏ¥’>E0ÅyO20ô›ç¢¡4q’,óâÕ! 1¹zÌ´7´{8}ò"Jx)õ|Э‰• ±ü²¥òn`uK–ƒd ™'r -b«ÌÈxZìrçÜ=‚MðPdz§Ýÿ9Öo½ .>LA;T±y¬˜d£ù :\}üçêù a¶Eœ»@ë7o·\<•©ÚîT ‰Ÿ’âl#;0ö眑ôÔf{ò¾Z–RF$rtPônqš8ï×â= Eÿ QUHÔ‘6†ÜéÂ~)[&R ±`“žR~¼!ÔI¶K6ÊÖ÷T¼£ˆq´%ŸvШٞˆ-Ó.:U€pÕ8$£{8xbÌ›Ïci¿\g såõO…b 39­NÙ.È& ]ý×ûWF{šØÞQ ™)2GFòMœÛü[ïjНßÕP y¦€èXÛìÛïŠ^X<÷#¼Ce„Ý"ÇYrx…LÛŒà&ó—|ÕncA‚7™iýìi[&¦&À”F2Z®†,1 "ã8rŽÊMÁ£€5ÍÓQ½Üw~VA¸ácM&…e¾õXÄç>BzpAÛy0 ×´ëCÒnÜøPˆhQ¦ßŒï†ó4ú¹ò€Ã£÷1&8{®‹<"ëüÅÏ…]bˆù·]û«ö ­´“”±cXÀPÙ¸z¢4EõÇ”ÉàZYHó~ |ª{éD`æ»ï¾“—/ð$Ÿ§T—øß­o¹Œå‰C:õáŽOìu 9}ü0 +¡£¨ZÄ^Åy9庋é<­’¢.â°tr ‡dþ*Bö—,žib^ÿ†HUþ7àü¸‘g”Ž-Ë‚ 1ŒÜ‹µÜt‚g¢Cðþ é1endstream +endobj +2827 0 obj << +/Type /Page +/Contents 2828 0 R +/Resources 2826 0 R +/MediaBox [0 0 612 792] +/Parent 2795 0 R +/Annots [ 2830 0 R 2832 0 R 2833 0 R 2834 0 R 2837 0 R 2840 0 R ] +>> endobj +2830 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [160 640.318 205.33 652.273] +/Subtype /Link +/A << /S /GoTo /D (classRtWvOut_a8) >> +>> endobj +2832 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [229.272 512.2 263.919 523.048] +/Subtype /Link +/A << /S /GoTo /D (classWvOut) >> +>> endobj +2833 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.473 482.067 192.516 494.022] +/Subtype /Link +/A << /S /GoTo /D (classRtWvOut_a6) >> +>> endobj +2834 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [219.789 470.112 265.119 482.067] +/Subtype /Link +/A << /S /GoTo /D (classRtWvOut_a8) >> +>> endobj +2837 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [378.981 245.039 419.108 253.95] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +2840 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [365.237 128.252 383.281 140.207] +/Subtype /Link +/A << /S /GoTo /D (classRtWvOut_a6) >> +>> endobj +2829 0 obj << +/D [2827 0 R /XYZ 106.869 686.127 null] +>> endobj +2831 0 obj << +/D [2827 0 R /XYZ 106.869 588.823 null] +>> endobj +2835 0 obj << +/D [2827 0 R /XYZ 106.869 425.968 null] +>> endobj +2821 0 obj << +/D [2827 0 R /XYZ 106.869 401.419 null] +>> endobj +2836 0 obj << +/D [2827 0 R /XYZ 106.869 401.419 null] +>> endobj +2838 0 obj << +/D [2827 0 R /XYZ 106.869 216.029 null] +>> endobj +2822 0 obj << +/D [2827 0 R /XYZ 106.869 191.48 null] +>> endobj +2839 0 obj << +/D [2827 0 R /XYZ 106.869 191.48 null] +>> endobj +2823 0 obj << +/D [2827 0 R /XYZ 185.242 119.783 null] +>> endobj +2826 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F31 829 0 R /F19 460 0 R /F22 474 0 R /F35 1011 0 R /F32 881 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2845 0 obj << +/Length 1441 +/Filter /FlateDecode +>> +stream +xÚåW[oÛ6~÷¯ð£„Ö,¯’X`]× kW¤‹C–Å–m!²”I²o~çð"ˑ㴆  X"uxîßG’)üؘk¢”G‰&1“ãùfôílôê‚‹±&:ãÙÒÎ×cI8\2Lg! >À(‘ÁÛ"m|Áwh³…Õ²4Æ7ÖÈç¶ŽÓø…’çØ™yv>@‡!tp´üÆje§ùA²äy⊓(ö'Œä Âsýã°R%¬ç6· ‹£ài¦QŠÄÚ/ª–_t°h––.«ÜÏ3‡Û"+WÎŽ!M`àÿãóÈ#²™­³ƒ'ÎË­M1hÔæR[•ÚñµëüÀösÏþiÓ«Ín©YeeV§§ ©kÝ«qU6µe•IºFFBš)"àK”VØ,tš}±veTg³½˜DŒ» x$ÿÝK»0úè(LŽ#¢cÙ§0S —Çé诧™É+ÞP%äh2™{´ÂÈˇ¼µŸr[8óþö^ØÁ-*ÚÛ÷O¡ˆðö %p3WÄ-A¥ úα—íMßwWi ù>Äq~ÎST¿C½•Y“½4½Æ5%JAÆ!/±‰mîhIžpsÖšP±È×N9¹^zàø$.¡í©²Œ¶Ôœš#0÷%üO4Eßendstream +endobj +2844 0 obj << +/Type /Page +/Contents 2845 0 R +/Resources 2843 0 R +/MediaBox [0 0 612 792] +/Parent 2795 0 R +/Annots [ 2849 0 R 2850 0 R 2852 0 R 2853 0 R 2855 0 R 2856 0 R 2857 0 R ] +>> endobj +2849 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [175.999 515.991 216.126 526.839] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +2850 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [253.929 498.367 288.577 509.215] +/Subtype /Link +/A << /S /GoTo /D (classWvOut_a7) >> +>> endobj +2852 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [175.999 413.164 216.126 424.012] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +2853 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [253.929 395.539 288.577 406.387] +/Subtype /Link +/A << /S /GoTo /D (classWvOut_a8) >> +>> endobj +2855 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [175.999 310.336 216.126 321.184] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +2856 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [253.929 292.712 288.577 303.56] +/Subtype /Link +/A << /S /GoTo /D (classWvOut_a9) >> +>> endobj +2857 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 251.43 238.858 260.341] +/Subtype /Link +/A << /S /GoTo /D (RtWvOut_8h-source) >> +>> endobj +2846 0 obj << +/D [2844 0 R /XYZ 160.667 686.127 null] +>> endobj +2847 0 obj << +/D [2844 0 R /XYZ 160.667 667.729 null] +>> endobj +2824 0 obj << +/D [2844 0 R /XYZ 363.131 604.128 null] +>> endobj +2848 0 obj << +/D [2844 0 R /XYZ 160.667 588.25 null] +>> endobj +2825 0 obj << +/D [2844 0 R /XYZ 290.348 501.3 null] +>> endobj +2851 0 obj << +/D [2844 0 R /XYZ 160.667 485.422 null] +>> endobj +2841 0 obj << +/D [2844 0 R /XYZ 290.348 398.473 null] +>> endobj +2854 0 obj << +/D [2844 0 R /XYZ 160.667 382.595 null] +>> endobj +2843 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F35 1011 0 R /F29 818 0 R /F14 825 0 R /F32 881 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2865 0 obj << +/Length 1223 +/Filter /FlateDecode +>> +stream +xÚ½WmoÛ6þî_!`_dtbø"Jb± ØÜeH» ]ì/CÓŠLÇBd)±hÆþüîHJ–£}[ +âûñî¹çÈ# (|,`4%<É‚$S$eqPl&¿-&gç\ЍD‹•¹X¾c"ù4YÎóÍ}¥·Øá¬ÊÛÖU¯ôJO#n§,ÔuuAUÆCÆÔôÃâõä÷Å„ù#J„RA$ˆÊ$nû0yÿË ^Op, ¡N ƒY›IœJÂYæÛÕd>ù«Eƒˆ§VÙ^{°˜ˆ89U´B ãÖhz+Ò$œA ?Ú’J°-Y¡%Ö$ûG›À³ólnŸd©Ýe¾xë…[ØVܣܲ†ÿ­ïÇÞC=å*4km[¥ßUÄa~Óšm^7÷&oµë/P7˜Ú·?W' +0P€ÇVʺ¨vK¯'cÇyqJh*<?å¤$•ö&ëOˆùeGÄ(#™’^)i§]ÔëH¨”&GD +l{—Øßn54}Õl]e(õöå˧\bq$21ÅHlÀª„”vÒ°nÉv$í8»ØH¼j€VÁ‘YQ/9މ¢§cDÀÁÞín*´¢pºÔfÝ`„ËÖ£abø)€:‚Pp®¿¦,Á‰>pŠÅÀáhṦ’BÌ­,È`¥>Kc0C’˜2+ã•^å» +ù•¤àÉæÊí +ÓlÉX͈ƒ‘ØR²Ÿ¥ç¾D'›]^ +ª¤~â5t$ i˜}­Å—p °“gǸ›—ú7wʳ°)—N½¢Òù@ÓÏvÌÕT +!m*ÞKy½ôîÀaV<öWÓÖT®UÖÆ¡Tç¾§5¹ÑÏàSk›7ú–ƒsM›ó)Üî°|€Á\‡#—b7Ã>µ¡Æ‰­>ypp°úèEàGú(ÍÆwØùŸoQñ_QË…;yðˆ¢0:ígúv1×ì ½æÚú) ³@ÆF×¾ë +þÂÿ¦w«Þz.ºC]é +?ݔŮ꼼Ú:b€ãvþ:<uï°¥oklò/£ïE]š2GŠhg:\nÎ]£Ò{]aÑो¶hÁciÖ'ÜéNŒšÚ/w«;Dq +ÐÇ„C§í|Ðïš“w~œ ÷–£íó¢ËÄWÄÿ¼¼õ‘› ð"½£€?Lã˵G]×Ð÷˜ïÿucto{ÜÒã€Çd‰g°;$…DÀUðŸ}qÀcjSZc–]HþÇe¢‘™8u“d‡|E»öV(Š[w^qòqð¶ÜëÚ{×ež¥Á,ÍND°Úû>ÎíÏó»YùkËŠ‚~{gçöˆz.ß^Bkì·$ÃÅ x)@JôÝÏiSÚ”‘C\ŒÃëDÓ4µÉZÄáñ·>.Ü3Åg{}þ QÁ•ƒ±á²{(úì¾Ån4ƒÑ$Ä€•ø‡¬æMiܼìÊÙ‹®rƒnðÝT$¡Fm}ÏqåÌFØÜ¹fÞ‹ØøÃžy¸ªo½x‹wØ£èÆ.Ó?"ŒW”H Ù=â4…(È£Å'’J|Â%,é(&ý¼2 r=+ !Äi/î%ÿáKÊ;×ý ïõiÖendstream +endobj +2864 0 obj << +/Type /Page +/Contents 2865 0 R +/Resources 2863 0 R +/MediaBox [0 0 612 792] +/Parent 2795 0 R +/Annots [ 2869 0 R 2871 0 R 2873 0 R 2875 0 R 2877 0 R 2879 0 R 2881 0 R 2883 0 R ] +>> endobj +2862 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 1212] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 2884 0 R >> +/Font << /R9 2885 0 R >> +>> +/Length 2886 0 R +/Filter /FlateDecode +>> +stream +xœT»N1 ìó)ÂØy»E¢  €»@ˆ÷-pÇIü>Îî&›åX!PŠ(Û3“8A yŒóm§¶êôÚ釵ÕÔo•é¶ÓgkÙd,$z}¯†4Ò1@òÑh‡ØÈV§ŽV7Ýûænw¼~Vçk}%±O*ð IæòcîHl1ï‘¶.X0ºS.°g +°©€'v ‘›šsˆÔ¤GåŒ%p6kcmZ‰š¿Ù³ÀNªF/E]ìí]¼~ìwÝë¾ú[täDÀQc© “§|l"SV6¼ÉŠ ˆ¢˜¢„…€ü`jµùÝÔJ ¡ñSÉýÔ¬C¤f=*Kl€¹ãá~Œï!9˜€z?—oo¿ÂÆ +¶&¢tNhp:a™ñNz…êtãkËŽKIÙùnW?)Å”em‡œ2ƒ$"†µ4²å™Û™W¹?Yà-8.Ù;<¶e©%f\N7]¥NMT¤¢™m¤6ȼʢTã9‚+´õ¨¬õs)¤–H¾®Ô6ȬÆ"çØsç•úáÎendstream +endobj +2884 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +2885 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +2886 0 obj +427 +endobj +2869 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 394.679 168.621 406.635] +/Subtype /Link +/A << /S /GoTo /D (classSampler_a0) >> +>> endobj +2871 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [163.584 354.91 208.776 366.866] +/Subtype /Link +/A << /S /GoTo /D (classSampler_a1) >> +>> endobj +2873 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 315.141 175.263 327.097] +/Subtype /Link +/A << /S /GoTo /D (classSampler_a2) >> +>> endobj +2875 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.17 275.372 243.839 287.328] +/Subtype /Link +/A << /S /GoTo /D (classSampler_a3) >> +>> endobj +2877 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 235.603 182.707 247.559] +/Subtype /Link +/A << /S /GoTo /D (classSampler_a4) >> +>> endobj +2879 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 195.834 182.984 207.79] +/Subtype /Link +/A << /S /GoTo /D (classSampler_a5) >> +>> endobj +2881 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.17 156.065 219.541 168.021] +/Subtype /Link +/A << /S /GoTo /D (classSampler_a6) >> +>> endobj +2883 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [221.135 116.296 239.179 128.252] +/Subtype /Link +/A << /S /GoTo /D (classSampler_a7) >> +>> endobj +2866 0 obj << +/D [2864 0 R /XYZ 106.869 686.127 null] +>> endobj +2148 0 obj << +/D [2864 0 R /XYZ 106.869 667.729 null] +>> endobj +238 0 obj << +/D [2864 0 R /XYZ 106.869 667.729 null] +>> endobj +2867 0 obj << +/D [2864 0 R /XYZ 106.869 414.564 null] +>> endobj +2868 0 obj << +/D [2864 0 R /XYZ 106.869 414.564 null] +>> endobj +2870 0 obj << +/D [2864 0 R /XYZ 106.869 374.795 null] +>> endobj +2872 0 obj << +/D [2864 0 R /XYZ 106.869 335.026 null] +>> endobj +2874 0 obj << +/D [2864 0 R /XYZ 106.869 295.257 null] +>> endobj +2876 0 obj << +/D [2864 0 R /XYZ 106.869 255.488 null] +>> endobj +2878 0 obj << +/D [2864 0 R /XYZ 106.869 215.719 null] +>> endobj +2880 0 obj << +/D [2864 0 R /XYZ 106.869 175.95 null] +>> endobj +2882 0 obj << +/D [2864 0 R /XYZ 106.869 136.181 null] +>> endobj +2863 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im52 2862 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2889 0 obj << +/Length 1068 +/Filter /FlateDecode +>> +stream +xÚ¥VKÛ6¾ûWèH!ç$è!õvd[t»ö¥Hs e­-Ä–\IÞÅ¢¾3CÊvâR 0` É™O3ß<(™øÉD9n­KòÒñBš¤ÚÏ~YÎÞÝ*8îr,Iq¹þĤi¦•‘š-–©dw°* ›ïü0 ¨ÙMOɪ4“ì{ê6ÕŠ~lpÕÁv›~^~œýºœÉèD&¸ve’iîJ‹>ü3ûôY$ë™H>ÎÂÙ3È‚Kç’ýÌ–+YÆõn¶˜ýy‚’… Läÿ–I ùe@stf8Ž5¸¬kI(ÉÉãað{Ø8ì(ŽÎ¿»®NeÊp©sxB’ ÿ²ŠåY/áÝO @öãѪ֚=¥ +Þ‹›ë°A$vmªûn7ß‘o7è¡6€oECT‚Ù,H>îñ•Bü¬Fˆþm8ý´ÿú–xYJ‡“çße^·îUÞãɉïòº~nû}{ŸBÑ,CO©Í™ßa­³–ü"pw™´L–†k¥@0ÜC÷!D°xìú}ÈÖ¸é¬R«€Á±O­fÝ.¤¶Úz¢ Ì6Qo8 BÚU‰3$®Ãáê%æÛ]‘¹ày1e’R„´;¢Ý±º¿ö^k^.Zøvý +hÁË¢œª#µòR_#A­ -£–àDy›… ¥‚­’ ¤¤X²À”ÜYjš¨4If ·² 4ƒHm¹‚¤2솱öšf i),»¡^ª¾9àasjëo2­!lIð‹å](Eì'0?€Í®iáªax å¾­CõÝ>œaqOnÐ;vQpä¹i7A2ùõÓõå -×'¬åÖ™ÿw9,üT«‡42ηW7§¶€/Š$³pái¸ìö„9¥\~ª°Óç€Irî +s9Î)=F[¶€¶…ÇeÛ#^ŠœQ÷à?Äq׌ᨠ9$yþoÂb…@/A¾Ou~®NÜyàÑAsªL\zB[‡Åª¾ž,°6¥(~V៷£ ~Ke§œ€ x “°ŠÓžÃηÂà§J.ó)6ê]Ð#7„¥]úlrßeÿ…:GAM9üO¼4ïendstream +endobj +2888 0 obj << +/Type /Page +/Contents 2889 0 R +/Resources 2887 0 R +/MediaBox [0 0 612 792] +/Parent 2795 0 R +/Annots [ 2892 0 R 2894 0 R 2895 0 R ] +>> endobj +2892 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [238.968 630.369 303.809 642.324] +/Subtype /Link +/A << /S /GoTo /D (classSampler_a8) >> +>> endobj +2894 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [475.431 529.779 505.375 540.627] +/Subtype /Link +/A << /S /GoTo /D (classADSR) >> +>> endobj +2895 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 456.98 230.722 467.829] +/Subtype /Link +/A << /S /GoTo /D (Sampler_8h-source) >> +>> endobj +2890 0 obj << +/D [2888 0 R /XYZ 160.667 686.127 null] +>> endobj +2891 0 obj << +/D [2888 0 R /XYZ 160.667 649.796 null] +>> endobj +2893 0 obj << +/D [2888 0 R /XYZ 160.667 594.012 null] +>> endobj +2887 0 obj << +/Font << /F23 479 0 R /F31 829 0 R /F14 825 0 R /F8 483 0 R /F19 460 0 R /F22 474 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2900 0 obj << +/Length 1489 +/Filter /FlateDecode +>> +stream +xÚÍXmoÛ6þî_!t_d´bù"ŠR1 hÓeh»¢]í/CÛŠ,'Beɑ䏯þüîx”,ÇI³nH3°È#yº—ç’‡Ÿð7LF±Å 3"ô²ÕäÅ|òôT*/aI¤¼ùÒΜ/>ú!Ój¨8ôgéשðëå4€ÿjª¤¿Ã埀¸DiÚB«%áä˼ɫ,ׯøBŠéçùëɯó‰p¶œ©$ñÅ’X£%—“Ÿ¹·˜pïõÇbo mÎÌZMB£™±ë—“ÙäA÷i¬ýƒCÒ!SatèX‰N !­W5ô—øN ë”ÑäTÚ¢7&yƒ ôÜxzã…/“оc6 •ò— &Ý|¥NVWE––Ô9›2öë&`|Tè7y¾ ±¢j»f#+zßfvN%|F&ÈäÀaX$ɆŸŠ*+7 gªûy¡aÜ(ŽŸõfÂÄ c|–uµcÇz´dŠ÷z~9 +I€8R;«´öªº …®]ZÁ#³ñ¥0,Pœž7éÊ…bd3Œ%X3µøƒìž=»'jf" ¯Œ$ˆ¼KD W:¶sÆm ·=|¬àé«•VÞË€åí± ŠC@ªŠ &X¢õbï7g%z‘–ÞæÝE5à/ZÅp&¡¡ +àÑŒ]ÿ‰ sNlÈ}Vl-º8P|>qÍß‚øÏëA‰“Aû&¡“ËË žÇÇdqúû;´çùèbNÙ,k”lñÏ&½íNq´É/7À ;°Y§ +ì}¶T@–¶A‡È*«ú¤Ø%2€-X%YW7OHÚ¥_ŠêÛP.fØ.ëmÞv4g‘·E3Õ +Æ@Å‚„ë2Ý¡q…%hœ“|¹Ÿ æRéïFÅ7Nc C&TOˆÜ§1МCKñ£„BU!îÊèÍŠXh ë¶›.6w™*’¹+´«.= åis—‘`0á•( „ž\bÒÊ%TcÀ­z”_š’zEÕwT©“´]Úå÷ãd›#X•ßô¦^núÖ@ZwÕžÒ,1`…‹Ä ÒåÕ–ûêAžfyGµ3ÚŠ*'ZcS[ÀÑ}óÆAø3犋¦wE¶)û¤ÞXXßQTߕèù¨ÈøÛ÷v¼-º‚6’}þŽ’—0PÇõã3—^³ô–ì 2ž„7§¯»È)âÎì 9[K’Â4ÊOÝÚ͸°ñᦕÀô|¨Y7è”ÆaXÔŒ)¹Ü¬úIy³*ªT"©¶´Ã ]Î8M +è!˜e{ªâÀ/%ÐvT`ýžS˜MÇÙ‡3´v€ÕÚ#ºÍ¢/³'äÓTƒ@€ãF®ù‘–6i×[xJØí”<@éóõº¿:†qâŸíy!…d@7$kÛ´3»šF‰Ÿ, Un7Añ¶è—ŸW=v±kk]ö»}‡d«0í÷þM$~ërêᵇ^ sö¨ÍÁBdÖØr±+ÚûÚŒºzýïP,à0•ŒÃ„Å“ÿ!8âî Ñ6^Zd#<´yOMöî0È1‹ýÎdG$¢š—»l;¤ü‚–­Ýç1ßtŽ:6ã^ö)LeÝåï¾¹ákäÀHê¡ö(„ñÅ3¾ÍJvÑè!Xéþ¼Œ`úÚzf÷ñI¦ª;·ñ½ŒöB3æ™o\ì®ÙŸt¡}ªÃ\ý’sØ×U„6ÿñÛ}eqWÕáòÂE"#ú(Žst(TÚŸíª)<ÀAû½¡hQŒ±<òñ:«ñÈèMÑÑPQÑʓǩq† +v4ø~ª"?Ç£tã$=OP¨üBÝt`aèüf¿+áªAàÆgÎÄ,Å7\¡êÚ.ËŸXz– gòÈ! t¥ÎÜg½÷8^ä¿@E"êkV»y£È†V†§Axñ]ú/ÉñÉeŸ»¿2žÓendstream +endobj +2899 0 obj << +/Type /Page +/Contents 2900 0 R +/Resources 2898 0 R +/MediaBox [0 0 612 792] +/Parent 2920 0 R +/Annots [ 2905 0 R 2907 0 R 2909 0 R 2911 0 R 2913 0 R 2915 0 R 2917 0 R 2919 0 R ] +>> endobj +2897 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 821] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 2921 0 R >> +/Font << /R9 2922 0 R >> +>> +/Length 2923 0 R +/Filter /FlateDecode +>> +stream +xœ­‘ÏNÃ0 Æïy +ƒ‰ÛI®H8ŽõÐÄÚi[%àí1kÓµ‚ Ê!Ê÷9þ}N<øï5î›ÖíÝõ=ÃÓÑíNVÝ6-Ü4f(5úÍÖ ×ÔcIAJäMë.Ö»í®û¼l^Üm++~v9 ÊðîÈÚ¤ÂvÕdRŽ˜ný7¼u͉bV> +endobj +2922 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +2923 0 obj +276 +endobj +2905 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 425.274 172.468 437.229] +/Subtype /Link +/A << /S /GoTo /D (classSaxofony_a0) >> +>> endobj +2907 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 386.401 180.217 398.356] +/Subtype /Link +/A << /S /GoTo /D (classSaxofony_a1) >> +>> endobj +2909 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 347.529 175.263 359.484] +/Subtype /Link +/A << /S /GoTo /D (classSaxofony_a2) >> +>> endobj +2911 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 308.657 211.433 320.612] +/Subtype /Link +/A << /S /GoTo /D (classSaxofony_a3) >> +>> endobj +2913 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 269.784 224.052 281.739] +/Subtype /Link +/A << /S /GoTo /D (classSaxofony_a4) >> +>> endobj +2915 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 230.912 210.326 242.867] +/Subtype /Link +/A << /S /GoTo /D (classSaxofony_a5) >> +>> endobj +2917 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 181.081 208.084 193.036] +/Subtype /Link +/A << /S /GoTo /D (classSaxofony_a6) >> +>> endobj +2919 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 142.208 186.858 154.163] +/Subtype /Link +/A << /S /GoTo /D (classSaxofony_a7) >> +>> endobj +2901 0 obj << +/D [2899 0 R /XYZ 106.869 686.127 null] +>> endobj +2902 0 obj << +/D [2899 0 R /XYZ 106.869 667.729 null] +>> endobj +242 0 obj << +/D [2899 0 R /XYZ 106.869 667.729 null] +>> endobj +2903 0 obj << +/D [2899 0 R /XYZ 106.869 444.71 null] +>> endobj +2904 0 obj << +/D [2899 0 R /XYZ 106.869 444.71 null] +>> endobj +2906 0 obj << +/D [2899 0 R /XYZ 106.869 405.837 null] +>> endobj +2908 0 obj << +/D [2899 0 R /XYZ 106.869 366.965 null] +>> endobj +2910 0 obj << +/D [2899 0 R /XYZ 106.869 328.093 null] +>> endobj +2912 0 obj << +/D [2899 0 R /XYZ 106.869 289.22 null] +>> endobj +2914 0 obj << +/D [2899 0 R /XYZ 106.869 250.348 null] +>> endobj +2916 0 obj << +/D [2899 0 R /XYZ 106.869 200.517 null] +>> endobj +2918 0 obj << +/D [2899 0 R /XYZ 106.869 161.644 null] +>> endobj +2898 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im53 2897 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2926 0 obj << +/Length 2088 +/Filter /FlateDecode +>> +stream +xÚ½X[ÛD~ϯˆöÉØxÆ3¾ ñP¶A¹,l@BÀƒ×™MÌ:vê8m#þ<ç6Ž·Ii +EŠÇgfΜóëXÍcø©¹."k‹yšQ¦Ì¼ÚÎ>_Î>y¦“yi2_ÞÓÂåê×@i½mTÜ.*xo¹ ®›r¿Ça<íà©‚jªà+¶8pí"ÑÁP5¾u@n¿/¿ž}±œ)"Œ£¤Èça¹E^Ì~ý=ž¯fñüëϽ‚q©¢˜og&³‘V¹¼7³ÛÙ#+eÒ(7Å<ÔÉïÝÎú-VŠòɳü4É^ðr¡ó «W U’€Ø þ྇m R 0°ñ·@ýåM…ò< `øN]4¨\\ÔDfF òsž}ó=JødfX²Håv×Ô ÒpXÁ¿CÈAJÅj& ðH‘G˜f‘ʲy¨LTCün‡nlÒ,(ùÑ‚¾8ʃWõ°a<‰1R×õK:¢•][˜‚óápÇDh¿[ØvXÍ+žêîùÉr½Â¿òˆâF,ïÔh¡6‘JRx‚—¨÷³ß·g† SàbÐÕò(·æÿ·Ï€Æ©: Ø«¡·Y(ŠÁ˧ºÆðÙîƒÀÛµb¤˜`ú^,Añ÷N0Õ¿‰†ªkñ}è1*šëM‰á±v§À¨a¾&Ðø°Åw‹þ]ÿ1ó9·‘2mìmdÿ½\Ø4(›Ã;HŸÊ>2Ð m@Lî»~ëF¬EÞµÄC×°åªMI)1ôÐz§€©j0‹™†ÍÝQÌYœDQi¥™·ÓˆuAX€õ¹ôIeY!;ÊvuiåY>ÚÞf‰;ç®'jL©6Ž#P(fiCVRi å;º +Ä#µž+€LL. Y=7óИȪ”¸ädÜ¡ ¥Mð”€TÖ aÉlð”\}_õõ'ë±Î¼atôü +¥»åsöÁ{dwx=:v]• ¿°³v½¤š//‚[ç˜ïíB.{§$çã46:Ž5U}â‹…¶ë/&Ñ^êëxmJD¾¹PFí¤ŒšX³šqBÂÇš8@J£BˆïŸ†qÅÖ‘ Ó8⪠+&–>‹ÐAƒœxØ;>òB yÉÞ_‚!;Xü!Yž'ÉðÜaï7LÛôµsx6®Yù†ªÀ‘Ç·åkè4iR?µ5«Øïk©¹p+—FûìpK֊ʆбù£A'A»¿Ô´\ûv¿“Îèšx´¾ãÿŽ C’j¿ÿôüÞ¡l”˜š0Ù¾ߵãGçk7錀aSœ´Î7MHÿŒúÂ]‡G¡‚Ë€UÿæÌ';Qi8LAbúŽ#õûù]Wï…ó—äùí#Å̇QìsßÝÐA7±à+cÆ=¨Ô‡ÑëgŠ +è;æû ݰ'x_à¥ÕµÕñ± ‹£ê›ª-‡‰×ðAÚ»’*1°¼Û”ýÿœØD=W¡œÂ c ‰í£X¸ó²â@î¥ÙÊs¸îÆbò }|¹"5'[n0þ£Sä¼%Y+Ÿ#àmy2gLß—ï0¢ÕŠ…©[¹@”ÒÂɵªëyLŠ9pÅëÑ$vù¦"s.§HDŽ}·•O)¾{€1ÕˆsÕž¾D(# +Þ–‘ô?ËH·˜µ_w÷4†àÐÑæìKt×Q×Ù,ûlñ¿jÂu]éXÆÏ´fžFEf¦4È4ØÜÛ÷6UÉ?r¨8Åjs]@Ÿc{ˆSµ´­8¾þ_>â—;dtäñÍ"I±_KÓˆcÂ\÷À¯e+–×/Éóxú¥Š3ºØ¡œU‰ì_"ߎö8îauGÖê€KFºUòáÀžÔudcƒŸSùjö³²n„´!^IÁ·@ϲ‚ã@{ þѳ> endobj +2929 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 654.279 240.933 666.234] +/Subtype /Link +/A << /S /GoTo /D (classSaxofony_a8) >> +>> endobj +2931 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 615.425 260.571 627.38] +/Subtype /Link +/A << /S /GoTo /D (classSaxofony_a9) >> +>> endobj +2933 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 576.57 271.402 588.526] +/Subtype /Link +/A << /S /GoTo /D (classSaxofony_a10) >> +>> endobj +2935 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 283.575 210.547 292.375] +/Subtype /Link +/A << /S /GoTo /D (classNoise) >> +>> endobj +2936 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 161.019 233.738 171.867] +/Subtype /Link +/A << /S /GoTo /D (Saxofony_8h-source) >> +>> endobj +2927 0 obj << +/D [2925 0 R /XYZ 160.667 686.127 null] +>> endobj +2928 0 obj << +/D [2925 0 R /XYZ 160.667 667.729 null] +>> endobj +2930 0 obj << +/D [2925 0 R /XYZ 160.667 634.852 null] +>> endobj +2932 0 obj << +/D [2925 0 R /XYZ 160.667 595.998 null] +>> endobj +2934 0 obj << +/D [2925 0 R /XYZ 160.667 540.214 null] +>> endobj +2924 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F31 829 0 R /F19 460 0 R /F22 474 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2941 0 obj << +/Length 1308 +/Filter /FlateDecode +>> +stream +xÚÅWmoÛ6þî_!`_d4bù*‘Å0`s›!]ƒdµ¿ m?(¶ µ%×–Sûó{ޤßjwéЮE‰:’ç»çž;EÂñ'Á &s›äÖ±Bèd<ïý6ê==—*qÌå*Ýú•£É›T3£û™²:Nû"-ß÷•L«åŠd*@4ëg¯0ŠÂ×$¨n«eÕŒ+ˆ„T"Å£ÿnô²÷bÔÑŒŒ3å\’)æ¬!#>ôÞ¼ãɤǓ—=š³ÉGŒ9X5ïéÂ0)lüžõ†½?·ªx’É›¾õE&B3¥óCg`%ù#„$‡¢7d¯÷¨0é`F^®ü—Þs…ä|xzn÷qʤ…]ÊÿÀ5at1|ç%4(•–Í$ ®!›^áñê‚tÑ’a˜Ï€D+´Kw ^,—Æ«ÿ©nƳõ$Z!Än./Ttóçc=+´‹Óä7"Ȧ¨ùåÈÙLpÁ¬3Ñ(í—]4ätƒº+¼Æ9rP§—wËr¾m—a0$Li‰RÏž}Ê¡mŠˆÜ0Ž¢›|¸SÆøEûcO¡%¼àéÅÜèäy ²$;¾d[ÍðØ(}@ÁîÑæz}C¬¨Ç"—U7m1äéd!Ô;Œ„ëX¡YQ~ÿ[.Š#,i · ©E8lp\ìÞrÃñ/Â~%‹}žÔ ·(4a³ Å`¶Íü@ŒLÛfÕ-×ã®]²c[ÉH¡r¼ 3ÖíŒÍ ç)~d6_qÂîå£çLKó/öNª/5Õ}¬÷5Ù­K”(imzO†¶õ$|5m·áíUDdû%„Qi¦¡ à˜äúñj%QÔÜÉZg¶”³ÇE÷üÕ™úkewD¦¹´nPð‡œZÏCEêK—vgXâlzÚrªõÈþýM.ç‹YM¯' O#“œJ膡”»rÙb”á…€QAÉmú±î¦AÖM«0¸«ï#"þ³ö´Ÿo~·ÙhòÕ˜4µðGWí92©þÒQ‹¤ƒ,äÆÔ¨]¾Ðqq9R‚ç´ôçËWÆÏþ§ø‘e>~œGâçʇú$|íâ³Ñ#¥¤nÄ Ÿ&)ŽMÆÕœ°°Z-úFaµ‘áÚÞÆ"âUAî«_ù@£Èž‘Ë™Arý°u8“ z˜õùÒ›å ÞhЩùbÝElÛ&F€äëA¾ÚK•ï–#¾{hCu[¶³Á´Ä\sWíR†7´­‹YEc$<ž7T~p …™Óeͤù‹Ü}ßäi9[?’Y¢‰•â r×ÛÔü“:}È’vB:øÑ¶»¸n/Æ5¦÷“éæ!ÆÙíµ9gù¶7ô¡!¸‡Ûîcë•B ´é:©ô+-˜-ì†}S$Õ±&pŒ«M×AáçÔÉó`mœ"ËBˆtÓLï7t¸$f)_-8+îØ!âÅ๘N®²¦Æ¯š„Æï¹ÏÕxY/h²n=¨§nèý¬üV7‚ƒŠ#¥b–úéâënMáþñÙ¶ÀšCg¹GàÑK+“š>^ ›7°^‘˜H-xžRSlè‰Ká8ùý¿sðäIÜ‚‡0yÝW9QtŽ’×,¼¤ *߇ÏÒ“w>~÷7NÚµUƒ6'eÑÄqI¿pOª[¿­:#é8ª5 @Bc>Ž1;3É 7t7ÍQb53qÝ2B2íu„´ ðÒo™¿%§7—›ÐýjgŽJendstream +endobj +2940 0 obj << +/Type /Page +/Contents 2941 0 R +/Resources 2939 0 R +/MediaBox [0 0 612 792] +/Parent 2920 0 R +/Annots [ 2946 0 R 2948 0 R 2949 0 R 2951 0 R 2953 0 R 2955 0 R ] +>> endobj +2938 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 909] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 2957 0 R >> +/Font << /R9 2958 0 R >> +>> +/Length 2959 0 R +/Filter /FlateDecode +>> +stream +xœ­Q»nÃ0 Üù›¬Þ²Ö:¦ÖAÒ6‰Ä6ß/eÉŽ]t)Px }GòîhAE~jÝ%¸ÂÓ›Á®(Gj*»„Ï‘ÉÀ@ $Æ”1‰Þ“ÎÓä´3<´Ÿï§}×oâ^"n¹÷ ‚ ûn ƒ£ÇŽdƒ²‘M®ÝÚ¿‰;KÒX‹FyR^⯗~èÒe¸«=ÍöH»P•œYñ&_2•ÈÃé§ W^›úUÐX2ÖX>‡²BÌ\*Ÿ<™á™;W@å§,3?Ì×7]ÕÏÀVùߘ%²Þqx,û1Ä׬"®ÎÍ"Py?ïk×ÀÝ„ ãõ&Èz›ØÂ7¯†£endstream +endobj +2957 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +2958 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +2959 0 obj +262 +endobj +2946 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 416.899 166.463 428.854] +/Subtype /Link +/A << /S /GoTo /D (classShakers_a0) >> +>> endobj +2948 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 374.686 174.211 386.641] +/Subtype /Link +/A << /S /GoTo /D (classShakers_a1) >> +>> endobj +2949 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.28 332.472 218.375 344.428] +/Subtype /Link +/A << /S /GoTo /D (classShakers_a2) >> +>> endobj +2951 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.17 290.259 219.541 302.215] +/Subtype /Link +/A << /S /GoTo /D (classShakers_a3) >> +>> endobj +2953 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 248.046 206.773 260.001] +/Subtype /Link +/A << /S /GoTo /D (classShakers_a4) >> +>> endobj +2955 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.17 205.833 250.011 217.788] +/Subtype /Link +/A << /S /GoTo /D (classShakers_a5) >> +>> endobj +2942 0 obj << +/D [2940 0 R /XYZ 106.869 686.127 null] +>> endobj +2943 0 obj << +/D [2940 0 R /XYZ 106.869 667.729 null] +>> endobj +246 0 obj << +/D [2940 0 R /XYZ 106.869 667.729 null] +>> endobj +2944 0 obj << +/D [2940 0 R /XYZ 106.869 438.005 null] +>> endobj +2945 0 obj << +/D [2940 0 R /XYZ 106.869 438.005 null] +>> endobj +2947 0 obj << +/D [2940 0 R /XYZ 106.869 395.792 null] +>> endobj +2950 0 obj << +/D [2940 0 R /XYZ 106.869 311.366 null] +>> endobj +2952 0 obj << +/D [2940 0 R /XYZ 106.869 269.153 null] +>> endobj +2954 0 obj << +/D [2940 0 R /XYZ 106.869 226.94 null] +>> endobj +2956 0 obj << +/D [2940 0 R /XYZ 106.869 164.182 null] +>> endobj +2939 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F19 460 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im54 2938 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2963 0 obj << +/Length 1592 +/Filter /FlateDecode +>> +stream +xÚ­XIoÛ8¾ûWø(!‘*Rûs‰Ói›n60‡¶ÚVlM´¸’ÜÖ蟟·P²d'm€ X\߯ï-¤˜:ðSÛ¾Oƒ(¶CáMWùäj1yq#ÝilÇ;]ÜÓÂÅú³!¤gZ®ô„k̦0Þ@/òŒY¦ê›®q]ÂW+ÓÆVäØH +Ó•F£š{% æ×ÅëÉËÅDh!,Çvãhj¹vù(÷Éç¯Ît=q¦¯'<÷ÚŽ-âxšO¼Ð·¥ˆt?›Ì';R¶ïSK†$«Pt®Ï‡-Èr; ÿw¦åü_ßQ‡:%-T³Ù§o‹{è•UžàÔšç0Ô€Þ2½eh QU7¸Ýë õï&LÒž[ o¼CZ´odi½ ð<™Ö¼]ÜWÙ¦¬`IÚl[»¦&Z, êXBرï“Zj·ƒ™ªT+d¶Å {ØMºÝš£°{TN†¸ãP¢Ì²´NKªy¨¼çoŽiK“îð“ðxZ¬¹#Œ(‘w­Æïó4Â’² ¹_õ%)—Ö#êý›¬"d›–/|c±E[¹~Ȱ#…h^òld(îæI£,œÎlÞóÑlU£É¡í±Q§l+D‚jÔäîT¥Vê:Ch=ÐW‰Ÿ©¥ªaQ_™€”¹RDzIVcÐ…\×ø‡,±æÎl›æ )u©gMÄFCÌ*º&Sîj½ba"júÔQþЍ&=J(s–´ ØlQrÞÀVÉÝzÕ màzÆ+<¹ÑYÚŽ¡HïèfïßÞ¢'Ìrì?ígÖû*"'Yó–·8¾¬²9ð¿·y +Ñ¥]øÒÔ[¿³HEž0%`A æ-µbìt8“òŒPíyˆm§L¡Õc0"xGŒ”vç@ÁmrY„Mìõ…Ù¶ZÖ„OXENßäIáq¶.÷t5  èÇ P3ñ•ŽÄÐLÛ(±ëÎ÷1gÊû>Ê.#µYÒ£·C€( šsXLø.«D=tÞŠ›0äÁއ-R²K¢&ûBG#ø;0…šYc„ÁL‘AvƒE‰2áñ5ƬùQ%šš¯”;õ˜Š»#˜QKÆlÆyY%CàòÎYɆ©Ê¬uC4F±I˜Æ»}FµÃTõ_HæÅ $Ò.Ûßv=òQd°ˆðG„¼°—•¸Á™iNŒtÚ@^„ê¤ÚX’¿ù#ÏÙYܲ€mà»Ïdwh}¡IræwÝâs¥PÁ![ïl½ç±=³_/𽇩{Ý„YßǸOj˜‚ŒZ!ƱÂ'ް”øT±Ò†¿Á8ZµÖø†Pô í1’Ï=u!£qÞuSÑ! SµÛKe¤[,8¡V¹_&‚ÏIŠ8 €—11øuÆ^8vèÄšÿEsÅ `ÀÁ9'oé­–¶+žCžÓn®gˆ1èΓ6¿p(ÿ@Ûy–M^áy¤U90‡;†ØÕ ”dvCòÆ`ötaÓÖ2=Žþ»‚‡ë—è¤àé± FAÖzHºÁœWœ+ºídY=€\8 +,æ÷Rª0ê6¢Q\…Â@ÑU0 ? zUÒ&ü#›^HåPúiýBAéô_„1N(˜•ýp=S'qrœð.ù©£òÝ~3d0J` C%EÑÖf@øBóÃtwÂr”ððN׊™¶Üoø®ÓüÏœF‰ Ñ‘TÕ´ˆ»xâäÆ 7äXP­üžY4L¸F:a§o½šl”°q•j=>i¦24ÎC gÈQ‚ÇÛ´i²c²øÔ{Óy8+:¥-gQäMtТrÌb§¹géÆÇÛ‰(ÜL-/´¥”ƒDzçÛ|Ž•¾H“ym¿ZfÂx¸l2xÒêbûìý®{uó}¨eôßð\’¼½Æu’Þ4°ãÐë?â-¶` Ï…k=ܬáÓl¢ô€b/Lád?ÿ¡ }“6<•r>¢öì;ÜY"¡·?˜n€éJ =‚Öò´µ`2u1öó£ =‰à1ò´8T̆­å„|¾#Ý’ö$ü2$cÇö¡twÀ.!é¶Òój[ììáƒi ºËd"{æzDË9€•‘—ÿK:6d{†ÿ°Ë">endstream +endobj +2962 0 obj << +/Type /Page +/Contents 2963 0 R +/Resources 2961 0 R +/MediaBox [0 0 612 792] +/Parent 2920 0 R +>> endobj +2964 0 obj << +/D [2962 0 R /XYZ 160.667 686.127 null] +>> endobj +2961 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2967 0 obj << +/Length 997 +/Filter /FlateDecode +>> +stream +xÚÅVKoÛF¾óWð¸DÌÍ>I®o­SNk¤µ•CáøÀP+‹E:%ÃèŸïÌ>D) +ÒC…r93;û}óØOüxÊYIEQ¥EehÉUÚl’ŸÉÛk!SCM!ÓÅÊY.–DQ­²\VŠÜ¯3Nê/™ÄŽ[”Ir¢.ËA¾…UÞ¡À®ìhûÆ‚ˆ É :{\¼O~Y$<ÀÈ•Ƥ¹¤¦ÒâkòðÈÒeÂÒ÷ êªôÖŒr°Ú$ªÔTð*|wÉ}òçÁKsQ:è."圭OÉJàà ’ En-¢Ý «Ïˆ¸Á«,ÈufÙõÍÔ‚ùУP“wƒ³ivº}ßFí¡ˆ~Í\(Ê´9Ä”âfA9ÂÐŒìÀТp™åJkwŒ5FöòÒ6LöCïõŸ˜f(»õ_߆–We…>œú¯Á•TÉò»¡ šÉõïâ¢ý)3š,|¤ž-• ÓÁ¼í±Z¦q·±ýt,Žae°½@=ð%•E™æ1© º=£ ZCÁI´úÿisZU‘v½yÆ„uX'ÓžK{N^U´2*ì€ó`bf.€œ &ûvœvu÷èíªÙ,çeI™*CTÎüÞ•ê8AKIj|)(X¨ðÉú—vZãJiDOØûLT±äÝfö[Èb†ýƒ-ߣItÝ/ãAýŒwE$N]Z‚¤…ðùü¸÷Šp°ï.\·½¿X°^`%ã!ƒ')¦‰;žÐÁo'ÔÔø]’!ƒ‡‡ +!I3¸M3%t=ÙØ}L‘ið.Vclô¯»¹åáÀÅ«·Ùgº 5¦ug·uÞ£•·º½yws =1´´÷ëT\À²GÀç‚p჊ððíd¶³ÎqR%y®©¶ÙuõøãŒ&C9\wîÜö$yöx“ ùu6žÀÍi¶6s®¾—ðE,°%ºp¹kN\Oíªm…&Ç´nô½MW»·^÷‚‘«ƒîÉöv¬§˜¸åìjŒˆQa¸3ºn@~/mÿäÍ?1®{tqéÛ †æÜŽšJwŽÐTú–—gýˆ º6ÎÒãús,p@­Ï®µRRÉ`RjŽ#PýÇYé§î|EúûM¥5¥:¾ß\~”„Yô +cNã…à@¶XݯEơƱ5>!F¿µ“Wµ½ßyõæ_|F¯^ùG& ?ׯ ¹£þ}…ÎÀåÿY÷±%áã×:FêàþÈ 65ž°G׃Ûfýè†Q­%мt´šp¥ê™q.¨†ñÿH +^Äê`w¸z•ó…!D3/ž¥ÿn3s÷<.yendstream +endobj +2966 0 obj << +/Type /Page +/Contents 2967 0 R +/Resources 2965 0 R +/MediaBox [0 0 612 792] +/Parent 2920 0 R +/Annots [ 2971 0 R 2972 0 R ] +>> endobj +2971 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [200.131 547.556 240.397 558.404] +/Subtype /Link +/A << /S /GoTo /D (classInstrmnt_a2) >> +>> endobj +2972 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 506.275 174.765 515.186] +/Subtype /Link +/A << /S /GoTo /D (Shakers_8h-source) >> +>> endobj +2968 0 obj << +/D [2966 0 R /XYZ 106.869 686.127 null] +>> endobj +2969 0 obj << +/D [2966 0 R /XYZ 106.869 667.729 null] +>> endobj +2960 0 obj << +/D [2966 0 R /XYZ 106.869 651.332 null] +>> endobj +2970 0 obj << +/D [2966 0 R /XYZ 106.869 651.332 null] +>> endobj +2965 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F35 1011 0 R /F29 818 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +2977 0 obj << +/Length 1249 +/Filter /FlateDecode +>> +stream +xÚÅWmoÛ6þî_!t_h´bø.±lé2´]®ö—¡íE¦!¶äXr‚ ~w$•Ø“ƒfi“!ˆÌ×ã=wÏ:Ô~îÖþ·.b88Ê·Í„g*ë%O¦h)ÉõXä¤ÀÏ~üî®8EÙî nªO“ŠT5 µ~v ­ÍÌë;Îvç žQ#´?駪.›YÔ‡ó»u*£,SêÏC9ÍT§;§ç{¤pš+—ý2@ZCÑQ%åW½­Ï‚‡ŠXª®@pží ‡‹³u± Vš7ëИàªòúõ¿I•¥R€g¹Tåž«É%€åV +¿h»íYÔïo—Z'oàKrG™ôV²’€•ïp†S [¶8óasº@%ËÀ’c×#뙵ÑxêÎ:\å$CP‘K¿ÿ3ãÙÀŠ¡Ñ»¢œ•gI°Øg¦üó°Uò$‡-žÌ@kžIDAsÎÀ t’&ÃkIšºíÖ›²kÖt¨f*@†Ä pû0=¯PÏu·)C<AÈ¢$É’|ö‘ˆS¡!QˆYìŒür,ˆ㱩f¨å‘³tM¯§kcÃëZùŒˆïÖ53ÒB¾tísÆ¡w•×8B±ˆÆ'×!Ÿ¯ÝåÆÕå͸㿱h +gè™Séù›9[€ÇìÞŒ3yˆOuùðæ9úó5þÕ›vÌÑ€>Å\bºD…ï! GKå|'@&®‹Æ÷ayßÕqh…á¾ÅïÒSÚà’£ Q„Ÿ¸®«ÊÍ¢ˆSs¿Í{ŒnŠ›æÅ^øëäæ$°ç?ð0Z ÕƒÒγïÊ-úûy@xktÍu°Å,,~ÑÔ/B« ãgáJ{r°S>">§?“m´ÐvO?÷eÝtîdË·Ç05ˆD¬9´AÌÜPÆÍ÷F¢}d$ÆœEà« ñ^m9ãÔHÓ_ÏÏ™0 +¨**Ÿg}qrßí •ü>ÅðGïê\WÝy$ɹ ³ê*–¾ƒ´Ðׯ}v2Š:ò®5hjºçeZ`÷åü”³ŒJ<r¾äÿìLCúzò›.´ðª +q׃Íê ‚q||4tLA3µ«[ÏúOôb3¿AO/ý¥ï¯¨§òêþô`@2Zÿ›ÏàzÄ¡‹áµ›Å˜…ŠÑbAA…úî7 ±øRÕûm=¯C-<‰¶TžbÈ*©ÉäÞ©CØCU‹Ãƒ3C°Â×ø…òô}Õ…©*²Û‡/±ó2tNQÐMhKCÜë¯8ò‘Æ-(D_„ná¥ÍBçìk¿C‚ =B£žeâ¯Pnão4÷ +Í /yOy`Ø%óØÊøæÓw°S¯c…nwE䙎ë¶Ìá€÷²¤ t+ãYú«` ¢wá?sÉîendstream +endobj +2976 0 obj << +/Type /Page +/Contents 2977 0 R +/Resources 2975 0 R +/MediaBox [0 0 612 792] +/Parent 2920 0 R +/Annots [ 2982 0 R 2984 0 R 2986 0 R 2988 0 R 2990 0 R 2992 0 R 2994 0 R 2996 0 R 2998 0 R ] +>> endobj +2974 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 952] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 2999 0 R >> +/Font << /R9 3000 0 R >> +>> +/Length 3001 0 R +/Filter /FlateDecode +>> +stream +xœRËNÃ0¼û+|‹×]ûŠÄciþ ¢´T”Vâ÷Y7Nœ¨-”ƒ³ã}ÌìØj“¿r®:µW÷Ï^¿Ô^ãéj8V~hä2iD6’nÖª/C#˜ÀV±n:u³ÜvíËmó¦½Ô­J¬‹¨¿r÷RZæFÎWQ‚Nù„˜ä¿ÿ1ŸÏvÌ> +endobj +3000 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +3001 0 obj +348 +endobj +2982 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 425.671 216.303 437.626] +/Subtype /Link +/A << /S /GoTo /D (classSimple_a0) >> +>> endobj +2984 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [217.383 386.999 256.458 398.954] +/Subtype /Link +/A << /S /GoTo /D (classSimple_a1) >> +>> endobj +2986 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 348.327 229.061 360.283] +/Subtype /Link +/A << /S /GoTo /D (classSimple_a2) >> +>> endobj +2988 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [238.968 309.656 297.637 321.611] +/Subtype /Link +/A << /S /GoTo /D (classSimple_a3) >> +>> endobj +2990 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 270.984 236.505 282.939] +/Subtype /Link +/A << /S /GoTo /D (classSimple_a4) >> +>> endobj +2992 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 232.312 236.782 244.267] +/Subtype /Link +/A << /S /GoTo /D (classSimple_a5) >> +>> endobj +2994 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [238.968 193.64 273.063 205.595] +/Subtype /Link +/A << /S /GoTo /D (classSimple_a6) >> +>> endobj +2996 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [238.968 154.968 273.34 166.923] +/Subtype /Link +/A << /S /GoTo /D (classSimple_a7) >> +>> endobj +2998 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [274.934 116.296 292.977 128.252] +/Subtype /Link +/A << /S /GoTo /D (classSimple_a8) >> +>> endobj +2978 0 obj << +/D [2976 0 R /XYZ 160.667 686.127 null] +>> endobj +2979 0 obj << +/D [2976 0 R /XYZ 160.667 667.729 null] +>> endobj +250 0 obj << +/D [2976 0 R /XYZ 160.667 667.729 null] +>> endobj +2980 0 obj << +/D [2976 0 R /XYZ 160.667 445.007 null] +>> endobj +2981 0 obj << +/D [2976 0 R /XYZ 160.667 445.007 null] +>> endobj +2983 0 obj << +/D [2976 0 R /XYZ 160.667 406.335 null] +>> endobj +2985 0 obj << +/D [2976 0 R /XYZ 160.667 367.663 null] +>> endobj +2987 0 obj << +/D [2976 0 R /XYZ 160.667 328.992 null] +>> endobj +2989 0 obj << +/D [2976 0 R /XYZ 160.667 290.32 null] +>> endobj +2991 0 obj << +/D [2976 0 R /XYZ 160.667 251.648 null] +>> endobj +2993 0 obj << +/D [2976 0 R /XYZ 160.667 212.976 null] +>> endobj +2995 0 obj << +/D [2976 0 R /XYZ 160.667 174.304 null] +>> endobj +2997 0 obj << +/D [2976 0 R /XYZ 160.667 135.632 null] +>> endobj +2975 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im55 2974 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3004 0 obj << +/Length 1258 +/Filter /FlateDecode +>> +stream +xÚ­VKoÛF¾ëWðH"ázŸ|è!µcI›ª–.EšMÑQŠtHʆÑ?ßy,)9`-ˆû˜™ùf¾ÙU„Ÿ +”L…N² Ér‘*”»Å/ëÅÙ¥6A.òÄë[’\o¾†V8Å&³áªÞÝ7Q¬Â +ç&‹eä47ö‘3a×pFK†Õî¼ÜpJ—5äËÒpÛ7O>ÍùÁ•H‘¤ÆGD™A´sB;´_zoŒHÓÜkíæ„ÑTdi6EäR„¤zi JLåå0ûR@@’½9H¥a)’T¡¯T­¥Dî—*P'³AlÉ*õœa 5h(Hi^À#,uƒ BXR^†²¯ïq³îÔë\#¤ËÈüjý™«ð+ À?*v>¢¸Á¾Qµ]=øÚ®[n °‹)Þï*®rŠf‰vd|½­±Õ8–MA:Ó”èÃd ¢T´ñ~ÓAÒ€ò÷Ì” ¯žr9äì¤×G‡©ñÁ +;,ã¾<¡€ñÕßq»ð‡ôÕ๠kÜ–¿²ÅȬ%S¼>}/´¨˜]î&weq:μðÄÇ’óþ~¸XÁî5OHº=DÛéduìŽ:Q?Ñ´çr»)os?ªži #eôÎëTífxžNë;2@]¢.(œo §©ó}AuÈkJ´gûá§—-Y9a¬:tÂåîm-ù²>ÆB_"½»Æ½¤=Ô#FÚyDæ>q-°ñXAto¼¾0 Tx¶ÄºK> endobj +3007 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.17 630.369 250.011 642.324] +/Subtype /Link +/A << /S /GoTo /D (classSimple_a9) >> +>> endobj +3009 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [205.25 517.824 235.194 528.672] +/Subtype /Link +/A << /S /GoTo /D (classADSR) >> +>> endobj +3010 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 476.542 157.413 485.453] +/Subtype /Link +/A << /S /GoTo /D (classFilter) >> +>> endobj +3011 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 461.1 156.749 473.055] +/Subtype /Link +/A << /S /GoTo /D (classNoise) >> +>> endobj +3012 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 448.702 172.606 459.55] +/Subtype /Link +/A << /S /GoTo /D (classEnvelope) >> +>> endobj +3013 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 366.937 170.807 377.785] +/Subtype /Link +/A << /S /GoTo /D (Simple_8h-source) >> +>> endobj +3005 0 obj << +/D [3003 0 R /XYZ 106.869 686.127 null] +>> endobj +3006 0 obj << +/D [3003 0 R /XYZ 106.869 649.796 null] +>> endobj +3008 0 obj << +/D [3003 0 R /XYZ 106.869 594.012 null] +>> endobj +3002 0 obj << +/Font << /F23 479 0 R /F31 829 0 R /F14 825 0 R /F8 483 0 R /F19 460 0 R /F22 474 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3019 0 obj << +/Length 1326 +/Filter /FlateDecode +>> +stream +xÚÍXmoÛ6þî_!`_d4bøN©lí2´]Ð,ö—¡íU–!²äè%AÐ?¿;’²åØI6li†y$w÷eáèÅ2|S¦m‹M¾­áËÂl±°‡+läÕTð°K»{5ˆ«é—ùûɯó óFD”ˆ$"A’X¡ דO_h°˜ÐàýÄÝB›–$Áj""œÅ¾_Nf“?6ª˜`DQDÜXû7ñ€I"¤{$ X£4ØÅ¸ gEÝ´Œ·°c=ƒÞy¾ÌçM–£ùÇ'ñ8B¸VélŽ"l‹Î*Ãf×è»pÝ•‹DÄãpÒ»¥Ê\4YHÜ.<ÙÙ†¢¹´ûüPTYÙ/¼5ŒmçIC¨‘ÞÇ÷õ€©2öÃ34’\î+šh&ü¬Ÿö\ŽF¤PÞ"eg½«.oh€fôÙ²!Gï¤õ¶H/štå¼]Ö>@37¿y ß×÷éÁdBL™D:Pƒk€ŸÆ‰àvÒ¸mù3¬õ‚ãw+¥ƒ·50%Ø’%Úh–Š0fvØÂH¢Ô˜-gýWäD‘9JœæÝ%ò†‹Ö‡OnãÃM/a†ÙõŸ)3{qt P¿áÌgªèéŸ÷ca(1z«÷É\áRÉÁLñ#ŸãýŒ?ùýã8úóÒ|î,k”ÜâºíNp´É¯{H;0š9 bÐgó-’pH¢â¨‚EœÅìÒ1PD‰°® Kú¬«›#”ˆÄUQ]¸g¶Ëú6o;×¶éÓÍTq- ·v]¦wh^aËMä2äË'å8 Æ0z”nc#. Ú~¥6[ #E)´ÝC’Á0ö œ‡££‰äÊņ²Ñq>úØü;ãÚ "X‹¡êäOÛ õ“í€xîb‰,ò¾saN+CVºì‡‰vtK×+ªÎŒ*õ’ŽŠüyÜlsd«°ÕÉîzÝ­M¥ºÛ†Dû ¨€Ê £À`Ê¿.Á¬ÆY­Ç²K´ÙeÖ,÷‰SØl[¡û•­=Jø»Ê»¼i}ÎÔr>·Ü¼®Èúrõ`^=ˆk°¹ì-\Ü„WK0H–ÀÕÅß«tµ¶GF×oÎù°R1¡R’ëÌfNŸ]ùbxé«^%îµÛÊãx–ÁØöî^vQŠ—±u¹µ…}ëËëH{Ö7Éj”Í»àÚ‘çÓ°îòÕc°*ƒvªy©tçV“#gë)ˆ÷Le” ×$úæ\$ˆºwÍààêvÒ¾ª;O’C|®¹2ºÇ˜á1°=m-#‡"Å䨙?/§`™p¡±´:WĨ!B˜—­öÞð$jÚÀqlFcÖÕë¿Ø¶ÜmŒ„“`œÚõJûãa«—îë¬y†?©=Šþ+t jdür¹ßž‡"©;÷ºÚÖá¾óñ­+ÊûüÈCaïNdŸ¤xTØ(ú¯Ì‚ðWîÁ³yI¸˜&ðŒdŽé¯¾pvz…éoߪE‹b £¶0VÛGíxSÛ¡Â Ûo^aç•ë|EEw®}6:ÌñvÖxÉ9ñKP)¨¾rÝÔB ×ù Û©[!@äpH¼YŠêoPom×äG΀'”(Dƒ¸86fþ¬¶nG“øß Íô@YåçÂÃ8‘V—€èÚÿ”$ qJ±Áÿt endstream +endobj +3018 0 obj << +/Type /Page +/Contents 3019 0 R +/Resources 3017 0 R +/MediaBox [0 0 612 792] +/Parent 3014 0 R +/Annots [ 3024 0 R 3026 0 R 3028 0 R 3030 0 R 3032 0 R 3034 0 R 3036 0 R 3038 0 R ] +>> endobj +3016 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 952] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 3039 0 R >> +/Font << /R9 3040 0 R >> +>> +/Length 3041 0 R +/Filter /FlateDecode +>> +stream +xœRËNÃ0¼û+|‹×]ûŠÄci~U*-4•ÚFâ÷Y7Nœ¨-”ƒ³ã}ÌìØj“¿r®ZuP¯^¿ŸÔAãùj8V­~jä2iD6’nÖª/CÞ‚ ¬‰€ˆX7­º[n»·ã}󡞽̭J¬‹¨¿róRYÆFÎWQ‚Vù„˜ä7þc2>Ÿ»1óÉùå'ðN¨d.,ý–2þOjó6iïÓYÍËþÔÛ}7 +º)ÁE“ ؉©rç©iBþ©Uå½#ý +#aôQȘQG¥öuŸ¿ëaY˜;Ñ3 UO +Ö8[Ù_"µJL²d³Z!@Èôzʺ¯<Œ/¡”2 —~Ëkôg9%¬+Í%3H2H±ìL¬Ï’$ëúê 2ï²~¸1wp³„t~Œü#Õ!§„u[#ÕjÄ@•e±€¦˜÷¢ õ NÊendstream +endobj +3039 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +3040 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +3041 0 obj +349 +endobj +3024 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 422.528 208.029 434.483] +/Subtype /Link +/A << /S /GoTo /D (classSitar_a0) >> +>> endobj +3026 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 382.561 215.778 394.516] +/Subtype /Link +/A << /S /GoTo /D (classSitar_a1) >> +>> endobj +3028 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 342.593 229.061 354.548] +/Subtype /Link +/A << /S /GoTo /D (classSitar_a2) >> +>> endobj +3030 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 302.626 265.231 314.581] +/Subtype /Link +/A << /S /GoTo /D (classSitar_a3) >> +>> endobj +3032 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 262.658 231.801 274.613] +/Subtype /Link +/A << /S /GoTo /D (classSitar_a4) >> +>> endobj +3034 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 222.691 240.657 234.646] +/Subtype /Link +/A << /S /GoTo /D (classSitar_a5) >> +>> endobj +3036 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 182.723 240.933 194.678] +/Subtype /Link +/A << /S /GoTo /D (classSitar_a6) >> +>> endobj +3038 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 142.756 260.571 154.711] +/Subtype /Link +/A << /S /GoTo /D (classSitar_a7) >> +>> endobj +3020 0 obj << +/D [3018 0 R /XYZ 160.667 686.127 null] +>> endobj +3021 0 obj << +/D [3018 0 R /XYZ 160.667 667.729 null] +>> endobj +254 0 obj << +/D [3018 0 R /XYZ 160.667 667.729 null] +>> endobj +3022 0 obj << +/D [3018 0 R /XYZ 160.667 442.512 null] +>> endobj +3023 0 obj << +/D [3018 0 R /XYZ 160.667 442.512 null] +>> endobj +3025 0 obj << +/D [3018 0 R /XYZ 160.667 402.545 null] +>> endobj +3027 0 obj << +/D [3018 0 R /XYZ 160.667 362.577 null] +>> endobj +3029 0 obj << +/D [3018 0 R /XYZ 160.667 322.61 null] +>> endobj +3031 0 obj << +/D [3018 0 R /XYZ 160.667 282.642 null] +>> endobj +3033 0 obj << +/D [3018 0 R /XYZ 160.667 242.675 null] +>> endobj +3035 0 obj << +/D [3018 0 R /XYZ 160.667 202.707 null] +>> endobj +3037 0 obj << +/D [3018 0 R /XYZ 160.667 162.74 null] +>> endobj +3017 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im56 3016 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3044 0 obj << +/Length 980 +/Filter /FlateDecode +>> +stream +xÚ¥VKsœ8¾ó+8ŠŠ‘%xä¸Î&UñÅ1ä°•ÍAÃ୘Ǖ?ŸnµÀ$ö-5UHêwÝ- üd(EÎUV„YQò\¦as +þªƒË÷* K^fIXß9Ézÿ…¥\gQœ)«ìlFÜ&ìª3ÓDÛÛö®Û¾iá¨2]2©Êèký1ø»¤÷ ž”e'¼,4zû?øòU„û@„äá#ì— u +Ò\s% î‚*ø´ša¬rã´ +¥ä¥Ö¿FIKÆeK©Rö"”l’±|Û=DœköÉíÔŒöŒL;À§Ç .ß[8b•r¡Kg¾ª¯A9IØä1Áí<Útt<¡Ù!ŠUÁöè­CrÊBâBhVæ¾Ï5„$ÙÙãâŒ+„xz’éŠXgâô½Á%ŠÑš`òxÄíjÐÑù1øù¶¦}@ïvß’ÄZ–œíÛ$¢¹G9ŒÌ9š½Ç‡©%—g§4¸<&»CŸHÄ‘ÐËðÐì¿¶¡NsÌy q6󦌓—˜ÛàMs@ÛU÷%«\û;X†Ñó?÷–²¡ IæRÒR³"˜XC‰!¶ÆÓM﵇ùŠ<Š‹B²åŽKµGÚ¤…`íw;Í‚ñkך…ä¼>b— ¯dr6óbq“1œ.|ñiì¡_Äp"‚ gå·¤WÅkÎÖü2oi!ÍмLDîÈ.´#ÍÆäèÑèåบ1qèÍ×Fs) +Þê(í)·Ô¹nE³3Ü/N"ŸXÂ>˜Î VËëTnZ±Vkï+*>k¸ 5íbJK ¡^ŸfGÁ4ëU3³ÅÑES„í‚ VÌðZ!L¨ÈÆómߎÏÅÝ?›‡‰ s ÃùèºÁ5‹]Fÿ_!S,†3ñ–î[xŠÖ Wjž¤ ܺšë’j*ù‹‹7Êßú•¿ùñ÷ÒZr¥Š?|~è!ó]¾>Ai˜ñ2O·/«BšhV=õ,ПÔîx¯*u$E†åÞàîØk; ÚÚi^½yC›x"æM”dÐ|¶§ÜrZ±ñ€‡‡Gh<*>¸æòÝGfàOã>ÄÆ ‡ohzpjí…k,U +®ui+™»´*´Úšq¬¸ùLfK¡´—Û #O-„Å^ô¥(«PKÕ~Wލendstream +endobj +3043 0 obj << +/Type /Page +/Contents 3044 0 R +/Resources 3042 0 R +/MediaBox [0 0 612 792] +/Parent 3014 0 R +/Annots [ 3047 0 R ] +>> endobj +3047 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 500.754 162.533 509.665] +/Subtype /Link +/A << /S /GoTo /D (Sitar_8h-source) >> +>> endobj +3045 0 obj << +/D [3043 0 R /XYZ 106.869 686.127 null] +>> endobj +3046 0 obj << +/D [3043 0 R /XYZ 106.869 667.729 null] +>> endobj +3042 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3052 0 obj << +/Length 1306 +/Filter /FlateDecode +>> +stream +xÚÅWÛnÛ8}÷WØ ­^E±X,Ð&›Eš¦ÍÆzY´}PdÙ*Ë­%'5öçw†¤å‹Zô–naØæu8sæÌpÈ +pC”2A’¢™ ŠÅèY6:9ç"0Ä$"Ȧva6y2A£XpÉD8Î"^B/•ái·-6Ex¶„QÌÂ5¬X`£l"ÁÃ.ï*ì-a¸‰ÞfÏGf#效)& bALªP‡£×oi0ÑàùÈÍÝC›fL°I­g©ï×£ñèï^Œ(š1×VÿÞ 0I„Lö-’´Qôb\†ãË‹—`€Vá)Œ×9üXË`জ–+gMQ¢ú'çé>Bxœ¢ÂJgˆŒ”$'SÈð=ôòU[537[8ÜXHœõ’©HSÖ/`²Þr÷e¾(? ~ ‘•JéÑwqýê®'|íRÀ’Oöѱ¨û¤Ëßõˆçnh›jÐG˜W ôL×£Ý:+*ê¸â[`Ž¥Ð‚Ü} ijfìY™ÉÕ,˜ÿ1S:'–RÞþ‡¢C½Äô2;È£Ö¦¡ªýšNÒ>U~‘&ù¸C·TöÜÏP$$IùA€>xn,¨¤ÓnÙ ðŠ[VÌ}c††T°þÎß–Îó>{ìD8ÿwëUÓ©ß¾Àvè¸ä‹²7ر–?ÅÍ6‚l&¸*í=†yä›’šãÏõ“4lÊÝçÍCñÕÔµóíĆß\ùdVï”[^Z•Ü®f²ŸðY¯ãï¶>CZã¢Þ@DãÀÝ»¾àYÙeHe8J‹ðWW@Ø$Ô¸ØCº} Ú7½Þ`´­Åéäj7œqÐ4ÝñUñÿ!p:·eESÖÎà2Ÿ?¨ùr$oËÊÚíµñ›oo‡õƒEÞÕ?Ç•’äPlB½Ì$Úè/WÌR›ùd½ìgúš(Öýç/^!ŸFPìg½sÎʺ˿Ï/qB(”ï?ƒ–öú±øw>3tÕbÎwy½öM›Dv'µ»ªgÙLZkÎÃ1{èÂØÏ&bÿ%|¶q5\v“Ë¡/eXü*?ÞZÝìÖ{zßy§`É4Ô€ðúŠ…ˆ×?ú‚„p°ô¯ ÅbØ í‚ÇQ8ÞÀ+W¡,¼‚¤@°M,´ +!5\V›²¯áƵOaç‘ëÜ¢ k_G" K —¹!~‹E%\¾sÝÜf¢‰ëüe‘Û!@£:$^Ï"Gñw(wé²×c„3à†¥€¯€‹¶¶þ9©vfǘw$>דÝkGùu{ð0xYY¸”ñ,õ/§|ëÂÿ ã> endobj +3049 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 784] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 3071 0 R >> +/Font << /R9 3072 0 R >> +>> +/Length 3073 0 R +/Filter /FlateDecode +>> +stream +xœ•Ž»nB1 †w?Å?7¶“œdEb@•(yUiÏÀEêë×ôpH]P+ÿÅŸ Âå]禧½¾G|œèù³Æ±é1knVHT.%¢íh¨ Råd ÅØb5´ž^Öo‹åbÒö4oXyð“D*‡?té¤ÔŠp·´~()r®ÉÉÙd ž¿n¼€Øeoé? áXõC4ÝyýðµÔ)‹àÛ“ÂÕ÷ÞüQp?w…³ jÉŽðˆš +[½Ww즴¢_mNXendstream +endobj +3071 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +3072 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +3073 0 obj +198 +endobj +3056 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 453.522 214.92 465.477] +/Subtype /Link +/A << /S /GoTo /D (classSKINI_a0) >> +>> endobj +3058 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 414.61 214.92 426.565] +/Subtype /Link +/A << /S /GoTo /D (classSKINI_a1) >> +>> endobj +3060 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 375.698 222.668 387.653] +/Subtype /Link +/A << /S /GoTo /D (classSKINI_a2) >> +>> endobj +3061 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 336.786 250.758 348.742] +/Subtype /Link +/A << /S /GoTo /D (classSKINI_a3) >> +>> endobj +3062 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 297.875 263.46 309.83] +/Subtype /Link +/A << /S /GoTo /D (classSKINI_a4) >> +>> endobj +3064 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 258.963 244.254 270.918] +/Subtype /Link +/A << /S /GoTo /D (classSKINI_a5) >> +>> endobj +3066 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 220.051 257.814 232.006] +/Subtype /Link +/A << /S /GoTo /D (classSKINI_a6) >> +>> endobj +3068 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 181.14 281.465 193.095] +/Subtype /Link +/A << /S /GoTo /D (classSKINI_a7) >> +>> endobj +3070 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 142.228 297.516 154.183] +/Subtype /Link +/A << /S /GoTo /D (classSKINI_a8) >> +>> endobj +3053 0 obj << +/D [3051 0 R /XYZ 160.667 686.127 null] +>> endobj +1993 0 obj << +/D [3051 0 R /XYZ 160.667 667.729 null] +>> endobj +258 0 obj << +/D [3051 0 R /XYZ 160.667 667.729 null] +>> endobj +3054 0 obj << +/D [3051 0 R /XYZ 160.667 472.977 null] +>> endobj +3055 0 obj << +/D [3051 0 R /XYZ 160.667 472.977 null] +>> endobj +3057 0 obj << +/D [3051 0 R /XYZ 160.667 434.066 null] +>> endobj +3059 0 obj << +/D [3051 0 R /XYZ 160.667 395.154 null] +>> endobj +3063 0 obj << +/D [3051 0 R /XYZ 160.667 278.419 null] +>> endobj +3065 0 obj << +/D [3051 0 R /XYZ 160.667 239.507 null] +>> endobj +3067 0 obj << +/D [3051 0 R /XYZ 160.667 200.595 null] +>> endobj +3069 0 obj << +/D [3051 0 R /XYZ 160.667 161.684 null] +>> endobj +3050 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im57 3049 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3078 0 obj << +/Length 1692 +/Filter /FlateDecode +>> +stream +xÚÍX[“Ó6~ϯðö@„%K¾ðV–Â,Ë­›¼t€ÇqO;µ–þùž‹äd7KYh; Y::—ï\mé…ðOz2L„ŠS/N3‘HíÛÉÓùäñsy™ÈâÈ›¯ˆr¾|ïka’`¥ÚŸ]œ¿9ÇeäŸÕyßóò²\Sé—]š¢„]™¤Æ—‘ >Î_N~O¤; E”eÞ4YjP蟓÷Co9 ½—JÌQÄ¢Ùž7ø30B·ðj›þ$(‘褫ÖB“×{»‡V,\ÜÖe‡:ÿt¼ÆÈ’>‚–1hdpäpÓÿ=n_.Þ%0›oCÑÜEÆ€áÀÛäÝ)g­Eecá £–©ˆBÇ|qIXmó +]´,»Ù€ØTG#ø4·£T$±KîäŸðïÆm¤(F¬@Úš×ùjpÛ;Dáíz8þcøº¤êÇÁ9_ïè lò kiG9¶¾U¾‚éýbz‹Ë“.<‡k|ØÙ›Hžs•&œ¡ÿQYþ°½ÚäC?ßTý-H]XÞ(,Ã1ÍwvAå Nhö@h©4CÛ[ïâ åUkyd´®¨d”Í—D5ù{½}³7ÒoöÆYËájëšRÖ5xĆ8‘`¡ÝŠÊ)º¥û™~)°d´Í@…½åÊ ?Ú¶·áÀ˜æÆže¸íÍJ[òšáßœÔy™¡JÇϮǀ¸™.ñ€f~!ðè®  +–0³ánsõß5yP0I"¡÷I¡26pqº+W˜½¼siC×gì§ÖÊ?®c/ò£;ï€K:]Áofp•üM3bi€\œe†WSÖ]…¡'ߊ´:çx…S*ý¾ÏEöÓuØø¹K{Rð{ôMfŽÃˆŽ x´ à†Ê^jÃ~§¸¢d0>;ª†ož=|È‹2¸æÃwôWúHÖÙKÁ¿gôM€pÖÜ/l“…‡„¥›ÙH¨ªXä(á²néôt¼ÊBa Ì¢¿6üÍÁâ©&4øQ.–±›j¥;BF*¡‰Bˆd/Ê2)J¶P9ßý Uã`endstream +endobj +3077 0 obj << +/Type /Page +/Contents 3078 0 R +/Resources 3076 0 R +/MediaBox [0 0 612 792] +/Parent 3014 0 R +/Annots [ 3081 0 R 3083 0 R 3085 0 R 3087 0 R 3089 0 R 3091 0 R 3093 0 R 3095 0 R ] +>> endobj +3081 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 654.279 250.11 666.234] +/Subtype /Link +/A << /S /GoTo /D (classSKINI_a9) >> +>> endobj +3083 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 610.477 220.482 622.432] +/Subtype /Link +/A << /S /GoTo /D (classSKINI_a10) >> +>> endobj +3085 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 566.675 226.875 578.63] +/Subtype /Link +/A << /S /GoTo /D (classSKINI_a11) >> +>> endobj +3087 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.119 522.873 273.201 534.828] +/Subtype /Link +/A << /S /GoTo /D (classSKINI_a12) >> +>> endobj +3089 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.119 479.07 284.216 491.026] +/Subtype /Link +/A << /S /GoTo /D (classSKINI_a13) >> +>> endobj +3091 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.119 435.268 253.47 447.223] +/Subtype /Link +/A << /S /GoTo /D (classSKINI_a14) >> +>> endobj +3093 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.119 391.466 275.111 403.421] +/Subtype /Link +/A << /S /GoTo /D (classSKINI_a15) >> +>> endobj +3095 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [125.643 147.594 374.461 170.951] +/Subtype /Link +/A << /S /GoTo /D (skini) >> +>> endobj +3079 0 obj << +/D [3077 0 R /XYZ 106.869 686.127 null] +>> endobj +3080 0 obj << +/D [3077 0 R /XYZ 106.869 667.729 null] +>> endobj +3082 0 obj << +/D [3077 0 R /XYZ 106.869 632.378 null] +>> endobj +3084 0 obj << +/D [3077 0 R /XYZ 106.869 588.576 null] +>> endobj +3086 0 obj << +/D [3077 0 R /XYZ 106.869 544.774 null] +>> endobj +3088 0 obj << +/D [3077 0 R /XYZ 106.869 500.971 null] +>> endobj +3090 0 obj << +/D [3077 0 R /XYZ 106.869 457.169 null] +>> endobj +3092 0 obj << +/D [3077 0 R /XYZ 106.869 413.367 null] +>> endobj +3094 0 obj << +/D [3077 0 R /XYZ 106.869 347.31 null] +>> endobj +3076 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F31 829 0 R /F22 474 0 R /F34 950 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3099 0 obj << +/Length 948 +/Filter /FlateDecode +>> +stream +xÚ¥VMoÛF½óWð¸DÂí~’ÜÜòщ‘"­t‹s`¤µD„"вãöÏwfwHÊ–Q( ˆ»ËÙ™7og,S2UŽ[ëÒ¢r¼”&Ý’7ëä—÷J§Ž»B§ë›`¸Þ~aR«,×ÊHÍVëL²+ØU†½mëã—š½ëá)Ù&Ë%;ž˴bc=6¸ëá¸Ë¾®?&¿®I rÁµ«Ò\sWYÄð#ùòU¤ÛD¤“øîÖ‚KçÒCbJË•¬hß&«äÙ•Ô’[Q¤¹*þ9!•Jɵçhl ?R“RöÉ#ÊBþ’ñ<Ê‚½Ïœa§ni@Ú9áÓÃMHV²v5þ4sºO)Í•áˆ0lÉñ²âaXÁÚÀU·w‘åÕÕ‡ß?¼ÂÓW·õçG¿Þ7Äûµ°bƒ÷xˆñ šs<é,¯dAi_ ¡£¶‹MÅ+!É¢^æÙí.±ë‚[$Ÿ\YMªÅr“\‚ï˜d,_gªbãèƒ&n3$)×Z³)Ô&ÕÃÑÇݸ„âz×Üá]ßÅ Gt0"Màçe´¦ +Œ¨¼¡ ïwãÌÛ!ƒ—zçÉ<Üf9Æá˜–H–¼P–Ð_ÚÅ£»Ì¬nOäÞÿÀðuû8¹¿üÐÇ“¦Û"²M=Fñ´î¦·€\6[[fñ¨¾ŸyTfÀKu„ýžÖÝT¡ŸTúÃ’T´À°Í Q×B¸×’EC„µ}½õÖD ÀŒëÁ§!|wT|ªÔ'€SEË­|çwÐÁ¢ãÍ©ð‹´&pCÔ!¼8 sÒTÌ{\ï—nÇýLÀ£l}G·¢g¹¯7 Ý/^¡w=Bmêõä ú WhRS¹ÐŽ{"èM†‰¬&#UšØÇ[”óñL«÷ &“ïüZÞ.®†þpYû£m{äï~þ.ÏÒ!>Ó¶,×FƒÌ,·ÎPÑå…ã"v¤N&7ß_L™y6X+¹RÕÿ4š+Þh®Ì“Ƥw¥94¡F[¶z€a±àR¬«z`œŠëïúÀúU3ÆW é×o_àæEÜ|CGqý9ÓN*`ŸNþät‚ëïq‹&h7¿…ohð!EÉ8áÜÔèþýöáŽd¦œ€€lॠ¹m¨Ù%í\ÏÇzC‡ÊfÉ¸ ¾´‹“XÆXöo%Dè`S ÿÅ +úendstream +endobj +3098 0 obj << +/Type /Page +/Contents 3099 0 R +/Resources 3097 0 R +/MediaBox [0 0 612 792] +/Parent 3014 0 R +/Annots [ 3104 0 R ] +>> endobj +3104 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 474.561 223.222 483.472] +/Subtype /Link +/A << /S /GoTo /D (SKINI_8h-source) >> +>> endobj +3100 0 obj << +/D [3098 0 R /XYZ 160.667 686.127 null] +>> endobj +3101 0 obj << +/D [3098 0 R /XYZ 160.667 667.729 null] +>> endobj +3074 0 obj << +/D [3098 0 R /XYZ 160.667 651.332 null] +>> endobj +3102 0 obj << +/D [3098 0 R /XYZ 160.667 651.332 null] +>> endobj +3075 0 obj << +/D [3098 0 R /XYZ 408.821 592.024 null] +>> endobj +3103 0 obj << +/D [3098 0 R /XYZ 160.667 576.147 null] +>> endobj +3097 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F14 825 0 R /F35 1011 0 R /F8 483 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3109 0 obj << +/Length 1377 +/Filter /FlateDecode +>> +stream +xÚµWYÛ6~÷¯Ò Ysyêš>ÔiŠ$(fý–äA+kcÁ^i#É9Ð?ß9(É^ÛišLŠÎp¾ùfHª@ÂOJ&BÇi§™H” ŠÛÙïËÙåSm‚Ld± –7$¹\½­pi47© ¯hUXD𷉌Ë'L¸Øæ]ÇÝWåM4WaÙFðW%®Hµ •1ÑÛåóÙË™ò›˜Ka²,˜‘¥·ð~öú­ V3<Ÿá\|„¾ +¤ng6qB«ÔogW³¿GU2˜ë„6>z¢e…±ñ¡+°+ôF)}ÎÄ… ò%ó-Æ$œKTc…N¿ Pk>t/(=‡‰†Íý˜â؉dÃá¾ñ-òÖž«±8¹&ÑÒ˜3uùI_€Ï 0}ú][wFc?ÓÁI…ü9¦Ë}‡0YèE[Ýõ”¯?ŠCtWkª•'Á¶éÊ)GÇÉs¹zâ^l‡ÔÃbÓ¯«ŽwßÑ}h,‡?î|: xw|åšRá¾;|u¥ø²gÌÃWÌ È®õg<¹Xzñ@Uãr¸$âµØ—Ý{þãÐj*Q^¾EºB„ÛŸΘý_„äĉý5qÿ>tR ø:c¦»÷"b¾‘¼à»üÝ1$`r5~ÿ¾y +û©ï{íñ»ÑßÄÇ»¹…ó/h÷®æK:¹Œ ¯>ב¡"BqÁ̲Ààe¤dŒo ˜k×UÏSUÍ+rç|æÉ—‘‰ùÛú‘W‚Û*•þ̇š†RÇU£xˆ‡Âo±ÈÑÂTÝpɾ ò¦3)œƒCát*ü;ÎMϵpÒá›:Vã³Ây¹=d”–t!„(ð¢-÷\±¡•zˆÚ¿âhÙûendstream +endobj +3108 0 obj << +/Type /Page +/Contents 3109 0 R +/Resources 3107 0 R +/MediaBox [0 0 612 792] +/Parent 3125 0 R +/Annots [ 3113 0 R 3114 0 R 3116 0 R 3117 0 R 3119 0 R 3121 0 R 3123 0 R 3124 0 R ] +>> endobj +3106 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 689] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 3126 0 R >> +/Font << /R9 3127 0 R >> +>> +/Length 3128 0 R +/Filter /FlateDecode +>> +stream +xœ•PAN1 ¼û>“8ö&¹"ñ€²ùÁŠRhW¨¢ßÇaCتå€rˆ=Û3väÑÕ×þi†#Ü? ¾|Àýwéç›f|(VÌèC¤<–-,m&Žš19ÍË 7ãû´>Ý–7x,¸1ê+x/”%àgÞZÛ^Iä$ÖÔ⬞²Z|è1sN”´"y‰Tþ$ÄH,¦E¨j™a´õÿ²ã5¡Š#‹“Ó¾ÛøSxõMq¥¾¿†”ÒµàK¤7í »ª‚)4É8WÏÇê\¿HKƒØTN6l¼&üŒÓÒ¾¾v¬«‘ILár/ãpàh^#g3¶w°/'ñz’endstream +endobj +3126 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +3127 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +3128 0 obj +252 +endobj +3113 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 447.982 161.398 459.937] +/Subtype /Link +/A << /S /GoTo /D (classSocket_a0) >> +>> endobj +3114 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 395.902 161.398 407.857] +/Subtype /Link +/A << /S /GoTo /D (classSocket_a1) >> +>> endobj +3116 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 343.821 169.147 355.776] +/Subtype /Link +/A << /S /GoTo /D (classSocket_a2) >> +>> endobj +3117 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [146.399 291.741 181.6 303.696] +/Subtype /Link +/A << /S /GoTo /D (classSocket_a3) >> +>> endobj +3119 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 239.661 175.291 251.616] +/Subtype /Link +/A << /S /GoTo /D (classSocket_a4) >> +>> endobj +3121 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [146.399 198.539 175.014 210.494] +/Subtype /Link +/A << /S /GoTo /D (classSocket_a5) >> +>> endobj +3123 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [146.399 157.418 166.961 169.373] +/Subtype /Link +/A << /S /GoTo /D (classSocket_a6) >> +>> endobj +3124 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [146.399 116.297 176.065 128.252] +/Subtype /Link +/A << /S /GoTo /D (classSocket_a7) >> +>> endobj +3110 0 obj << +/D [3108 0 R /XYZ 106.869 686.127 null] +>> endobj +3111 0 obj << +/D [3108 0 R /XYZ 106.869 667.729 null] +>> endobj +262 0 obj << +/D [3108 0 R /XYZ 106.869 667.729 null] +>> endobj +3112 0 obj << +/D [3108 0 R /XYZ 106.869 468.543 null] +>> endobj +3115 0 obj << +/D [3108 0 R /XYZ 106.869 364.382 null] +>> endobj +3118 0 obj << +/D [3108 0 R /XYZ 106.869 260.221 null] +>> endobj +3120 0 obj << +/D [3108 0 R /XYZ 106.869 219.1 null] +>> endobj +3122 0 obj << +/D [3108 0 R /XYZ 106.869 177.979 null] +>> endobj +3107 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im58 3106 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3135 0 obj << +/Length 1940 +/Filter /FlateDecode +>> +stream +xÚÍXI“ÓF¾ûWø(U°P/Ú¹!•P©"3N8Y’ÕÈÒ É3@þ|ÞÖ²560I *å*÷öºû-ß[ZjÂO-uDQ¶ŒÓ,H”]»Å“õâñsm–YÅf¹Þáº|í)cý•ÑVïrí+ïŒRë=mòaÀ®ñžuÐ*¯ðWÊÛÅ;UëíùX㨃éÖ»þuñÓz¡„‰U˜,]®L¥òð~ñúm¸,áòׯÝA? T–-w ›DV©Œ›Ååâ÷é(•„tÈJ'Ä¿Ȩe +ñ±@¿lÝÐzã;`ªxàÚœ›¡ó#ã×2?Ê\ÕßVý#”5ñªc$y!«#R≎#ïM¨l?Èâ ’VmY·W¼ZàD×¶•i¯ ½5ìíZ¦ïqšÖÞï+wÈ–.ìvŽû +õ 2­ÈÆDÙ€| ˜$A•ÃÁ%Ž ›‡Ž ƒó‘èXbhÚêŽ÷Ýc­îZÙº½£³rß:®©sÅÇ [Ô)«¡èë›-ßóÔ¶ëïåtYAÒÞŒtcyFª¹5¤xü`;au¥m L m¨$¢M`€„)Ó!wuë댌 œÜõ(ÉH7, U ÁÆ]W±…”÷ˆïhW|ÿfÎÔ%b÷íxÄ3q€0Šüj@Š¡‚Šù8v +P3„€$ƒNèõýª¯Q‘Vˆl6duºžU‚“Ý­pL£QÀi}â>¸îpEü³Ùq‘aø« ؾ8±÷‡3Ã;ÚýÎGÆ;Ž¡­pû‘Ž®†3XCc…~§ž'tW +ÛÄ«·Üæ-·UOÎxDÙM˜-öýð]ÐØ³˜ þzOœ>Ž@2aò‹@„ð¥êk@Tÿ ¦ñÓ9/Ñ +‚˜…°›c߃£h¶“±v¼B v$‰ë‘çȈ÷Cæ÷7²»ã¶©8ÆÆYÇÙq V66tH +ì/Ñ"ŸªS9MéË`^/Äã¾o±+Û ²j\š€ÈvʳøqºàÀOC—J éeÃyħŒx3‘…»Ö䀵ˆL2Ù¹Mm‰ÙËNÎ nn’È{¹ß ŒjþVï¸l(‡3UªÙ‘Rû0Gl7T#¹ A×_ÁRáëÄ»¦|uupkÊ`5ˆ‘%ÎW£`§9¨kxŽp×¢œ$ Ïc[‰™A›ŠKeº¹/!¶A[ ŽBÍ‚r%ãXÐ`õ ®q…dÙÍ!”ñ¶kWH»i:²é5×$@±£“Ê +@icã½:Š·”㑆«Ÿk"‡J%çü‰)üÑ,Î| +8s©Gw\lKwçu»oFž®% o.(§Óf%äøJdŽÿ °Š¦*Û?S°;à'ü+>Oál© AàÉáEuxÖ5™æîœä’iÒ¥`Ü}Uߺ,'¥wý·ÊWç<¢þôá=7œŽìdV$Tê¾wf,áÛäÂ×±÷ÇOZ›ç°tRÞÍLKeû­óÑÆi½ü–iR̓ŠÐF¬תqd¡þÿÔŸ«S£žªçÊT“R™ŠË¾<º­i:O‚™áfª(Šc™<9ˆjîf#xòJEJ©™Ž˜Î‚ús3Á±ç#(# q”ƒaškN£§é—óq"|='[,þƒôȘÆ8:Ÿ‹ƒbû/ÃÑ$A¤þ-å†ïŽEF©T ¹T ?WªÂ:¡)Žƒ“ SJõ7SÕV¸ƒpÞNrÇ<©"d³y5IT\C‡!Ë%#Ž®Ø\+‰¤ÈÐ<§ËU½Sè~ÏÒÂÝÚ" ॴõžI¼ûÔTr•\L>cg£ï hÞékÓ 7!yE®P×/Øüë§/?K¾œPNF/yÌÙ!E€v!š‰óÅ$}%A,2­ß¹¤¤2¨$òÁå/•z7=•ªÓ ÈPVB–ó2¢¸­±$êúOñÎ12P]‡ ¬ÉÇáHL•~®H‘#›ºš¢ŒÉ‚³MǺÁ…¹ +œÈbØÃ»vJÛ¼ >€5 {À±%¢Ÿ)}Å…”<Ï¢q¿¯(> endobj +3138 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [200.197 607.186 251.09 619.141] +/Subtype /Link +/A << /S /GoTo /D (classSocket_a8) >> +>> endobj +3140 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [200.197 554.843 247.769 566.798] +/Subtype /Link +/A << /S /GoTo /D (classSocket_a9) >> +>> endobj +3143 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 456.251 258.562 468.207] +/Subtype /Link +/A << /S /GoTo /D (classSocket_d0) >> +>> endobj +3145 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 403.908 229.089 415.863] +/Subtype /Link +/A << /S /GoTo /D (classSocket_d1) >> +>> endobj +3147 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [207.116 362.524 238.498 374.479] +/Subtype /Link +/A << /S /GoTo /D (classSocket_d2) >> +>> endobj +3149 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [200.197 321.14 251.09 333.095] +/Subtype /Link +/A << /S /GoTo /D (classSocket_d3) >> +>> endobj +3151 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [200.197 268.797 247.769 280.752] +/Subtype /Link +/A << /S /GoTo /D (classSocket_d4) >> +>> endobj +3136 0 obj << +/D [3134 0 R /XYZ 160.667 686.127 null] +>> endobj +3137 0 obj << +/D [3134 0 R /XYZ 160.667 627.878 null] +>> endobj +3139 0 obj << +/D [3134 0 R /XYZ 160.667 575.535 null] +>> endobj +3141 0 obj << +/D [3134 0 R /XYZ 160.667 476.943 null] +>> endobj +3142 0 obj << +/D [3134 0 R /XYZ 160.667 476.943 null] +>> endobj +3144 0 obj << +/D [3134 0 R /XYZ 160.667 424.6 null] +>> endobj +3146 0 obj << +/D [3134 0 R /XYZ 160.667 383.216 null] +>> endobj +3148 0 obj << +/D [3134 0 R /XYZ 160.667 341.832 null] +>> endobj +3150 0 obj << +/D [3134 0 R /XYZ 160.667 289.489 null] +>> endobj +3152 0 obj << +/D [3134 0 R /XYZ 160.667 217.493 null] +>> endobj +3133 0 obj << +/Font << /F23 479 0 R /F31 829 0 R /F14 825 0 R /F8 483 0 R /F19 460 0 R /F22 474 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3155 0 obj << +/Length 1937 +/Filter /FlateDecode +>> +stream +xÚÝXKÛF ¾ûW9+óÔ#@mú@SH³‹^’´¶ +ËYÞí¶¾|,¯å E +Ö<8$‡Ã䌞+øé¹VYbÒ|žæE’i7_ngß]Ï^ühì¼HŠÔί×Dy½z¹ÄçñÂæ.ºÚÁWGËþnck¢ªÇ ½jÊýž›o«u¼ÐQÕÅð×.+\‘iëãׯg?\Ï´(±P‰-ŠùÂ&EîQ…O³wÔ|5Só×3œËçÐV‰ªíÌe>1:—~3»šý6°Ró…ÉHñ°“ü|#×ÐÆ¤EtØW¨cǽ4åM¦¢®ÚãÄö¢]Ë:ªo ÕTL³†öN–.c ÛàN‘ zyt[ã²<߉÷±÷QÙÀÌ¡dõ4R[­˜æ—?ÊB˜ØˆÀ.ð/WÐzñÐÕ½pÝ’¥{T`ÆE3hÞÓ~á´€ã*ì"‰î÷N©l+ªSxÚt¨—FijlyŠv ßêÓ¶@Í~Çß?ù¬¥G[_ÕË’6%/›i@;1„á^(pš ÞVÔFÔ»' +ôlêK;]ÒJÜX'žg]´[ã×Òfð[u`2°É’Ô0›pH÷ÛL,#oňØ~Åw·sØ8·*GkÞ ±eÍU¬yŸ%²¾Ç?Ú1þ9Ó€g{n-X}£”!U›f¶Œ>½°L› D ô3ÀM‡‚1÷hǎ̲ìÅqm棯øó=Ê%"šEÈ«hyØV-ÂçË!º³Z'!ca\bäT0p$ÈÃ$µòŠ#ˆÁbBy‰/'&8æ¼W^_ÁHÏò¬?ÊÓ.K”Õ‚ï»Ø |®—±Iîœ}ÃŒÁ²)0×L= +à*É3/{q´èûj]¢g5 –ózä°äÙ=ž9XM‡Ó›š¢ÁfD}Äq1ÀyƒøÀéFüÑ…ý½‚ E˜[òE†Táý0%’3ø•ÖÉ +Ü-·Ð AÍ‹€Úß‘FŒE<í÷J»J<œçv(¾ç‘µ8lñÿ†vdZÄË9̾m€èo@>ùŒ=ÔMíÚ€ ˜…0¬du€ÍŸ½Øðh/ÑÓ¿†‘³h±g!))$×íG‘q<`€¸¸\ƒóÓ±'“ÞoMâÝ™÷›ÿØûU¢ÀôLöœ/wí^Î{(a‹ÖB=0¬MA{“ÊÚ÷JÙs5ò$—ù Äó¶ä¬t®hëXM!Ïä¼ÄžD‘P[Øìs ³6p¥–¼L£Ë®¢|D‹KÉãÓ ëERSWäÔ½09ËO‰š‚¦4¥°6geRÔˆ VÌí5¾²¥ys´ÿ=¾(»YÉn¿’2[tÛªI+ÊYiôc\¸èÐ.烉LêVˆPr£\F…ì§3;¤³ZxY +ÌZ_F8à <‡¨¡šëEdg:Qiþ‘ít‰$Gõ:tS·‰*òϼ]ŠSˆOÀÛkðË|ȱè­P¤Bɘ{÷³Fl„ÙŽõžÏ¦‚+’Ôe'™øXr¨¸Ñ5"×ÕÅçó&œÀÖõ;§:Î!KIH«,,{0ú$Žgͨrï ‚$ûCC> ˆG„”Óñ%L®øÂ²ìê;TáiYëäÞS£ØS…Úz.0~,ópM¢½©exM@‡ÆåXYHqƒW›Z …ð†»¶yŒ!ÁnRðÍŸ×"O–¹à Úá~…í’?ÇíçOÎ4èVu\uÏ'âéàê@ ¹èa/_t$Õ +TË ýŒlÖ8køtTîþ§„#ÁØ¡°_ïù[6uVBtâ±Õ +€êÉÊ~Š€®=ÄŒô=ßO_uÛº¥È²‰S~ð<§èâ…CmõÀý) 0Oê"9òâ$¹½ñ¥ûNšB\ Ì /åÃÀ¯«¸±¥;ëT…y؇‹²Õù1m¦JN(y4†J + D&þ»‰õèrK÷Ú‚“!ÐH2ÄÓåd~'ÉZRžŽ¤Ž’! á6ÖÜ,ùsÙùtö4'y@ šrà~Ï+r¾Á” ÷”s¶$%ljsÁ ¸ÐŽy]U¿¼p<Ūn÷ò,’jhe§UF0óD^Yy–AÜv +–™§éÏL¥¿áh*ý04Ô´÷8¹«W“Q_Ä{Š+ŠÞ[O~ŽsŸü`$`°`‚?¨Š,—#bÎ HJ¶Ž"?ôGÉ_:ÂÂÜÂWW}:¾´›5yÝ–;W0>×ã:i8¥¹4tJ U- ò€]Ÿ‚U‘Ê`"Q†‹9äAã,£ðð:4RI0»9œ,ï‰KäyÖJž¾ +•ƒÊáß=òS¢Hž3Ý<vg¯€Îúèê\€wL±Š×ëXCàBGöø©íLW8U·¼òÕ×_sã<òä›*zzöìdämÂ_|,‚9|,Â.¾Dq †ÎOô /FÌF«Œc¨¸,QÂ=²ÞѲŠœ)Tâ½…mѶ–‚bÜñ.£ÊcÌHu*õöB7²Œ6‰#^hB$ó¢,ÿ—¡2U™pj]‹[{endstream +endobj +3154 0 obj << +/Type /Page +/Contents 3155 0 R +/Resources 3153 0 R +/MediaBox [0 0 612 792] +/Parent 3125 0 R +/Annots [ 3159 0 R 3161 0 R 3164 0 R 3165 0 R 3166 0 R ] +>> endobj +3159 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [122.201 500.671 162.328 511.519] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +3161 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [122.201 414.291 162.328 425.139] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +3164 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [148.79 253.29 178.457 265.245] +/Subtype /Link +/A << /S /GoTo /D (classSocket_a7) >> +>> endobj +3165 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [243.627 253.29 283.755 265.245] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +3166 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [125.643 205.986 155.31 228.789] +/Subtype /Link +/A << /S /GoTo /D (classSocket_a7) >> +>> endobj +3156 0 obj << +/D [3154 0 R /XYZ 106.869 686.127 null] +>> endobj +3157 0 obj << +/D [3154 0 R /XYZ 106.869 599.373 null] +>> endobj +3129 0 obj << +/D [3154 0 R /XYZ 106.869 575.063 null] +>> endobj +3158 0 obj << +/D [3154 0 R /XYZ 106.869 575.063 null] +>> endobj +3130 0 obj << +/D [3154 0 R /XYZ 427.611 503.604 null] +>> endobj +3160 0 obj << +/D [3154 0 R /XYZ 106.869 486.746 null] +>> endobj +3162 0 obj << +/D [3154 0 R /XYZ 106.869 400.366 null] +>> endobj +3131 0 obj << +/D [3154 0 R /XYZ 106.869 376.056 null] +>> endobj +3163 0 obj << +/D [3154 0 R /XYZ 106.869 376.056 null] +>> endobj +3132 0 obj << +/D [3154 0 R /XYZ 106.869 198.557 null] +>> endobj +3167 0 obj << +/D [3154 0 R /XYZ 106.869 183.636 null] +>> endobj +3153 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F22 474 0 R /F35 1011 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3170 0 obj << +/Length 723 +/Filter /FlateDecode +>> +stream +xÚ¥UKo›@¾ó+8‚6ì Ø›6U“K[sKsÀÇ(ÀµªþùÎcM,¹·*R˜™ùö›ÇŽe˜ÂŸ •Öº0+œÈ¥ 7ûàcÜÜ):á2–[r,ëÇHê,N´2RG«2–Ñh…‰n»jšPÔѧ¾2ÚĉŒà±G¡éc­¢¹š[Ô0÷ñSy|.éI$©Ð®-\a‘Ã[ðø”†u†÷ŸAN…t.Ü&·BÉÂë]° +¾/PRKaÓ,LTNüO —ù|ÝÆ‰ÉÒ"‘˜hè’4ètlÞ0«¦yB£Šª‘M(¿Æp-Ÿ#FÁý3W}BÍ»†-×C61ü{‰U53îªÉ³¼eýÞxBi3ãöCŸ`a!»DJᬥ,×§Ø| “ºŽ«5­Å«œŽ¶dÍy£™òû±í:–Ö`î°(“┃Zy¯Š?—Å<=]ú:.%õ…C('Nn"ú fDïaüGžžÕ2{#Τ6è _M—ïZoÄx±âã¥KfØ _^tØt-”Œó5y56óa¤|k±PÌE¦˜b‰G¿ú½%‡ýYÖðF°<ˆ¾å<™úîìJ{Zå‰]ŽØÚÊ»<7}3VsS¿CÞϨ žÝÑA?ȱÅAE÷Ÿ©4ØfâõÓ¸¹ƒÍ°<i…6˜ÖJ Brv<{f,ðS[]޹Ø]låíZ+…RÅÿn-”Ë–!YV› 3árs¾ +¨3FÛhõ¶•Å7JÕ¥!…JÁºK3lœ Ô€‡v棖ÛGòí*W¬¬è7ËßbÁðb#¼å‡ð! +Ð/¬â Ãâ`å ÊGhÀi ÏsS!ü/Ä(¦¹¦‰S.……u‡ºä”Û†;3¸¤(¨³Áµ›ÉìÔAëýÎÊ#•0„¥¡ºôàÞeÿ¨4EAzøÑKy#endstream +endobj +3169 0 obj << +/Type /Page +/Contents 3170 0 R +/Resources 3168 0 R +/MediaBox [0 0 612 792] +/Parent 3125 0 R +/Annots [ 3172 0 R ] +>> endobj +3172 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 589.64 223.499 598.551] +/Subtype /Link +/A << /S /GoTo /D (Socket_8h-source) >> +>> endobj +3171 0 obj << +/D [3169 0 R /XYZ 160.667 686.127 null] +>> endobj +3168 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3177 0 obj << +/Length 1429 +/Filter /FlateDecode +>> +stream +xÚÍXßoÛ6~÷_!d/23ü!ŠR1 X³¥hÓ¢Yí—¡íƒ*˱Gr$:Y°~w¥¹Ö–Ÿ¹Pþ',¢YVç$*+‚ÑËW—E…*,£½eºµ¹0,–ÚíþSYå‹ÕÔÛ(Äz]d7Êðó®à x@ÓÈ1ÂÁæ»z´dŠwz~ÙÁb„Q%À²*rËÞTsðÂàÜ´ú—;`ÑápqvÞd—À¬nh0† Œ8péË—ßÆˆØIÁޱdQâ9¸‚øà©Ê-Ú»[Œ½¹Ôið[ ¡¬£iÔkŽK"±T‚¥ZoÕÙê+ÆM™S½/ì¼Æ¨§­G1ZÃ$4Ä$(–’ÉD¹÷! Ìœ8=+¨~¶N<€ç3×üýŸß"’×i¯üÁŒ’xéÞ|ò3½ãÉne8y÷Có×!” ‘¹¨QrÓ}kOp–è +ã*Â-˜.È_ƒZ—¢#ÍYŒÈ³D.Ç‹¾¨@ýȇZ†uÕÚf•Ûº9$©Í.(wbHk8^Ô7EkiÍ´hËf¨ÌŠ) —‹ì­Â +Páàœä³õÊ«•O|·ír9’ +Œ–%"]“ ¾p)¾C+ä†â^±è4¼î(f‘Ë.HîÜôØ2ú=Fe ò‚³ÊãÀ‡×®|á[½ÁMȼ‰y†;\£êÚ½V"ŽL¡zBÞrÄ8·rÿ±B¯=I¦¹Æ/G±ˆ»ÜÐ~Ý2pºFNBˆË^ÜKÿ-9þrÙq÷Ù—kXendstream +endobj +3176 0 obj << +/Type /Page +/Contents 3177 0 R +/Resources 3175 0 R +/MediaBox [0 0 612 792] +/Parent 3125 0 R +/Annots [ 3182 0 R 3184 0 R 3186 0 R 3188 0 R 3190 0 R 3192 0 R 3193 0 R 3195 0 R 3197 0 R ] +>> endobj +3174 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 923] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 3198 0 R >> +/Font << /R9 3199 0 R >> +>> +/Length 3200 0 R +/Filter /FlateDecode +>> +stream +xœ­PÁNÃ0 ½ç+|&Ž'½NÚqë ‰¢ub]%~§i×NpAB9$yÏÏÏÏ l>ã½kÍÙ<¾xx¿˜3Ð@M×®…U­dD£TP7¦ÈB….„âQ(0Ô­¹Ûöûæùµû¼¯f]ÃF‹÷¦rÈ6 +|bBKIå>rÄJ€’¤Ý›ÙþÍ^rWŠà™Q› öO§Kßµ§~¶ Yòô¶U¨¶É2æP%õÇÇÈ)ïåwÇáÉI7₵W®-_§–èŽZyŒ| 3ÓS8¥…ê.˜]žNK aðKd)9šæ¡ !éè!>ë&0òS¼+?óÑR@ 9±@n{èó 8÷‡ endstream +endobj +3198 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +3199 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +3200 0 obj +271 +endobj +3182 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 425.671 170.558 437.626] +/Subtype /Link +/A << /S /GoTo /D (classStifKarp_a0) >> +>> endobj +3184 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 386.999 178.307 398.954] +/Subtype /Link +/A << /S /GoTo /D (classStifKarp_a1) >> +>> endobj +3186 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 348.327 175.263 360.283] +/Subtype /Link +/A << /S /GoTo /D (classStifKarp_a2) >> +>> endobj +3188 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 309.656 211.433 321.611] +/Subtype /Link +/A << /S /GoTo /D (classStifKarp_a3) >> +>> endobj +3190 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 270.984 198.288 282.939] +/Subtype /Link +/A << /S /GoTo /D (classStifKarp_a4) >> +>> endobj +3192 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 232.312 232.354 244.267] +/Subtype /Link +/A << /S /GoTo /D (classStifKarp_a5) >> +>> endobj +3193 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 193.64 230.486 205.595] +/Subtype /Link +/A << /S /GoTo /D (classStifKarp_a6) >> +>> endobj +3195 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 154.968 178.003 166.923] +/Subtype /Link +/A << /S /GoTo /D (classStifKarp_a7) >> +>> endobj +3197 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 116.296 186.858 128.252] +/Subtype /Link +/A << /S /GoTo /D (classStifKarp_a8) >> +>> endobj +3178 0 obj << +/D [3176 0 R /XYZ 106.869 686.127 null] +>> endobj +3179 0 obj << +/D [3176 0 R /XYZ 106.869 667.729 null] +>> endobj +266 0 obj << +/D [3176 0 R /XYZ 106.869 667.729 null] +>> endobj +3180 0 obj << +/D [3176 0 R /XYZ 106.869 445.007 null] +>> endobj +3181 0 obj << +/D [3176 0 R /XYZ 106.869 445.007 null] +>> endobj +3183 0 obj << +/D [3176 0 R /XYZ 106.869 406.335 null] +>> endobj +3185 0 obj << +/D [3176 0 R /XYZ 106.869 367.663 null] +>> endobj +3187 0 obj << +/D [3176 0 R /XYZ 106.869 328.992 null] +>> endobj +3189 0 obj << +/D [3176 0 R /XYZ 106.869 290.32 null] +>> endobj +3191 0 obj << +/D [3176 0 R /XYZ 106.869 251.648 null] +>> endobj +3194 0 obj << +/D [3176 0 R /XYZ 106.869 174.304 null] +>> endobj +3196 0 obj << +/D [3176 0 R /XYZ 106.869 135.632 null] +>> endobj +3175 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im59 3174 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3204 0 obj << +/Length 1946 +/Filter /FlateDecode +>> +stream +xÚ½X[oÛF~ׯÐ#‰–,‡œá%À>4Î:@Ü4n­>Ù>Ð4-qM‘ +5r`ìŸßó3¤$K©S-s=·ïÜ(5è§æqSÌÓ¼3¥çÕzöz1ûá2NæEX¤É|qÏw=•ä~ÄZ%ÞÍÂWÞÍrí]´åv‹aâ½é魼ʔ·£k êÎObÏ–¶Á¬§åÎÿcñnöïÅL9!‚(LŠ|$a‘Èðiöñh~7‹æïf²÷™ÆQ¨Šb¾žéÌ„±ÊݼÝÌ~™H©,b"Aœ±ü£B‰šç´*tcËÁ’Äiæ•òêz[c”{Ÿ»’5»ªe°lk¨ÐÉô~ðMâÕ¾‰½O£Â²_= ²»sÔ×´·i»»«C(ÿÃ%Ùz2pëP%)½ÉŠEûO¤29˜ïÏÉ@dôãÜë0H‰,kët-ÁŠ&&zO«¿?·uJ¼ò|äõ¢­c²fqÖÒng²p~ê1—?}€˜?úä& ‘«\“H.2Åh/U‰®‡ iª,›J‡…Ö°~óx a¬>ƒìY™¶› H~8Ðú{y‹œ´^áQ>AÜAüJߟÀXÈÃܘ t*?μñ-˜èK……á!Bˆïõfg}ûÎ!õ¥ Yß:(8Aü-!Qõæv@h´«1²¬÷ÑÑÐ~áYYàñn·~@Ïzø^èœB¤4Y6!Òÿ`ª†`чasûäÐ,ö¢¨4 +ÓlÄi²uÁ¶.ÈÖ§Ò'I˜e…»DzJ4 ó,Ÿ°7LRŸR"OŠåÎø($…"‘6%ULKy(~®<çq@T¶8YÇq·­…åhG–½¹… ?É‘íØïQþ2Æûo]IÐó¦íå½AÞ´£‹åœ¶g\Õ­3ß-<ñIÆÔ›v’¥y3ö~ëQq `1xò©ãvEêwT‡R´ ¥[—4[Òêª~nm㊶óÎùtú‚itcµüYzy2Æ-›„ȼ:-ÙÊ„‰N(™ÐúëJö5ß°¿æB~è¿ÿ’—>Ó(È(PTJMüu\o`ŒaŒ@hˆøÞmmÙóSê†ê[Ú¡¶¬ûê˜)#3&‘qæœnö½êíV~ …ôEÏ +̃ë¹]~©·åÁ•k¸PènL‹ûhê§ðwîD Œ‘Q ”ã(ŠÏKò/*àÆ¸2‰ièQ ^Æ\)÷žJHÂ!DOj¨L¦Þ¥_ho×Uœ…}ÔN÷Y¹[OŸXî“òY%=þj•RZ¸Jmˆ9ÝŒ¥R›ˆT$Ò.RðÜØæû®Ð¼ÂøÕ¶¶¯Ëmý“ÏÇ7oËfü È¥7>m5}zê‚L¥Ü„¼Ø &¡N²³ ¢ÛùÓïòKÈ÷Úü膚DiÌþ¤VaN­‹k¦ÞÂÍOì•DaFÍâÔ&©& È'©);êQj+!]$²X¹uy£už¸‘ ¶$¾çÒÏ7c:PVv‡ÄØw1]rhâP#U5F·Þr˜TÈ•ûÊŠ äb~»*‡[÷ˆÅúÓ®Æw:!B¨”÷š«*9ýã¾ÿð^qÉÁ“[£ë§Ùü™ÎRìØ»‰5,©Œ„ŒeÖ…—ã4ž¾FwÿÄ­¾ü¯€:][+Zºª¼:ª€XYNwˉû8¾P|‘;ñ{ºC¡wÐ+•ûÄ kôÃèÜ=Ó@rƒ@é®tG–uW$ÞÝžÔЯÝW(—+3–¤ñ™?öµ°¬ë0)R_(Gæ/äéæþ +b$«ÕÉ÷y’é0ÎS|UÅaª“oü»ŠÒd\¤“ Mq®ç”;2}猋NŒwóDùÏ â¤ÕFã’àëPE)'*ƒ'Ùæª±²5æ,Œ/¾Ãä;™Ü‚ГŒ¯ý$E"&Ü +JŠv%…öú™–kß1yËN&7PQT”qHAΪùGÐíùNý=û[\DTÈêd)•KHf¯v‡&Òøo0U鈟qçÌC…X3­¤\OV/ó?ªNœòG ÿ=8÷gendstream +endobj +3203 0 obj << +/Type /Page +/Contents 3204 0 R +/Resources 3202 0 R +/MediaBox [0 0 612 792] +/Parent 3125 0 R +/Annots [ 3207 0 R 3209 0 R 3211 0 R 3215 0 R ] +>> endobj +3207 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 630.369 240.933 642.324] +/Subtype /Link +/A << /S /GoTo /D (classStifKarp_a9) >> +>> endobj +3209 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 591.514 260.571 603.47] +/Subtype /Link +/A << /S /GoTo /D (classStifKarp_a10) >> +>> endobj +3211 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 552.66 271.402 564.615] +/Subtype /Link +/A << /S /GoTo /D (classStifKarp_a11) >> +>> endobj +3215 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 149.391 232.659 160.239] +/Subtype /Link +/A << /S /GoTo /D (StifKarp_8h-source) >> +>> endobj +3205 0 obj << +/D [3203 0 R /XYZ 160.667 686.127 null] +>> endobj +3206 0 obj << +/D [3203 0 R /XYZ 160.667 649.796 null] +>> endobj +3208 0 obj << +/D [3203 0 R /XYZ 160.667 610.941 null] +>> endobj +3210 0 obj << +/D [3203 0 R /XYZ 160.667 572.087 null] +>> endobj +3212 0 obj << +/D [3203 0 R /XYZ 160.667 516.303 null] +>> endobj +3213 0 obj << +/D [3203 0 R /XYZ 160.667 290.92 null] +>> endobj +3201 0 obj << +/D [3203 0 R /XYZ 160.667 266.806 null] +>> endobj +3214 0 obj << +/D [3203 0 R /XYZ 160.667 266.806 null] +>> endobj +3202 0 obj << +/Font << /F23 479 0 R /F31 829 0 R /F14 825 0 R /F8 483 0 R /F19 460 0 R /F22 474 0 R /F35 1011 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3220 0 obj << +/Length 846 +/Filter /FlateDecode +>> +stream +xÚ¥UÛn7}߯ Ð.Ò¥9¼3$n]$®ÑÔÒK‘äA–ÖÕÂÒ*‘Ö1‚ü|gHêf%mƒ@€vHçÌ™!Iüé…r¹…æËêå¸:»PšEfãÛä9ž½åF8Y7:>îÈÐü¼¾¨à“͆f¿¦Q{Û®Û~ÚÖïǯ™±Ní èH³Õ¯ã +J :FÖhƒ¥>VoßK6«${]ÑZ`hK赬Œ·BA(ãE5ªþÜAIÖ(ŸâÞQ ŒÐÆ3Á¸‰ €Ú²ñ†Ÿ/ê-où5±Hl +“³‹p˜:ÉD—GãKܤ5¿IiM>]$@à"C¨x„^8eÆO]?]ÜÏÊQ{?ã…ôºÄþìÇ obYF2b~ +¡œ«ŠÏó6M"zSâ±ÉëU?¯ àk4ºaÒãgzÀmFÓ“¿×“e&»Zgc„ ÃÝÓ§•£„òŠ5Ï 2•ûHJ‚·&9Ú©öÒ¦‰³WK'Ù/+íuoöÈXEÆÉ"Z{(ÿh˜P€]¦CZ¿¹¿!í»2¼j‡ù +Mà³MÉ¥Ù' ,Ö“FýÖfÖî’T2¶)¿úëq.0`+Ãå?Ë^awį=­„œÄ9œ¶îÅïÔ*ð56ï8‹·!Õ€ n¯'CÑô´òù®:’‡‰i`aS5N aÊ:¦Öos:¤ô9Ï—)}Vc¤ñü›Î³¹®­âíp¿î7yb˜·ÙH…uO•–}úæCi-t €1ÞE›ç×t†-Nj” ~±ð&û_ +íH§ +Þ´Ãh²üð83WÁ‰’‘DÁë+”áuŒß­c¿mÒ +õzňç¹"XøÁ0ÇJ‘"xäe¶ÿM”£;0=Î[Ô$%õ^óùÁ(½ëuÃ\ºÅ6¦ ¶|ô¹¯ñƒ$ÒmÜmhš’ÒqêuKÿØ —Ý—º>ï<ò$7ð9/¾©µãmªÖ2s-ò÷œÀò.ñÒDÔYü–žJÚµƒÁ˜‹âtB'|"èUÚÖþœ^P…f->˜ÜmÓòØ=ã†îK©·-y[ü2J˜„E)L/rŒt–ý¢èAäRmµûÍÞendstream +endobj +3219 0 obj << +/Type /Page +/Contents 3220 0 R +/Resources 3218 0 R +/MediaBox [0 0 612 792] +/Parent 3226 0 R +/Annots [ 3224 0 R 3225 0 R ] +>> endobj +3217 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 2894] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 3227 0 R >> +/Font << /R9 3228 0 R >> +>> +/Length 3229 0 R +/Filter /FlateDecode +>> +stream +xœ¥XËR\7ÝÏWÜe’…¢Ö[['NIÙ‰ U^c{ˆ/`Àóù9­÷ÌàŠ ©GÝW§ß-)HjÔ$ùÜ\\¯¾­~}o¦Ï÷«oSΫ`Ó/ãúâzzu†cq2RèH~:û´¢ôMDRë'–"†éìzõÓéöËÏgÿ®^ŸMïpîjEQHãìô!áe4:sk\EA¼ôv"c4]¯HƒÕ4ÂÜN‰mãØß7†Í*j%(xœ!¬ ¤žâZ/D«‚R«IyrB›„öÕí÷³ósGEôÖ´NŨ +Ú¾Z²A «ø®A +‹{A¨&6ÊÜ)_ãÙß7ŽÍJÙh…c¸ +÷_WK ãºIÙ[Q‚ûÛæöîᾡUT€Z+MáÖ Ô9#|º¤“ 3XìmÙÏ}_AÕóûûrÒ™ƒ¤_ˆJr1NÊXÖ'„¯/6·¼GÛ +ÒÀa ƶdˆž!_Qû¤t-%œÞ5ÊÜ)VåÙß7 +Zà32*¡–ú®QÁw5!t†zó¸žo¿®;\ÉXÁ¯+ؾf´l0„:nJ|'MðIe?÷}EVÏïïËù tc‚P|Ñ+BÉ;øx½D[ãZ!ß8kåd +ëNÉŸÑH‚Úyõé—ÕËý„t†4GÞ “òþ¸š·ë»®:6kÑQhÚkkÖ^t>å´€Øu|oíe07BUWaØÛ¶ãp“µPœ&¤õCŠ#èTÁ©ó-úšÕg,нQÙä¯m_”mf‹ðïËt§"Gk˜”4ZMº;¹¹ßÞ]ßl»öœ0«ï)­t5{_s@ÁZ3|KY}ð"a\£ÌR«BåÙß7x ~”"M»”› +¥B,WikV¡ãœ›̘|•F)J´Æ"{´ ]P*á ²^”¿Âjüs½Ý©= +ad¨j‘,êU¹z_³¡Qá=k&ÅpБmS)s§T­Užý}ã€-RWÎWÈ1qi¾â€‚0ÏáSó›õýýùç!è4øðWK¯uµU_çÖ‚ @–e±¿B¦³ºQæNé½DbÙÛ¶ó@ÕzmÅÂBÄh}L¾áòííåÃ|¾íÙ Œµ¡´…±"´5 ;87OÆ ¦¤n”¹Sœò1h\‡”ƵY…äãÅ-,·p8{A›6§Ñ··W÷âNIaV(0ᑈƒ}å`ëÙ˜2œ±V7ëíË¿fBHA Ò­¤!¬_Ô¨MÒµCÛ˜sã?WÛÓÍÕ§í3t‚œ SÂo·,”A'Úùœ|:×!¥rÁØ„+qp´¼_F‚Ž•¶¨‚ Ýûõúr'gýyE»®\(:¥½ÚuÜCJãÚdÛId5Ôš…ù)5ÇÞñ$d÷¸¾ûø hèî{Ê$ûÄJã4‰ÆùX:ãýù‰² ;úsörNwStü —u²ýýáë¼þï¸V"wÃ%+¥k%z ´aÐÁ”Ƶià¢F Ö [èdrm§ ¹%öÞ›«Ë«ãà| #Ò¸R¡TJ0%óe;”CJçJ&cH€å¸£^.´N“‹.µki’ÿëäíÉqlÎñˆÖ±UJdž‰Y‰0:ï!¥s16•º4çQÝâAÖ …d¢†.¯`»½ø²~F’µè…C§R:8et~v€ò¥q18$Då'‹™‚;÷…EÕ …NÍ(4ÿe6á ûŒ¢ª£ä[¥tl¨è*i@rHé\\X1Ìi3Òó-Ñ0ÀÛæßß[Î6wëóËãØ0ö¡ÊÅ[¥tl¨q¨àc)<¤t.¶›Ep8NsJ,î…²Ùˆ•)sqüðxró¼²ÏÞ-ûLªG´éih¨‡”ÆÕ­F-µ²ûåãð‹œ˜ÈŒå£I[Òå‡[qWâôÃãßÏS9\NŠ@NäÕn–Ù£Èb\ÏL +qiO£xÎ[>ê»Ì¨#¿J•w?¤Ñ:{õ5îë#ô,yž§Àjîû> +endobj +3228 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +3229 0 obj +1907 +endobj +3224 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 170.134 241.282 182.09] +/Subtype /Link +/A << /S /GoTo /D (classStk_d0) >> +>> endobj +3225 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 131.254 219.154 143.209] +/Subtype /Link +/A << /S /GoTo /D (classStk_d1) >> +>> endobj +3221 0 obj << +/D [3219 0 R /XYZ 106.869 686.127 null] +>> endobj +928 0 obj << +/D [3219 0 R /XYZ 106.869 667.729 null] +>> endobj +270 0 obj << +/D [3219 0 R /XYZ 106.869 667.729 null] +>> endobj +3222 0 obj << +/D [3219 0 R /XYZ 106.869 189.575 null] +>> endobj +3223 0 obj << +/D [3219 0 R /XYZ 106.869 189.575 null] +>> endobj +3218 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im60 3217 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3233 0 obj << +/Length 1177 +/Filter /FlateDecode +>> +stream +xÚíX_sÛ6 ÷§Ð#uXþ§Ô·®MvkÖ5«õ²kû Kr¬«,y’Ü\n_~);Ní&¹ÅiÒó ’ü€xÀàÇ‘P­“ÀÄ µ\ùròk:y~*dÐÄÈ ;Æ´ø@¸ba$…â’LÓ“3˜Åмª³¾GR’×-ŒœäaÄÉ8–H”M(²¡ÂY ËMø)}39I'|T"bT&qIšÄuøgòá Š ÞLüÞ%ÐŒò$ –e5<çõd:ùk+Š+Cc•‘’Ôp»5lÛ3è#ãUy~_ozÂ3| ELÚª«¤$ý%N³7~þ‘i¶nÀž «€¸hÊ‘7…% XÊ:Âîù\HªÚjÁäž +#à +Ä œÆ=›äA |ù"ΕVa©QÖ=0E°Á ÒX²,‡EjI +?¿\Tù“³+Ô{(#z8ä2[õ~+óXʉ۞Uƒ_*²aÜ®V¡¤¤ûFBQ. Œœ ¶ßìäü°ÁÒ#€-¶QOl°ô‡]—%¼Â©øë $Ý~á÷ë¶¹ð.«º®6Œ¥»d[ä.úÃ~üüœ€lû~ƒÞ55^:HÌh»åˆùF¹# E”Fô‡Ö`Ãnå§ó¶»{³F3Çâvb—æžÄ½ +Žêª/Q·YÛ¦èGgpN­7dB•…Ä¡!IH=šˆ±9 Ph¨Õä|=«Qð8}éÒ‘‹¼MtÏÖCÙˆfM¥Î×õîçë¼mz (©È$§g_ç:m)g ²–2¦îÎv^˜ä`®w¶9.ÞOq§zïÞ¿U^†¡ÓÛT315Öx¨Óô÷?ÓøÀ«Å%§ÖÞ€»ÑúHxGV4µ•ú4ñ†L~àêQªÙü'àß ðÓ?Þ¡V B}8¹ú?ï—GCŠ«¹š+Ì|Ê%m já£ç›,Üb>.óÁU™¤ßú*¾§,Ž”Ÿ]yðùºÌÝÔf÷.¡^—ól]¾`É]ùÒ­ó¡íŽV0V–_ë¬Þ(UÌl+lÉö$YjUò¿Ì„vÕù®½ØÞû¢ .6`ïšR°zÓÔwwhæ[ZçÝ¢òa·þu‘0¸`G ›å¸ke´«.OºÎU»×xí¼þ9>¶8ÜõÄã[rk×ÃG†¥ЕñÙEù‹?Í{êèÚî /Ò¿ÏOüæ€gCWAïU~³_J¨Mì ç†6!Ð]8`+ÿíÅùqÞú7é²ó]ÀX©wcýî–†ÊuXÀ7c¥¿pðÔnºw% + 7GBA@iñÀO:RR‘´ÐÅÕö• + M¬Ú½‹Ò€«¤&Ó«&„aX”¾¯êqï'Î ÁxÒøN?Ãþ·Üç©ÆÓ¯žá䙟ÌPЕ§ÏCi`|³òžŽ¸ˆ´Ÿý4sÒ +?ù͹ºsOH¼ô˜%tÔ3ÏPü”Û:GA@žHÕbpñÎÌÇL_› ªñJe·ÙD¿ùvàápi8YÐußò’ÏÒÿ +Æþú™ endstream +endobj +3232 0 obj << +/Type /Page +/Contents 3233 0 R +/Resources 3231 0 R +/MediaBox [0 0 612 792] +/Parent 3226 0 R +/Annots [ 3236 0 R 3238 0 R 3240 0 R 3242 0 R 3244 0 R 3245 0 R 3246 0 R 3247 0 R 3248 0 R 3251 0 R 3253 0 R 3256 0 R ] +>> endobj +3236 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 638.625 239.882 650.58] +/Subtype /Link +/A << /S /GoTo /D (classStk_d2) >> +>> endobj +3238 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 594.364 239.882 606.32] +/Subtype /Link +/A << /S /GoTo /D (classStk_d3) >> +>> endobj +3240 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 550.104 239.882 562.059] +/Subtype /Link +/A << /S /GoTo /D (classStk_d4) >> +>> endobj +3242 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 505.844 229.642 517.799] +/Subtype /Link +/A << /S /GoTo /D (classStk_d5) >> +>> endobj +3244 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [282.71 414.111 337.549 422.912] +/Subtype /Link +/A << /S /GoTo /D (classStk_p0) >> +>> endobj +3245 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [282.71 398.457 342.53 407.257] +/Subtype /Link +/A << /S /GoTo /D (classStk_p1) >> +>> endobj +3246 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [282.71 382.803 342.53 391.603] +/Subtype /Link +/A << /S /GoTo /D (classStk_p2) >> +>> endobj +3247 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [282.71 367.148 352.77 375.949] +/Subtype /Link +/A << /S /GoTo /D (classStk_p3) >> +>> endobj +3248 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [282.71 351.494 352.77 360.294] +/Subtype /Link +/A << /S /GoTo /D (classStk_p4) >> +>> endobj +3251 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 283.386 201.636 295.341] +/Subtype /Link +/A << /S /GoTo /D (classStk_b0) >> +>> endobj +3253 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [217.383 239.126 241.791 251.081] +/Subtype /Link +/A << /S /GoTo /D (classStk_b1) >> +>> endobj +3256 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 144.902 260.803 156.857] +/Subtype /Link +/A << /S /GoTo /D (classStk_e0) >> +>> endobj +3234 0 obj << +/D [3232 0 R /XYZ 160.667 686.127 null] +>> endobj +3235 0 obj << +/D [3232 0 R /XYZ 160.667 660.755 null] +>> endobj +3237 0 obj << +/D [3232 0 R /XYZ 160.667 616.495 null] +>> endobj +3239 0 obj << +/D [3232 0 R /XYZ 160.667 572.234 null] +>> endobj +3241 0 obj << +/D [3232 0 R /XYZ 160.667 527.974 null] +>> endobj +3243 0 obj << +/D [3232 0 R /XYZ 160.667 433.751 null] +>> endobj +3249 0 obj << +/D [3232 0 R /XYZ 160.667 305.516 null] +>> endobj +3250 0 obj << +/D [3232 0 R /XYZ 160.667 305.516 null] +>> endobj +3252 0 obj << +/D [3232 0 R /XYZ 160.667 261.256 null] +>> endobj +3254 0 obj << +/D [3232 0 R /XYZ 160.667 167.032 null] +>> endobj +3255 0 obj << +/D [3232 0 R /XYZ 160.667 167.032 null] +>> endobj +3231 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F31 829 0 R /F22 474 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3264 0 obj << +/Length 1689 +/Filter /FlateDecode +>> +stream +xÚíXIsÓH¾ûWø(¨éU 7–„&ÀľLE–±&¶edW˜??oi)Þ 0nTªœ×ݯ»ßú½×RC j¨d"tœã4‰²Ãb1x:<:×f˜‰,6Ãñ”8Ç“÷± #“Ú`Ô^#a‚g¡ +æa¤‚|½Æ\⨜–M¹,ÊðãøÕкX¤&ñ‡(«pvp6(/C$…ɲadD–:”àóàýG9œ äðÕ×Òáh)p-6qB«ÔçƒÑàÏþ(9ŒtBr÷Šè¡R"sn_”QP ¯Ò6x^¢à-LåÕ~Ë è“¸à9é³.šj…‹U ?KÔàÑyºk¢H[¡lJÇÆ¯a³1Á·¦pÂÅœ ÷’i`›JD¬-m{SæÍüÍè‚|>g‚Ï¢ÀmóþÀ5ÉKFƒ +…š…t +¶¼2²©‘AÓbRÅÁy˜Ù`ƒÆ@7,}¦ÕÄSl@ËÐø”Á^d¤:M½F?öXUpô,z`u)NÁµ¥,-B€ϬËvÍ{ZÂ"Œ×I…BŒ¦ÎSRœmËoåÁšM’CÃ)Ʊ~±ly°YW˜ŸxÔÎ*ÎW›¤ L{«……H&˜®”«:ʳtlùœc iÒ ¢ 0ô(«ÛÚ&ۣΤ\y¸¥$á°vš3 þWdGg ò] wö²Ab8€ú—-/{ň\2ˆæóêkékk^k}eAzRNsó<T¬È_óºeîª[Ïó™Xn 1?$¬’+!‘/iß,SÉ~™2}™*jÐÅ×'0Àa“¬ Þ@§…õ&‰5¿¼Þ úoAê9. èĘæ\>qêÖ¨ˆ>>!®‚ÂgþŽ_)æèå›qz\¾°&ÙõK;àÛí "¥S_†Bö1”NNúÔh!•:ô©þQŸ¦ÐCO$å²ß.í]ªâ>…ª.“ði&RàÛó©ÑI|«0Ùÿ×zÖüϦ¿=Û{Öèûõ¬<´©‰í ÷Ù/'â'ò×þÎßû{©œò¸K…Ôw¿/t"…¾ÝÒù¦n9=É¿RÛ1é¾µPóÒb/°õ­ ¬.yu…=ÐfýˆÚÄŠ:¨ï%6òg¢ÃýÆ€û‹ŽØÞSt¤¿::öœ«á¬!@0ùŸ-ùó§oS{ÛÙa,²ÄîÚŽ³Æ£è8©á§Ö›^¡Ÿa +ž ôlÃ_x ½Æ~—ð!†;Ÿ=xÀÄpËïBc“ ?s)ø?~d‚5üÈ„CüÜÇ[¼ µÿÒÄÇ(™‹XäxÃ<º¦mððÀ’Τpz}0gtá#ÀÝjiá¤ÃOñŠýg +å<ߎeÀ ÖYoBú¾œex—ûGKIŸ:Ïý y;àendstream +endobj +3263 0 obj << +/Type /Page +/Contents 3264 0 R +/Resources 3262 0 R +/MediaBox [0 0 612 792] +/Parent 3226 0 R +>> endobj +3265 0 obj << +/D [3263 0 R /XYZ 106.869 686.127 null] +>> endobj +3266 0 obj << +/D [3263 0 R /XYZ 106.869 667.729 null] +>> endobj +3267 0 obj << +/D [3263 0 R /XYZ 106.869 558.136 null] +>> endobj +3230 0 obj << +/D [3263 0 R /XYZ 106.869 533.933 null] +>> endobj +3268 0 obj << +/D [3263 0 R /XYZ 106.869 533.933 null] +>> endobj +3269 0 obj << +/D [3263 0 R /XYZ 106.869 410.392 null] +>> endobj +3257 0 obj << +/D [3263 0 R /XYZ 106.869 386.189 null] +>> endobj +3270 0 obj << +/D [3263 0 R /XYZ 106.869 386.189 null] +>> endobj +3258 0 obj << +/D [3263 0 R /XYZ 166.645 344.417 null] +>> endobj +3271 0 obj << +/D [3263 0 R /XYZ 106.869 329.2 null] +>> endobj +3259 0 obj << +/D [3263 0 R /XYZ 186.571 288.258 null] +>> endobj +3272 0 obj << +/D [3263 0 R /XYZ 106.869 273.042 null] +>> endobj +3260 0 obj << +/D [3263 0 R /XYZ 240.258 232.1 null] +>> endobj +3273 0 obj << +/D [3263 0 R /XYZ 106.869 216.883 null] +>> endobj +3261 0 obj << +/D [3263 0 R /XYZ 270.008 175.942 null] +>> endobj +3274 0 obj << +/D [3263 0 R /XYZ 106.869 159.065 null] +>> endobj +3262 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F35 1011 0 R /F29 818 0 R /F32 881 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3277 0 obj << +/Length 492 +/Filter /FlateDecode +>> +stream +xÚ¥SMoœ0½ûWøh+ÅñøpM›JÉ¥írKs @²(,¨ é*êŸïŒÍîFÚcÅ7öÌó›76pp”÷çeP8ÞìØ§Š]ß˃ +¹åÕSL¬ÚÎÈÌVl* â£Ò‰›¡žg‚V|žð¢‘ˆWÌØèFiXꥧhÂåQ>VwìKÅ`‘ieCÉ3«BéIÃoöð¨yË4¿ciï€X+ï˜+¼2P®ñÀ6ìû‰ +,(¯sž™"ê?6T^öSm;”kh%éÊL)š×]G*GiB”<”bÅ¥ì^¶=Fsª½×3¡9¥¤)â +¥Âè,ÿ×hMÀgø§•Ü×endstream +endobj +3276 0 obj << +/Type /Page +/Contents 3277 0 R +/Resources 3275 0 R +/MediaBox [0 0 612 792] +/Parent 3226 0 R +/Annots [ 3279 0 R ] +>> endobj +3279 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 631.175 209.938 640.086] +/Subtype /Link +/A << /S /GoTo /D (Stk_8h-source) >> +>> endobj +3278 0 obj << +/D [3276 0 R /XYZ 160.667 686.127 null] +>> endobj +3275 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3283 0 obj << +/Length 1260 +/Filter /FlateDecode +>> +stream +xÚ½WmoÛ6þî_!tÀ ¡5ËW½Û>,q†¶èà%Þ‡¡éE–c!¶äIt²`~wGJ¶g·ÙÖm0 ‰äñîžçŽÇ³8üD xÂdœqš±Dè X¾Ÿ^_Jd,‹U0[älþ!Ô,ÑX¥:¼¶÷“H„m ¦Å9ž¯ò®sŸWå"‹°Äå².J˜å±Q¡Ð*ú8{;šÌFÂÛs¦²,+–¥­ÿ:úð‘óÞŽp- á›3Rë‘N “"õãÕèzôÓ Šc™ÏÍ”ŽQ€WDIH`8Aw <Ä'qxŸ +žˆ+1€ %ˆŠ6Ðñ¨×—é>cèŠÎÈàõìlW +øh‰,ø\‚޼ž£ª†çNë°pŠ9•2;Ð)KCJ¿ªêbµ{ÓBìätÂx¢<ØoŽõ$,ÇÜ2 gËc2fÂH/óW\ +–ƒ㔳,Ñ6ÅŒIHnº½]’ªp\½/í²ÁÀ‡óÎ[Ð; Â@X°$Óþ.’#"ñC΂úû &ÕÀã 7¼hêκaÉ$\æí±ÁL1Ù£¾á\YҀ l^9u³_¦.9p`«MQu¡ÿæÁÙÙÏ?âäçÎß\¾™\€sÂÙQ"HÁPì¸ÓŒg DLjMgK—S*Nƒ‘”…5Âì³í¶°Cn²cpc©™P1¼á‰¿ÆæC…~Ûm¾:Ö§$Ó<ØRüH&QúL\"™†M…Iþ &¤!Ò?Åļì:Œ o´ðï£'½¯07w›¶¢À´}_ºC™ß•î˜":XížF ‘=pÓ¶ª-Ö’8 _ØeAMlë.”šhÀ­öFaÙ6n¾³s̃­}–ŠÈÅÞy‚0ùÚ}Þ•v†xŸ†SÐ3ñlœO0q…Hé$Ùm»Ëuh—åiŠG‘ÜQÔWbªÑS3ÁÉ…ùÉ”.G%u¢ê$P‹µù\ÙI™â½ Rð¤ÚŸ öv± ÔîrßN¯DïêÿãÝÕªª¾Û¿Á® •1Àm¯53">¸ŽaG'_8‘Ó +¯”rî®” j*º¢­6¸X¹"yêî… +k¾ðòîÛ¾.UHÏÂÊ÷ð™»×‚p Å‘²¼ëˆ<âQνÈ]Y—mn{ªç;m³v"¸Ø{C¦V«¹{¤#à®A¡1œ¤âì3ma&Ó§ rmÛ~' 4#˜”é¶Ñ®!÷)1´Ò:ˆ©åÛë¤)Z™ðú©Žà„èÄ“¢¨Ã<ÆÁZCŒ¿ƒ¸Óä7í<ùÒ}Ü¢‚'·8 ËéÏCëg®˜{ŸÓ6÷n˜×>48ø®hÜ5¨?7îЀ‹EŽPuCÛÊW”]2ãÐÂB¿ „¸F¶ð•Ëì%3ÜàŸ•Ø—-“ñr{ÌhœHRˆb@/Ú2¿KŽo.û¨ýL"<endstream +endobj +3282 0 obj << +/Type /Page +/Contents 3283 0 R +/Resources 3281 0 R +/MediaBox [0 0 612 792] +/Parent 3226 0 R +/Annots [ 3287 0 R 3289 0 R 3291 0 R 3293 0 R 3295 0 R 3297 0 R ] +>> endobj +3287 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 553.232 171.305 565.188] +/Subtype /Link +/A << /S /GoTo /D (classStkError_a0) >> +>> endobj +3289 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [163.584 514.378 211.461 526.333] +/Subtype /Link +/A << /S /GoTo /D (classStkError_a1) >> +>> endobj +3291 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.17 475.524 244.31 487.479] +/Subtype /Link +/A << /S /GoTo /D (classStkError_a2) >> +>> endobj +3293 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [228.951 436.67 266.643 448.625] +/Subtype /Link +/A << /S /GoTo /D (classStkError_a3) >> +>> endobj +3295 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [216.525 397.815 267.611 409.77] +/Subtype /Link +/A << /S /GoTo /D (classStkError_a4) >> +>> endobj +3297 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 243.988 156.14 252.899] +/Subtype /Link +/A << /S /GoTo /D (Stk_8h-source) >> +>> endobj +3284 0 obj << +/D [3282 0 R /XYZ 106.869 686.127 null] +>> endobj +1558 0 obj << +/D [3282 0 R /XYZ 106.869 667.729 null] +>> endobj +274 0 obj << +/D [3282 0 R /XYZ 106.869 667.729 null] +>> endobj +3285 0 obj << +/D [3282 0 R /XYZ 106.869 572.66 null] +>> endobj +3286 0 obj << +/D [3282 0 R /XYZ 106.869 572.66 null] +>> endobj +3288 0 obj << +/D [3282 0 R /XYZ 106.869 533.805 null] +>> endobj +3290 0 obj << +/D [3282 0 R /XYZ 106.869 494.951 null] +>> endobj +3292 0 obj << +/D [3282 0 R /XYZ 106.869 456.097 null] +>> endobj +3294 0 obj << +/D [3282 0 R /XYZ 106.869 417.242 null] +>> endobj +3296 0 obj << +/D [3282 0 R /XYZ 106.869 361.459 null] +>> endobj +3281 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3301 0 obj << +/Length 1402 +/Filter /FlateDecode +>> +stream +xÚµWYoÛF~ׯ Ò—nöâ’ Ú­ÝIšÆµôR$y $Ú&*‘1Fþ|çXR²å¦)šÂ€¼çß|3³Ô‘‚?™\&Iù,—©vÑz7ûy9{úÜØ(—¹·Ñò‚.7ï„vn[ã´‹å\‹×0Ëœ8Ù]‡C+Nø¯Åzk1À‰Êzn苾ÂYËõüÃòÕì—åL#b%mžE±•y–  ׳wT´™©èÕŒ÷n`¬¤Îóh7si"ÎÂ|;[Ì~ŸDi«e¢|›”ìŸ2‘vÒ:è‘“`7`—6N,†Õoh^ÕÁO ž¤^œÀüƒ_t1MÄy‰^\ð -Zú­×%ºôôyvˆšàMJšKDËZÑ +¸ã­®Ø}Ü–^¯›Š•°jX¹dÑ“¦F}ÓJÖdò;ª4ªr¤ê»ª^o‡M°Hëý9—J•ºàû÷ÇrR™º,lUWÊ«c9‰‘Vr~<ò<Ö*•Úø;V½¬¯&Oã¾@ÏÖ“¿Nlp¹¸l‹ûÑ´ «-z±f®¼)û+Ì%6]@ÑíaÒ ÐÑKŒÌKÞ+ÁɃ1* s+ïU¢ªzn2Ñš)¸:/úòíá„fÑVGˆ¤D€”Ð)ضðUœ–ŰE1>ƒø$V4u׷ú§xøTte߅Ѱb&ƒ" 3æÊhì¶óÄbmÉÒú†7´—ÇpÄl±žþ›C<âD)Yu„ Ð+Õú‹Ð8‚–ößKg’;îŸì³,FN–£÷ÿÆè/•s \¨¤½¹Ÿ0MµͦˆRª4õè]ÿUÁ<ÇøQÊôCK•—qBÄ•w(XeâÞqÊÁfÜa¡PUõ%ïµ(ìýVpLÞ2qËþ.ƒÖWóyQö÷œFÖBíA‰®£Åå¼Õâ[ùùæûEËhUÐöt¦dšæÿÜø ôÇüÁ¶v¦ò”·ï翾E¤šCÏ^2œ}E5ؤâÏ}yÙØK¥³¯!WqŒr‰ˆnî¡K#Ç›ïÔÃn5‰ µfE´ìoJ¦'/RÍÑØ»/u®¥ûãa}Žm.C1×€éaï‡ëð8eg°˜UXÇ©7C?¥rÒ­Ûê#nVÓæ¨á-òäÿhøSgé/ʺl! àºaÈ XÞð¼¥æºA`qJ4ì0úÓð[¶|ôPþ•í-/=±£x©¯EÈ\8tT h3´u\>¹£}âÃÓ0µü¾¢J¶w-„ +\[^…ä¿ÆÅQêÑÄ[^n.ð¿ é H=$€Þ³—ߨê5©¢…OóÄ‹¢­5¼ˆ&µD>‹‡ƒÄ·‹ ¢á9ùÓ€Â{±à—Íj2Ί3ÆM ++ç\Bh|ÒúMH6†‰Ç/Šƒ;gsxKËý㇠+P4×ʉ"Oø ”ƒ„G1l”2Ñf–ҎŒY»@;¬²Å-Dg|õW«x—¬Áô(:îýtä)R„#—ž›½¨ hd×héØnôê† !íð)ÁO½£oÂ3Va‘÷F¦&û¯ß VšÜOœÞw9¼–*(Áçl"·ðM“  ø`€e¬ªZyÄöBéuÕóVÅÓøä1Nód…‚ny|6·sÐ ++ç2\¡—1Ç1!©vÒ䱃o wàõ-d°s] øO(·¡;墅É|öAg\¸}­CÙLönÇØž~œyíÇ—„sðh#ɲ€.}(æ9êJ>q`Æþçÿf¹endstream +endobj +3300 0 obj << +/Type /Page +/Contents 3301 0 R +/Resources 3299 0 R +/MediaBox [0 0 612 792] +/Parent 3226 0 R +/Annots [ 3306 0 R 3308 0 R 3310 0 R 3312 0 R 3314 0 R ] +>> endobj +3298 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 810] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 3316 0 R >> +/Font << /R9 3317 0 R >> +>> +/Length 3318 0 R +/Filter /FlateDecode +>> +stream +xœ’ÁNÃ0 †ïyŠƒ‰ÇI®H\‘ÆúLŒmP¡i ^gK–TÛ@ ZÿµïwlµÉOy/FµU·¤_vj«qÿ«¾£¾ägÒ)€MÁêa©e¨Ù@4ÞkÏ<=Œêjþùôð¾Þ=_u?è™$¯UD0õWn_jËÁÖX`ŸÃQQ3œ—ï·ã7²E`+JÍ> +endobj +3317 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +3318 0 obj +343 +endobj +3306 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 423.731 227.152 435.686] +/Subtype /Link +/A << /S /GoTo /D (classSubNoise_a0) >> +>> endobj +3308 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 384.243 234.9 396.198] +/Subtype /Link +/A << /S /GoTo /D (classSubNoise_a1) >> +>> endobj +3310 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [200.197 344.755 237.806 356.71] +/Subtype /Link +/A << /S /GoTo /D (classSubNoise_a2) >> +>> endobj +3312 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 305.267 241.404 317.222] +/Subtype /Link +/A << /S /GoTo /D (classSubNoise_a3) >> +>> endobj +3314 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 265.779 260.571 277.734] +/Subtype /Link +/A << /S /GoTo /D (classSubNoise_a4) >> +>> endobj +3302 0 obj << +/D [3300 0 R /XYZ 160.667 686.127 null] +>> endobj +3303 0 obj << +/D [3300 0 R /XYZ 160.667 667.729 null] +>> endobj +278 0 obj << +/D [3300 0 R /XYZ 160.667 667.729 null] +>> endobj +3304 0 obj << +/D [3300 0 R /XYZ 160.667 443.475 null] +>> endobj +3305 0 obj << +/D [3300 0 R /XYZ 160.667 443.475 null] +>> endobj +3307 0 obj << +/D [3300 0 R /XYZ 160.667 403.987 null] +>> endobj +3309 0 obj << +/D [3300 0 R /XYZ 160.667 364.499 null] +>> endobj +3311 0 obj << +/D [3300 0 R /XYZ 160.667 325.011 null] +>> endobj +3313 0 obj << +/D [3300 0 R /XYZ 160.667 285.523 null] +>> endobj +3315 0 obj << +/D [3300 0 R /XYZ 160.667 228.423 null] +>> endobj +3299 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im61 3298 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3321 0 obj << +/Length 389 +/Filter /FlateDecode +>> +stream +xÚ¥RMOÃ0 ½çWä˜jÔÄIœ6W&†4$¬·±ÃèŠ6Á6± ÐÄŸ'nºiGT©qlçå½ç ÔñC‰ºãKéË:Y/ÅM%®ÆÊÁ[Y½µÕl¬x“å¶tjô•¡z}X/²Õ6ÆMÊ÷cøÁ¹)'·œ´ê™Í[³iV5÷i§I¡£lR Åm%°£’k°!ÈÜB(‰‰|ŠñDË™Ðr(¸VÊŸkÀص® 0Xvû1OG($°ÎÊÜ­†ƒ¨¨ïBÔ‹Æ‚™\ÊS‘Ó5œ´¶Š¢˜_P?\H„`Lù?öˆˆNqÒC(Ü9ùj u–Ôh¿Êâ²›7-ÅÅ–ÓNUj¯ÖÑtâÎýb—J‹U:ÙïõRðÊûT|̬WÍ&*Þt™gHkŸÁ"ä{ÚNWŒ:K›»vò|ꟗ‚Žb=å¾zÝk®ØGi‚"e,ZYuˆ¡“âÜiâ7âÑG]ß™3hÀµXl!·E{ù.ú5šWm³ûÒ ©endstream +endobj +3320 0 obj << +/Type /Page +/Contents 3321 0 R +/Resources 3319 0 R +/MediaBox [0 0 612 792] +/Parent 3324 0 R +/Annots [ 3323 0 R ] +>> endobj +3323 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 656.77 181.656 665.681] +/Subtype /Link +/A << /S /GoTo /D (SubNoise_8h-source) >> +>> endobj +3322 0 obj << +/D [3320 0 R /XYZ 106.869 686.127 null] +>> endobj +3319 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3329 0 obj << +/Length 1591 +/Filter /FlateDecode +>> +stream +xÚ½XYoÛF~ׯ Ð 7{s7( +´qS$qŽÆz)’<Ð-–(‡¢œ&ýó™]R’©8HSÌ=gg¾¹%"‘žãë<+„Nf«ÉoÓÉ£§R%žy«’éœÎߥBÛ,WR •žM3‘¾€™Óé“e¹ÙàP¥'køŠt–å"݉ª&S2íÊ®ÆÙ–›ìÃôùä÷éDD&rΔwI®˜wyø8y÷'ó OžOÂÞ's&¼OV]&…‹óåälòç@J(Á ·I. âH&B3¥í¾Dš7V_Bêtšy•–çKX«@ŽÂ€h0ÒÁìmuQµA¢Y…"‚ºy!U8´?&{éïÆ…GÏVV&'k°Œdgù@YkV(`‚ycö­ãÍ–l¡žõ¿¬ºK´ožÎ7?½H0.6 ™—tý=ÅÇ0ˆºØ!àõž>ˤK/Ëvüð.¬ˆ—ßs®FÔ5ø½ìõóª\U@\„€›ƒ+ä +¹§+¦¢¥=!ÝtívÖõ.‹z³Eº s|£nÑ1¬K»h8ž—0îÊpü¢ÍŒ¤û«(Žß½Œžêt±Ïnõ +ýmUÙTnãY6Æ&` Y.5“^ì4Îa¤ø-0åBˆ;•q3Ë´4‡ ïð@hª€ßº=Æ,ð(”óz—µ,×è]‹ÀÛ¢êN«fÀ“;!«°IÜÒþl ú3Pê€ó·¨L²‘nÛRlŽ*­‚ +›!–Ÿ£.«hë‹ð­È"ªUohM· u¾‘Ã@‘çãå_·c†–ö!…-XaÝ·“ø©óGSHÜ‚ƒ§Â§§¯ÑMͦÚËM÷êv:é¢BT$ në#Žhî»tCØ£¿mº°ƒž¶í®·]Ø¿é÷éàöÛèËÿŠ~0Ë•‡,RÜ?øP[`æÔzµCÌfQ0Ç]Ÿ2î“ÁU?¯þþJv–9a¾KùèO}ª=¢ë°ZFK¸FbëMÝÕCýu;LAí¨`u̦D×’wa§˜têG}92…³Ñœì½jk$” \ù»²®cŠ÷¨t5åï;­ÐIÎß³Žå…Ûo}v¼AJ1Hi`Bƒ€ÛfS/š>øÏÃbM&b$ —ñæÃ3,©¾Ðô+΀UØã7L³Â§åU5¶\(¸¤¸ÅgK‘ž!3_ŽPö Ì=WßzG q\,KÃfÙÌàÝ÷Í&¬Ç4XÒcÍÓ˜17f3¯›E<ºçº0½)—Û*>QñÍÜ(”°zåP¢ú#‚Ž=U3ãÝ¡§Ô¸¹ÕTPå0; nh1 ÿ¶E‚º"“ž9±0«©žœ‡rø„$ØÌÚú7÷Ë­®b´“ÔÁ™)Þ;Þ!Öй¯öGCKéeªöp2´¡8\"/åœféÓ ÁúE{, …Y—”>šE~^GqzÆ«XÏ­·=«ð"X¿>àÓeðöËøP»£O¼Ä©÷ |FgÏ©¬¡P16#œ2=¯y(©0s ƒ%í„.*öÖ%BϲZ÷ô´n*`Ž û>í†Þ, +Fí,ä€H¨Þ„oØ­Ú ”³Ýñ \PÇF¢¡•3º D–au9è‹Ù—ÆôÒPÞ«6®,CêÌ8èUýhóùÇÛƒ¡½ÓP³{è‘÷ÂãýZÚôìs“Áü—x$P†LÁ-Ú#ì­É +_Ô]تƒZhüäN„É9úÆo2eSD?®¼eñ +ÒWaZµy˜üAZm醂)‹|ÎJ$ƒt×T–W qé93‚àRl³èñf'vŽõ±Æ_Z0£ÆÄlâ¹=x„dšh)"  Œo™$ç8½ÿ¨i=’endstream +endobj +3328 0 obj << +/Type /Page +/Contents 3329 0 R +/Resources 3327 0 R +/MediaBox [0 0 612 792] +/Parent 3324 0 R +/Annots [ 3334 0 R 3336 0 R 3338 0 R 3340 0 R 3341 0 R 3343 0 R ] +>> endobj +3326 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 784] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 3345 0 R >> +/Font << /R9 3346 0 R >> +>> +/Length 3347 0 R +/Filter /FlateDecode +>> +stream +xœ•AN1 E÷>…—”…±ã8q¶H=@i.U‹ E©×¯;패Äeaå¿ïÿe&A¾¼ÛÜ p„§—ŒïßpDÑ46>÷€ Å +yQì;¸® V¡,âØ„Œ5Ðýõí°]ôOXv\…óD™ª4EÏ|‚—Vˆse#÷°$e¥–~+÷»GXÁŒ"S endstream +endobj +3345 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +3346 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +3347 0 obj +207 +endobj +3334 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 451.755 211.045 463.71] +/Subtype /Link +/A << /S /GoTo /D (classTable_a0) >> +>> endobj +3336 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 412.139 218.794 424.094] +/Subtype /Link +/A << /S /GoTo /D (classTable_a1) >> +>> endobj +3338 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 372.523 252.418 384.478] +/Subtype /Link +/A << /S /GoTo /D (classTable_a2) >> +>> endobj +3340 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 332.907 277.231 344.862] +/Subtype /Link +/A << /S /GoTo /D (classTable_a3) >> +>> endobj +3341 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 293.29 260.571 305.245] +/Subtype /Link +/A << /S /GoTo /D (classTable_a4) >> +>> endobj +3343 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [247.509 253.674 265.552 265.629] +/Subtype /Link +/A << /S /GoTo /D (classTable_a5) >> +>> endobj +3330 0 obj << +/D [3328 0 R /XYZ 160.667 686.127 null] +>> endobj +3331 0 obj << +/D [3328 0 R /XYZ 160.667 667.729 null] +>> endobj +282 0 obj << +/D [3328 0 R /XYZ 160.667 667.729 null] +>> endobj +3332 0 obj << +/D [3328 0 R /XYZ 160.667 471.563 null] +>> endobj +3333 0 obj << +/D [3328 0 R /XYZ 160.667 471.563 null] +>> endobj +3335 0 obj << +/D [3328 0 R /XYZ 160.667 431.947 null] +>> endobj +3337 0 obj << +/D [3328 0 R /XYZ 160.667 392.331 null] +>> endobj +3339 0 obj << +/D [3328 0 R /XYZ 160.667 352.715 null] +>> endobj +3342 0 obj << +/D [3328 0 R /XYZ 160.667 273.482 null] +>> endobj +3344 0 obj << +/D [3328 0 R /XYZ 160.667 205.157 null] +>> endobj +3327 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F19 460 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im62 3326 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3351 0 obj << +/Length 964 +/Filter /FlateDecode +>> +stream +xÚ½VKÔ8¾çWäèbüLlnì,ƒŒfú‚€C:f£I'îža´~«\N:Ј=¬´)]¶Ëå¯_ÕÈTÀŸL¥(¹*\Z8ÏKiÒz—ü±Jž]*zî ®¶AsµùÈ /t–kgØ*ó«Ö]ƒKÍ.ºj¿'ñ¦Ùf¹d͘Á¥„:l‚ÒÆ1iÊìóêuòr•Ȉ"\{Ÿæš{g÷äãg‘n‘¾NðÌ¥ .Ak—˜Òr%]\wÉmò~6%Ò\•ùäŠ;÷äE`´f·îp÷ÁŽÃH{mב´ÎÀTÀ­ ;ü”2åØC¼Ýné7MjÕ]\}Ò,–íž.ôÄíp„ã~Ž1Aô²ä…2æ_{$Õk”›¡ÆŒ*'ùb¬Ž w´¬0ê’_U‹;×䈟œ™©Ðô=~†~JÛSÒøZ’rrA ¡T(•JɽµY8æÖºX)`Šð)°&•aWÁì.Ó +ãªC‰äº,Øeæ ;öõ¡õC[ZöçtêãîTG°>ÀªÂO;`Ü"ŽJ5W† ëç‚åxYq‰0¬`W~®½ÂsWª4Çš2òß‹Os£Ë_–^<ù-‡.ßðw…™·@¤ÀšŸ${þü€?mZw¤ðIX›WpûÌ©·^ÒËÿ+ømOšFrçLToûMóýdàϾ4}3šŸ\%Sã°‹ ‡Å”üðF×Qknû/¤¾h½@) +Ì·E”¸6*ÌwL¬EYžE +µÂî97xl¾€âl–·¸.å8¦¼+ÿã<£É;íÌN“ÜCì I1Ú²ÛGh–ÙA…¾ÇmÚR «Å/8ñ¦=Ði¸yñä k4ðH‡×™.h qç†Ó/N8éƒK˜:”.\¼ª¦âžÍÀÿŒGˆu…/Ü£é!\kž†jS^ÀbA@ÊàV;ˆ=yœC¿ÿk( ÎcêlÔ[DF*n‚- !ªAxñ-û· +ÝT¨)yÿŸž³endstream +endobj +3350 0 obj << +/Type /Page +/Contents 3351 0 R +/Resources 3349 0 R +/MediaBox [0 0 612 792] +/Parent 3324 0 R +/Annots [ 3353 0 R 3356 0 R ] +>> endobj +3353 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [122.201 656.77 162.328 665.681] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +3356 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 496.627 165.549 505.538] +/Subtype /Link +/A << /S /GoTo /D (Table_8h-source) >> +>> endobj +3352 0 obj << +/D [3350 0 R /XYZ 106.869 686.127 null] +>> endobj +3354 0 obj << +/D [3350 0 R /XYZ 106.869 624.264 null] +>> endobj +3348 0 obj << +/D [3350 0 R /XYZ 106.869 600.15 null] +>> endobj +3355 0 obj << +/D [3350 0 R /XYZ 106.869 600.15 null] +>> endobj +3349 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F22 474 0 R /F35 1011 0 R /F32 881 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3361 0 obj << +/Length 1612 +/Filter /FlateDecode +>> +stream +xÚÕXmÛ6 þž_a`_´VõfË:¬¶ko¸¾¬Ý%Ã0´ýà&Îq‰ÆJnÝþüHJNœK®/XÛa8à"QEò!)Ê"âð'"iYšÚ(Ë-3BG“Åà§ñàÁ™T‘e6SÑxFŒãé«Xè|˜(©…ŠG㡈ŸÂ,×ñé¼h[ªøQ¿"ž ¯cƒ²*»ÂU8k€\ߌŸ "(‘p¦l%ŠÙ ~ÝŠJ°”gQ" é¿5HFB3¥³¾Eš6™½„Ôñx²üUÜñ¼KL +ÆÁÄÛ³‹rV®¼M“xp–÷ý„‡¦™$Ù£1úG©¸ª‡ÒÆ®Ä}+´¾t¸ ãÖá”èÅ¢ª/·ì"^¢÷œ'7ÑÇÌŸ(íޑ°Lj:ò»ªžÌ×Ó ™;>m7:Xýý¡ÃŒÎÃ2ºas^³«;ĨÀ÷ÃÁËm”J‰í¼¾ê¬Ds+W dTéý0Erq¹*ÞàY³òÒ„À89¹2tVÁQ™d–SÔDï $¸5CÈÔSLu{áÁùô~Ô@ôD»J¶’µfÒä{$˜MÓ~½\¿Å©&>@ž—î +s€ÇÓ6¸Oïü#R@,%Ë„¢ý¯¹0~ôƒ ôÔÎ@P¼_^ó”ã¡Xy%ËaÌ®•{(9Ï€IxÉJD9H¤È‡½–2Èâ ÊY±žƒ˜Td€K*㦆Ð\Oâ€ÄÖký´Ôf˜†è¼.Ãö¶\mÙ&VØøöÍüZÝ¥?ñš¸Å8ÇãÊ­œ +Hà탨ÓûÀ ¿îªÜmò±´)ƒvyšR<9U cOêÀƒKGÛEÛ#ª©ÀEVg1Evë+WíI!ôÖu[]Ö½¢ÒîCçõéz½®ËyûP’‚[Ü5ONFðŒ»ŸÞNmi3P­ *C¾ióñ *@n^ae›Äùáµv†*¿¸xúü8„Kl쵟Q.%[àCËtjP%_`ߢpï6"‘\1í­ -_׈Ñù/cqGÎ'J3Bû±ô¬j}&ÒýLïË. +ÿƒP×å É$B¨ 5eÑÄUMØxÓ¥®O¨üÓ2Ûï.7¹*0R¡íô¾hÞ̛Ղ2ùKü[(›ªÏy¸ÛÓm§R—×Åx¯ôvyòÉEöm&An½êì;µ21öRC™Å¿=FBŽ‚ˆT/×ÎSÁ€t’þ§OÙ ÅßÞnïp­¡ö7UÝvŒþ8çïì~]µdÇ»u¹¦ƒ¾Ïÿ8È…é%Б*õµóæìÙ „_c"c;UÖ½èõ_ùÞ¾+ÃKòH®eŒCgê¡¿ y̺Ñ(Ê7¡7¶â²#Nf[ïM·!'ý<©Y;¼MÖ.¤ÆËb92f$‚håWDË;9Q–‰Ü|{´\EÝ$$ñõ!\TtŽ–Ä>L{8¡Ë¦[÷°òN½Âpjêò£px†Æ÷F]üFåߣ“à.âÊÞל«[r¦¸ kÖƒöк\2Ó)õÚeõ³4!úmVI#6Ù"¾ï 5Ø7á^Ñ$÷vÜï:h,NÅ+м{ÍÝŠó.%¶QŽU5Ü÷UœhwºJxñÌî{ÉQ#vhäDj»GëÑä1œå\}^öøºN¥;ÂÃ\‚çfFß*þwÉ„ÇJ‚—vxz+–´nðW^ƒÇZ[n$†“ú_°!6ë÷Éþ¹­á d¡î¹cŒ…X«4½¯‡ð…™Tô ºHð »9Xkè³ÉÓÊù¥*> endobj +3358 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 869] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 3379 0 R >> +/Font << /R9 3380 0 R >> +>> +/Length 3381 0 R +/Filter /FlateDecode +>> +stream +xœ’±NÄ0 †÷®^NÛGuÙê•äîT`ˆž½þLísm¾˜=DK(A¯("‰òþ<½Û#X¥d*)«ˆb/’—^­åö?áX´à4å fAò­w¤&€ãAQ*‡w¶Œ3ׇJ­Ú*ä’™ÜÿX‚ÒgðÎ ,ë÷§ßQ83”¢TYµÙf5~¨Ô*A±‚ N<8—QnõoõܯAØñØâ¼1ÓÎsèÒ’i¾>Æ2OÉQlªXH’Á(³’ñÛt’$9äžçÊ²ËæLFëǯ/ËÍ!çEþ䘧eá4ÁÉr]N±ÌeÅq–=ÄðJ}ÞoË2endstream +endobj +3379 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +3380 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +3381 0 obj +348 +endobj +3365 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 424.483 228.757 436.438] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvIn_a0) >> +>> endobj +3367 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 374.337 236.505 386.292] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvIn_a1) >> +>> endobj +3368 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [212.669 335.149 237.963 347.104] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvIn_a2) >> +>> endobj +3369 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [209.883 323.194 269.703 335.149] +/Subtype /Link +/A << /S /GoTo /D (classStk_p1) >> +>> endobj +3370 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [207.116 284.006 261.744 295.961] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvIn_a3) >> +>> endobj +3372 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 233.86 277.231 245.815] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvIn_a4) >> +>> endobj +3374 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 194.672 260.571 206.627] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvIn_a5) >> +>> endobj +3376 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [247.509 155.484 265.552 167.439] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvIn_a6) >> +>> endobj +3378 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [273.578 116.297 318.41 128.252] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvIn_a7) >> +>> endobj +3362 0 obj << +/D [3360 0 R /XYZ 160.667 686.127 null] +>> endobj +3363 0 obj << +/D [3360 0 R /XYZ 160.667 667.729 null] +>> endobj +286 0 obj << +/D [3360 0 R /XYZ 160.667 667.729 null] +>> endobj +3364 0 obj << +/D [3360 0 R /XYZ 160.667 444.077 null] +>> endobj +3366 0 obj << +/D [3360 0 R /XYZ 160.667 393.93 null] +>> endobj +3371 0 obj << +/D [3360 0 R /XYZ 160.667 253.453 null] +>> endobj +3373 0 obj << +/D [3360 0 R /XYZ 160.667 214.266 null] +>> endobj +3375 0 obj << +/D [3360 0 R /XYZ 160.667 175.078 null] +>> endobj +3377 0 obj << +/D [3360 0 R /XYZ 160.667 135.89 null] +>> endobj +3359 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F19 460 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im63 3358 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3387 0 obj << +/Length 2295 +/Filter /FlateDecode +>> +stream +xÚÅY[Û6~÷¯ðÓBFc–W] +ìCvÒi›M6cl°hú ±e[[r%yf§ýó{.$íy²Y´Å"ÀX$Ïõ;‡ŒšJø§¦JfB§ù4Í ‘);]î'[L¾~­Í´Ej¦‹5Q.V?%V¤v67¹MËÃÇ™JîÞ4<¾‚Án6WIÙÃW“&ù€ÕºêªfYÁ”ÔYš([Ì~^|?ùv1Q^„¹¦(¦s#ŠÜ¡¿L~úYNW9ý~‚kùô¾¥P@µŸØÌ ­r?ÞM®'ÿˆ¬L!l¬tF²eŒšæ0‘ž+óaæLR¡ˆÃ±¡Q“4OJüÉ’®¶u3TO HÙúï-ÐWL¿+ûgÛãp8úハýaç‰Ö0êfN'åw +´ÀׯÁÚÑÄsm…2)ý¦R“„Ÿ¤Ê˜2?â‡ö*,Û†76y |ÿõÔ°º²È"ÏÿjY (.ÚÕ¯Dƒæãàxý㻙Γ—3 ±‚Æ +i +OûIJ3Ò,FO0ÔKdvû¹uå¾b-?I'ïp¡­W 0 ³9wð<³Âê|:WN¤Æý‘ÎnªGï!æ+žZwȆeÅpXóïª0þ(Ÿ¿yyŽnvàf+…6Ùïusþ'»9&uÏ»Y[Inë©d.´T,ÞÿQâK}NC gw­1ÚH1•üs X-‡¶{zº<9b$öõ¦áSÉ +æM‘Ô¡ ÃÀcÏ„b­Ç¿Ï¾r9ß+Ôyä#ö¬N·ú„S¬gqâ–Bç.ª:ôã#!ô2ˆNøÜÚ1k«…±úŒuÐ,”¢…`ÜvãÓ,|Y¿Íç“ÖS¥Dá'Ê“CJØTHé|ÑnP· œ¡´M^1 Qëž–É\òŠ-¼ìê.Ö-ùá©{%%¬q)±¿^ü€Ød’öÚŠ7®é2G9œóLÉäÍÀ˵ ÞÈ#,Ué1iì¸k¥fû×ýÀ~¬û-N(¡¯¼G€' £eöʰmÉ«m«Óä•­½ÚDØU§ê­}bAÞ‹÷| +ç ¾B¯/ƒæ¸É{Œ¾KäͶéÊ ÙmóH;NñrÙµ}àïFçgÇ:8ßøµ{&Š„³—*Áz0 Ãs´É+íud~¿e&[¦?· ½çΣ¡÷g·\ȱ†- ǰ…@ –Åx³ÅSÍ­S +\aT¸„”ÂıN&}ÝlvÕ8|aɧ+¨M;FIïÛ)\«ßóÂIϱÕ/ÇúnæÒ¤ŒA +)¦«_:Æ€¹˜Ÿ²ÖH™3ºÕ°ûq–ñ¼Œ‰jÜhå~Å-UçC õ7€û08}|#KYþ 5™ÐÈÈžó +/xh¬({ª8µ|Œ‘4"šSédU­KvºG…Þã’§'‘xM%IÝ,[(jXÑ”—;OÔó/-£â›†€¦T:¿©}$vì1Ï`q‹¯Rê]6Û žgpzð ½æß˜q¾6ø,S–¬äëVð§-µƒ»(^œ uêO¿9¡äï>àî%¶ˆ‹P¸ºŠ%äT®º}Í¥¬Æ’µãk$A:‘Iû(†oÎŒñž£=âgèb.øûŠc¶½åaI¿¿+Ïö¼GÉüžkŠ[tn,.m„ +_ÁŽ¿æ¬–R_jÚÀÆ iÓ§ÝšöÝÚµaý@wh,ä¡?¤ží/Z·gˆ^…ûäôq_53ãÛ?ßGx±Ì¸ÉËâÇ@š{H@!|òýÍ78ýô9ÂØh®–Ðźk•e"uÙùp÷„ÖªÆ"hd¡Ýý+3#¦§æ??¿KJ%ÒâQkúê<¹­áç‚îœ K=àÂ~cö[Ÿ¨Ðrh¼ñDA [±L'oּشçTCàèÚçŸ/Ê0Örº>²e‘ê Z¥ò m=¿„CÈíûzØžr(#CÓ y ü_bWœgâÃí·N çî1Xv;ÜpNò`ØrËA âœ;p¸ÉÔk^.ý˜ÛÂÎÛW¼}—¡AÅMGáõ?;DÝDÖå®þ5\ øèH€-%>@ñ4rÃÖ~Œþ¡¥%§Ÿ.#¡Oƒ\íŸõ;nc5¢ßÿ‡”6>¥ßrݹAhgGg)@aa“c³ yÉÙÛ dÇ~rO»”Ãéã61‡ïPèB_œŸ²šv •­¨©.(£hªžÈ7¡€àÚ³™®&$zsµ¥Ö§ êR‘«â”éÈT½`t×&ÎèGñ}=Ü2î\*]¹ÈÁs­¬ÐÙ<§aMvù1•W>û$üUÖ šòöå¬Hãɹ%œ6>aA±//ž\Ôî1à]ÐPá{—*¾äè÷évýæï õÜ-20ïy•øãŧ¿1¡Y2Œ¨ðƒ1ÔT÷¾Ãÿ̵ö)võ¾X†Þ !4@Ü*^xÏ[ìSãÎ×l'šU” ì/ÆïˆA'pĽî%Þ¿éû¨f¶Ó:+{nfjF­qÉõ$’‹÷îÂñ NÉ”ª·Ã¿ ÓõÀKx…ÇW_}Å7ÈàßÏLŠÀXåg>þ½¢§]êy,& ¾£¾Æ7>ÌFÉ,^Äe‰'Ü!ë–¶Uœ§ºÂ9jkÅѰôîNϵpÒáÿw¤* ϽÎÓYFia‰šÉÀ¼x–ûMKü•:øî?E*:endstream +endobj +3386 0 obj << +/Type /Page +/Contents 3387 0 R +/Resources 3385 0 R +/MediaBox [0 0 612 792] +/Parent 3324 0 R +/Annots [ 3390 0 R 3392 0 R 3394 0 R 3395 0 R 3398 0 R 3401 0 R ] +>> endobj +3390 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [219.779 629.677 265.109 641.632] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvIn_a8) >> +>> endobj +3392 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [192.772 589.44 238.102 601.395] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvIn_a9) >> +>> endobj +3394 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.397 432.329 203.44 444.284] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvIn_a5) >> +>> endobj +3395 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [245.045 420.373 290.376 432.329] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvIn_a8) >> +>> endobj +3398 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [121.741 224.519 161.868 235.367] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +3401 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [311.208 140.653 379.744 152.608] +/Subtype /Link +/A << /S /GoTo /D (classStk_p1) >> +>> endobj +3388 0 obj << +/D [3386 0 R /XYZ 106.869 686.127 null] +>> endobj +3389 0 obj << +/D [3386 0 R /XYZ 106.869 649.796 null] +>> endobj +3391 0 obj << +/D [3386 0 R /XYZ 106.869 609.558 null] +>> endobj +3393 0 obj << +/D [3386 0 R /XYZ 106.869 538.948 null] +>> endobj +3396 0 obj << +/D [3386 0 R /XYZ 106.869 323.424 null] +>> endobj +3382 0 obj << +/D [3386 0 R /XYZ 106.869 299.013 null] +>> endobj +3397 0 obj << +/D [3386 0 R /XYZ 106.869 299.013 null] +>> endobj +3399 0 obj << +/D [3386 0 R /XYZ 106.869 198.131 null] +>> endobj +3383 0 obj << +/D [3386 0 R /XYZ 106.869 173.719 null] +>> endobj +3400 0 obj << +/D [3386 0 R /XYZ 106.869 173.719 null] +>> endobj +3385 0 obj << +/Font << /F23 479 0 R /F31 829 0 R /F14 825 0 R /F8 483 0 R /F19 460 0 R /F22 474 0 R /F35 1011 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3404 0 obj << +/Length 882 +/Filter /FlateDecode +>> +stream +xÚ¥UKsœ8¾ó+8ŠJТƒ|ËzT‡]›TIÊ öPfÀa4vRûç·;ñqkªFÝ¢û£ûë*¯à§rí¥s>¯/7ÊæÛCög›ýñZ›ÜK_›¼½&Ãv÷Y(W¥ÑVqÕJ¼­±â|Ç#ŠFü5Á©Ä¶(•8Å…n,Œ1ĵ ®Çâkû.»h3•‚(+i|“—FúÆa ß³Ï_«|—Uù»ŒŸ=€\Iå}~ÈìÆI­š¤ÙUöÏ +¥Œ’®ªóRo(þ%¡æy>¯FˆÖ@2R¼½˜á˜§™ïúa`é[P¢CÅŠ¸'£B7â!y>Žœ\ O¶øøÿ:¼ŒlÐÍ+ørâ‚Ä~DûûÂÕ" ý/µ¸>Eb3‚ÐOË+çb—àÉ1J¤ô÷²•ÈEí(Y+k+ÑÞH Ô3ƒ—Lü?p1ÛíÝ'€¾;ž¡ñÕì7çÓˆÁtM·ã‚©\uåÈpp¥8˜_(/µ•4ÆrÙ-)fît ï¾ÄT>^ Œù cÒÇ;tˆ¬mS8´ÄŒ®5ë?zÆ„W$ $ü9Fb`e&×CèŸÔ'Ô¸ïØèû©;uD5f¤6²Ö–2j÷®±Š÷µÌŽ/ “q`Á§Èò¼Ä±˜3ÖÖ6âu¡”¯>`S^ðU¸ŽÝœÄdõ˜jT“ ±ÇTd`J¶ûB[;™fòÑ㛈/(ë’›’Þqç@jiÂã`@_*eqÍf—£¹ÃÌRÿïˆj”8 4Z0$]jë¹ Éy:Å_Yv‰å4†X¹4k§u +<í˜eF®Ñ$ÍYܧŽ@ß5åpäÞæy/€šLnº±›7y‚š§CÚ ,aÐ;†×A?Þ°9Pb±â×lÖu”“Æ'çö—ͳ™aWUKQcÍ?ÁhÂ!÷ÏvèºùœSRëæÿîQX¾^;aý0ؼ–~cŸ.Rª‹5N\ý„]ïp^ˆ[œ <ÁÇ¢ªiÑ8ünÞ÷‘õ\<’Ï_ ò‚•oô“å¿ SÃþÄ2¤›K™\ oYÅñ Då Ê= `¨j#dŠsþq'òé^R¿i_ÁçX^6”Û6-V÷˜v©g‹­ZÕKý\²{BÒÒ–ñ¼÷€e|—ûWW +z©árcÉÕendstream +endobj +3403 0 obj << +/Type /Page +/Contents 3404 0 R +/Resources 3402 0 R +/MediaBox [0 0 612 792] +/Parent 3324 0 R +/Annots [ 3406 0 R 3408 0 R ] +>> endobj +3406 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [175.999 654.832 216.126 665.681] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +3408 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 526.41 237.059 537.259] +/Subtype /Link +/A << /S /GoTo /D (TcpWvIn_8h-source) >> +>> endobj +3405 0 obj << +/D [3403 0 R /XYZ 160.667 686.127 null] +>> endobj +3384 0 obj << +/D [3403 0 R /XYZ 493.199 657.766 null] +>> endobj +3407 0 obj << +/D [3403 0 R /XYZ 160.667 641.888 null] +>> endobj +3402 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3413 0 obj << +/Length 1591 +/Filter /FlateDecode +>> +stream +xÚíXmoÛ6þî_!t_d´bIŠ”¨`Ð¥Ëv]ºÄÀ0´ý Zr,Ħ\KJPìÏïŽGIvœ¢iÓ~ŠZÔñí^ž{îpø'ÁS&$&c©PÁ|=ùu6yz"ã cY³…[9+Þ†Š%zÅF…³ùæï©¯Ïº–Çð¶šF"Ì5(ŒÃó%‹r[Ú9 e¦¸…Ó÷³—“ßfáuˆ8‹³,ˆb–|œ¼}σbƒ—œ3Á Œ9°j=Q©fRÿ¾š\LþŽâA$S§÷`ˆ „b±Jö--Ñ!¤·4½!Y”j²h°Þ¸–<=1»®Âûuæn¹˜½‚­qVv*³°¥}p€-[šhPÒnû3ó5¬á%Nª°î`ÜnÜ/-Ÿã"PÊmct¹Ìön)K¤r×ÿTÙùª+¼’BŒëTÊx{_ü|xNÊR•ùitÆ™-Ïђż?ç—gD.!µ×J»e§v9¸U›£Éβ’ì.Pœ_nó5Y½¨·4pªPŒŽàqtGBÅ,Å#‘H–jÁGĉNM¾7v@ãOO׉ +^Ô©`DU4œ¬S"Ù—`™Ö»àzÓ}X¡ sÂÍë²]Ö0äaÑxªÑGB6c@d)OÜþw\¤¾ÄB‚ÞÚÀøí<<ÞqÍῠͱ lr¸‡ ©;4<)/ÊEÞ­pg’‚ûµ kÛ´ÛnÞ:wƒ16T*ÃvY’¤©§Pxå‚å·V =mÝ ,Ncâ@hÛ*ØÃáTvh~$A³8¡§ßn¿2d?¦š ½`¤cÂqÖ>™FZÐÐJœU`4L.óí]AÁhôÀ~Çy| ®~Á²nZ1óìÑ +â-Su¾B¼×”é0zäé,Q å‡eAZUÈd܉!ƒÜ1;!Ä㙹µ}&­šgâ à½::Â'ðÏí‰93ˆ·È65_&[H$“ÝIµ~fÈsX0NÐŽ³ó× Êó)ÄcF ŽZo×yûì3JrÍ´è3ô‡iwqúçL$w'L$¹dF˽”9»hËÕ:— yá‚à îªÞN.õÄF)s7KG Kz«7x€;Óú’™Ó +ÄM½½Ú;кKæmU[’Ý–ÀQÉ0XhJ:G?X8‡*nþš,Œ4ç0ŠùþÑS!¾™¦\]{<[ ‘¢ì¹è‹êÊû‘Æ5b±®0ËxBa©­«Å"”§Nc ÑÀ" Û¸d®·H! õ@!3f\.ÞÉ"X,Ìc%“!fÏ 8éí«ö)$£«¯U¢8E0e K0­ÒÿIäkH䏯Yêw´ïéN2žðO,¸ +:S̈ ¦ý¸SÀ®† +Úƒð¡Qn½ÈÑ àö¶x;ÐŽ[‘÷ïxc¯¤Iár@$;m“ +ÉÐCšJåª9t‚ÒÌÄ}Ö B¤Ì(°z›ŠÜµ c'fl=.+"_ëù!ïW.П€ê’ïÑd|5_`J¸ž´¹‹5zžÖcxîÙƒ.¶±¾D¢‰^R‹Ë|½pØÁT5:¼q% í»g\DŸd2£¼ÆL¯le/i¦Ag­7«²ñçSÁ!ù»²óCšìÉÂÞQ[Šªqõn¯X}¯hìtKødK—U½óÁtY¶'Sh¡àË¡¤Ô‰=§÷rÑ¡Ï)Gä÷ Ôùà˶Ûzoí¢Óvë.M}ë\/|Ü£ïÁÓ´~ábâdƒ‚¸Ú•ÌM×~¯ùõ?‡¤eÌÀG}$b$îüÌHû3t÷s ÇlˆÎ¬Z—cLngŒ›øLL¢„Ñ>&ÉÃbBФ\+šýÉ=ªÇ ìù(Me]Œxà,ö*óð]© CÊ„;.¹¢ëðâ“ ¥„hPŒnPøñKSã/TôWUKSȦ¸óøñc|À>Ñä›iœ “€E½äœÑóƒ#¯è5·}ƒ/¿»®w ÇÀ×~ȼŠóo¸Æ£kªuOeÈŒ3­¡l€CRgÖÜÿùAG’i,œ%bø$Ö~ÝŽg„dÊ….Äeà^¼Kÿ+9>¹ìC÷0Út endstream +endobj +3412 0 obj << +/Type /Page +/Contents 3413 0 R +/Resources 3411 0 R +/MediaBox [0 0 612 792] +/Parent 3431 0 R +/Annots [ 3418 0 R 3419 0 R 3420 0 R 3422 0 R 3423 0 R 3424 0 R 3426 0 R 3428 0 R 3430 0 R ] +>> endobj +3410 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 759] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 3432 0 R >> +/Font << /R9 3433 0 R >> +>> +/Length 3434 0 R +/Filter /FlateDecode +>> +stream +xœ­’;OÅ0 …÷ü +À`âÄŽã‰]n%ÄT¸ˆG%.\àï“>RZÁ‚„:D=ÇöwœÖ#ïŸél;·w§— ÷on4Xõh;8kŠi`„-B³sc3Z$"%NÐtî¨i_®>.ÞÇÍ£;o`SŠœ +çS^ÅJ;g1Ì$”Ñ ^ïÜöox"ÁÌ¢$´üš]iÑG-Qÿƒ™ AJu\x{xúÁK¾ßX~ç]C²2Ü”‘·®¦¬år‚x?×vãkš‘3<—Ε0ùuµÙ¯BñE´A##õ%!æ„>/•õŒÝI‰7Æ–án+L"%,z†UaòëÞ³_…ï0¢Êß²³PÖ3J˜ûå‹Qendstream +endobj +3432 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +3433 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +3434 0 obj +281 +endobj +3418 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 424.159 182.984 436.115] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvOut_a0) >> +>> endobj +3419 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 384.843 182.984 396.798] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvOut_a1) >> +>> endobj +3420 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [324.138 372.888 383.959 384.843] +/Subtype /Link +/A << /S /GoTo /D (classStk_p1) >> +>> endobj +3422 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 322.612 190.733 334.567] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvOut_a2) >> +>> endobj +3423 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [153.498 283.295 188.7 295.25] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvOut_a3) >> +>> endobj +3424 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [324.138 271.34 383.959 283.295] +/Subtype /Link +/A << /S /GoTo /D (classStk_p1) >> +>> endobj +3426 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 221.064 200.197 233.019] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvOut_a4) >> +>> endobj +3428 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [194.33 170.788 240.823 182.744] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvOut_a5) >> +>> endobj +3430 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 131.472 226.698 143.427] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvOut_a6) >> +>> endobj +3414 0 obj << +/D [3412 0 R /XYZ 106.869 686.127 null] +>> endobj +3415 0 obj << +/D [3412 0 R /XYZ 106.869 667.729 null] +>> endobj +290 0 obj << +/D [3412 0 R /XYZ 106.869 667.729 null] +>> endobj +3416 0 obj << +/D [3412 0 R /XYZ 106.869 443.818 null] +>> endobj +3417 0 obj << +/D [3412 0 R /XYZ 106.869 443.818 null] +>> endobj +3421 0 obj << +/D [3412 0 R /XYZ 106.869 342.27 null] +>> endobj +3425 0 obj << +/D [3412 0 R /XYZ 106.869 240.723 null] +>> endobj +3427 0 obj << +/D [3412 0 R /XYZ 106.869 190.447 null] +>> endobj +3429 0 obj << +/D [3412 0 R /XYZ 106.869 151.13 null] +>> endobj +3411 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F19 460 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im64 3410 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3439 0 obj << +/Length 2280 +/Filter /FlateDecode +>> +stream +xÚÅY[ã¶~÷¯0òPHÈšI‘’äa;› 6Ût¦;Fƒ"ɃÆÖØÂØÒT’g1íŸï¹I¶,Ï&EzÁc’:<<—ï\ÈÕóþé¹É”sÙܧ™Jt<_íg\ξº6vž©ÌÛùò—ëŸíL¸°&Ö6¸[†:ø³4®vyÛâÐïjøÕÁ*\èà{UhMÐå]‰³–«ð—å÷³o—3-B,"e³t¾°*KÊð÷ÙO¿Dóõ,š?ãoŸ`)eóý,Nœ2:•ùnv7ûËÀJÇ^¥q6_ĉ²Ö +n…~Žt‚¢|u?ò€ žC“u¹­¬ :½\…& yáçÈE?ÀâßÎõI´Ê²†¿ªŠ³‹ŠÈ—At*ÿõŸnPÀ·!xa‰"ÅA›“ÍŸ@ª]òiÖÏêy +»=î^¸H•F+ëcbtsèžpðIóO[V›¹OæÀøîhš]-Ô@ãL°ãÕÕ6¯ª‚¶µü½¬Æ\Ç\šÐÙ€Ö +ܤXÚS_-L¬´õ€ 0žý¹mUWmÇÓ&î3VE€F§•Ïâÿ©'ê[@±àÙ‰Þ1¡Oõ.(úººµß°†‡ª-7Uod1KIÄ ¼ V°ùöš¾‚"­3eü«0*B€E¾Úö~Çl0ø½ì“(›yfVycÆÊ "“ÃM¢Ò¬'AÑ2ÎA[8‰ãÝ‘“ƒ«´K&ß¡œ`„Éù±U‰ïÝòL·ír‰DëÒ:rYÐ! ÓàñaÓä{Ô0òC›Ò,º»%$È–)Ì!SF‘œ»ÿ/ÎãX9bñ›€þ€àf­ƒ¿†PxÈ]€v Õ‰*!¾èÍU +Ð'Jo‚UæÜ„aû¾ y ™ýö +â»m1EØØÆG±©Äö(6Ì/!ÜelïüúáB%„4ˆ1\+Ü=%ÊBhÜ”ÏEÅÃ]QmLˆ¶Þ +Ò6U‘3€ˆ™ÒÙ1{øã”†Ý`àà]Á¸‹•;Ô3Jâ‚wT.ÚUS>QέQ>D€Jádd·ü é\¸&Ö茪¼Ä nz»åû¡½árW£¯Á¡îÓ¡;ÒOÓ dvór[rXÄŠ§¦îz®«®O±Kƒaùùýгöp.ŒdÔ7o¥À!—U^ Ù¹œü}ºœij¬Bœ_^É™jHÎ~üDÁÞ<2És™h—W·ƒjG·a—Ô9< ¢ã*]uT³¤Ä €“MÁÓ BâDLD{%•€gŽå¡éN+ 4ƒ”€á÷¾Ü,Šj]RÒ•%ÜõÒÉ1T“ÖªÕ‰˜¨â’U°YóæsÄ› :²è芛‚Q ëeµ‘Šßä”þ¨*QÜÞ½üÅËUß3ýø|)¢cq)bëé‰N¨› gÐØ‚^CW.Èæ}©ÙñÖ5›FÔñïà;† 2bÛ®™î¬D¢ç:*Í‚÷Û»‡û'r8QwùI‚ëmæ‡êhOº—m6:ÐhËË” +K—„E$”ºO8/)£lݾÁß$ø´åB$ÜÆáˆ+ÔF +ÿQoÚâZBYD$Ìw;0Gr!سåE.Ûg€@»ˆý”Cbd]¬Ó}B'\!Üœ#È4õž¿ã¹[¡íЬ¬úi=¥bÊFÀCöCÖÛŠ¤ÁÖŸ¶‹-Sw9aËGˆ â²1˜¾–SÚoGR-.(} +·>w’+s©¤.i‚3‰ð‹èï“¢M Èe‡5{€ûIZLX΄ûyt)_é$ó¤’y¤íŠFrš+í«pÂJ˜âkÞø7Þò8Gé×MÑKFUÖÏÌŽHíÍ'­ÏgrˆÍÀ^ìbUBSf†ò;þN)0èR&CˆmŒ öhË—˜…7‘$W [9{Tæœ`DÉþó ‹Á«e+Âõì™´_àì>¤´6 öS`mЦíÓ£¤4@'Šž冴=Š _Çä¹/`¥>¿¶'ÊlˆœS‘ÍþÛ$J~ó/Üo±ç[Šz9—Û[±Ù—-9¢¼§L£¤íóxíMGп?1Æ-C*+pÅÇvæQŽì +Tßå'[nQ0% å%ä˜ãëÁ¡r3C8-˜³‰"s©7‹øA#ÉΛ2øc¨/s('6¾„Sª\}wIÝÙFMÚ+Dï$žm¬ÙUh¥Ñ£lTK77~:mçbè¬ò0Ü-BF[®ž ªJIÐÁ×_ã_XäjKM–ç\[òC‘4Ãîx†ÎðÁS=¦Œ‰(&R4zLö+gÈ=X!÷mÞL/>V‰I'—SÆ‚/ÌøÖ°­Û®’"3¯Uq©üdÐ&øb×ÒK¾C_p‰!e†[ Ò¾nŽ.¾W´ºâG—ö‚ÜáÆhn¬ f!|2JwÝ#»çR¬{«²„èJ¬ÿõ`·*¶ÉÅ`—/Ÿ}l¼Få!Ú߆™ï/Œ§Fp±Š} è™öùDØpsb|®¼ ›6 ç·<×ý>îÞÿy©ýñr™ŽðeT’¸Q4ÝHÙÜÕT&MÓÍ¡O/TΛ1 «¹ºUËóœ^»jç³»1^ãY =Úl˜°UEé>Ë>K\ºz½E^6£¬Ø=~‹ î!XñLqjj’KÈ‘ásþZŽä첃‡îZxg}s²:`5¤ùWrxÅéÙaŠ,¸˜7›Ó÷k~%#yÚ)ÄÀä…2ä’Y¬Õ$t,$“â½ì‘™ßùÀm­2™Ѹxî!BãSÀQ[ܽ@2qØxqeÄ˫ŇyJGÿBµüPvü©ä®†ÆW_âäKžÜ#£߆Ök&®|T²…å‚ú‘§9q[óä;*Š íÀ’©£„o¤ ç*GöÏÈÑGÝ;‚Éd‘r΂EŒN¤ æpwGµ£ÿ7Ákß¿«9¡;16*&^6ãz +VƳÜ?¡üRõê]ø/Ä2ùêendstream +endobj +3438 0 obj << +/Type /Page +/Contents 3439 0 R +/Resources 3437 0 R +/MediaBox [0 0 612 792] +/Parent 3431 0 R +/Annots [ 3441 0 R 3442 0 R 3443 0 R 3445 0 R 3446 0 R 3447 0 R 3450 0 R 3451 0 R ] +>> endobj +3441 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 634.907 224.606 646.863] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvOut_a7) >> +>> endobj +3442 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 583.213 224.606 595.168] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvOut_a8) >> +>> endobj +3443 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [213.798 531.518 259.128 543.473] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvOut_a9) >> +>> endobj +3445 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [229.221 395.968 263.869 406.816] +/Subtype /Link +/A << /S /GoTo /D (classWvOut) >> +>> endobj +3446 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [237.766 341.925 255.81 353.88] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvOut_a7) >> +>> endobj +3447 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [273.587 329.969 318.917 341.925] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvOut_a9) >> +>> endobj +3450 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [365.007 160.743 433.542 172.699] +/Subtype /Link +/A << /S /GoTo /D (classStk_p1) >> +>> endobj +3451 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [175.06 116.85 215.187 127.698] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +3440 0 obj << +/D [3438 0 R /XYZ 160.667 686.127 null] +>> endobj +3444 0 obj << +/D [3438 0 R /XYZ 160.667 462.965 null] +>> endobj +3448 0 obj << +/D [3438 0 R /XYZ 160.667 232.643 null] +>> endobj +3435 0 obj << +/D [3438 0 R /XYZ 160.667 205.765 null] +>> endobj +3449 0 obj << +/D [3438 0 R /XYZ 160.667 205.765 null] +>> endobj +3437 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F31 829 0 R /F19 460 0 R /F22 474 0 R /F35 1011 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3457 0 obj << +/Length 1749 +/Filter /FlateDecode +>> +stream +xÚåX]oÛ6}÷¯úD¡5'~J °‡.k†µËº5ÆŠ¡íƒ*+±Yò$ÙA·?¿{IÊ–#9)0tDyIÞ{yÏá¡YÁ XS®“@'†ÆLÙzöÍböÕ¡F‹`qm-ËwDR­Â¹H$Yd›·!#»×ÛÎ5œÃWÎI[xk±Q79¶\çM^eðÊŒaJ„/g/3æ}˜GTÌ5‰B~›½ûËY¼œa_ÜÁ{DX­g2V”³Ä—³«ÙÏû©¢`Îcë÷>0FRÇ‘€— #T€ŒKri]‡‚“à>#yX“‹ÐH²­²®óºÂFE¾­­M¶]C£Y…ðÝÁWŠÿŠ:Ä&ô~*ç\ÒH™}B)”¡*";t .°qÎ¥b6×èg‡Ö³³ à,gqò>RQáÝà`hê°0•*Cê¦ûÇ#ñÞìÌ­ Éêªíœ/¹Â 7*f?VK*EâǾ"1öbÎEB•ÖÁ¼ß0]ÕmW¥kô>{¤ÕRûY¿7˜ OújÃ]à$KKœã úË ìU[ÜT9¦qRœÊ“\éc­ÎWiUåe;á†mRǰghñ¨ˆ&÷â¹ênÏÎл«Å«û¥n4MÌ%©y¼Ö¤4ž¬tßó `/0ô׬7èÎåóÐh²gBÁÆiîÇ\×Í:¨ Ó„²€¨ŸqC#fœc_2¶«ï\0 uÏœ¯ÉQ•qCµ±v^WUUD %éjÿ\¹Èn7øôvÅûˆI¬$´B£ºÅv;\´ò=nHÝ„¾Kö]‚lš|“6‡éû%Û®é½Òw[Â8bPâDqB• ¤ñfõµ›{iY(u*˜ *‘GZ ‹ ±[InŠ]È’û®~Ûw‘cYP;'‹©æÒNöFpaÈFûþ7 ¤¡N +H—‘åÅUSãwÞÙôÚ½¦îÑzDC*³þÝZ:×i3…)ósk™,Û6­oðiå¯p‚]¨4IËbéÓæ©Ô±5ð íÀ _–im ô{…i¡“´.!Íü>«óIVdzqp‚Z®8ëlo††·Î9ýò×Ña [Î0މ)SɧÀË×è°‡šbÉ€Ò¤7oÓõã(ÃI2’r£÷GD]n´ÌéÞâÝ®hºmZ~˜€x á3}qwHnüQ‰Uìë·-ª›òPê­;l6xŠø&„¥P–î%ÃÒ@Ôõ;_z]Æ=|R÷˜˜Ó¤k;ðfp¨Ç̾®±­h{pbsH¸óæ3ÃÈ< +Ð[‡ÏOhs×]î^áƒ-=|°3Ö´ÇŽ:¦p®èãb‚ɧ»¶Î®WowX4Ûî$X³Gï=´ˆi $´Ó@nÎ)´  ¢å Œ¬`1¹„÷„xBApvÇâŸAÐP8¥ò p2Tð^ZíòPÁÎuu30ÐoRìõ›×( ¡âc U*æËI%$œ“R vHj9^$Nñû4ÒAíÕÂi +ó8ÒYœ@ðèÉ  »ƒÔ+láŽÇ¸/ªñAË" +\bcƒÔü]ÃtŸÙ)ºˆ0>Å£•ÀfF CFóñ1¯©ŒõcâcØvM™=øpþðŽüûyGN󎔟Ò(§qùþîb‡Xò7&ø¼œd õŒ•— ý+èÇðGîm oŒ>V‘z¸FBÕý&Xð1MJšQ™î”xsØZ’vüc/²K×~’‚bprYÛ¯ÜNÞS´Žï)lš $K>Ck(?¢5ºU>9ŒT ¸Í]ÂbMâûkýã(Eã¡´ÿ ­á!Ü[£Kö¥÷îË¥ÿ€ èVž2XT³ÿ³T¹ÇC‹•Ïò2d½ÛµO7¤K»¢ö!»[RŸ‘âÀþY™¶ƒÝ¹Ã<¥¾ï&¯òÆþd”÷·?UÓ»h/OƒÍ®ËÒݤ@Õ:sCq[z6F8ST€*€B¦Ê(s*_z"Xd}ßîð'„mGW£»J ‡ØœÃi.#ö¼s?zŠÙ“š 45±’šÝ)¹ú„¡°Ðm†± %¤i²HÛ_‡þ‡Ô¼*:×…âGž?}ê^>âŸ\çO!(ÉÜŸoyCÝó'ƒ)oÝ'Þ1½:•ä;+5pÔ~Å„z³WØáÔµ–;aÆA*’Û°2ÏQêñ$Rø©†ÛŽß9åí™ÁüÛ¹0…héŵÔ<ÂgÄûÍûh:,Øendstream +endobj +3456 0 obj << +/Type /Page +/Contents 3457 0 R +/Resources 3455 0 R +/MediaBox [0 0 612 792] +/Parent 3431 0 R +/Annots [ 3461 0 R 3462 0 R 3464 0 R 3465 0 R 3467 0 R 3468 0 R 3470 0 R 3471 0 R 3472 0 R ] +>> endobj +3461 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [311.208 606.31 379.744 618.265] +/Subtype /Link +/A << /S /GoTo /D (classStk_p1) >> +>> endobj +3462 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [121.262 553.225 161.389 564.074] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +3464 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [122.201 469.959 162.328 478.87] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +3465 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [200.131 450.398 234.779 461.246] +/Subtype /Link +/A << /S /GoTo /D (classWvOut_a7) >> +>> endobj +3467 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [122.201 367.132 162.328 376.043] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +3468 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [200.131 347.57 234.779 358.419] +/Subtype /Link +/A << /S /GoTo /D (classWvOut_a8) >> +>> endobj +3470 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [122.201 264.304 162.328 273.215] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +3471 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [200.131 244.743 234.779 255.591] +/Subtype /Link +/A << /S /GoTo /D (classWvOut_a9) >> +>> endobj +3472 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 201.524 191.286 212.372] +/Subtype /Link +/A << /S /GoTo /D (TcpWvOut_8h-source) >> +>> endobj +3458 0 obj << +/D [3456 0 R /XYZ 106.869 686.127 null] +>> endobj +3459 0 obj << +/D [3456 0 R /XYZ 106.869 667.729 null] +>> endobj +3436 0 obj << +/D [3456 0 R /XYZ 106.869 651.332 null] +>> endobj +3460 0 obj << +/D [3456 0 R /XYZ 106.869 651.332 null] +>> endobj +3452 0 obj << +/D [3456 0 R /XYZ 106.869 544.204 null] +>> endobj +3463 0 obj << +/D [3456 0 R /XYZ 106.869 530.263 null] +>> endobj +3453 0 obj << +/D [3456 0 R /XYZ 236.55 453.331 null] +>> endobj +3466 0 obj << +/D [3456 0 R /XYZ 106.869 437.453 null] +>> endobj +3454 0 obj << +/D [3456 0 R /XYZ 236.55 350.504 null] +>> endobj +3469 0 obj << +/D [3456 0 R /XYZ 106.869 334.626 null] +>> endobj +3455 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F35 1011 0 R /F14 825 0 R /F8 483 0 R /F32 881 0 R /F29 818 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3477 0 obj << +/Length 1521 +/Filter /FlateDecode +>> +stream +xÚ¥WYoÛF~ׯ Ð + 7{òš´9š¤6<$y %Ê&*‘68Fÿ|çXRRä4q Cæ³³s~3« *Йp. â4‰²Áb3{šÏ=×&ÈD› _a¾ü*gç‘ÑV™ð4Ÿ«ðÌR­‹®Ã¡ øªp1T8Åe=7:싾ÂYËõüSþrö,Ÿ)/D$…ÉÒ 2"KÊp=ûðIË™ ^ÎxïÆR¨, 63›8¡UêçëÙéìω•2J8‘NHþI!(+Œw5²¤‰cKiæ—-É[,A‹Äb°ËºÁì¤\•¼_/JTàÑót×Fx¡s ñ=ÍÑ6Æ„ý%°h™#LÉ0ÌG`>:Ûc¤kKŒ~ªêÅzXúû”ÚÒÙDÈÄz=~>䓈Ħ~Äå\”H­ñd¿he±ˆc·'Ò‹u*QþU_Ôsïòµ´á—‹‹¶Ø°Ö«¦åAÎÖ@Ò‰?þ:”o' ÊXá¬B÷×àh™:ÅD»cŠ”ñ¬_xôb7Á6,¢‰³µB;µJdÎíÆÅ»á½T-Øõ”ý%F¶ —·¡ÝI9+þ×ÂeŽÎ”*90&&ŒFcã£t~ŠÏ¤@OÑ +q«ƒ* ™€çËU1¬{8§`{g¦îúvXôM+EŒ4°01}e¼#c䤄‘‘҂Dzò½Å…ÕnOÚÜGŒÑI¸XX ÄÒq¸,GÉy~ST½ßªêe rÚºêK:wËLVˆ"ž¼Çõ zìQÎfa‘¦áoYû…sÜ-10‰”ŽcöCK(Ãj\ÜǬÿæúó9 À`¤Ó°Y³1 zÄ…¶ßš7ÿýäÙ¯Ç)¢2ÈI )E¦Õ÷áRªfw‚¥ß™’!=ýçgoŽòoß°Xmƒ°ÞWuù>ÏQjyGZ(ÀŽ ¡>JiÌbáú1Ä®PýöÉ›³×¯ï«HK+RîEÖÓv±ã)Lˆò y1ôUCK`ïûËrì… ‹Ÿí$˜9Ë´—ôîé‚òP0Š8õóÈ&:<»âœdy:89,H$Š»®{ÈB`=™C<ž=cJ¼£ã½–H!k’qyWü©DƒI´@ûßðfKÞ¾릾àÙ¦Z¯½hg„õ ¢þ²{©­Œ.~‰ ·f–½€ƒîjr¢ÂLg]y³6œ§-ÏчøÝ 4ƒàpr]u¥·+šà™(¨âðE :sÀ@ûÿ–-q­‹¾DÚü²Ô±Pm†œs¬N~‚F=7Z79ÚŸFçO…~·ØD&ÖW¤Ôr<ŸP¨ùÚóR¤¾]ŠôýJÑ”ÁܰŒ8ßõ\Ì1`m¤úá +•Ï“ "½g«p ƒâÎì£5²†š³Ä{x,c.§áöèõ7|ß¶ì/ LDŒ v}Šš>•tÂÞ + ]úæï˜B½[´!S5õ­mè®ÙÖ§@“ã¹{t_5|ù¥Ï3›Àî¬qx…œtÂçj9ùˆÁ¦àÏ€YqiÜðRUã îÞ:öh¸C±‰oÜÚfLî.ÂÿxÛºèñT3òê÷zO¹’Æ2|[33áˤú#&½ºÛ©Æ‹ Mm> endobj +3474 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 666] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 3491 0 R >> +/Font << /R9 3492 0 R >> +>> +/Length 3493 0 R +/Filter /FlateDecode +>> +stream +xœ•PËRÃ0 ¼ë+t„„ßv®ÌðmüL¡„¶9”v†ßg: ™–Êd,ÉÚõ®”hVå«ç¶§=mœéÄz¸mÏÏ— kkÅZËyGW˜æ ÅpŒcLœ{zÈÝ×ûëÛcÞÓKæ5æ>Ik-øù»PW\}Ôq. ïÉ5Ί÷ÈSnb :uð¦Q¦;r6%¨(2¨Z<ü/6Tˆìv3i/‡ÉÅ_ºÉ/õcgöîIòMcÆtdmj ®(Œ^Íx&îmÐx¥¦µÔîŠE¶÷Ä/fj9k(E U±SªìÛTèX.ñ»­éóy.endstream +endobj +3491 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +3492 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +3493 0 obj +250 +endobj +3482 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 452.892 218.545 464.847] +/Subtype /Link +/A << /S /GoTo /D (classThread_a0) >> +>> endobj +3484 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 413.729 226.294 425.684] +/Subtype /Link +/A << /S /GoTo /D (classThread_a1) >> +>> endobj +3485 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [207.116 374.566 229.67 386.522] +/Subtype /Link +/A << /S /GoTo /D (classThread_a2) >> +>> endobj +3486 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [207.116 335.404 227.65 347.359] +/Subtype /Link +/A << /S /GoTo /D (classThread_a3) >> +>> endobj +3489 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 241.903 224.661 253.858] +/Subtype /Link +/A << /S /GoTo /D (classThread_d0) >> +>> endobj +3478 0 obj << +/D [3476 0 R /XYZ 160.667 686.127 null] +>> endobj +3479 0 obj << +/D [3476 0 R /XYZ 160.667 667.729 null] +>> endobj +294 0 obj << +/D [3476 0 R /XYZ 160.667 667.729 null] +>> endobj +3480 0 obj << +/D [3476 0 R /XYZ 160.667 472.473 null] +>> endobj +3481 0 obj << +/D [3476 0 R /XYZ 160.667 472.473 null] +>> endobj +3483 0 obj << +/D [3476 0 R /XYZ 160.667 433.311 null] +>> endobj +3487 0 obj << +/D [3476 0 R /XYZ 160.667 261.484 null] +>> endobj +3488 0 obj << +/D [3476 0 R /XYZ 160.667 261.484 null] +>> endobj +3490 0 obj << +/D [3476 0 R /XYZ 160.667 205.06 null] +>> endobj +3475 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F19 460 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im65 3474 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3498 0 obj << +/Length 1505 +/Filter /FlateDecode +>> +stream +xÚ¥WKoÛF¾ëWðH"ævŸ|è¡qì4iš¸¶Œ’h‰¶ˆP¤KQVŒþùÎcIQ–› +Ô>ff¿yî¬ +$üT d*t’I–‹TÙ`±ž½žÏ~ºÐ&ÈEž˜`~G”óåçЊ$‰b“Ùp¾ŠTؕŧ&<«‹Í†‡Wå]«°ì€ l%¬*›ÈP9}¿ŸÏgÊKaò<ˆÈ3‡ÿ5ûüUË™ ÞÏp/ v0–BÕzfS'´Êü¼ž]ÏþEÉ Ö)ÁðgÇðo#…OȘðÇe‡(ýÊÂ<>k£öÛo<- [òøm1Ṍ@cÏs Ë ”Q èGü´ÈWâÚ ÓpÇ£ÿl¨¥Ôí×R"wŽ!öp.óv9`zÀ§AšÒ6üÄ®#£A-01<6i^D¹ ·Í¢¯€À¢ ß´D³Ø®@Móf~ª6Â%ÆqàøX[!GI"Y …0œ¤³uØò·æ˜¯È÷ÅòiO7=Y¬çÍ/ÒÉù¯dësXýožXEdY»T$*ùïÈ0šôŸð;?Œê‹òñlþîÓG¶€q{"Ð8O¬§ì"—‡íµ©šòØ\ƉÄdžø„~DµÕ’©!ÁöÔJdJyê/RšãÓ!s!3ÄChéCß­2á¬öÂ~æ$ýˆŠ}ø&WÌ0ɉ8É„ÊrïßœØ^SdÜW4šfßËŶ¯Z¿ÔÞqôö«rP`àzÇh‘j··›zn· #E’æžÌZÞøä¨î@v¸Ä=¯;ú_ëÎäN:¥Â³‹°rW„j_{pZ·Íýq®©”-¾®@*d{þÙ”˜ø Êþf¹9Æ›X¨=ÙaöÅêåÄÓ&*=(¬F@_T,†–&ÃÂxÃiPRÌcEÿ"•¥àr.¤8‚’ß[&ëxƒÒþ×W]ƒ$ƒ®¤å†¥ßa tþÔ!d†q·Ï… Z¿[vëªÙ¸Æ7¯0Ù†k=8)Y˜ž©OOÍ·Ò Móù17™ŸâZ§{ ,Q?pø²yÐ6û("ÀZ­=ùŒ%K¢H„å±:ÜtcÒ½=^Ù˜§+Ïq‡Hñ^%ø°°«êšG·hbnÈÿYQ^³ð蚪/ë't8U:~êWñ &+»Æ"ͨ»ÎSrܶ,7^õ:O<*»ð– ¥)EH¸‹:<ðÐ{‡ÿQ¸ß1â×Èã+naDÓ"9p9ð¹;@q¢ûY»ÄÊÄQ:“|ršïKF„m±}«±ïê1‚pƒ|ƃ±öá}QùñP‰Œ"šš!ϸ2§_áuˆFÕ3Åiy 6æ$Q¡¾ÇJÕÕºê_ŠìùPB—Þvi¾EÓ ¯n_³OW*½ˆnü h¿)wxo‡Î+üÞ}ٔݴz¢ºvÍ$cÁ1QCä]u’ȽckqzÜÊ('Œ….E;árë•? v~pÍB„¬ŽÞZZa°VÚÜ@'¨ÿç_Þ+cGhhñR;íÉ)Ö¸ðú úd‡ñDöÅ¢a±Ûˆ”L¸â óoÜÂhAγW¯xp‹žxó22 ¿Œ:¿r%ø°‡œbÛ@¾ÂÉ[2‘u°x´qFÄE'<¢è–ØÊŠ3Kx@@ƒIù*÷—Ûkká¤Ã—6ÚÞoÎÓM,͆%YhB$óâYîoMWªÔƒóþÿÛaÍendstream +endobj +3497 0 obj << +/Type /Page +/Contents 3498 0 R +/Resources 3496 0 R +/MediaBox [0 0 612 792] +/Parent 3431 0 R +/Annots [ 3503 0 R ] +>> endobj +3503 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 369.273 173.049 378.184] +/Subtype /Link +/A << /S /GoTo /D (Thread_8h-source) >> +>> endobj +3499 0 obj << +/D [3497 0 R /XYZ 106.869 686.127 null] +>> endobj +3500 0 obj << +/D [3497 0 R /XYZ 106.869 641.888 null] +>> endobj +3494 0 obj << +/D [3497 0 R /XYZ 106.869 617.774 null] +>> endobj +3501 0 obj << +/D [3497 0 R /XYZ 106.869 617.774 null] +>> endobj +3495 0 obj << +/D [3497 0 R /XYZ 265.441 534.556 null] +>> endobj +3502 0 obj << +/D [3497 0 R /XYZ 106.869 518.679 null] +>> endobj +3496 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F22 474 0 R /F35 1011 0 R /F14 825 0 R /F32 881 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3508 0 obj << +/Length 1329 +/Filter /FlateDecode +>> +stream +xÚ½WÝoÛ6÷_!`/Z1ü¦X Úfú´kô°­íƒb˱PÛJd9E±~w> endobj +3505 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 1159] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 3524 0 R >> +/Font << /R9 3525 0 R >> +>> +/Length 3526 0 R +/Filter /FlateDecode +>> +stream +xœ­’ÏNÃ0 Æïy +ƒ‰Äޝ“@âÀa¬OÀ4°NÚÄë“­M»j\¦"_ìŸíÔ#?~ý¹lÝÖÝ¿Dxß»-ÐɪDz…YSL3 š š7×¥HBŸ’AR4%hZwÓ|¿®f«õú¶ùt ÌËÝ—3%…ÇA0f.Ù1±¢@’Ánåÿ£“f$3ÙC<áŸpE…@Œ®Ì„â9²Çhz>mö‡]»9\`E8!Ë5æÌ•JŸUNØÅáë‚hKêŸÄH½Úñ ’÷ƒ×v!Ç1*¬Ë͉Ðûu‡ƒ_…â Gd¶²žp,ÁAj>W¦5Þî:%šd´X!IMË90ú¸wë>» +c Â¥ØÈ¯á4»Â3—îÒ0¡‘7Ô³ «Pý~¹£ß #ÞÄK7`íàL™Ö(MÌÝ/Üê¶»endstream +endobj +3524 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +3525 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +3526 0 obj +327 +endobj +3511 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [320.042 626.634 337.671 638.589] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +3514 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 395.168 226.128 407.123] +/Subtype /Link +/A << /S /GoTo /D (classTubeBell_a0) >> +>> endobj +3516 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 355.594 233.876 367.549] +/Subtype /Link +/A << /S /GoTo /D (classTubeBell_a1) >> +>> endobj +3518 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 316.02 240.657 327.975] +/Subtype /Link +/A << /S /GoTo /D (classTubeBell_a2) >> +>> endobj +3520 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 276.445 260.571 288.401] +/Subtype /Link +/A << /S /GoTo /D (classTubeBell_a3) >> +>> endobj +3522 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [320.042 191.637 337.671 203.592] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +3523 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [310.021 174.566 327.649 185.414] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +3509 0 obj << +/D [3507 0 R /XYZ 160.667 686.127 null] +>> endobj +3510 0 obj << +/D [3507 0 R /XYZ 160.667 667.729 null] +>> endobj +298 0 obj << +/D [3507 0 R /XYZ 160.667 667.729 null] +>> endobj +3512 0 obj << +/D [3507 0 R /XYZ 160.667 414.955 null] +>> endobj +3513 0 obj << +/D [3507 0 R /XYZ 160.667 414.955 null] +>> endobj +3515 0 obj << +/D [3507 0 R /XYZ 160.667 375.381 null] +>> endobj +3517 0 obj << +/D [3507 0 R /XYZ 160.667 335.807 null] +>> endobj +3519 0 obj << +/D [3507 0 R /XYZ 160.667 296.233 null] +>> endobj +3521 0 obj << +/D [3507 0 R /XYZ 160.667 238.954 null] +>> endobj +3506 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F34 950 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im66 3505 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3529 0 obj << +/Length 983 +/Filter /FlateDecode +>> +stream +xÚ­VKÛ6¾ëWèTPÈŠKR¢rè:Ý iÓÝîê$9ȶl ‘DWx…þùÎph×n$h‚Lrf4ß<¾!Wúþ¤/EÊU’ùI–óTÆþªõn +ïúVE~Îó$ò‹µ,ÖïXÌ“4£,fE'lZÂA²*%»©š†T‹@²Eå»…{@Aµ©úª[}$tª˜Ôið¡xíýZxÒE +å¹F<Ï4Æò—÷îƒðמð_{¨Ëüì—`Õzqª¹’™;7Þ£÷çÉ•ðC•Ú Ž)eŸg´0] 26öªÁ"H`‡²ÛVtüc‚c¨”Aºð[õÃÏöõ-TëäPjÅ@j®sm}¿2%Ã3`Ü(þÆX‡ë©AÀÑô±WÝ:pU}"É]G ç9‰Ôç!„ä;”ŠçZ~[‹Þ "m0„µÃ0\»›Æ=ȧq P‡ÿìßo±ôwäóqOŵi¯/à¤ü +žúx/ªý¸»„ù1YýòâJö@…Täú§cݬ°`JÊ~[•*CÇ–B0T*vP ¶,‡z…[ 45˜Ï¹QwÛk„Ëiú5™ßÂá m÷åX×é\=íkÐö•3­;ZaôluÆ–È|g>î`v ¸zª'ݤnC`çB›Œž”P2 +Þ ç$e{Ër„%âd‚µf›™ŒJ¢c½íŽ3€ñ%  ¼ à:)ÛrWò Œ•b¯6d0£_3976Xؘ ­ãŽüÁU)åìG¢ª‚ Àž§Æpü ^ýü… KºÌ4R+-X=P{ß -Úòc mIÔšSv3¨%}u° ôˆ2“]Iu…»›1u~ÂOy¢b‹¿$­õrûê_/îîå´_`Ž€ò‘Ž%Æá¦íeyöÍ=AÑh‚xe/ttýÉFyŠÿÊ‘XC»Ð1_uê“Ñ`í +ž±ÕÔZW@Œ<ÖHtET>–´v¯ |»jJÛ¤áT8$é¶UWõåxÆž£«Þ´d‚Êc£q †1"s˜ò‰m]|í¶¿íb(°¤8QK›uuc78@|÷ßwЦµäJeßùÒsê¸zzÛc?áyŸ¿„¶1q¤ÙãܰÀÀÓ$(Æ[KŠ;:c#ÿ­I…W~¹xöŒ6Kt0“ò>ˆà#Ž•> endobj +3531 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 577.432 161.121 588.28] +/Subtype /Link +/A << /S /GoTo /D (classADSR) >> +>> endobj +3532 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [237.669 551.284 255.298 563.239] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +3533 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 469.021 180.632 477.932] +/Subtype /Link +/A << /S /GoTo /D (TubeBell_8h-source) >> +>> endobj +3530 0 obj << +/D [3528 0 R /XYZ 106.869 686.127 null] +>> endobj +3527 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3539 0 obj << +/Length 1320 +/Filter /FlateDecode +>> +stream +xÚÅWmSÛFþî_¡™~9M¢ã^¥»LÛæ…) þÒ¡|¶Œ5•¥Ä’aHÿ|wïN²Á„RÈ0È÷º·ûì³{{hÉ Æ\cé¾õ¤@³vÌ&r¨†²î°“1&%ébaÈ~šw~ŠaiÜYR‘¿Wx\W,ýzgCy‹­–ús„½qÏh*´;é§²žT«iЇóõ:•Q–©`ýÏÛr2š)¦ÇWÍ1(Eç÷ˆ‘aݯ[f'œqj¬J)·ìm=ƒFÙåu¨ Ÿâp~±ÌÞîY{°ŽÝ·*^½ºÍ +i Nç© Ú Ó£Ï@fSå–l4»úa`çí"Í¢ýx­©” b•¤Æˆ\âÔj½É¥ãÕ9ú¨œxÆÝ£‘iTk„¸*J`‡ Rr·Üžm!é½?b¤  `7É¢üs¿DØá8lçà#0‚ZæØ/fùªê`gjy-IS·Ýr5éÒiF&ËX ð|r0¦sîjý\îZçEX0ÁOSOØ ¢¦Eñ©ßݶI7wsÍêbî'‘Ü +vÓm\ZKŒ^@\2“hÆ %ÙD@±Œóÿ†QJ•Ð7 Âd“cdÑ#ôu¿æÇKGãr‚»*ò@sÔs˜ää»ÝºW [_uóÂ[PÖtW¾‡¦A".‚y˜áf·68uC˜>ÑmѽÆØÚð#8ìÏÛqmµ»œ. MåwÜ .{ç½f†6Û÷ÛÁ‡ßQËÝ.µ±§Î9huwm)K­÷„OðE­fFÎOÙY,, `•º´Wuçg/±‹þs¡±*ž õ]¾ 8îh ñò'\p›Ó NyvÀs~?Úʨ¼ßÆ;?å`ÕÙf‚sùÌAÞÃmÈe^=%ÆâÛ#4có0ÃXü@Œ…Ák†ÎWamƒeDŽÕLÚûs ºRÈÿ„ºyꨖ‹ËâóªÊžkœ} ³6»ƒ%œ1j„ê+–çT>-Wþ"ä^Ç’a‚nÕ*v ©\œ òàRfij(TG ~‘Wåç©_`áAÌ9'»NÞ<ä‚¶= } ¹¾©–_I²}ÑYwánœõÅN(h\…R€D¾úñ³] ¯ÝÐ-ø´ÈÍÀ>_דëmC€é°iYÖ^òo_Ðò»c#…;E>2æî¤p±Þ‚¸e†šÑLÈçOBÝð8D¶•õ=9)5.Ä7rÒfUéG.@"ÝN¼ÒRÎ3HðËýÒ”Âb`ûð:PPWZ¸D7£¦Jjrr ¯aš»È*[FP8K1´`®qϽ÷eç§Ü«¹öí½Øyá;ç(èÚ·áÁšb@Š #iØ‚BAôß¾ .0õCWvødp–ôœä(þå6nOñÒ¹° j2ààâ : ÏH½6«¦ðYŸò´g±ë6àá‚*'KZ_BÊx–þG0† Ñ»ð_À&Ó endstream +endobj +3538 0 obj << +/Type /Page +/Contents 3539 0 R +/Resources 3537 0 R +/MediaBox [0 0 612 792] +/Parent 3534 0 R +/Annots [ 3544 0 R 3546 0 R 3548 0 R 3550 0 R 3552 0 R 3554 0 R 3555 0 R 3556 0 R ] +>> endobj +3536 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 882] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 3557 0 R >> +/Font << /R9 3558 0 R >> +>> +/Length 3559 0 R +/Filter /FlateDecode +>> +stream +xœRMOÃ0 ½çWäLì|öŠgÆzCœÆÆ­¦Á¤ý}œ6iZÖ zHüb?¿gWJ¿t®Zq·OF¾}‰ƒÄî)«VÞÕüX1`!’õFôe(m€@•“Á;ãdÝŠ«ú´Ü7ëëú]Ü×rÁ¹;¶$O‘>Õ¦Æh< ñ½&Xâ|o†;2/xRÞÏ8æn…1È +uxˆ:Z±äβ‚Úy/ 2¿ê­<ìšãúsprI;;«ÀàÈAFŠ ág@©Ù +í#ÅxPÿóã+ÐìÇ»8ßùY?~5ãU·Ô‘™Œ3ÜJƒ¥¢ý (5l†”‹fX‰VÒ›y–D +,³½pÿW^!Oû¹_„¬Ryñ)"צɃ™©È9),ó%ˆ3œ&ÐVjì56‚tÜ™²lnØC¯}¾Þp +Ý@tYrÎIa™â ¹¬'Kv¾[þHò™²°ä…ø•òÌRendstream +endobj +3557 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +3558 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +3559 0 obj +356 +endobj +3544 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 425.486 224.744 437.441] +/Subtype /Link +/A << /S /GoTo /D (classTwoPole_a0) >> +>> endobj +3546 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 386.718 232.493 398.673] +/Subtype /Link +/A << /S /GoTo /D (classTwoPole_a1) >> +>> endobj +3548 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 347.95 229.061 359.905] +/Subtype /Link +/A << /S /GoTo /D (classTwoPole_a2) >> +>> endobj +3550 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 309.182 232.825 321.138] +/Subtype /Link +/A << /S /GoTo /D (classTwoPole_a3) >> +>> endobj +3552 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 270.415 233.24 282.37] +/Subtype /Link +/A << /S /GoTo /D (classTwoPole_a4) >> +>> endobj +3554 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 231.647 233.24 243.602] +/Subtype /Link +/A << /S /GoTo /D (classTwoPole_a5) >> +>> endobj +3555 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.111 192.879 265.915 204.834] +/Subtype /Link +/A << /S /GoTo /D (classTwoPole_a6) >> +>> endobj +3556 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 142.156 241.888 154.111] +/Subtype /Link +/A << /S /GoTo /D (classTwoPole_a7) >> +>> endobj +3540 0 obj << +/D [3538 0 R /XYZ 160.667 686.127 null] +>> endobj +3541 0 obj << +/D [3538 0 R /XYZ 160.667 667.729 null] +>> endobj +302 0 obj << +/D [3538 0 R /XYZ 160.667 667.729 null] +>> endobj +3542 0 obj << +/D [3538 0 R /XYZ 160.667 444.87 null] +>> endobj +3543 0 obj << +/D [3538 0 R /XYZ 160.667 444.87 null] +>> endobj +3545 0 obj << +/D [3538 0 R /XYZ 160.667 406.102 null] +>> endobj +3547 0 obj << +/D [3538 0 R /XYZ 160.667 367.334 null] +>> endobj +3549 0 obj << +/D [3538 0 R /XYZ 160.667 328.566 null] +>> endobj +3551 0 obj << +/D [3538 0 R /XYZ 160.667 289.798 null] +>> endobj +3553 0 obj << +/D [3538 0 R /XYZ 160.667 251.031 null] +>> endobj +3537 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F19 460 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im67 3536 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3563 0 obj << +/Length 2412 +/Filter /FlateDecode +>> +stream +xÚÅYYsÛF~ׯà#X1&s`€«²UŽy“ØeGÒËV’ˆ„Hì’€ €Vìüùíc úÚlœR•0˜£§ïþT j¡d&tê©ËE¦’ÅjñíÍÅ×—Ú,r‘§fqsG;oÖ¿D‰HÝ26.‰n–ÆDÍ«¥ÑQ³[Æ**qÁDOwE×ñðª¼+q¥]Âj½Â 2K\¤l¾üíæÇ‹ïo.”g"–Âäù"6"wYx}ñËor±¾‹/pÍ-`,…‚]û‹$³B+çßw×?¤”&1‹XgÄ}$›‰ó«Tròõ¥q ý†ÿ:e¨ªÔÂð£:óÏæ®+öh4´Ð®$Ÿ˜;‚K…SöÈ~¨ó5µ·>’J»Ò{EÃÓƒw`â]c¢«ÔÞ#8XÁ¯¼S5¸æI¡· ý…¡êŒÈ\ú·ÄêL&“iò!ÙK3Æ #ßð)æ´È¾´ÍÅÊêRò(O•”Ìû“Í#–ïPwÕ¦^*ÎCkžä\|¢ãøa‡¯aµzG¯ïñpeЉ²3.ÎBäã^p3›¤ÇLöè¬-Ò¿FNàªÙ‰6"GâC% ‰4ñµŠD§P™‚â-å`'´ÀOÊ®¯Å_ó¨>à·TžDsçŸJ!ê}‡ÜBºw €2 +ÀæÄ'Tí™üJ «³òÏ„F]åÎïõ±«5’È­%Å‚‡¨ƒ#3Õ€À5(ÌP ”ÒIôט*ªšu‘Ùè;Âoݪ­îq±¢œ1ó*I¹Á*&}óûH¼?P5ŒY½–!ޏ€5’2Ðá¨#a²ÊDª¹6Ýl+´§Rè¯M︅ÙKô O^»€Snéb¾1¨ÔäÑ“ÌLÃ’]Ü_Rð#ˆ¬ÇS$ÖZÐɦêÉ'¤DË8™ž0=+w‹,Ãyyv‘ƒnÓ› ÄdáðÖ7Õz‡¨ïš6þ€Ÿ ôFì×rbÃj×Ô.¯‡ÅêZäÑݰý5:-Àò·žLÙÝÛM½ôJõG¶¤p|Ëd´G ªó¨‡'¥‹Í‘l)ÉV°µë²hwo'記&NŒM’&=ž<ç·xÖS{EÓ¢0~æŠ!(Ÿ²ŸÊI+>Ã=+&g^-¡Kñg®ƒæ +2É2h‚˜ó9’¹åQÌU_K©ÏÅ#0n¬p‰;Dí#ñ‘Ýc÷nk'—,.—y¹yÕ£šÚÇgC{V”‹èd½4>Oö¸m›F,6okNV‚˜Ø¾UÞó-¡Ü(ˆœ¶v“ƒáíý' b¯ ®ÏQC /`~^5s!¶d`MD@­žF$PEÎUO¿òÁ.õò90ñÙ²Ìm¨ ÆN +¤Ú†ä !asÌû9ä} +ˆ™"h‘³zqž×©i¦Žbú RzZ ¶ýý²+áœõÛIôbÎvèær)²ÔrSçþª#öHp}£E’ÝÖM»/vÓb>%ªQiæ·~Ãä/— +¡ÏsŒÇïG˜á¦HÕ(a]v\ŽJÊçØ'l9HpLPy(¡þpv”®Rz¯Æ¨ +u¶rÆôÁ¶¤¤HIýo(BǧGUž‘OÝK£{©#÷šÂ5t$;:+¹Ë×Ñ?߬%¼ÏôKÏ”ËÄø:WöÛ†Êך'×e?|„Ùië’Žh® ¸m,Óø6¨)‹<Ü;¯*®HˆOà%^O¾†ÖT<¡H]hô‹íôÂýý.Ðÿñ™ª eäßXì7Š•H;âŽß*ð%ÄÞÖïÚTás‰gn5“‹,É>Ýj‰0NŸX-‘fb5f!çì6 Ù¥cª“(tGAh²|ä ÅBWÇñ»x@9×-ö˜LvLŽªsÓâM›ªF£\ôÃÝœ?Èrhó8Š=ú?£‡|h²ÐµM£¾=Lj§ÎÔ` \ý<÷Ò6‹ +[ˆöPNN0ïÒ"’µà­‚ÃᆪzƤ"‡½Êqßð‡6'ÏÆ749™ü,GQƒ_¡£ ÊÕ¹3C. ^ÂÔ¾ø½Ú#Pîiâ8‹95~t×¾¤ëü[ÃÏÛ ]|éê®6[R,2nÓ–R%=dN8›é8ÅÎ(É%aì:h.N C¤Kœ‰§ FCýˆ‡C/dÔÄ…ðººéù–¡gh*ÅeJ%ðAçÉ8W?ÊxÆx“ÏIÒbÀи0àxá#F‡ônäF–„ÿT['™o +£¡Ø¾%ñ Çûq»$XÇ]ÉÖOlª'¯¢P}FÉœ¶%õ1S¥!Ÿ«]Ó Ð\ª±°ÂÚ4é’L­ç“üÏ3Î HZ¡S{¤(ƒñªjWØWhrró4)E¢Ü'9‘Î!Ì‚÷ôŽŸMMßæ0%¡ mýr]´C3FU Îy‘‘A°îa×û–‡Va&@`|}lMÇP«@êIí£+Öæs5tCK~Ë-ói¼ÃÄCµÃÜ`N™ï( žq mE¢ó÷ëÜeª¼tøó™n3¨Œù§'PPÂÀ6K’ÁÒ$ý€l^ yAé©´øða9;2¹T §KÙ·ÕÏ”:×Ó !°Z1‡œ1k‚ŽÞ ×¥ÿéªØ….§y> endobj +3566 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 654.279 225.107 666.234] +/Subtype /Link +/A << /S /GoTo /D (classTwoPole_a8) >> +>> endobj +3568 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 613.296 223.432 625.252] +/Subtype /Link +/A << /S /GoTo /D (classTwoPole_a9) >> +>> endobj +3570 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 572.314 206.773 584.269] +/Subtype /Link +/A << /S /GoTo /D (classTwoPole_a10) >> +>> endobj +3572 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [193.71 531.331 211.754 543.286] +/Subtype /Link +/A << /S /GoTo /D (classTwoPole_a11) >> +>> endobj +3574 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [172.284 415.969 198.519 426.818] +/Subtype /Link +/A << /S /GoTo /D (classFilter) >> +>> endobj +3577 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [105.873 164.332 141.49 175.18] +/Subtype /Link +/A << /S /GoTo /D (classBiQuad) >> +>> endobj +3578 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [125.643 127.821 161.26 150.625] +/Subtype /Link +/A << /S /GoTo /D (classBiQuad) >> +>> endobj +3564 0 obj << +/D [3562 0 R /XYZ 106.869 686.127 null] +>> endobj +3565 0 obj << +/D [3562 0 R /XYZ 106.869 667.729 null] +>> endobj +3567 0 obj << +/D [3562 0 R /XYZ 106.869 633.788 null] +>> endobj +3569 0 obj << +/D [3562 0 R /XYZ 106.869 592.805 null] +>> endobj +3571 0 obj << +/D [3562 0 R /XYZ 106.869 551.823 null] +>> endobj +3573 0 obj << +/D [3562 0 R /XYZ 106.869 480.661 null] +>> endobj +3575 0 obj << +/D [3562 0 R /XYZ 106.869 359.199 null] +>> endobj +3560 0 obj << +/D [3562 0 R /XYZ 106.869 334.627 null] +>> endobj +3576 0 obj << +/D [3562 0 R /XYZ 106.869 334.627 null] +>> endobj +1583 0 obj << +/D [3562 0 R /XYZ 106.869 119.783 null] +>> endobj +3561 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F31 829 0 R /F19 460 0 R /F22 474 0 R /F35 1011 0 R /F32 881 0 R /F11 821 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3581 0 obj << +/Length 816 +/Filter /FlateDecode +>> +stream +xÚ¥UMsÓ0½ûWø(O±ªOÛê +éL 4¾0m&qŠ'.Ž“N‡?Ï®VŽ[ +åÀäà•ôöéí‡62ð“±rÜZg…ã¹4ñb½)£ã™Ò±ã.Óq¹òÀryÅd&’T+#5›—‰d°* ;m«íMÍÞvð•l‘¤’í±F£Þ$Z±¡\u°½InÊóè]É "\»"N5w…E ?¢«/#ŸGtv¶àÒ¹x™Ür%‹°n£yôù@%µäVdqªr¯ÿ¥€ Ï +Ž¢Wð‘V°=jí¼Ò%ÅTÞ'Z³î“?h}@''øÙB$õ€ÖYÕl|-¬Àpöå÷(¥“\È ìF¨¹Ñùã '/Æ5{×DÁ¯gY‰BŽgÚNH#y™&øð­>«Pu3Öæ)­v¼°:€!B n‚HÅtA®öM?ìªö†pÅK´™´ð5\ÑsÌ¡†ƒ 2®…4íP÷´ºÅäJÆ‘ .HeÎ3e¼ké=dAoa،ұêì»w걞2gÕ@Èat¦ëFT?ñl`àŠX’½L°!rÙÒÀ¨kÿw=ÊZOeÓÀÝ'6cU»õl§À%äØ> +\¯¤^U»6¡»` ráËè“7²…Ì6[Â@>Í'Ñ^Öcø‡‹á·õø†Qb½$žUXÙ °^/QPJ‘/vkP:?º v…~l†±’àëÓ„!VÛ1ß¹OTîw|Ôõ¦î«I €ûQ Öv”áïhÛùo6·SÇù`‘þ„Ú†áÔÞ–k£¡m-·Î„w ógýM½‚Ò냹QvÄÌQȳ٧Oj­äJÿ;ÿ4W.;´ËaN˜8ã.7ç„/ŽÑ–Í`F[|>ÁØ&’C^dX58ë| .šŽª ·OpqD‹¯Hô@6ÌÌŒÕØ+}عäÁIú;-áqÑÅÅÚyhà"g<è\TH¿GÞÎûÔ¯|Ó)'ào RyÉ}l‹0¤ìvªàŸÁàŸMS8ÑÜ£ôÀ03žK;Qe¼ËþTÂOw5ÖðѪ­ñendstream +endobj +3580 0 obj << +/Type /Page +/Contents 3581 0 R +/Resources 3579 0 R +/MediaBox [0 0 612 792] +/Parent 3534 0 R +/Annots [ 3584 0 R 3585 0 R ] +>> endobj +3584 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [253.929 583.57 280.164 594.418] +/Subtype /Link +/A << /S /GoTo /D (classFilter_a7) >> +>> endobj +3585 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 542.288 233.046 551.199] +/Subtype /Link +/A << /S /GoTo /D (TwoPole_8h-source) >> +>> endobj +3582 0 obj << +/D [3580 0 R /XYZ 160.667 686.127 null] +>> endobj +3583 0 obj << +/D [3580 0 R /XYZ 160.667 667.729 null] +>> endobj +3579 0 obj << +/Font << /F23 479 0 R /F35 1011 0 R /F29 818 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3590 0 obj << +/Length 1221 +/Filter /FlateDecode +>> +stream +xÚÍXmSÛFþî_¡I¿H“踽W)ÓéLCJš¤iÓà/ 僰eì©‘‚%ÃþùîÞdƒ ÀL&–t/{û<ûÜíqüpË„É"“åÌ‚Š&'£WãÑΞQÎr#£ñÌObÅLž¤2Sñø<‘2®?—«šd¼›@¼LRˆ‹ßßø‰ÊY¹*«I‰MÜ(ƒäpünôËxÁ‡”3™çQ*YžiòàttpÈ£éˆGïFÔ—EçøÎਓ‘²š ÈÂ÷r´?ú³7Å£TXçwDD ˜Tæ2ô’Àâ›ùL ¬Šw— jü× ½"„±³—móD‹«Ü-±?~ó¥6Y|N?uJ3¿ºù«Ä/ƒþæ –-­L_“%Rˆæí‹üÒ`™Ú­ðâš,×ÓàÀfœ²Œ[°þ8´c™E/}÷øÜ…‘Ío1óÓn +X–ëà”rÃÞVsDÖC\´E…‰ãŽªxJÍÅñª8ñ€gu@>ö$}ÞðóòåU©€2H0jŒ`*szNI +œém¿;-m´ávÞž Þ_רšh#œ´·¬$Ë\Ò°\ëmý|\‘6’†Ž?”휂ÉãihTž@£ü$jC0‘I7Cn|ҋ裒Ûo0'Íñ?øY¢ G;M£ºÁ*À2íÍ¿.gÅzÙâLc‘{-âºjÚÕzÒ:®©qE­%ý¤uœ7¾¯ðÆÅÓ'kOË`ã }áöHÛ¹ë¨×ÇsßãMQÕlHH*Ðeið‰TC¾a$Õœã›änPaàþä`L…Ü7ywÙQèé´ìx¹ÍOq·À9 /¦Ýf.‹ÕÆÇ¾â;IJó·Ò*8ÝÎi+™,^THpU,ýÁj‹¶ £êÙ•Ñáœév×}swÄMÙ¾¢øõ‡¿®îâ\3­iËŒ <Ýo=òf†üÚ?ôôÛ5¦­½ßþ N(qù3èñß ˜T猛üÒ~Ú/[OaàÒÆGüp{{‘þK¤Ê¸“nQVaó¹œØ%Çuùÿ’ß"=õTaffÆŠÇáÆ9#Þ”–°Àà +«¦+bi:µø’odnNW#VmÈV³®2 Õdz +=Öµaf ŠÊ·²¥ „ èfH·Q>À °ˆÃÔʃî4_TÞø¯_ ôµ‚¥ô$íû¦p+}K¬t aš +•Ç’kÛWíoèγ¨n‚Ép‹KÊðÐØ.ÿ|Ë1ZüNÖ5‡¬ÑXòËïEÞý7ÑñÕ #… ¾¤|à»Òxë0T +1¡zùõ×èp]é/0 +«`’þˆ1…JIï_T >0tnû/j&`À»ŸjúÅcýý¢õ]„“fî>î_ŽÈÀ…ïü˜H—T]®BË'査d Mþã?ñVˆV§þãK4«7ÜÆ,¸8)h…32]»iå ¢19Ç2/zHˆu°&᪫7ˆ1k®éO L§0Æm1ƒPi(¤aH/­¥ÿœû<B÷««ð×endstream +endobj +3589 0 obj << +/Type /Page +/Contents 3590 0 R +/Resources 3588 0 R +/MediaBox [0 0 612 792] +/Parent 3534 0 R +/Annots [ 3595 0 R 3597 0 R 3599 0 R 3601 0 R 3603 0 R 3605 0 R 3606 0 R 3607 0 R 3609 0 R ] +>> endobj +3587 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 845] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 3610 0 R >> +/Font << /R9 3611 0 R >> +>> +/Length 3612 0 R +/Filter /FlateDecode +>> +stream +xœ­‘=O1 †÷ü +À`b;Ÿ+ì¥7˜Êµ*ôTõ¨Ô¿ï#w=Á‚„2Dy_ÛÏ›Ä"íÖ¸os2÷Ïv_æÔ[eÛ4ðP©™U t6Aµ5CA Î|Fò.CÕ˜›êr|©Ûãmõa+XiíÞ$‡ÞF¸ÊcmvºT"mmÖƒ“ÓFv 9"%éáOûùngöˆI9ý41J ˆâ‘‰zèúüùƒb°èÃïÄWÐVäáM‡¾ÇÈ^¼¾{k§Úf8v–²à  aôËå&¿êÄö-a‰‚Ý£ÍÊrÆöNã ±zGÿÍ¢ãó™<êOO°"Œ~¹÷äa3z¹ +s¥,gh˜•ù"YЉendstream +endobj +3610 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +3611 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +3612 0 obj +284 +endobj +3595 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 425.671 171.665 437.626] +/Subtype /Link +/A << /S /GoTo /D (classTwoZero_a0) >> +>> endobj +3597 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 386.999 179.414 398.954] +/Subtype /Link +/A << /S /GoTo /D (classTwoZero_a1) >> +>> endobj +3599 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 348.327 175.263 360.283] +/Subtype /Link +/A << /S /GoTo /D (classTwoZero_a2) >> +>> endobj +3601 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 309.656 179.027 321.611] +/Subtype /Link +/A << /S /GoTo /D (classTwoZero_a3) >> +>> endobj +3603 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 270.984 179.027 282.939] +/Subtype /Link +/A << /S /GoTo /D (classTwoZero_a4) >> +>> endobj +3605 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 232.312 179.027 244.267] +/Subtype /Link +/A << /S /GoTo /D (classTwoZero_a5) >> +>> endobj +3606 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 193.64 193.002 205.595] +/Subtype /Link +/A << /S /GoTo /D (classTwoZero_a6) >> +>> endobj +3607 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 154.968 188.09 166.923] +/Subtype /Link +/A << /S /GoTo /D (classTwoZero_a7) >> +>> endobj +3609 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 116.296 225.107 128.252] +/Subtype /Link +/A << /S /GoTo /D (classTwoZero_a8) >> +>> endobj +3591 0 obj << +/D [3589 0 R /XYZ 106.869 686.127 null] +>> endobj +3592 0 obj << +/D [3589 0 R /XYZ 106.869 667.729 null] +>> endobj +306 0 obj << +/D [3589 0 R /XYZ 106.869 667.729 null] +>> endobj +3593 0 obj << +/D [3589 0 R /XYZ 106.869 445.007 null] +>> endobj +3594 0 obj << +/D [3589 0 R /XYZ 106.869 445.007 null] +>> endobj +3596 0 obj << +/D [3589 0 R /XYZ 106.869 406.335 null] +>> endobj +3598 0 obj << +/D [3589 0 R /XYZ 106.869 367.663 null] +>> endobj +3600 0 obj << +/D [3589 0 R /XYZ 106.869 328.992 null] +>> endobj +3602 0 obj << +/D [3589 0 R /XYZ 106.869 290.32 null] +>> endobj +3604 0 obj << +/D [3589 0 R /XYZ 106.869 251.648 null] +>> endobj +3608 0 obj << +/D [3589 0 R /XYZ 106.869 135.632 null] +>> endobj +3588 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F19 460 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im68 3587 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3616 0 obj << +/Length 2389 +/Filter /FlateDecode +>> +stream +xÚÍYÝsÛÆç_ÁÑ01/÷ üæ:•Û8‰‹/©ã˜„$Ô$ ƒ ©ÿ|÷ãEÚuÇ·£âp··w»ûÛ/HÍ%ü©¹.„sÅ<ó…È•¯¶³¿,gߟk3/D‘™ùò’—ë·‰Êtº0Ú*“\,S•¼„7o“ç›r·Ã¡I~há©’UºPÉ(¶8¨šÔè¤/ûßZ˜nÒwËg]ÎT¸ÄB +SøùˆÂ;¼ÃÇÙÛwr¾žÉù3^»ƒ±ª(æÛ™ÍÐʇ÷ÍìböëÀJå’˜,tN÷5÷0‘Mz“:“Tx«~ßѽ&óI]á ràJ—: ‚ôLð»TvÓÓÆŽ)¯Êº(Õ÷ç ÄAs m…2< hYÑ¡°9gJ?ò€oõóoÕc„ÔÅÀä?ªGƒŠ“Ê +ƒRü±‘Ïz•jŸ–µSDèwÕ÷Αª¡¿ž/¬ZæDgáN"ƒŸBÀd(¥´K~à¤3e½A{£r˜§@³[uõ .ÖCò’$Kx"`‰û^2>zᎲ⧪®þCÕBÒ$dS\ß‘(ÈTå"Ó —×hs´¤´ÉM×ö”«~À¦4É9^2°„×],·Þ§ 8ê1`Q#0¶´°\$}˜/ùñ‰;ÃÊO¸ªIUž¢€ËñV¤ ÿ/l«þº¥“ÃõX†(]°H‡QÂÛz=u·Ì$—mǃWUaµ¤´×\á_gè«mOÉð†g<]7Ì!¤›\l>"D«fuÏ ]µ»¡ · «;¤›Ü]30ðÍ%[¨êHmð<¼ÇT¸Œ„£ò§œF v<ô»X(Â$ŠÈè”ñßãÞ{&{MÑ¡aæà4ûœUýÀ3% +¢Ö‹r²åu +%¹àñEÊò’ôŸFáén!B€våqpoc„¶þ„¯éàk?WÛÔ$á—šgÜÂB¸]‘UÛ&x_h(¬rÃðÈ{’©3Z‘Áá°S òu'ADà*@bÔòŽ^ÿQ¡zÚ§HútWõ¿ Š`áš©Ng:ˆgZA ×Ñtþ‰Ü ÿTÂÃ?Ix§º¬óŸàНðVÏÒÂŤĘӴp:ärW`Ä. bÄtes¸w,TžpÖD¤7þy¢†Q`géòì+eÏ¿^v%¼¹D/צýîXn#Ež¹¡:ˆizÒ!9;ÊR &?DvN»PzÃÅsC<ç¦ÚÍ$”*£¹zD3ÅŽëÀ‚Cl-ùqÖPœçpv–b'¥ÇË*лk´»:°û´ô1"Ëí(¾¤ Ìÿö€ÊºbG"w˜†,X‚{xñ9Æ κ®bTƒâ£nª@K¡×Çœgã÷€Ç:ªÓng:ê·«7¸§m(a¸º +ç´Ì8&°ÐZÛá!Wø­cá´ Äd)G#ƒnF'¨ý;¦)»‘°‚xnÈ䄳rCE/AnÍ«ÜùÉX=p’®Ÿ’Ûòz‹gA¡‰COFøæ¨Œ=Çthdm8çB¡jÖw.(Åãž°—K ¸?Ɔ•"sÑdñ.–ÒJápCº*ƒ÷U»,€Âb<­£ íöTeDÿàûOeÊË®ú¸%ŽrÏ–V™Òª­|¢D’>¹.©ˆ,¸ˆô‡ÕØÏQ„“ÔP ²êEðgbV6d:äÐ3YPŸÿœoiè§²ü¿ð-ÈMÎm(.‹Šó,ý&¸z(OÂ=öÚx‡ñÁˆfdçDñIüaUMcO޵ª»¨òMØ‚;HC™/F¿Ö¨e€á§}[눩զì4¹Ù“B˜*ú)ECßkž`,0C\@9È\×ìwCÜEi‰!ä ÑVùcí7cý‰§!˜x,·ðõ®^q²¼3Ð N“òN•wø Ë;Cå]ûëºeÍ@§¯Ò§Ë:¥¼È±‚(œeÅÿIiË€Ò‹2–'ê_È4Þ™£ÚFS0)"–ÞÞÖ]–w\édBM<ênC³ÌÝ-×?±™«cSÓD;u´¸Qy¦QžÔè> +¼ÿ†>òÕÓN–)(¨”?ÑG!“&~ÃC’¡RœB¢èȳXc1{`gÈMVQ>åÇOùÏ'2&¹M$æÍQ'ÍüˆÿeÔÙºº,÷Ž'ê +•˜O ¬C…¨„<Ô%3|SÕ“O¬ñ+x«*´—”#·Ìå¼ÚõÇe½Ñ™(°ú÷V8é¿ò?.Ø Ù´G`/°s8*Љ,¹@tÉÅ=4yL1«Þñ'…eª0­bÂÆ_¸ÿ˺ç¥èÑ8~þ¾|Ç/ï‘Ñ=_§懾gÞ„Ï©ŒHÚüJ¾Õ¬ùå•íÀ¶YA + ¹öbU"û[äÛÒ‡°Š;(ô‡HÍ!Åßà‚n{š´øï­LeñC² tõ€«Zâe +ö?Ð2žåþ-8¾hÂA‰Žendstream +endobj +3615 0 obj << +/Type /Page +/Contents 3616 0 R +/Resources 3614 0 R +/MediaBox [0 0 612 792] +/Parent 3534 0 R +/Annots [ 3619 0 R 3621 0 R 3623 0 R 3625 0 R 3629 0 R ] +>> endobj +3619 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 630.728 277.231 642.683] +/Subtype /Link +/A << /S /GoTo /D (classTwoZero_a9) >> +>> endobj +3621 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 592.593 260.571 604.548] +/Subtype /Link +/A << /S /GoTo /D (classTwoZero_a10) >> +>> endobj +3623 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [247.509 554.458 265.552 566.413] +/Subtype /Link +/A << /S /GoTo /D (classTwoZero_a11) >> +>> endobj +3625 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [226.131 443.578 252.366 454.426] +/Subtype /Link +/A << /S /GoTo /D (classFilter) >> +>> endobj +3629 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [253.929 116.85 280.164 127.698] +/Subtype /Link +/A << /S /GoTo /D (classFilter_a7) >> +>> endobj +3617 0 obj << +/D [3615 0 R /XYZ 160.667 686.127 null] +>> endobj +3618 0 obj << +/D [3615 0 R /XYZ 160.667 649.796 null] +>> endobj +3620 0 obj << +/D [3615 0 R /XYZ 160.667 611.661 null] +>> endobj +3622 0 obj << +/D [3615 0 R /XYZ 160.667 573.525 null] +>> endobj +3624 0 obj << +/D [3615 0 R /XYZ 160.667 507.811 null] +>> endobj +3626 0 obj << +/D [3615 0 R /XYZ 160.667 389.409 null] +>> endobj +3613 0 obj << +/D [3615 0 R /XYZ 160.667 365.295 null] +>> endobj +3627 0 obj << +/D [3615 0 R /XYZ 160.667 365.295 null] +>> endobj +1584 0 obj << +/D [3615 0 R /XYZ 261.207 222.301 null] +>> endobj +3628 0 obj << +/D [3615 0 R /XYZ 160.667 206.733 null] +>> endobj +3614 0 obj << +/Font << /F23 479 0 R /F31 829 0 R /F14 825 0 R /F8 483 0 R /F19 460 0 R /F22 474 0 R /F35 1011 0 R /F32 881 0 R /F29 818 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3632 0 obj << +/Length 484 +/Filter /FlateDecode +>> +stream +xÚ¥SMoÔ0½ûWøh«Äõwbެ(R¹@›SK!ëíFd‘ ¬*þ<3v²[Ñ#ÊÁöÌ›çyóE%|Š*Y +í+ê« Jei{ jr}£ "xCë]BÖÛGf…¼0•eõ‰ÃƇ80lÃëy¡Xs„Ý1ï0wqŠC!$½uLyßê[ò±&jé¡Â„@ #Bå°ƒŸäñIÒ-‘ô–`®¢'ØK¡u ¶tB«j9÷äž|=SIZè2õ½ +©Þê¨÷رl ½‚]±ö×!b·×ÍÍÜB Û!dÊûyß-â ¶íAj± ;q]¢ø”{ŽCœšÀ‰t{¡šÆC†`rm#ÝÑ÷#‡FNÝðœáߤ²8ÕDñgv}Õ('Œ5 × \%e¾R½*Om&ßÄþ_`vÎ)¡uõŸd7•Á¹Ëƒ²Ô‹PÚ7FXãØýËÀa™÷1Í´;bžWÒ£C1Ñîæœê†\¹¹ºÊ›ïHð’“_¸ñ,N8ï%r'òºA2 ü‘Ͱøƒ‡OéýbÕ™þ&–ÛoøÔc*‹ïp‚T)œ3 [«2Éj³Ú]Z8éð¥{åW¯Ü‚{5¥…M\8B„Áxñ.÷GK\¥^]û %úÛendstream +endobj +3631 0 obj << +/Type /Page +/Contents 3632 0 R +/Resources 3630 0 R +/MediaBox [0 0 612 792] +/Parent 3635 0 R +/Annots [ 3634 0 R ] +>> endobj +3634 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 631.175 179.967 640.086] +/Subtype /Link +/A << /S /GoTo /D (TwoZero_8h-source) >> +>> endobj +3633 0 obj << +/D [3631 0 R /XYZ 106.869 686.127 null] +>> endobj +3630 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3640 0 obj << +/Length 1436 +/Filter /FlateDecode +>> +stream +xÚÅXmoÔFþ~¿ÂR¿Ø/ûêõ¢¶R +¤ +/…’“P|ØÜ9ÄÂg_l_ íŸïÌîÚw'!ZÉ·¯³3Ï<3³Qøc7D)e¹!šÉh±šý6Ÿ=8ä"2Äd"šŸº…óåÛ˜e2I—LÄÇó„ÅÏ —ËøQe»›"~ÜÀ/‹IÊâ ¬Xa£¨ÁãÞö%ö®“÷ó§³'ó J¤”“G© &W¨Ãùìí{-g4z:ósŸ M 3&ZͤV„³<ô«ÙñìÏQŒ(šE)×NÿÑ 1I„Ìv-’´Ñôb\Æo#c›€ø)ž{kPã5´´S¡í­Õ2~í¬;-Úõ¢@³æ»È¥<'Ø„§Ï1!âO Ïá ø\àÇm?ÉM»Â2n:a cUeû¦õûi7{G1M2.ÝQ?•õ¢Ú,ƒFŒm×IM¨–ÁþŸ§r4Ñ2Óoì€Ð¬ÉÙTŽâDÐAίËSF5a< ZyŽê3°È™ÛB£ìm¶Þð%Û­]y‹OÓß$¹¼ +ú‡ë¸Y?|x•PL +"€Î)Ë2’ 4ˆÎ‘0L@í¶ㆽaàÁÑ*3Ñã¸m镎’¥!¹Ùç#F©]~½Úœ cÊ…§Ï‹¢?CNÑxÙDå2¦€ž“Á¯ìez­oXt€ÅA’$µwTÑá±vìé›p:Ķ×(C)Éô@„w”Љ‚• ˜¬ßþaWÅ}ïÏï!¯TåÏE×;•?ýr˜@àÅÏŸÀ(Ëü!‚E9œâB55ŒÈÜóH3ãNÃŒãYv(Öu}»Y@¨©1)—„‰ÌA›¬;A{Ñ×ö +N$ä˜ÁvA'’0ŒÌW9éó¹˜ù-æcÈßÝxT´)—^îè“Ü{Îyø|3´Æ¾Ü3æÅ_“ˆtùX!Às¦îå9n®ÍñafŒ½|Z«Ÿ¿Dú¹ç¢=ÄN[œoŠzqy Û´Úƒû¸è=Òýf©LÇKÛ[ß*]5Ø*Úµã!¤ëBÍͶ8bûÂo?I€ã +l-ýšamX58çJNYðO·ÉéîàþozÖÏŽ +.Z.)ë>/7~r|`¶ç2©Aé 7*éΚèׂܨ°¬³¸j]Ý}/yÕ Ç—›ªñ}Ÿ^C™„~Wþ]\G#™çß΀Wð9³ÝY@ åú{‘ ÿz`ú9¨?TÅM,Èà2(îȂŦõ3ÃÀ·³AÀ`¸%ÙU½žB’ÃÂû»ÇcB¹)¤o&ÉRÎ)´ËNcŸ»;8fº ã>Y €£ä÷$ ‹_ºJƶ;—8oãKNåL"_⣜p³û8ðÙ{$DpÆú,ävç©&àÐÅ£RMÂ8„û,ܺÐn^ÞÒízwî%ÿ;^xmòP\ßE>Ìœƒäÿê é¥K*Ìm7Òž$<,èáÒ Â>ú¢ow ÚÈᛋ˜ËsïuîĽýÔoZ_ôуöª‡Ú›½]ŸðöfWk|Ýí$u_潦x18ݹl—_©À34–`xwpù­Ïfˆî1ã³FF1ð`ÜñÓ«¥*>¾„§½ÂêéÞe‡Ãè;F3¼ôÃ\ƒÕ³²÷S¥¿3ºö£{عç;'(èÒ·_%"‹ D¹ #¯IØâ`›¾kÝÕké;¿cÛúdÀ4&AÏ…Eñ(·q{à}pFÜPH €‹ö^ÄjkvÊ¡†H¬u³¤ +ëvàaXùQ–0>QÊx–ú‡SüCÌþ Ü ˆendstream +endobj +3639 0 obj << +/Type /Page +/Contents 3640 0 R +/Resources 3638 0 R +/MediaBox [0 0 612 792] +/Parent 3635 0 R +/Annots [ 3645 0 R 3647 0 R 3648 0 R 3650 0 R 3651 0 R 3652 0 R 3654 0 R ] +>> endobj +3637 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 750] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 3655 0 R >> +/Font << /R9 3656 0 R >> +>> +/Length 3657 0 R +/Filter /FlateDecode +>> +stream +xœ¥Ï=oÂ0àý~Å”ÁøëìdEb¨Ä°ÄŒ hÃG‹Ò¿ß‹G° )çóëÓãH¡PÖo[7%\a²°¸ÿ…+ªÝ˦Äià0Ç,9?vÐŒ)$)¤#®Z†F«uµŸÏ—p„YÀ‚OÀþÒ$i³Þf£")ñg Ë×He½ Chz³ú<õ^Ë)ß–ê=®ƒ–·¯Ç=u ß‘ÿY×q·lÖš¿øÍú®Mâ}»$vœ8UÛÚÇL›Ì']2µ7­M(P”Pn@¹EŠÊuTÿÉStendstream +endobj +3655 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +3656 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +3657 0 obj +224 +endobj +3645 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 411.404 232.493 423.359] +/Subtype /Link +/A << /S /GoTo /D (classWaveLoop_a0) >> +>> endobj +3647 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [217.383 366.999 272.648 378.954] +/Subtype /Link +/A << /S /GoTo /D (classWaveLoop_a1) >> +>> endobj +3648 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 322.594 265.231 334.549] +/Subtype /Link +/A << /S /GoTo /D (classWaveLoop_a2) >> +>> endobj +3650 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 278.189 247.298 290.144] +/Subtype /Link +/A << /S /GoTo /D (classWaveLoop_a3) >> +>> endobj +3651 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 233.784 250.259 245.74] +/Subtype /Link +/A << /S /GoTo /D (classWaveLoop_a4) >> +>> endobj +3652 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 189.38 276.052 201.335] +/Subtype /Link +/A << /S /GoTo /D (classWaveLoop_a5) >> +>> endobj +3654 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [273.578 144.975 318.908 156.93] +/Subtype /Link +/A << /S /GoTo /D (classWaveLoop_a6) >> +>> endobj +3641 0 obj << +/D [3639 0 R /XYZ 160.667 686.127 null] +>> endobj +3642 0 obj << +/D [3639 0 R /XYZ 160.667 667.729 null] +>> endobj +310 0 obj << +/D [3639 0 R /XYZ 160.667 667.729 null] +>> endobj +3643 0 obj << +/D [3639 0 R /XYZ 160.667 433.606 null] +>> endobj +3644 0 obj << +/D [3639 0 R /XYZ 160.667 433.606 null] +>> endobj +3646 0 obj << +/D [3639 0 R /XYZ 160.667 389.202 null] +>> endobj +3649 0 obj << +/D [3639 0 R /XYZ 160.667 300.392 null] +>> endobj +3653 0 obj << +/D [3639 0 R /XYZ 160.667 167.177 null] +>> endobj +3638 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F19 460 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im69 3637 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3663 0 obj << +/Length 2007 +/Filter /FlateDecode +>> +stream +xÚåXKÛ¶ÞûWx)¡1+R¤Ù¥i§HÛ ¹ÁEÛ…FÒŒ…È–#É3˜öÏ÷¼$Ó¤‹ÜE‹ Š<<<ÏïR/#ø§—:J•I²e’å*ÕvYnß­ßÞ˜x™«<‰—ë{¢\W¿V¥Q¸Š3|ó$(ÂØøSÿê ƒ%t{¤ˆƒ×m1 <|_߇+Ô=Õ8ÚÁ ¤©peò,1N\øÇú§Åë…ÁV‘Šó|¹ŠUž9ëÓâ·?¢eµˆ–?-p-[>Á8R¨¶ ›:et&ßíâvñŸ™U´\™””™µ3K­UîÜ©z h¨¥A:mlð=É;ÂTÑ´(~*¥.øž¤ʾÙãbÓ…¨hðíMæÛme¬Š\Nìo×?Ãæ8žB“ñàçèˆ{4`¿EtY§¹¶-Æ®ç}%›ÄÓ»NUb,q_ošAÈ…-ˆx`žÈl·™<Ðãç(K÷è˜NÎþðov̪ØU<ØÃdß‘ÈM51‘óŠCÅ& ¯ß#mÛšÇ-ÌÁ–nO‡?ðäý?ʱé0 ж‘ísQuM¯¸ÆJÅX¿L<1¶Ò`8 h{žë'¥²,Øâ<ª›U‰¨|±ÛMÒ·Ì *Æ‚GÍnþ ÌÆÙTí4ò\Vñ!âµbTá*‰ÒàÍÈó¨¯ÈÑl}á +á=é‰1˜ž#¥ È–ÃØ œ‡fØàtŒ›š×ǦD\ÿ5/o)Ç t^àt<¡ÎhO„}=z +Vú¤)¶ûÖ÷)œ²ï9¡á$èPÒbÅ›îØa4ö<Óâg_;GÚeßÍÑè.ÎDaÁŠÐ2êàØÆ=E'›ã†É7!}±%=³À1‰âºå%T"Ô±iŽQ2®ââ¥ú/õ¼Ô¢þthCðÞñš‚–ÒW–sÀ\KÚ9B`Ã;Ž ÙÍf~Á4PVŒk&ŠŒb„>XVÎeç%ÀH xKl·Xæî€Õ1¨ ¸(·Á‘ í»“ÂÐMyØK9¯§%Ö/Xhn6\‰ÀeTg!% Á_ªÁ/‘îåP7HD…÷ӡޕϼ³)ÞÂÂÏ ¯Z©£š'ù?×ÞXÙ8½Zyeå‹]Å +þ+ªð*„È_³qbw¤´Ze™òR#•\ö…Ñë¢Î)gµl"H8/Ï`*ì +œ˜ž#à¶–@gÄ…TW†=¡m׊g¥höÅ(;ïŠaÆMød‘-ƒ5TGÂz©Ž=8ê¢OºR_õs†Éüadir¨5 Ö¶ÙÕBÇjÁà\™cõõÉ3Za•àÃW ¸O43.Ãxî`@S@Þe*‹Ü‰EØêe·CÀMm¦|¶Ér®!Ds5|€& J@WÜ‘¤5ìê‡bl¸„¿ ~œ{E^}Âý']sšÊ ~QH¡sDó<†&N÷uQÉŒp…•Îa¸]_ùÁ©®‚f¬•KÜ9hš¯Í¢ªÞm@?×ÌX¾½@É•ÑtßXé(WZÇÿ”tSˆï^…"Ø7\ÚÍF*¿ˆŒ&w*NíIQz³+ûz{Ñ”ÔIô'¹Šð6û¸¨ö¦nЉĝŒ“8ó|%k!ý"(@G•ŒóTòŽÒ.Biúº[ ]î(_Àžpc6ɵÛ\üë L$óçfã.8òP3ÊÎÌû>c.Xñ1>ù ô„#/1 ÿ)‹s“…›`¸*ÒÅïûúÊ=…³ìw|$ÞŸ`¯µö:ö晄÷?:Óì*ØÒ V®«RŒýn{?銗ç{7ÿ"zÔÿ*ެ°<äÚ}Nâÿ œü +"ÅõÒƒ]ŠIT”æËU攉â[ëõu K`–Ÿ€Ê«ª:iŠÐ“Šoò%YŒï¶§),Ý™áLJ$.8ünqqƒûü㉵´Q’¾Xdýþ +þ36˜ÒÍ^åw"Z»›ß^ðg&f$5Nxù‰<ŠMM¹IgHBãøÿ(7½t<ét…G5ßfá’åUbœ;p~–™ezŒÁ`i½71zˆKÉS¸öPï꾘ûáêȪŸÞÆf°ÄG3<£méMì©™·<¿Bî³µõ+šŠ-\­ \Nr+¹¢Ó sã`êV?ÿÛ\ö%úŸ”ŒgáåÓ)?ÂJÍXb—à!è<,YslC“þ W^7¿EpfAü…‹¾Ÿà/éçfä¥fÇ;_ó îÁ3/¾ ã„ߎ{™y¯ø/¾À¾à'v·’;6ø‘J©< 0 %N‰ˆe'<"뎶Aë‹¡gòH90Iù*"H环ŒrØžG*ÑÉäC'tže´Q–x¡ ‘ Ì‹g¹¿ ݾ#39ïo`¥ endstream +endobj +3662 0 obj << +/Type /Page +/Contents 3663 0 R +/Resources 3661 0 R +/MediaBox [0 0 612 792] +/Parent 3635 0 R +/Annots [ 3666 0 R 3667 0 R 3668 0 R 3671 0 R 3673 0 R 3675 0 R 3676 0 R ] +>> endobj +3666 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [211.588 613.15 238.21 623.998] +/Subtype /Link +/A << /S /GoTo /D (classWvIn) >> +>> endobj +3667 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.397 583.017 203.44 594.972] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a16) >> +>> endobj +3668 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [245.045 571.061 290.376 583.017] +/Subtype /Link +/A << /S /GoTo /D (classWaveLoop_a6) >> +>> endobj +3671 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [141.232 418.826 213.987 429.674] +/Subtype /Link +/A << /S /GoTo /D (classStk_d0) >> +>> endobj +3673 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [105.873 309.712 178.628 320.561] +/Subtype /Link +/A << /S /GoTo /D (classStk_d0) >> +>> endobj +3675 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [105.873 224.509 178.628 235.357] +/Subtype /Link +/A << /S /GoTo /D (classStk_d0) >> +>> endobj +3676 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 181.29 186.997 192.138] +/Subtype /Link +/A << /S /GoTo /D (WaveLoop_8h-source) >> +>> endobj +3664 0 obj << +/D [3662 0 R /XYZ 106.869 686.127 null] +>> endobj +3665 0 obj << +/D [3662 0 R /XYZ 106.869 667.729 null] +>> endobj +3669 0 obj << +/D [3662 0 R /XYZ 106.869 517.136 null] +>> endobj +3658 0 obj << +/D [3662 0 R /XYZ 106.869 493.022 null] +>> endobj +3670 0 obj << +/D [3662 0 R /XYZ 106.869 493.022 null] +>> endobj +3659 0 obj << +/D [3662 0 R /XYZ 136.813 397.849 null] +>> endobj +3672 0 obj << +/D [3662 0 R /XYZ 106.869 383.908 null] +>> endobj +3660 0 obj << +/D [3662 0 R /XYZ 377.006 312.646 null] +>> endobj +3674 0 obj << +/D [3662 0 R /XYZ 106.869 296.768 null] +>> endobj +3661 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F35 1011 0 R /F32 881 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3681 0 obj << +/Length 1257 +/Filter /FlateDecode +>> +stream +xÚÍWmoÛ6þî_!`_h´bøN±lÍ2´]Ь1Ðmm?¨¶ µ%G’xûó»#)Ù®²è^:±N|9Þ=÷ÜñÄ<Žjí“9j¹Jæ›Éw³ÉÙ…‰£ÎÈd¶ô g‹7„3M¥P\’ëÙ”“ð–)òt·-Š’œ×ðäd>M9ÙÁŠ +E5•‚tyWâ[ ÃÕôÝìùäûÙ„G#RF¥Ë’TR—i´ávòæK–<Ÿ„¹{åÎ%›‰²š +žÅ÷õäzòÓ ŠKN53I*¬·pH$\Q©Ì±GŠ‚5–ƒ]\(òzêÙ5håÆ öàEa ¸i5yU,‹&¸6/З³‹ì.<;ðˆëÂ$%hϼvP^v¿yåM˜)Ö…G¬ÃÉrŽƒŠlQΫ:,¹¸ Ïv_MEFºÚ×⦲ 3eÕvÍ1渌ã„;±Ž[j„òÖ}UVóõnàü°NYʬŠ8}=Öc©UYœ~½kÖÅž®ÐÂi¦d\öͪÔjŒ>1éYµêÁ÷xty5”*4 ÍM“o‚ë˺AƒÇÉ“'“+G%Ð!åNPfR$¹2±ÌIåËžýÞ8pölcYr^ï’õÒA³ÒT9sÂ=NÖÇܻڽ_÷ñN]Ý +ƒÍÈ¢8ªP\u%KRÚpÿ[ÆíРĨ4N¨ ½ešÁ?{%O2Øã³òƒ[83Öz˜Û°9f2‚–¤öD›wuCÇv¦tH㟠 M5c I62Bo9ÿ\› à¡£Éæ“>Q>Ãà¿Bö“«.1'‹îb +ůé¾ÝõÒÀÜ#?`èò—'}µBG˜NòO×@¥Ò=XãÌÀ¾l\É/~|‰.|‹hÏBR-Á®&˜Ò*ÛþaÄSÇ)àš\]€;T¡ ú_Å¡-’&oüï¦èŠÆGÆÆ¬!¸®+ç»u§–~[1Õ@ ˆÎ÷ÿN1TuW¼¬‘‡ »©‚€ˆ/¤[¤Üã`ì% )Å85R÷ì¿43ßl}iëv‹>þ„KÜÂm->"S,8¡F dº/áêócݪÂMysmD™¾ é™täÕ"jGžn×hfñO‘êÎp“ùÛàK‘ú.¬BÂ’Ÿª¦©¡ úª“rŠ Ûf»ë"ÜuCã»&ÂxÑô÷tßwß{©tP7À‡8uÒqBû&ìÜ«Ãv«ô×À"Üç^q;oÊ-N–C9꽠˳êÒ{ í–öÍV~‹‘d›fK¿kë»–cqºÃ—{_«Â@[BzAö¶A®p>Ç@7q[{Òƒo<Œ°°«oÀ'MÖËH¾nã v¸Ã…6ì\ŠQ—ò6æüú¦ýÚ*Šƒ:àS/Ã3ä,³Ÿ3þ+j¦ãl±Ðx2ìBÒÒýݯIæ^´xèÈtirHZ§¤&×hx€µC”•ÄtâÌø hü…p½(»0UÆ„òÓGøò(¼¼GEû _M¥!bÔÄ‘W4nñ¨“úCx…†7€Ž/? œ‡tpf vÎsT‡zk¿§xì#$ƒ:(I€K¨©ó˜úàv*à;Iá§—á¦/n:®;‚‡ ª¼. èúÏ@çð,ý»` ÑÇðÆÃW,endstream +endobj +3680 0 obj << +/Type /Page +/Contents 3681 0 R +/Resources 3679 0 R +/MediaBox [0 0 612 792] +/Parent 3635 0 R +/Annots [ 3684 0 R 3687 0 R 3689 0 R 3691 0 R 3693 0 R 3695 0 R 3697 0 R 3698 0 R ] +>> endobj +3678 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 1269] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 3699 0 R >> +/Font << /R9 3700 0 R >> +>> +/Length 3701 0 R +/Filter /FlateDecode +>> +stream +xœ­RËN1 ¼ç+|&v'¹"ÄCéJ|@UЭÔBü=îv³ÝUũڃµ3±g<‰GøúºhÝÆÝ> ¼íܨ£jY´p×Y ȘE yuÇ6‚¬˜r!ЀRšÖ]½|mWËŸëæÃÝ70³“ï®xLž |;öŒØz%–ˆ)eô +Û¥›ÿO›aPaÅà¥x„«TPÎH|AUlc$ÒNðq½ÛoÛõþL6qTd¹Èž Å[¥HXB';ßž)ZküCQ"†HñpÑûk¿œ˜ÐXÙÉ Ðó5ï€ñ}„ÀO ;ÂÁ^C™ Ó¯7G$Š˜ó\E4HA¦“Hz¾&:ð8™Ð\ì!òÈęΨ&ŠOyØ´K;Œ6­@Ï×¾'䣅G&FÈt†™˜¹_""¶µendstream +endobj +3699 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +3700 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +3701 0 obj +327 +endobj +3684 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [289.269 627.027 306.897 637.875] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +3687 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 393.299 218.268 405.254] +/Subtype /Link +/A << /S /GoTo /D (classWurley_a0) >> +>> endobj +3689 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 352.979 226.017 364.934] +/Subtype /Link +/A << /S /GoTo /D (classWurley_a1) >> +>> endobj +3691 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 312.66 265.231 324.615] +/Subtype /Link +/A << /S /GoTo /D (classWurley_a2) >> +>> endobj +3693 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 272.34 240.657 284.295] +/Subtype /Link +/A << /S /GoTo /D (classWurley_a3) >> +>> endobj +3695 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.527 232.02 260.571 243.975] +/Subtype /Link +/A << /S /GoTo /D (classWurley_a4) >> +>> endobj +3697 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [289.269 146.429 306.897 157.278] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +3698 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [310.021 128.805 327.649 139.653] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +3682 0 obj << +/D [3680 0 R /XYZ 160.667 686.127 null] +>> endobj +3683 0 obj << +/D [3680 0 R /XYZ 160.667 667.729 null] +>> endobj +314 0 obj << +/D [3680 0 R /XYZ 160.667 667.729 null] +>> endobj +3685 0 obj << +/D [3680 0 R /XYZ 160.667 413.459 null] +>> endobj +3686 0 obj << +/D [3680 0 R /XYZ 160.667 413.459 null] +>> endobj +3688 0 obj << +/D [3680 0 R /XYZ 160.667 373.139 null] +>> endobj +3690 0 obj << +/D [3680 0 R /XYZ 160.667 332.819 null] +>> endobj +3692 0 obj << +/D [3680 0 R /XYZ 160.667 292.5 null] +>> endobj +3694 0 obj << +/D [3680 0 R /XYZ 160.667 252.18 null] +>> endobj +3696 0 obj << +/D [3680 0 R /XYZ 160.667 193.354 null] +>> endobj +3679 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im70 3678 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3704 0 obj << +/Length 1069 +/Filter /FlateDecode +>> +stream +xÚ­VÛŽÛ6}÷Wè© °+®xÓ%@¤N7HÒd·»‚"›Ù–m!¶èê¯ÐŸÏ ‡rllm`Àä ‡gn‡¤DÃO"N¹L² Érž +,v“ßf“«k©‚œç‰ +f+g9[~d,ÂHeš}ó„õM(Ø6Œ+T+6E ³–”wÎbU6e½(A%´Ê˜HÒðÓìÍä÷ÙDøH¢˜«<"ÅóÌ`O>~Šƒå$ÞLp- 0¹«ÝD§†K‘yy;¹Ÿüy„ ÏUD2u)Œ9)€"=Mé… wm› +Çn³ #£$38Vµ$>ƒÅ8QLGÏÑLEуP€úžD9ϰZ€yA›#4Å ˆpÓwÎ<’9Oô©µtvÏEäÆ+´ººÎ¾?ÊFºdL–º=S[‡2c6ÀBJi6Ý€PÔë’Ä÷=ˆ»P¦lÂVV6í3†&Á…áJ+À6ÜäÆa?Ä"}N¤/Ù;ë—ýv¶A‡Š½®— —˜Ä#injR`8¿’J> !"ìHHžñc!LÛ¶èi…!,½»ÂÑÕzú¾kÉ©÷­Žï?®±ô7„y¿§âº´—gî„øŽ?ùü½,÷ÝæÜÍÏÉêÅË{(ÙRô/cÝœr¹/šuÙuTĘ̀›3*Í6P©c6/ÚjS4µ˜Ï¹QÕë+tÛ56Ò6K2¿áM÷EW×I.÷¬6¥7­já0—05›#ó½y·k‡—Uëµ+‹ÔÝR b(™€’Qð‘“”íË}Žtè'‹ÙζÝv £‚èX­ëñ `|IÂ:K…p»bSð0ÒR²×+2×öÆ »¢±ÛÜÐXžp¤:à²÷àpr¿õÎxü-^Íð/t3ؾ£V:gUKí}ˆM¼+>W˜ÐšT;{Ìn€eA».½ dWP]áÏÍLý§<‘ÚùŸÓªC¹Åyù Å?œæS̼|&±À8üi{Uœì¹%Wt4A½poBqQã¿ôäÖÐ,òÌcyê “Ñ`é ž±E¿sP@ŒÜUH„"*%­üC{ÛÂ5©=‰Ckë².›¢;aÏÕØ™àâ†ó±õ †cDæpÊ5ÛA|ï¶×?v1|Àcß7ÛcçQæ›'÷øä#¸”Ùÿ{¿ý—€çêñ“Dà$Õ§ï·kŒV†Ýux:‰-ªñÖ‚‡;k¶o«Ž–ðêÀÓ‹ šÌ` ÅÛP%ÀG::NsÇiD.ÂrEà"õ …WŽožßWŒûzø‚ÐÖm+/×dsc¤-=ð ê °ï˜q$¹Áû5æ‰HÆÞowR¸õµÃ¢”}™dŒc,ÇÞ}M=Râendstream +endobj +3703 0 obj << +/Type /Page +/Contents 3704 0 R +/Resources 3702 0 R +/MediaBox [0 0 612 792] +/Parent 3635 0 R +/Annots [ 3706 0 R 3707 0 R 3708 0 R ] +>> endobj +3706 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 530.119 161.121 540.967] +/Subtype /Link +/A << /S /GoTo /D (classADSR) >> +>> endobj +3707 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [237.669 503.971 255.298 515.926] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +3708 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 419.771 171.942 430.619] +/Subtype /Link +/A << /S /GoTo /D (Wurley_8h-source) >> +>> endobj +3705 0 obj << +/D [3703 0 R /XYZ 106.869 686.127 null] +>> endobj +3702 0 obj << +/Font << /F23 479 0 R /F34 950 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3713 0 obj << +/Length 1308 +/Filter /FlateDecode +>> +stream +xÚ½WmoÛ6þî_!`_(¤bø&Q,¶]Rî[ºÚ@1´ý Èr"T–RIN×ìÏ9Κvi†À_wÏ=w<ò€Á„¡ql‚$5TsäëÉo‹ÉáTÈÀP“È`±² Ëw„'iI¡¸$óEÈÉs襊UY×aS’㾜äaÄÉV¬±QÔ¡¤Ïú{ ×á‡Å³ÉÓÅ„{%"F¥IƒHR“ƨçɻ,XNXðlâæ>C›QnL°ž(SÁS߯&óÉ[Q\r³$ˆ„¶úo WTªdl‘¢  м½œÕ ¿ŽÉ {«´"o +T|c¶ÑÚÿu^ ‡Ót žªŒ•=_ >R’ ‘X–ë-³ºv)Œ œïÝìiÖn*‡óñœŽºc„Ù9‡kšˆØôSYçÕféÕáüzÒ”iåmýy_ަZ¥~§çû2N™ +¿è×=“£4¡‚)¯²«fõù+h”}V‡žÞ¸%ggm¶vf¯šÖ5ÞÂ(òøñM†À1 ¯òDP•ZžŸ€R1Æ5ã¶eаÕÎÖšÇ p%¸¦K4V’¦ŠïÐ…SÇcº¼ÞœV¨yîXò²èÏÑ«Œ,;œºF†Ç F*Ri÷¿g\ï!èƒ@üÌÒ ñ°#fðãn—`µ¥0™kß4vâ‹U¶©II +pÇ’4u×·›¼oZº¯`$@„ÄHÓ¹¹‡†Öµ :ÙRÖs9…&È„¬Ý?\CºIj¾gLîª ðí®ªS¯²uñÈñè4„€ƒ”‰”4•;¶µáß™†×äÉ‹ùS»ÆH3áqö´“Ë-w+—²Ê  >KDW#ºb„®\anküVãµËmˆsr—Ä·¹á3GÛo²j_ž„aÉ9Éö$aÜ›ï§\$bðÉ.V˜üßÑRŒëÂ2äúƼË\.—› ëú¢ž"•Ï+–Œè–1o£çpÕ$ü.þ‰¯òOZþ¥ÿÎ?h!ùäLQ­wBùäÉV nrõç…kt~ +˜—¨˜mz^:E}¢…~Vû‰1‘ÝH9P²s}ô]Ög㮼j:kÍóçØ]~^‘ßœèf+oÝÈè!Ö¼5C©~4Ä+œít°¶÷cf;pÄëiø_Í<ª¬k³ë¬‚µé/6}wý-.,º¢÷d)×Å€ Fó.),4MY÷Ekuq[÷½*¬¬æaÂ;¢i×YU^Ý“¯@ 2ÖKB{wmñÝ5"øW‰Ë7kOÏ ƒqá0CÙÿiñKýófƒII # ù$w¸ÌÜZû™m=“î—óÓ'¨é“jø…SÍ'UÄ$ûø•;3¡©á?Ö{3ò¹„ê5u3¤½ö‚7 ‡wƒ[y›¹ì0Å~7¶ )Ï껲²%Ιƒê¬èç˜Ë®¶eíN /}daî³ÒÍ€â<Õ@­ÊL®ïûè‘T,]ͺ­bUPO€‘Ûx‘(“ùx˜Åx±Øª 3§’HμÓ`®±ióyÙ»©ÒßGØ>:ÀÎ뜢 /®ý:” )0¶~ä õ[,HóÑuáU–®ó»åœÛ!AgšP¯gž¡øK”ÛØ=pýœàv¨Ý€ pÑÖ¶Ü¿qâk³#ÏA…/L,ó½ãc¿n‡ªÉÊ’ÆñPƳâ¿c؃ ÿ^0Ôendstream +endobj +3712 0 obj << +/Type /Page +/Contents 3713 0 R +/Resources 3711 0 R +/MediaBox [0 0 612 792] +/Parent 3635 0 R +/Annots [ 3717 0 R 3718 0 R 3720 0 R 3721 0 R 3723 0 R 3725 0 R 3726 0 R 3727 0 R 3729 0 R ] +>> endobj +3710 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 250] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 3730 0 R >> +/Font << /R9 3731 0 R >> +>> +/Length 3732 0 R +/Filter /FlateDecode +>> +stream +xœ­’»N1E{Å”@1xìñcZ$ +$š$+¥@($ˆÇ’¢ðûxw½‹4´…µw®ï±=£‘@7_^WµÚ«Ë9ÃÓ§Úµ¥~YÕpU¥¢€‰èBtPmT·ÀP@öˆÅZ¨ju¶<Þ¼ŸW/꺂Y2>+c1’cøRØ£v Π§ät@­øX«Å/ùV'n“rH¸å/¯#>I´Ccÿ(h GtlóCqåÖøWI:/sÁ©V»òmóåþg=!Q,pˇãúv»Ý <ËbÚ9…k@‡šlœNN±Pç_ï¦Ü·ä,„¾žû3Ö³ÐÔ­Ã`€¢”,†=£‰S¥ÌØ\tJ n§3Cú© ½0B¢ ©¿n™(eF‚gQ8N8lº–ôJƒº'èlôpŸÞîqØÕ?_ý#g8àh)îÓ¥vi=q´ž:ÃL}àÍœendstream +endobj +3730 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +3731 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +3732 0 obj +346 +endobj +3717 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 425.671 211.599 437.626] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a0) >> +>> endobj +3718 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 386.999 211.599 398.954] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a1) >> +>> endobj +3720 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [217.383 348.327 251.754 360.283] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a2) >> +>> endobj +3721 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 309.656 245.776 321.611] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a3) >> +>> endobj +3723 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 270.984 245.555 282.939] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a4) >> +>> endobj +3725 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 232.312 229.116 244.267] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a5) >> +>> endobj +3726 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 193.64 250.647 205.595] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a6) >> +>> endobj +3727 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.562 154.968 250.647 166.923] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a7) >> +>> endobj +3729 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [248.129 116.296 280.563 128.252] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a8) >> +>> endobj +3714 0 obj << +/D [3712 0 R /XYZ 160.667 686.127 null] +>> endobj +1433 0 obj << +/D [3712 0 R /XYZ 160.667 667.729 null] +>> endobj +318 0 obj << +/D [3712 0 R /XYZ 160.667 667.729 null] +>> endobj +3715 0 obj << +/D [3712 0 R /XYZ 160.667 445.007 null] +>> endobj +3716 0 obj << +/D [3712 0 R /XYZ 160.667 445.007 null] +>> endobj +3719 0 obj << +/D [3712 0 R /XYZ 160.667 367.663 null] +>> endobj +3722 0 obj << +/D [3712 0 R /XYZ 160.667 290.32 null] +>> endobj +3724 0 obj << +/D [3712 0 R /XYZ 160.667 251.648 null] +>> endobj +3728 0 obj << +/D [3712 0 R /XYZ 160.667 135.632 null] +>> endobj +3711 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F19 460 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im71 3710 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3739 0 obj << +/Length 1619 +/Filter /FlateDecode +>> +stream +xÚÕY[oÛ6~÷¯Ð£„Ö,¯ù¸ËÖnE×ÄØ0´}Pl%jK™%»M÷çwIɲ¥86ê6D$E‘çœï;Ò, ðÇFÂcÄÚ„É`ºý8½8ç"0ÄÄ"˜\Û™“Ù»P’„Gc¡eøgÄÂõËhÌÂDxsì§´*7xÙu¶ÌŠiCœó8d±‰>L^~šŒ˜—aL‰0& b´B þ½û@ƒÙˆ¯FøNŸ M ƒY‹‘LáLûþ|t9zÛ.% ‘ ,Å+|£`†¸«ÍE¤D˜¡ˆõj9MbÖ·(jœ„ï)“V%߯ò/¾•û©¨jº¸kT÷o¯—‘âa +£‹¬"¨ë‹s0lkÍ1—„‰žŠH[Y`¯ÄÍÔ›‰Øà^ØUáÌÊÂ7E6ƒÍ„@Q8Èì:7Y}v›âÌ"›#BÂÊŠ®qN™Ïàt™›<ÅÅÊvÙÚmß59ŒYL¤>ÈdÅjq…ÊgK×/¯Ý3]áÞyézvç[´]QØÅ¬¬­]“f=í °SNeÇ×í’OÊ0qBDÂ'ŽšAêá eË9Ýw óßÞ ?DàB‡`vžÏ³‹´Î¶3X­²¨ Ç4>¢¼¸[Õ‚[ó7OðÁ]—Ë-•kHÑ/_š5-Êz7D;­ÓΊ•ÎVõœ<âä0ˆ¯"ðþ¸†¤Ÿ{7©Îs¤z^5ܳ;['â[>ò¨É»^‘w|»Ê–÷NóO·XaÙ×}ƒ`ñ­ç5ôz¾0N(Qè 6Þ}uÒ7G;Ã<­ê7+tã²' (­‰äGÕeéÚSºiw•MÁÞMà( /áV5FÉ•¹•­kïæµî÷…ÐþDáìxë|ŠCûøE†¸qëd«²aÅ|ÎλÐ!rº²ÈEhã|×›¼ù-`S:¨´á˜'cù$˜õT’PaüÜ÷”ŠžnŒ͛İ[iWô²R'D /ØêfˆÖ|ŸnöØÊ<™=“Õ%Bø<ÇŠž8QyöÝ¡û½ïǸ°Ü€™‚À­”«Üðã/6gšxö»ÈÚ¾™ÂÆ—íé¼ë-ðð_=|V‡õíëÌžNÒ¶fìÕ êëm¢þýÊAe¦ :d#MÅ‘%þNt¹ÂÅËÁ|ÇØA ËŒÿ¸çi"h£'&¢s\i™.²½7m°ç6*̼sûäö@âLÛBJ¬h|qSÛ;“&WF,L—Íùz+kˆ¹ÌŸ|my²ÃÞQLxº´ù•Dh"ðdxz}Jä‹ìsýØe  0»ñ¥N£ÓÝju9ÀM2¼!’ýo’ogÁøaä¹Ñs5D@‘ñÔ)8!”ÊÇR0ó®—–;–DZ¸TyXP y¸ÊoŠÎœ»ƒË´Ø­ðÒ»“im°ñKV{r­8<×nÂY/Ɔp­Zml>í'BCÑLL´uÙ_Zr"$ï,ÝX £¡ð9v%´d7ënyÓäCNb âWýâà»ð¶o>‘AL ”2ÎL°ž—B…—÷E¨ï]}Uá0òâ” 2 +ÿC ù5¯Ý+¼¶Â/Ïž=s+\àÞ½ü=1^¹â~䂸ç™XaùÑuÓÂS;?Ûc9~Õ.Ãh/â4ÅÖ¸téNùÏ-Û8”uJ P›3—¡¦Îø\m4†4£¨Â‚?fmS~^Ç2 /_¤7!Nóâ^êN)6xƒÜ¿ŠY3õendstream +endobj +3738 0 obj << +/Type /Page +/Contents 3739 0 R +/Resources 3737 0 R +/MediaBox [0 0 612 792] +/Parent 3758 0 R +/Annots [ 3742 0 R 3743 0 R 3745 0 R 3746 0 R 3748 0 R 3749 0 R 3751 0 R 3752 0 R 3753 0 R 3755 0 R 3756 0 R 3757 0 R ] +>> endobj +3742 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [187.965 628.833 243.147 640.788] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a9) >> +>> endobj +3743 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 586.907 241.088 598.862] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a10) >> +>> endobj +3745 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [153.317 544.98 199.007 556.936] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a11) >> +>> endobj +3746 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 503.054 187.605 515.01] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a12) >> +>> endobj +3748 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.17 461.128 225.906 473.083] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a13) >> +>> endobj +3749 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 419.202 214.892 431.157] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a14) >> +>> endobj +3751 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [221.135 377.276 255.839 389.231] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a15) >> +>> endobj +3752 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [221.135 335.35 239.179 347.305] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a16) >> +>> endobj +3753 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [231.167 293.424 249.21 305.379] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a17) >> +>> endobj +3755 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [252.186 239.542 297.018 251.498] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a18) >> +>> endobj +3756 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [252.186 197.616 297.516 209.572] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a19) >> +>> endobj +3757 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [225.405 155.69 270.735 167.645] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a20) >> +>> endobj +3740 0 obj << +/D [3738 0 R /XYZ 106.869 686.127 null] +>> endobj +3741 0 obj << +/D [3738 0 R /XYZ 106.869 649.796 null] +>> endobj +3744 0 obj << +/D [3738 0 R /XYZ 106.869 565.944 null] +>> endobj +3747 0 obj << +/D [3738 0 R /XYZ 106.869 482.091 null] +>> endobj +3750 0 obj << +/D [3738 0 R /XYZ 106.869 398.239 null] +>> endobj +3754 0 obj << +/D [3738 0 R /XYZ 106.869 260.506 null] +>> endobj +3737 0 obj << +/Font << /F23 479 0 R /F31 829 0 R /F14 825 0 R /F8 483 0 R /F19 460 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3764 0 obj << +/Length 2203 +/Filter /FlateDecode +>> +stream +xÚåXKsÛF¾óW°|Ø+‚`ðpUŠe¥”؉c2ëCœB"J   %>ýÂé]'9¦TEÍ£§§û›~BÍ}øSszƤó(I½X…ó|?ûz=ûòJóÔK£`¾¾!ÂõögGÅþ t¨gµ^(ç;˜%¡óªÊº‡sÙÀåä W9 Øã ¨vú¬/qÖÀr½øeýíìõz¦D×÷‚4™»—&eøuöó/þ|;óçßÎxïƾ§Òt¾Ÿ…±ñ´Jd^ÍV³-+(ÏøÑÜÕ1ÉoÒs¥¼Ô˜©F¡ÒÄ~<Â):—JÙÃRVVð[lA¥Ø8—¤J—·å=n–V/¯’)T®Žú*„iUÈá¦Ýg=Hìš(r®…e†Hvüü|wÑ> ˜EgU“ÇÕPkÔ?;ˆìÝ„°û¢ô¤KúrO“¼Û Ù2ɾ¬ar;ÙD@6„pÇWÆßcÐC’ìÃÃu gýØÁ»šl‹Òø ݰ+xœ75jÖüO(š>—‘ÙðpĦ8ÂÔ>ŽrvůáË[Í¡ÇG<ôxç éǺÊiXÑ)ˆƒkíøàîà+ôQ¸·f|JÁú0<ùlXðQÊ6Ëû²ÁkáäIX´y^i³žA}qΔÕИQÓ{”Ôk¿lpJ*’ÏEªvÞ[ce<*f>Ó¿áÐIÈ·LLjƒñ”‰Òd»t^$()˜Y¹Pßá%p»oκ-èHðúu+ia‡ÇB§G³¡ó¸JÅÎÝGßø0ƒJ”/ú]CφÓ-a5‰œÇò¤#;†¯-z¼ ÐÌDdTZ´1ð:䄯–l©'gÈ—j³[–þœ¯æmÓ QƈOeûûŠÍ0ou…`‰ëlâm³g¢~7èKzÜ»«d—6c‡FP¼†×èИ s‡-„é™V\¦âl%ä¬m'wŸ{Æ=bÈ‚ý¹8>¿õ5´¿0}®|hÔ |!qÜSã^èB¡ñù Ã[Â|jÕ>©†¯§h0싼y +DÇ£ÆS}"Ò¢HÉ‘½£ ¸©¬læ8Wû¬BGObŠYdYA’@¼)x@Ù¿±(€tEõÄ[c¬Þ2‡’¯ox»²ZäЉˆMgß´Â… Y•õ-¯~]/Yfœ¡kÀ;‚Xú&CâÛâÌË’“D©SQmb∢j>D"Þ rÆÅðÔhÌH¾µ^~‡¥†æ¶°Ü©S0šòwÑ+¶…„€¢’ëÉd<8 + µó¶Ê,zÉS%á±ydùòP ‰¶•½mÂÕCœ/)h +ÐX)í>½uéùÐZx8è4D¢“˜Ž«J)ç‚~ÿ»d×WW2\}Étý Tî' K>üvG¡æ\»l†¼Œ´oÉaªl#AO€çX‘7Tf§@½gY>p™¼S`RJzRÑJ£}g…/}kãÀ–ONSÎmÑ쌟¸ž@Lñ°¯åP ÝMÙÛ¸W‹4¦É$¸¼/€Êu¼†×«s¡šnJ' +ñ&¹& $m)D?Dù‰Ù’q@´bãHÏÕ‹¢3™x¤#ç§:olÊCî,0gn²üÆËp£òMoï>§’µ¨b‹"@X½†: [³ .¾Œõú%û§@ÖíšCÅÈãtÃpà$”\<(öüŸÑ z´kHËe¿ãQ‘Ù„ dtç©ZŸH1è’C™X…¬-”¡viÑ>~“¢‹ÇÓZ–/Ùˆ|HúŽó<‚/+ïù_qLn©ÇÂî›lræ¢+gVCÀ±j¬.K¦æÍðÈe=´ïk{ªgí¼…êyÓ¦¥i{Õp@³£2ïmcœÿupŸ ººâ÷@ºÀ¡$f±‚Ó^/©bxhn%!cd|ùפoHrO躞§9¶Æ;‘¸Cÿm¹«8‚†WÏ\H’C9û»×h-sRì<%ùÙX€÷p¾f/&å ¤²¦IĶTÚ©)°Á€ºŽyÔRXôBs”p˜-çèVßQ€´>Ž3aÁâC:SûqQƒLŠAÏ€Š®˜ñÍ©²;àÏuÅ@\ñ-WG  d¦üG`Çu>¶˜èuòÁè° ëxÏ>³|†ïÖ÷P€¦´¹'V×Rä–/›{²ý¢¾*ÉZÒäÈAÓø8¨V‘„æÿ8hþÿ4£†¾:öÏóÎÇág8gêΉ&¯z $‚iÖ±ûz(BN6Láéãc½\‚»+üÔ·Ïë&{y)n9zô‰§N3 ù?ûLω˜0Ï%³›¿åÄGßZíRc”§uòO¿·žN#+žýÞÎ#/ëœ|n¥?S­žÀÍíeé ¼îz¡üˆìÝà/¼ØweÏ[¥ØŽ_}“/x²AFO<~·"Œ7ð ²òÞ“#È4¢&dC“¯0ù†¿–=qødˆùœ¶Ê3dÿ€|:S,é9tê{Æ@v\b©ÙØñ̨¶«)庾©hFè&ð(ȱÄ+téC{šâ]æ(ˆ¨¤ÞðOÍ(ºfendstream +endobj +3763 0 obj << +/Type /Page +/Contents 3764 0 R +/Resources 3762 0 R +/MediaBox [0 0 612 792] +/Parent 3758 0 R +/Annots [ 3767 0 R 3768 0 R 3771 0 R 3774 0 R ] +>> endobj +3767 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [229.736 539.465 247.779 551.42] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a16) >> +>> endobj +3768 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [298.844 527.51 344.174 539.465] +/Subtype /Link +/A << /S /GoTo /D (classWvIn_a19) >> +>> endobj +3771 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [175.986 266.132 216.114 276.98] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +3774 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [175.986 128.805 216.114 139.653] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +3765 0 obj << +/D [3763 0 R /XYZ 160.667 686.127 null] +>> endobj +3766 0 obj << +/D [3763 0 R /XYZ 160.667 667.729 null] +>> endobj +3769 0 obj << +/D [3763 0 R /XYZ 160.667 356.52 null] +>> endobj +3733 0 obj << +/D [3763 0 R /XYZ 160.667 330.39 null] +>> endobj +3770 0 obj << +/D [3763 0 R /XYZ 160.667 330.39 null] +>> endobj +3772 0 obj << +/D [3763 0 R /XYZ 160.667 233.086 null] +>> endobj +3734 0 obj << +/D [3763 0 R /XYZ 160.667 205.018 null] +>> endobj +3773 0 obj << +/D [3763 0 R /XYZ 160.667 205.018 null] +>> endobj +3735 0 obj << +/D [3763 0 R /XYZ 241.946 119.783 null] +>> endobj +3762 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F14 825 0 R /F35 1011 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3777 0 obj << +/Length 1958 +/Filter /FlateDecode +>> +stream +xÚåXÝs›F×_¡G‡3wÜÁ‘77['MÚÚšf:I°„m&\„ä8ýç»BBqâiÚ>t›H§CŠ(M§A$RkPƒ?&o߇ÓÅ$œ¾˜à™ÞÁ:¸–¡¤uûrr1ùµN•Þ_2D r‘ƒ¤4¡·ñ#åÕ¬ý› Xâl”ÞS\<­êf™•Äõ)g¶w¡ qï,`OŸÚáÅÒ ´¡ë_;) „<‚" ׂ÷Ú 7‘×ÖLtÛeö±XúÊzë%ê+þ= +¤Þ‡wÈDÄJÓ§>„©nü@‡)DD7×ùتÄ+ªy“/s6 „¶2”÷Èl½²Îù‚×ïB©ñˆxW,ì®htà  ȯ‰£abo ²·Èp”[?€U¾BF§:–}ñ)k‹ºr2)ƒ:“¤H »m^/ñÙ[8^·¨a§p%9P²m±Áër>#'âï#,Ø¿±E­’¡V|>p3¤‡1BÅ'x`¦ûÉYEîC *æ)Vü‹"Ï9DzW`!h;¶ç +ÃAD!ʆ½ C\ï‡iw¸F)íMÏdê ãTT×+T»X1Çb›j §4EGpþîV”¯ˆt¼_?Ñ·ªŸWÀôû>2H “DÓ µ"L¿"¡£ä 2¸“qáô'Pâg´äÄO7c?DfË©¥°V;ö[ߤgc½ìÃØeJ +¦Žõ *ÊDB†Ñ?¬¸ÚÞ%µQ,:G¥¾Aùð¯S ›J…‰"ÇÎð’›êÿÎè4ñš¼ ‹N-EO]°U'µ»UŤ8!R)…Þ5É6Çú £„¡õò`>%¡îc¤Q2ˆOj{ A󎩲 ô}¹ã€aÈЦ’CÆÛGMRÔÊWLƒ¨Ýô§†øÛý Yy0 ëÂEQ# ¡dç=ØÏ݃Ä1‡¸Ò L»äDù5’ZÄÖðë8ùêTì8 Ψ¬D€Á;ž:õOíàóÕú©Æ"‹÷a\ÿuìs ~V=%ì¾ÎÛSŒõÚüœÛßC3ÌëjÕŽ/ÆØ8Ľsò"æÛºÁ† +’¸oÐQÞr=n›`™óšr [ÞºLDþ†5ÃÖZñïŸø5%4p‚ÜÃ~Øä™kµ(M94_Á,%¸ +ÿÿ9ªLì]€à×ß»MV-pa¼“³S¦`vd-! +n÷1i+ž>©æÅ°Ü;‰ø“x+´5gŠTrÁ&¨ZÞt“-ºU㻲\X³—0ðœ-{bÒhTè*Õ$:Ã)jƒ…œ31ãP±CÐÒ4¾ËÜàôŠr•¢ÄÁ%\õm‘ãÅ®‚P›uŽ`V8ñ!·fÁ!½2´&CWëÃó·ÑÈ»ÉðÎ~pÜ6Ömuã¶Ö2 ·õ¸QÉ”Eƒ¤NXhº ÿHïÁÞém`AÌ|¾nV»&Qt´¸'ïï¾5uÍ󜨌ø•kP¤rFƒê-®Ä(ç»Y2> Ó¿ùy—?»òí3_Oc‘&z˜ùÔÖud¼‹{èH³Œr‡@2cæË0¦Ndð?xàeÑòZO>;:âÅ% +¸çÃ_ü(örò¶£œ þ}FŸ +½úoWqóūᠲ&<΂Šó oؠ蚃)æÒPí’ð· W“fkq „×à ±Œ]„7oæxF*¡IºÙÀ½x—ùSÑË[¨ºÐý¥ëÂendstream +endobj +3776 0 obj << +/Type /Page +/Contents 3777 0 R +/Resources 3775 0 R +/MediaBox [0 0 612 792] +/Parent 3758 0 R +/Annots [ 3785 0 R 3786 0 R 3787 0 R ] +>> endobj +3785 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [121.352 134.474 161.479 145.322] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +3786 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.203 116.85 225.757 127.698] +/Subtype /Link +/A << /S /GoTo /D (classRtWvIn_a5) >> +>> endobj +3787 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [249.225 116.85 293.005 127.698] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvIn_a5) >> +>> endobj +3778 0 obj << +/D [3776 0 R /XYZ 106.869 686.127 null] +>> endobj +3779 0 obj << +/D [3776 0 R /XYZ 106.869 667.729 null] +>> endobj +3736 0 obj << +/D [3776 0 R /XYZ 373.26 592.017 null] +>> endobj +3780 0 obj << +/D [3776 0 R /XYZ 106.869 575.358 null] +>> endobj +3759 0 obj << +/D [3776 0 R /XYZ 158.398 481.967 null] +>> endobj +3781 0 obj << +/D [3776 0 R /XYZ 106.869 465.308 null] +>> endobj +3760 0 obj << +/D [3776 0 R /XYZ 229.493 383.872 null] +>> endobj +3782 0 obj << +/D [3776 0 R /XYZ 106.869 369.15 null] +>> endobj +3761 0 obj << +/D [3776 0 R /XYZ 379.237 309.687 null] +>> endobj +3783 0 obj << +/D [3776 0 R /XYZ 106.869 293.029 null] +>> endobj +2796 0 obj << +/D [3776 0 R /XYZ 183.277 211.592 null] +>> endobj +3784 0 obj << +/D [3776 0 R /XYZ 106.869 194.934 null] +>> endobj +2797 0 obj << +/D [3776 0 R /XYZ 294.776 119.783 null] +>> endobj +3775 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F35 1011 0 R /F32 881 0 R /F29 818 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3790 0 obj << +/Length 1297 +/Filter /FlateDecode +>> +stream +xÚåWÝoÛ6÷_¡G +X~ŠdÞº®ú1lKŒCšÕV!¶”ɲ³lÿüîHÚV,'éÐ 0°HÝñ¾ïøOüx"ÕÚ%¹uÔp•Læ£Æ£—GB&Žº\&ã Ï8žžnDšI¡¸$'㔓÷°³Š¼ž‹.%ù±''“4ãd s\”u*銮Â]¯ëô|ünôf<âшŒQél’Iê¬Fþ³d:bÉ»Q ÝšQî\2)£©à6îg£“ÑoQ\rªYždÂxûsHQ#(%©…׌üüû®m¹£ÖX>i–¤Jš½F!Åsô"ó †êUê4£/ %NÅ©ã:²bL–¾0K­ä‘ãtõ¶>Ãà—B9Ò]!sƒ~ßF!ÕExáñ‰q…§ã”´˶Äû#X;“¶\6Ö “»(«žkŠxÔ×DL¾ß=Úma"f f2Y¶‹à9‹.ë^†«õ4½ñ&öõ—ÓMüýóØ¿=]ãÛú ¼ófarǾ&nNã«”ãÍõî„tqBNšzÑ…q?œ"gpŸ¸‚ZaŸÅ4±V=55œ™G©ËI[ÌËà2O$¯ˆw™¿Ô¦õµ¡l3-ilauÆÄζ½¼w bÙÖ!yEè¾_×MÓ߆wM|^ž­Ë?ã4Xwt¬n”›ºÜéçõûÊðÕyê¿ë¼ñd}k ÷;R’ÓÔ†ò‡`YƒÇþMrö ŒA<”[ÀXŽy<óýûRP-ì£}é¨RúK:Sù"Ú kr¸Y¬|°f¿Ã}t‘ ©©æ÷ tªvتS‹å›ýX'çÛ«ö @ó%\„:þѸJHåëXoT.ö *ÀÊÊ> gò/z2§rα-6PfQôºoˆ0LNµQ=ÃEÏðž:h\¾=øEùQÛ ¨¾5ò]S“c2$ÃÖ 1ƺLà ÏÓÜßiÀVßÓì\^ãõ8-çk»ª‰:.RŸÆx‰âÕÑî>pQÅ"ÐnSÈ@i—e½Cë/Ï-’Ûf¾-¯«õ틪f³¹ +%\B/_œg×TNÎ/k§br3¨=×+ö5ˆŠèÕàf>qs müˆúÊpI…G€a†m†¦Jr9ª?4}^”Ôää“Fìâ#‘WŽqÊYŽU´ ³÷UHUpȯ_¿ÀÍ‹°ùŒ‚îÂú×TB—¶m(b|sLã +¢¯Ã¶ðÒ¦aó“/êÖŸ ƒ3Ch´sR øÊź|øzp­j !‡¸ïÛ$F½u;þã1c4‡‰“§#_/<0@•—%]‹eÔ¥ÿÌ£O±Îá?èC%,endstream +endobj +3789 0 obj << +/Type /Page +/Contents 3790 0 R +/Resources 3788 0 R +/MediaBox [0 0 612 792] +/Parent 3758 0 R +/Annots [ 3793 0 R 3794 0 R 3795 0 R 3797 0 R 3798 0 R 3799 0 R 3800 0 R 3802 0 R 3803 0 R 3804 0 R 3805 0 R ] +>> endobj +3793 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [175.15 601.194 215.278 612.043] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +3794 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.002 583.57 279.555 594.418] +/Subtype /Link +/A << /S /GoTo /D (classRtWvIn_a6) >> +>> endobj +3795 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [303.023 583.57 346.803 594.418] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvIn_a6) >> +>> endobj +3797 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [175.15 510.322 215.278 521.17] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +3798 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.002 492.698 279.555 503.546] +/Subtype /Link +/A << /S /GoTo /D (classRtWvIn_a8) >> +>> endobj +3799 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [283.651 492.698 327.431 503.546] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvIn_a8) >> +>> endobj +3800 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [350.899 492.698 398.415 503.546] +/Subtype /Link +/A << /S /GoTo /D (classWaveLoop_a6) >> +>> endobj +3802 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [175.15 407.494 215.278 418.343] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +3803 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.002 389.87 279.555 400.718] +/Subtype /Link +/A << /S /GoTo /D (classRtWvIn_a9) >> +>> endobj +3804 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [303.023 389.87 346.803 400.718] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvIn_a9) >> +>> endobj +3805 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 348.588 219.901 357.499] +/Subtype /Link +/A << /S /GoTo /D (WvIn_8h-source) >> +>> endobj +3791 0 obj << +/D [3789 0 R /XYZ 160.667 686.127 null] +>> endobj +3792 0 obj << +/D [3789 0 R /XYZ 160.667 667.729 null] +>> endobj +2798 0 obj << +/D [3789 0 R /XYZ 348.574 586.503 null] +>> endobj +3796 0 obj << +/D [3789 0 R /XYZ 160.667 570.626 null] +>> endobj +2799 0 obj << +/D [3789 0 R /XYZ 400.186 495.631 null] +>> endobj +3801 0 obj << +/D [3789 0 R /XYZ 160.667 479.753 null] +>> endobj +3788 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F35 1011 0 R /F29 818 0 R /F8 483 0 R /F32 881 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3810 0 obj << +/Length 1646 +/Filter /FlateDecode +>> +stream +xÚ½XYoÛF~ׯ Ð + 7{pÉ¥QH¨pŽ:µÕA’Z¢,6鈤£¾3³KR +s8°]÷œã›o‡‡?á 3/2 ‹Eè-6“ßç“G3©¼„%‘òæ+Z9_¾óC«i Lè¿™ +ÿê¤mlïzÅ4~ZC«ÆAåŸâ@¶Ê¶Y¹È`H(-|>ÌŸMžÎ'Â)p¦’Ä KŒÆã?MÞ}àÞr½gœ3Þghs&`ÕfÆšIa\¿˜œMþêEq/1)Ý[!=2Fûf€–h‰LqvÄ`G1EЀXû§¨<€Öff×'x–Ž"y6›”òÓD,óÊö–)ôš;¡_áTsI¿vú<­3;·(ÀupTÍìA2Ù;IÄ,’!ôK^.ŠvébXÆŒÇÊÙøëXNÌâ0qÓd4[…¨ˆEBºU¿¬ÁB:4­:.×`R†êo¡‘7i yÎZ·Äáôb›n¬Ý«jkF葃ƒ/!„ÿJ8+’, Õû—2T†í¶ 9hàÑñ&–Þ“ +0â 0 zÉaÈdï¡E°Dë]´¼jÏù¢âeÖ¬1ºÜ_ÖÎ}áà¬BÐà ÷\Ä#?bC±ù­ÃÄ{®9ü »E ÏÀR‚/YÄèzÍ B¸óI¶JÛ7F18\K¿*ëfÛ.šjËÆÊ$¨ˆžÜü´v!OH».¸Ui“àŒ“‹©4þ:ÝŽON8ã‘qßs®FG†ý¢_ ¢ƒÔŸé&{òAtKæe¶´æÐ/ñP§Îá&dZ–Œ¢SôP¨ØŸ¿xú%Þ”,L´D‚%LE€J“|•ˆÜL,3æÒùÛW¤D¼#âa سaiЪëË)pŒ5áLxóGOþž(TÞ D´qKÕÍ÷U‡¬ÂL¿¯ZØža„$Ä…_(ƒ*î’ôÞ|:#ÿœ¾œ¢vpÍ-ý¬ _m7isˆZ޵è@Ü»vxø1Az.¢¯§x Ü_Jî&ùÉUO­tÇVS ×Ì’° ©IÌ~µ“ý8Y[K <•]Šwô%Žg¸‡R9G]ÛéÔ>( 3Û.]í7×v«ë¦¥¾L›Ô¶VÈBoºñòâ€IC¶|Λµe«f×¶…ËÏQ‰}š²W|3öºÊÑoM›c +ÒÇ=ç(>’´c‚ “³t 5@a/‚GE_½Ëì®)ú +a_å £µ_í°2à,Ç0‘Ò Äˆí~›®…‚JÏÈÛðubbïõùº›sægc§pg.lûÊÝcëitfA%ý…õáEÖ̦ðr¿%(Ùë˹ßÚ\ȵ6t³ÜÀ˧°x/o§<Æaì,ÛÍ9Õ[çòUçÐ rl‘eõú¹r‚ ~W%ÄË·#ÆQn',Ø¥a:6÷Í—/NÐÙ1ó>6ó|3;V…]DÂoE$ˆàŠï$"–˜l鹬÷'‡o88„dÏ“¡†W. ˆa*ºí×ûi¸ì;}èE,î^ÝhX¨´v]Nѭ͆‡ÑË‚G>’¡Æ_HÂçH‰8…YŒ;<°spm'_MU„NJp#§Ì>Pˆüh»iÇÈØùƒsë*p#xì3§â"Å®PtEÛ2[$ák£Ö +¿ å…û棋É4×ø-=9h·nÇ3øê«CçB\îųô¿’slÈ.tÿ¹ÏªQendstream +endobj +3809 0 obj << +/Type /Page +/Contents 3810 0 R +/Resources 3808 0 R +/MediaBox [0 0 612 792] +/Parent 3758 0 R +/Annots [ 3814 0 R 3815 0 R 3816 0 R 3817 0 R 3819 0 R 3820 0 R 3821 0 R 3822 0 R 3824 0 R 3826 0 R 3828 0 R ] +>> endobj +3807 0 obj << +/Type /XObject +/Subtype /Form +/FormType 1 +/Matrix [1 0 0 1 0 0] +/BBox [0 0 500 379] +/Resources << +/ProcSet [ /PDF /Text ] +/ExtGState << /R4 3829 0 R >> +/Font << /R9 3830 0 R >> +>> +/Length 3831 0 R +/Filter /FlateDecode +>> +stream +xœS±ŽÛ0 ÝõÛX‘”,i=àæ"‰E§iî..hÚþþQ¶%Õp‚¢IÏ|ä{e‘Àæo^÷ƒ9›O[?~š3Ðø«,û{ý™À ºè#ô3Ñ(zL1‹ÂÐæÃ—ߟ]>ö/橇>é%2üɹgâ\•ÄY쀜Kèõ ]N` +9)0SV@£BDY– kÚJù/cÌSò ä‘Ãälwy­¾n9á˜Ú®9)@u" j7ªðÐ(GÃ!Y´£Æp—!Ôî3°Géº0ZÙ^–×´²“—Á°PĘÁSÝv:§ˆ]ìí¤×Z§Ób‚¹Ø=­ã¼,ôöû·æ.Re{k'=㦉,1kdïâdq)^1¢Dׯ—µ@Ärô:ïJ>ç×(sL9Ö Ï””#¼ÓF])kvΣªoÀ2ÇáÁ|Ÿ¼‡oZõû dc@òEE{@UE{—E‰Þ¯ÞW“ñ²Ì¢:Ö¯„¦ç]+Kœï ÜhÚL+÷¶Êsƒ6'o´«Õ6æ¾&endstream +endobj +3829 0 obj +<< +/Type /ExtGState +/Name /R4 +/TR /Identity +/OPM 1 +/SM 0.02 +>> +endobj +3830 0 obj +<< +/Subtype /Type1 +/BaseFont /Times#2DRoman +/Type /Font +/Name /R9 +>> +endobj +3831 0 obj +419 +endobj +3814 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 424.437 165.826 436.392] +/Subtype /Link +/A << /S /GoTo /D (classWvOut_a0) >> +>> endobj +3815 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 385.231 165.826 397.186] +/Subtype /Link +/A << /S /GoTo /D (classWvOut_a1) >> +>> endobj +3816 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [158.022 373.275 226.421 385.231] +/Subtype /Link +/A << /S /GoTo /D (classWvOut_p1) >> +>> endobj +3817 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [359.218 373.275 419.038 385.231] +/Subtype /Link +/A << /S /GoTo /D (classStk_p1) >> +>> endobj +3819 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [163.584 323.11 205.981 335.066] +/Subtype /Link +/A << /S /GoTo /D (classWvOut_a2) >> +>> endobj +3820 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [157.969 283.904 197.183 295.859] +/Subtype /Link +/A << /S /GoTo /D (classWvOut_a3) >> +>> endobj +3821 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [259.626 272.502 328.025 283.351] +/Subtype /Link +/A << /S /GoTo /D (classWvOut_p1) >> +>> endobj +3822 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [156.085 259.994 215.905 271.949] +/Subtype /Link +/A << /S /GoTo /D (classStk_p1) >> +>> endobj +3824 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.764 209.829 191.757 221.784] +/Subtype /Link +/A << /S /GoTo /D (classWvOut_a4) >> +>> endobj +3826 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [194.33 170.623 240.823 182.578] +/Subtype /Link +/A << /S /GoTo /D (classWvOut_a5) >> +>> endobj +3828 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.729 131.416 226.698 143.372] +/Subtype /Link +/A << /S /GoTo /D (classWvOut_a6) >> +>> endobj +3811 0 obj << +/D [3809 0 R /XYZ 106.869 686.127 null] +>> endobj +2842 0 obj << +/D [3809 0 R /XYZ 106.869 667.729 null] +>> endobj +322 0 obj << +/D [3809 0 R /XYZ 106.869 667.729 null] +>> endobj +3812 0 obj << +/D [3809 0 R /XYZ 106.869 444.04 null] +>> endobj +3813 0 obj << +/D [3809 0 R /XYZ 106.869 444.04 null] +>> endobj +3818 0 obj << +/D [3809 0 R /XYZ 106.869 342.713 null] +>> endobj +3823 0 obj << +/D [3809 0 R /XYZ 106.869 229.432 null] +>> endobj +3825 0 obj << +/D [3809 0 R /XYZ 106.869 190.226 null] +>> endobj +3827 0 obj << +/D [3809 0 R /XYZ 106.869 151.019 null] +>> endobj +3808 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F14 825 0 R /F31 829 0 R /F24 539 0 R /F25 542 0 R >> +/XObject << /Im72 3807 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3837 0 obj << +/Length 2279 +/Filter /FlateDecode +>> +stream +xÚíYYoÛÆ~ׯú4DM–³q)pÜ8.Ü$µ)7(Ú>Ðm¦HW¤løÞ?ß³ YLS´M^Z0g=sæœïl#9áOÎUX›Î£$ biæ«íì›åì«s¥çiFz¾¼¡…ËõOBÆÆóµ2R‹ÅÒ“âô#^”YÓ`S‹³¾R¬<_Š=¬Øb#¯<­D›µöj®¼_–ßÍ^.gÒ1á‡N“¹¯ƒ4±Èﳟ~ çëY8ÿnÆsЙ¦óíÌÄ6P2qýr¶˜ýГ’& +“Î}£%ý…ànGú9”1²òÕy2Lrƒ<Àí®Ýg%ÜKkñà©DÔ8¸æ¶Xy*wÜû9´¡ç®_WÐj°Õò䛟ßZê00±‚öGo¬@0éä}ÝLÏäøšç¯/‘ïS”µDfŒh2RÍ=ðXæÀ¶d1h9O`w„»}¦V1œ›©Ë}{¿Ç E±ÈøÓÕmIzv} ”Kê&¢­ÝjXc•(ytµÉª*§m ÏÕ!ÕC*7;ÏjAc9n +˜ß±R}e©#øF xóɼúšõY+ˆA©ÏªÞ#¹èxèê#y8Bvò@J9¸­wpϾâ¾jŠÛª“¾“MA¦ Ú‘ðhÁ +6/`¶øu?0+ƒÚXî`²Õ¦C:”EçGà¶é@4ÕA¤Ôámð&G§«8HÒnáH5ƒ4f;ÞÀ9ˆUl—VŽÁÝØøèàò R8: G^~íÍ$Ô#ØXÿy¬[vX_s€žˆ»sü8j>Ûæ8£&@ëA¯%-ù»@Ÿü5ЧTõ7|_rbÿÅû“êúÖZŠc„þÜIªp˜Š €PE°x _kÇä2Íä4ú%x+Ôà°ßnòcŒAhÓf`zp‡Àt„LC +ëVJw0¨o&ì)&̵áXî`Þ­D^—·ÅC^q³Ì«[BÚ‡ƒ(Ø]'´n¡U€#QJg/CL(HêØŠ«ýu‰ŽÂuO)UÀU;¤Ž ¯÷-0t¤aiA@]ÙÀ:ù}ÔÅMËð(_¼~yä¸e\'øý|jϽüñê%»Î÷*Í%4Þ-Ÿ³ƒXÓø“' +oO=)%0sìq$„‘N;Paô·É;Žƒ4¶=Ù–¼ß“¸Qè +¸ù˜Ðí§ºý‡ }ñ=œ~ö¯´?´O/Îÿõ&ŸGÔoÆÉгXl5Äbv˜c±ÁÀÃ?À? áV*+ÎrÎñ L˜1éÁÀ|FÉQ³Ú÷8YÔCú}À +ÆãP¹hk–¸ï‹)ÃTj]ÔÜ[S*±Bkœ‚ìÇ닪ë¬ÉynUf”xr&Œg@Î)6Ðå¦àÄTëväÚmàQ,rw5ælź˘pN¥pn‹Ó”uA·é.îï=ôYïÜÄ gVDïÁ³‘Èv$…½£“í×ÈGÍ+ʆ*kîòæmÖ6\ºúÆ(qѸ»lêùŽë‡¦¿ï[f %›’’›»aNµøb×]7C©´ç¤_ðlÓiz—sî[`Ž;šDI\ƒ ’Ž:B /¿{MpýñþV_¢$UšˆÇ]ÑŽd­Ò‹È6]+.\—UîËØ`â‚^†(/`èžPQÃ3[´@œ)Û§ªÝÕn%¯ë‡¢ê¿”Ô»¥(8BüežúJÍÃX¹{îÊZä8‘ƒ†a¾@Õ˜HîÙ…9Gd} ÓT‡ÂY,š¶¨n÷ÔÚ¸é óGíîa‚ÊëŠ š`ÓÒšt·n°ˆ7©xÜpâM’!¶ø_•ßuø<¾5õÄ÷#âØ›¸ë3ãv°«kâÛFôÔSTÕ×0%‰xã!î-£Uä9ÔcWÝ£ç0äBрȻ>õç9éÐ(­ƒ?or AÚ×§Ø´Ù\äèâÆmšp £`Q51\³~ΣÍà¸ù}´pwZ±Ó§t âµëÞ÷ñÏŠªn¹À&¶qçm>x„Ç’CÜã‚‘Ý©4:Æ™©êîYgÙxÃó›= „ ƒ¥d¬v1­èoŠ ”O.ýèè`gË?ïßí„3Ƭ1F¼«VuïôwœL4Û²rB^vÂBÈ;;'ˆm´¸ÚÕÏ<`¾žr¬/ö;:ØùÏ' " µTqÿpé2Ð$ä˜ßŠÞ>ý¢ s¼ª³~lw +Àö(ÃÄ.= ¶ùá þÁÏÀ›JüÐÚÛ»¯¿æ,êmÖöÏ9ݩ츳X”ç…8 +!nämÀ’{ÁXÅ”þÎɸ~ù6m¹B“¸½è!ѧDuõÝïPÈXnùLY…¡ +Ž.IL`#×Ð6þ‹?jÜ{ñõ¿išyõ¡9(âÐøŒ¶bñTyšŒ‘@‰ª1Ë)F”×[üÐU´> endobj +3839 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [238.968 639.074 257.012 651.029] +/Subtype /Link +/A << /S /GoTo /D (classWvOut_a7) >> +>> endobj +3840 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [238.968 595.712 257.012 607.667] +/Subtype /Link +/A << /S /GoTo /D (classWvOut_a8) >> +>> endobj +3841 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.503 552.35 287.834 564.305] +/Subtype /Link +/A << /S /GoTo /D (classWvOut_a9) >> +>> endobj +3843 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [269.288 450.72 338.656 459.521] +/Subtype /Link +/A << /S /GoTo /D (classWvOut_p0) >> +>> endobj +3844 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [269.288 435.515 337.687 444.315] +/Subtype /Link +/A << /S /GoTo /D (classWvOut_p1) >> +>> endobj +3845 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [269.288 420.31 335.335 429.11] +/Subtype /Link +/A << /S /GoTo /D (classWvOut_p2) >> +>> endobj +3846 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [269.288 405.104 332.291 413.905] +/Subtype /Link +/A << /S /GoTo /D (classWvOut_p3) >> +>> endobj +3847 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [269.288 389.899 337.687 398.699] +/Subtype /Link +/A << /S /GoTo /D (classWvOut_p4) >> +>> endobj +3849 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [375.066 264.811 393.109 276.766] +/Subtype /Link +/A << /S /GoTo /D (classWvOut_a7) >> +>> endobj +3850 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [413.459 252.856 458.789 264.811] +/Subtype /Link +/A << /S /GoTo /D (classWvOut_a9) >> +>> endobj +3851 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [159.671 133.921 232.426 145.876] +/Subtype /Link +/A << /S /GoTo /D (classStk_d0) >> +>> endobj +3838 0 obj << +/D [3836 0 R /XYZ 160.667 686.127 null] +>> endobj +3842 0 obj << +/D [3836 0 R /XYZ 160.667 469.911 null] +>> endobj +3848 0 obj << +/D [3836 0 R /XYZ 160.667 372.103 null] +>> endobj +3835 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F31 829 0 R /F19 460 0 R /F22 474 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3858 0 obj << +/Length 1997 +/Filter /FlateDecode +>> +stream +xÚíYYoÛF~ׯÐSA"Ñvï#@R7.r8Ic%Aä‘([L¹eÃéŸïÌî’"EÆNsµsï™ù¾ÙSøccF áÚŽµuÄ09ž~Ž~>äbìˆÓb<]ø‘ÓùëD#Ò‰°2y™²äâɶ +µ¨­Ò K² ”6Ø(’gØ/ò2/f941¡XÂŒJßNŒîMG, +0¡D87žâ¬Âíÿ½~KÇó?aŸ_B™£ÎFÒ(™õÕèxôG³O¸ñB7Zð1cÄ)ÕU¤MXB8É8h°†Z±©à‰rogX\CY•ü>¿y>6È÷®¡L“Ùö,/RÁìϪ%Ž*Pï}³N¸$œºÆ¸×à„¡TŠ&/ÑÄwî`ãË XÄ\2›¼¡ŠÎÖ(¯¯ÎRÁ“Ó¬ [À!6[0§3&*þ†RƵ㓢Áä*œyUû"KIUqðmØ›d[à©/qÆI¥|¤ò-`fèm:ÓÉ,âùÀ‚ÅÁiVùjÓßXib¤Œÿ‚ƒ3¡`åÃûîí{SŽ¥Á­4aZÞìW‚Ha½*ö\ÓWOïõ•Ľmm­êêÛâ*tdჂlà_%¸A“ÛØb `ú®bš¶¬ˆRͳ*®³ðÈŠ§â«—õvÕ©wCÚÁ h„^ä!“õ»t¢Tòg>«H3ÖÍ¥{·Às´à³0çý=Ô»ôZC›_º°^¹FI/ãðE3¦H¹K.RØ"[á¶óО•'h´ kS«ÐC5 Ýæqñf¡EœwÈ˲f¨­½™½•gÛ²fU—\žæÅ€–hèeµÌVh¤µµŠ´ ði +ëmuŽ']…ª‡ûÚ3H €.eN„$‚±}â‘8üÔ3 ºwxT Ò¡†8tàFŬf¿À‘Þ‹ëM[4‰xþd¦ S^ ëetpˆì6w®ÁÛ ;G.WÚ`hx+´ÌP<þ!6å]hÃo`Såøç±iÄWà8ƒ6¾vÖÓ«Pxä ÔµjM¤ÓqÕë)ÕÚ6¥ +(UZo½`–#Bu€g"9Ô„‡‚ûR´ŸÅ³Î0"ë‚Âu|‹„´SœqÏ·Àϧ}þ’ „6ÍÚß—s½p×ñ«e ÌWàûÕxÕ4ÙäGyÕFwü^C€Ó9ÂÁtB"¹ú^ÇqåC¨5h:(ó¬Bpá?-Œ•˜ë~yà˜8Ò3m¤DøËH£5cû mâŒ;±¯ÈÎö›ZHU¿EvvÞ ý&ŒG^Çï2B ‹Ž„}²9Y†¼¢$2÷Ðömx»Ë½ê÷~÷v9¨Ò£}Îボ‡Wîú’è±âNå»üÝð}è÷t·Küâíýʯúw K(•㉃/$Êß:k„’£¨,jX$k±Õ<õX¥ƒ¼ +) op»Üµ.Æœ4#^_,Ëj›­ÞdÕ¼WÛnVí™ñ<ò#eôýͲ8‰'ê«÷ÏëtXÄ,'¬V¡0CgE†®aÝ /‹Öêbh9 ¶Ò‡~ô ¡xƒ©Ç(j;Þ -¤ËèžÞõS@•Ë8ܧõÍÚY=TËZÚl†µâ½?¸ç¦/`HÆŸåu´´tk‡q7¨mñÌ·Ö~~; +‰Ö‹§³z!Ha|´ý›Ðáå\;Ü‹+èĸòm»T’Òä¨Tp: Çદÿ›˜jç³’“&ýÎf-ê0¹È1ŸòöÅ{b?ê(¡’·Þ†¨ò÷Èb³ôYkLo)ˆ®öt8“OQToÉÐòÃpø+J¸º1ú•»9ü™ÀÜï†è‘0Ã:Å–ÙÆ`êñ–®ì¼m^p¡Æ´-9¸#L×IÕ†˜peùŒôv†ÌÅ2×Û,š÷6—p0z¼×ІÄSVøò%€Ñ—€‘#%š×÷>ÏbZ^úG4’{W\lä{®ýUtÂ(ܤû`#ÊŠÀ©ŽòE‰Ø:¿H1›ó@1ˆQši÷.ÜŽBfqÃ…³§_¸‘Z|OÔÚtßÙ0B ”ÙO@( —YwDaÚÅÁ¬%64: ˆP? ’RÄÔø±^|R‚C¼ݤÅõm"¼yü\Å +X¿:%}å–&Ò‘¾ð'£ðãÓî2\VŽ5qFvžP`|x9¾GP¨€‡Ä. ºNS¸Óú€þ#<\V¡Ëߨ ùàÖ­Px‡ \…Χ©Ðøj–Š-ÏHøàb°äûPÅËJ¸ Båwx8«Y†Q“(â,Ã.péuŸ_ÑÛÑÙ•‚°ƒ¯Ö,úžÚi iŠÇJ4ÓõC–ŠãZ–•~-4!óâ^êoîÓ!Êë£û}™|endstream +endobj +3857 0 obj << +/Type /Page +/Contents 3858 0 R +/Resources 3856 0 R +/MediaBox [0 0 612 792] +/Parent 3879 0 R +/Annots [ 3862 0 R 3863 0 R 3864 0 R 3867 0 R 3868 0 R 3869 0 R 3871 0 R 3872 0 R 3873 0 R 3875 0 R 3876 0 R 3877 0 R ] +>> endobj +3862 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [342.187 618.668 420.505 629.516] +/Subtype /Link +/A << /S /GoTo /D (classWvOut_p1) >> +>> endobj +3863 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [311.208 606.159 379.744 618.115] +/Subtype /Link +/A << /S /GoTo /D (classStk_p1) >> +>> endobj +3864 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [122.75 552.924 162.877 563.772] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +3867 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [192.667 458.539 270.985 469.387] +/Subtype /Link +/A << /S /GoTo /D (classWvOut_p1) >> +>> endobj +3868 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [155.52 446.03 224.055 457.985] +/Subtype /Link +/A << /S /GoTo /D (classStk_p1) >> +>> endobj +3869 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [122.75 392.795 162.877 403.643] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +3871 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [122.201 308.625 162.328 317.536] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +3872 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.203 289.064 233.782 299.912] +/Subtype /Link +/A << /S /GoTo /D (classRtWvOut_a6) >> +>> endobj +3873 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [257.25 289.064 309.056 299.912] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvOut_a7) >> +>> endobj +3875 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [122.201 204.894 162.328 213.805] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +3876 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.203 185.332 233.782 196.181] +/Subtype /Link +/A << /S /GoTo /D (classRtWvOut_a7) >> +>> endobj +3877 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [257.25 185.332 309.056 196.181] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvOut_a8) >> +>> endobj +3859 0 obj << +/D [3857 0 R /XYZ 106.869 686.127 null] +>> endobj +3860 0 obj << +/D [3857 0 R /XYZ 106.869 667.729 null] +>> endobj +3832 0 obj << +/D [3857 0 R /XYZ 106.869 651.181 null] +>> endobj +3861 0 obj << +/D [3857 0 R /XYZ 106.869 651.181 null] +>> endobj +3865 0 obj << +/D [3857 0 R /XYZ 106.869 527.271 null] +>> endobj +3834 0 obj << +/D [3857 0 R /XYZ 106.869 503.007 null] +>> endobj +3866 0 obj << +/D [3857 0 R /XYZ 106.869 503.007 null] +>> endobj +2858 0 obj << +/D [3857 0 R /XYZ 225.868 383.773 null] +>> endobj +3870 0 obj << +/D [3857 0 R /XYZ 106.869 367.142 null] +>> endobj +2859 0 obj << +/D [3857 0 R /XYZ 310.827 291.997 null] +>> endobj +3874 0 obj << +/D [3857 0 R /XYZ 106.869 275.366 null] +>> endobj +2860 0 obj << +/D [3857 0 R /XYZ 310.827 188.266 null] +>> endobj +3878 0 obj << +/D [3857 0 R /XYZ 106.869 171.635 null] +>> endobj +3856 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F14 825 0 R /F35 1011 0 R /F8 483 0 R /F29 818 0 R /F32 881 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3882 0 obj << +/Length 1010 +/Filter /FlateDecode +>> +stream +xÚíWMsÛ6½óWðNB”ø"Hß”Øê8®ëÔb¢é8>Ði¢T¢ìñôÏ÷-Ù–¥©•&9¹£‹Ý÷À…ˆ3üD,KnLçEÉ­Ðñ`½©¢_ºRÅ%/sW×ΰ^0aó$UR ÅzU"Ø z…fo'õrIMÅçx +6HRÁV°˜R£™%J²¶nÇÔ›cx–\V*!ˆ4ãª,âTñ²0Ã_ÑÅe£,~ùw·hg\”e<´5\Š"ô'Q/úãÞ•P‚›,Si]ü넊í|:3D« Bj¿-ðXÌ~l¼ôÏvDÃóDZvÌǸöÍšš}Ê„Æà¤ñ]šÑP®õЛ5 ç$¸F²ð ¤Å’šœ0A`©°<—Úx×@~uk¬1…¶ ŒChçn´óUû:9C7Vƒµ£þÍþW­[|ËX^ã‚1dQ¸(4‡¡Uøã³…ÔìÔ6%^¯ã åfsvX·„‰ÕìГª,Èašx)ëš§´æ³°ú†ÚR©yMúÅ­â4_sA‹¸›Ï–­×[÷ø·£§ZYÎeH´x^MŠkewj)¼ù×MQýùþÈDWíÁÛÿHМ}¨¶‚“†[¤–ýì°Î;‰€fûßòÁBå\©`u±¤m9¸ôV¶v¡W.¼zÕIœ dé{OÔß’ï¾BäÖモcÚ¦¹yʱÜãT(És¤‘ƒÝ¢^(É}p\0ÏôÇLŽ7{P ŠµÙØv}G0Ñ,áy×!·Aó·P¬vR Ïϱ¬_(˽ßwp dpf?Ï-8ÐÔÒ×§&ë‘Ð?~;ëÿ¹þ¶°:ÇGw›oYp»Ý9ŠUlœÚãn÷Ç3kþ+³/õ¬>í$eΪ§tfö9¥QÛÍSú´n‰ÏúÊó‹%PŽW”oº×OÊÍjÔxGÃP¢®¦¡ÎDLóPb^?ªdÛ:¾RÖl€ky…ó-•Ìux÷¹™­kâ…‹Ù5‡óé:PÁF!h·Ôd2§nÇäáóÖ§H°î.÷` Õ–€ÊpSzébŠÝÕ7·4ÍT쎶4¬lƵ$ô È.Õ÷ÞQ—%JÔPrßëFÇ9HÖr&4´2¬w‡âÙóÆÁL°kEt£àu…¶¡ r2ný+wßšùöÛWÔyå;Wäèηß'*”0rÎÃr +×_|·vÞ†¾ó«»Þ,Ü "³Œ‡85¹¿!¿$ýÚ‰M–îÀ¸X—Û ìóv*q{Ót!ÌE¾fλGðɵó¥J¿€2­eþ–YF ¹æðh°Qendstream +endobj +3881 0 obj << +/Type /Page +/Contents 3882 0 R +/Resources 3880 0 R +/MediaBox [0 0 612 792] +/Parent 3879 0 R +/Annots [ 3884 0 R 3885 0 R 3886 0 R 3893 0 R ] +>> endobj +3884 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [175.999 656.77 216.126 665.681] +/Subtype /Link +/A << /S /GoTo /D (classStkError) >> +>> endobj +3885 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.002 637.208 287.581 648.056] +/Subtype /Link +/A << /S /GoTo /D (classRtWvOut_a8) >> +>> endobj +3886 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [311.048 637.208 362.854 648.056] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvOut_a9) >> +>> endobj +3893 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 291.757 227.927 300.668] +/Subtype /Link +/A << /S /GoTo /D (WvOut_8h-source) >> +>> endobj +3883 0 obj << +/D [3881 0 R /XYZ 160.667 686.127 null] +>> endobj +3887 0 obj << +/D [3881 0 R /XYZ 160.667 624.264 null] +>> endobj +3852 0 obj << +/D [3881 0 R /XYZ 160.667 600.15 null] +>> endobj +3888 0 obj << +/D [3881 0 R /XYZ 160.667 600.15 null] +>> endobj +3833 0 obj << +/D [3881 0 R /XYZ 254.067 558.467 null] +>> endobj +3889 0 obj << +/D [3881 0 R /XYZ 160.667 542.589 null] +>> endobj +3853 0 obj << +/D [3881 0 R /XYZ 229.299 502.843 null] +>> endobj +3890 0 obj << +/D [3881 0 R /XYZ 160.667 486.965 null] +>> endobj +3854 0 obj << +/D [3881 0 R /XYZ 252.684 447.219 null] +>> endobj +3891 0 obj << +/D [3881 0 R /XYZ 160.667 430.788 null] +>> endobj +3855 0 obj << +/D [3881 0 R /XYZ 230.406 391.596 null] +>> endobj +3892 0 obj << +/D [3881 0 R /XYZ 160.667 375.718 null] +>> endobj +3880 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F22 474 0 R /F29 818 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3897 0 obj << +/Length 1683 +/Filter /FlateDecode +>> +stream +xÚ­XÛnÛ8}÷W}©„VZQ"uyZtÓÝÔM[dÁ¢íƒb3¶Yr))Žÿ~çBÊ6œÅb ¢†ÃáÌáÌÊbÁŸ˜Š( 󴘦¹ +³¸˜.6“ï“/ߢérMßO¢0)òéÆQ(Šbº™ÈL…±Èí{=¹™ü=ÖjÓ@Dy˜)¶þ˜O~û+ާq¦i2ß“æ|ùÅ»X—ÛÞ„§$Yê)ÿÛü=+Ë0Ë3V” +eÓ’›ùª*ïÚOb¯\i~{ÛÂSx‹a£½/¼²¯àÛŒ6… ™¢ÍÀz™&¡T V!( pFÄÊ»Ô º6j´/½YsßšM *§F“i.¨ ÎCöò³ÆÅ÷Úèf¡;Öò +x’Àˆ2Q´äk$2k´8(â ¶hÍ.>^…(pðºÜ‚ƒ¤žŸ¸ ²P‚ôßøàPìuí† Þ­Ëž%F/È¿ÆsÏʶØÆ™Gs†Åw~\x{_£º6†^A»Y²ü—«TÞ‘v°vñ Öljwã½Ý¥nTu¬8÷A£Å±×ÖW0_õÅ$ÂB1JUç‘$ÞÅ«W ž#0bœuÅ¿ˆìÍìòòó›ëwEú+è:pѦ탮 1ÁÐàn’ȸ9g:,¼CöÍ`,^³æ±O¶i­ pâ<„¡ÓK›o-?èSËû¡mÍr&bÐ9QÒü°9J¿¶9Ýq&î(ÛëúTZòkÝÚtoïíÓ@”DÒ+ïŒCº&á9/1m¤¦A¢BM ü%.L %*\ÞñKŒ–%˱E¤Êž¡ã䈥PXpœ::Ô3ò<”IaMü~VPp‘äv¶.0#‹â¸ÜG$(Ÿpr,÷ŒÊc*r&Ix"IÒÀå†-Ál(8,ùÑiF”VÒ1À³–HÉ-¿1å¬ðà©A‚hkØ J椎2ceãxùLÆuϧb6U—;d…Ôu…¯ZC·ÞÐ\âí µ^7¬K8€*^ ¢Èû‡ðXLöK«3à.¸¨·ŒªÀ@9¦c_ DÎãYR){Ž'I›ºVnÜâÄ’7ea’y4Q>Peðtׄ˜ÕÞU©–üxô•òð>b*æˆ=+rÝd?‚7Ö ¤œhªïÈ;02¡Ê)%Ž#K¹÷¢KXO#ò&åúÓ® šêþ×{ÖhZôã‘‹žEŽRìèm‘ÂÍã‰{çÖö-Ðí#YDa¿cv= 0Ï,çÙˆuŸÐa>¨OÏ‘¯B­éK +Fc›H©(ǰçI©øàÚ®Çh¥„N_—½mAÕ,oöbu8’Ç5lÛV™¥ÊÅ9†ŠV/µ¥u™%'Êàå#°²àÛ^ð\HµÛ½×ä¯È½Áq·6#ƒÐ[íT5" +‡œ*­¯iÒ”T‰| 行8Kx Q…¡/±2qÙ’*õÑæ;§ë@•\åR@¶cŸÀ4K×,¬+'ذèTŽ>‡§ƒÔq +®»¥T^2Jô…&µ 9½6¬H¤œG·Sîot›ü9p_Û2‹B)ÿÛÏ ÿOìbendstream +endobj +3896 0 obj << +/Type /Page +/Contents 3897 0 R +/Resources 3895 0 R +/MediaBox [0 0 612 792] +/Parent 3879 0 R +/Annots [ 3901 0 R 3902 0 R 3903 0 R 3904 0 R ] +>> endobj +3901 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 .5 .5] +/Rect [131.178 401.897 195.935 412.192] +/Subtype /Link /A << /F (Papers/stkicmc99.pdf) /S /GoToR /D [0 /Fit ] >> +>> endobj +3902 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 .5 .5] +/Rect [131.178 357.75 216.856 368.045] +/Subtype /Link /A << /F (Papers/STKsiggraph96.pdf) /S /GoToR /D [0 /Fit ] >> +>> endobj +3903 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [131.178 325.558 237.777 335.852] +/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.cs.princeton.edu/~prc/NewWork.html#STK) >> +>> endobj +3904 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [147.767 295.735 393.741 307.69] +/Subtype /Link +/A << /S /GoTo /D (skini) >> +>> endobj +3898 0 obj << +/D [3896 0 R /XYZ 106.869 686.127 null] +>> endobj +326 0 obj << +/D [3896 0 R /XYZ 106.869 667.729 null] +>> endobj +3899 0 obj << +/D [3896 0 R /XYZ 106.869 476.826 null] +>> endobj +330 0 obj << +/D [3896 0 R /XYZ 106.869 476.826 null] +>> endobj +3900 0 obj << +/D [3896 0 R /XYZ 106.869 422.698 null] +>> endobj +3905 0 obj << +/D [3896 0 R /XYZ 106.869 243.067 null] +>> endobj +3895 0 obj << +/Font << /F22 474 0 R /F23 479 0 R /F14 825 0 R /F29 818 0 R /F8 483 0 R /F35 1011 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3908 0 obj << +/Length 3339 +/Filter /FlateDecode +>> +stream +xÚ¥ZÝoÛF÷_aô%1üþxt“&ç¦ r±r= íÚ¢%©’Tãþù›ßÌ,IYr‹Ã!@´;;»;;ß3´éÑ?ÿ2ÈÝ8Î/“,wS?º,v?®.^¿ ÂËÜÍ“ðruLj«õoŽŸf‹e$~äÜ,|gõfYä|^„c6¥ÌÞ¶ôë;Åbé;ÂÚaP6ÀÌPaÖ¸Yü±úùâ§Õ…¯t,=7̳ËeèæY 2þ¼øíïr}á]þ|!k4ö\?Ï/wQ»Ÿé¼¾¸¹øçx”únì%—Ë å'Ø7e§Oz_6eW¯„›QD\³ìJSÕŽ$±ÓöÞÓ$sÚŽ†à‘³5½ Üb³S–xZ#kCÙ<_ËŒhÖô;~*ÿ½ºÊ=_ž:7\¯”˜†w†N;l˼"‚—¾ïæqÌ„ïkB6ÃSÄ<&jÂ0”ôÛ×Ö:}X0ý÷:«†­ÅÇ£î ˆX›Nw½yIÓ—GNÑîöU==ÂwÜ‘°ÔM!lµߢUä‘h´-{ìªÀ³(pV‹ŒÞ&<­?TÊUÚ…a/ûÎÞUÊ&<–*'Ö±v·éa@ejÁ:ÈQ´Ý],#RZ%- ½õ£Œ ZÓ zc{'P!xþŒå•¾Ï +I¤ã³R~Öh(ˆF'¦+W×$A¼¥Û-E[ôÀ½¨Ô¤2ÊG>¡h›b|r#0¨ìRtg¼}]µz%ËTƯß^ŸyK”ýAäÆÞ´'ÊÖ£AV_aÙj­1«øm4a6ÐfÍ=H¶FÕBžŽïäWµFF~îÊ9¡W`{ÁåjÃíE™ Ö<±òõçÅTvw¦`OT( sრq „q0>І­nì«Ý¾.q<ùÆ|r$~BþÓWo²*ê׫{Aš9›0rÓ$UœMgpÙ¶²úÊ£«½u˜U"q¢¼dD<¤üîÅÞû¯×=ýúüÞeàE.¹cíhqÈ·j]®aµ®ÈGíŸ7bC$Ü(T£iuÇðbÚS +û1#]PÞú]Ö‘Zeåýü޶ŒçònVVœ:Ú)+áfv(ûø?)ŧ3Å‹áŸéW´Úá©ÑcmæŽ ‹d¸Ñ‰?ÂBa9gƒHa†RfBï§àÉo–í¡ŸnúôV!¬+ }…¸^QŸ0õ¿.|bÇÿÿ/˜±ñêúÝ;Š¥Ñàãh\±£øÝó#¸('H> £¦ÈoŒ9@¶˜êm <æ Ïð8—QÖµ¬Å`8röíAŒäTD »’oÆ“I/HÅÀ܆éÅ$æú+–ȃ¬(Z'³NìÃûjÚr¢5¶H–ÇwòkäŒÚt›ÒÞ'ä‡+«ƒF@ É®¾–«68Ÿ4øôÙ¦1ЃÇÞêm/As°J5LM<]kÄ5l¡LPU›[+ÔP4ÇRènÜs®Ç£\IÝÊM³>ñ;~ì&¹õM¯4 ôðô'<®tñ£8(ÝBpöÆY"Hq>q“”’µ0pó@ÔW¼²¯ä-a6„Ô^ˆíŽÂÁ"V!džÜšn@ªÁ!†.kÚÁ=yðÒÈz!yÄÈ Ã)‰Òà/ì?}’Ü3OdÁ"pÊ¡0«eéµ&£7g5 b±k7ð}f§+‹sç‹W#¦S–ª7ùãMF~zUM^#­Ãì´o +Wó.ÓÔŽ‰ü©{YFâ8N’Žªzj“E+¦Öµª(QL…tR‚»°½š'9fSsÏi_<ïRõèŒæZØó® +¬@gÚFÆÏË4Š}öbád´½aÑ'Nvó÷|‚¼”ïy¶{RÊzì34[ÆÂ5²¯y×W»V´ô©ä]x>¾·[¤Ña%/½1Cªˆ`¡ _Ö•í)4Œ!_oØY.úι>P/-êP³Â™¤Jéßq‹s°øZ[/?SyóRèJÇ[V`&æNŠ•m%¾I•þw÷(KSNz¦xò‰|ÿª'ntJÓ%Òîí¹:IžÕIŸ™µÓå{ÎíAZ÷"Š[ñø”˜÷‚¢XT ­¬8˜ªð|Iƺ’Å¡³úÎÁÀ—âX‘hpó(QÖ*úkÿI•fŒ-ÜÆ¨Së +@Êrêò¬¶¯>pïŒJ«ä´5¥1)+&hÏÏ:²Àæ‚*M&£OSçÍ,3˜ITwdü¦ÝIKdŽðEXšN’0²ðè¦è‘Yà’gM÷ªhýP½ô Á‰7,¼/8àJŠ.ÓÃŒë`Š·BÝZ`_qzõmìØŽB’| HåA&áZ†šAä ¿†5±€ý<÷PFTæþªá9㔫R +wí,§=Ó®åZÔ'}$2ª)©ØóQ òµçhµ}`UŠMô$ð~QèX‘ÏøMÔ7ÇÇ>[›b—æ°Jí í•àêûkqåÝ­—g’IŒ;ëáb*aÌz^ØFI®™+ë3óô¨ýQp–¾1·nù‹L5T¢KöL4 ¹™ú®ƒfè'”ßysstsêÍÔÚÆKbe(%g9çeY8¸WíeÏ´·$Ô†±Õoª° é˜@Ù;ÒïRåÒè3gqÙ½—0w[´Lyn+‡ì̺T˜¤Œh»áøhrÏha˜%D Û´?˜#yŒÊÔ œ÷F|x²‘Œšm[Dav”‰ïÌb6;IݽÂâ™—߇²éÕk½¢jl/¢@ô}uÇ<Ï6ŠÈR˜€~VŒ¢ÔÑOgûQ œI1ŠüŒép-óã€øÓ£Ù€ þK5æ‚ß"zØiá[)í! +3´‘(œý£”%´AØ+õÛ³N|TU|ÕáÒŠ%ƒï”f• ãÚ~±i¦‘:ÎÓ/´ð¶êÊB‘nlG˜gWðQ×Jä› ÿþÌHzµ<í”þOZ{˜ÚÂTàè'›T½ÛnþéojÛ¼ª(SA=í÷äÉÇiì#ËPå´¹;¹B!¤bͳv£0y¦WŠ2 +M1 4S(™®+Ë×S#©ÄXáhUTQÂç¤2ÔDž(ý˜6 áÍ1Jå‹è˜;Í+² OÜ$´íñÏA yúgã Ä”àAöÿþéAèÒÍ£¤Ç?§ˆ.7O£ùß(CcNxÂxJx˜‹ø˜ìSV GãÒfIð +¶r’·äoô‹›eüyA¼);M6ùâêî>pb±FÙ@“÷b¤¼#D&©Þú¦08þÎmyO)´‚Üsã8$Ž~*•’ +$žž½ ˆÏþÎ#ñ­ýXñfìñ7â³B⮺/Üÿ'ð< +Ãÿ;V•èendstream +endobj +3907 0 obj << +/Type /Page +/Contents 3908 0 R +/Resources 3906 0 R +/MediaBox [0 0 612 792] +/Parent 3879 0 R +/Annots [ 3910 0 R 3911 0 R 3913 0 R 3914 0 R 3916 0 R 3917 0 R ] +>> endobj +3910 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [329.181 588.834 362.555 600.789] +/Subtype /Link /A << /Type /Action /S /URI /URI (http://dev.scriptics.com) >> +>> endobj +3911 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [320.651 529.058 338.335 541.013] +/Subtype /Link /A << /Type /Action /S /URI /URI (http://www-ccrma.stanford.edu/software/snd/) >> +>> endobj +3913 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [176.258 346.588 209.633 358.543] +/Subtype /Link /A << /Type /Action /S /URI /URI (http://dev.scriptics.com) >> +>> endobj +3914 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [159.671 310.722 189.615 322.677] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +3916 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [456.309 116.85 505.375 127.698] +/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.music.princeton.edu/psk) >> +>> endobj +3917 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [28.164 90 505.375 103.948] +/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.music.princeton.edu/psk) >> +>> endobj +3909 0 obj << +/D [3907 0 R /XYZ 160.667 686.127 null] +>> endobj +3912 0 obj << +/D [3907 0 R /XYZ 160.667 490.983 null] +>> endobj +3915 0 obj << +/D [3907 0 R /XYZ 160.667 260.691 null] +>> endobj +3906 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F29 818 0 R /F35 1011 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3920 0 obj << +/Length 2356 +/Filter /FlateDecode +>> +stream +xÚ¥Ë’ÛÆñίàM`Y„€Áû(­,E¶6Þˆt%U¶CK¢À¬án±òóé×X-ãR¬"===ýî„ë~á: 2_¥ù:Í ? ãuÙ­>ìWï>©h]øE­÷÷D¹¯~ó?Ül£<ö>×}=lBO·üþ¥¿7C§ífzé7ìZÇIêçQ&[ì@ìêÇý*”“·ÅzùEžà¹®~û#XW«`ýÓ +×òõ3ÀU·Š³ÄWa.ïíj·úÇÄ*XoUFÒNâ¯Åß™s_m¶‰J¼Ÿ[žjôݧ|&MK‘ý[^^² +¿HÜú]= æwcÌÛ‘á“éj†5ØèX¿:%TÊWy(lÐl™Š½;´hÓÃ_‰v¬­é¯H¾JRÙúY;v¥~2} 2 íÁçÙz†$0/åº"T P\,dRyîí¬FÀ»òùhf|µn·¶ÁLÀÇ)5ûJÂ4RþËÊC:Ä4_>~aˆâ=8ÞÁ +ëøŠ‰54ÂSS9gÈnç7¤Û7;Ô¾iG,–ÛXEÞ²#`Û–)î>[´¸îpMè&¡>ë²ú[ÐïŠ#+C,*ã‹…_4ÈmúIÊ”_ë#7F9í©ÁÃK·òwCݲ_¹›YìIAÌö' +¯$ÿË´Œ’BB\qµE;{ D²4”àDë°”WðO0³NW3g*äLà†K @^ÒäªM’zºA´>´²É5d}?UúíÓ>’ý;=4Žs˜ÎûCH:VS#¢¸@’ R7F1(û8 +ó©Þ isÏÏ J K/SK©…ÈÒ΂ <­Œn…ŸTmàùÜØCë;9 ¤® ÉBò"óŽ ùµ€²Ú6Sxd¼¨4q‚ W€Ùr˜‘yè}A=ât¡uzªL°¤ùÑ5mËž‰*Cïšê ¬‹ +±S;νãT”à,„#õ=*ý³³%_«¶'Â~CVp^jDí‘WE +¨5,E‘ñÏ–áóL‰= QÖ5TÀQè˜ã€©k½±þ$VÅ/‘ªV¤¨YáÓ±R°µ4}Y³ b##]‚1û²j»ú¤¢pªOȘSbhÜТD-m³“ U•(±1’= q §8÷FdŽYŠŒÏ#?¹/ÀBÛ°­ÛËG§ t¿(óžOœÇܹ£Ŭy‰ªøþññ½Ï­úV÷®e9ÚŸ8KÑ6òfírKŒ±ÎC_‹ú(fKtù¾ÛçÞצ_¹æŒÐl’$Á<ÕÁ®£Ltô/»'›<Ët ê!hO8_#UKVàAò; O¨:{„F¨T&,1<tÓ4Qüy®‰6[¶ŠiOõ »4§Ù;%–SÄ`Í7nÐñy±±Œl›‚ß4Âs¤Ý¶~-õ½¥&2£Ž£+‡%òI ÷fX¨]DÑoæpÐ2ÁÁ ¢WÛ72UÂ+6‰Ëc{á=³æšZ–lœóÀ"ÅAŠ I!¹M'MáñƒpÇ4$) õÚoTÏBÀ•sVä*Âb‡ŠÒêqêZˆxvn‚µIZ«gft_: +µK!„e€I ã§û ØT-%l,‡†úïIö¨§Ù™kgÚÿ9}lFÐ&ž.€=âìö?ã°©\Šàܹè{¼Æã“€ªâ²‚èžb€ã™z—,[ ¥«`!ÚÐåq‡Þ?qÖ¦ƒÞ߃c¯ãùÆò5°<¢±ßGµ“*Œ(êyÌiFµñ“m­u-+wÁß¶Xôú@'ìNEŒQ<ˆS.×[——À]#;zƒën¡À…(Î ª +Pdj=¸KÍ)\wTø[Ü7dï2‘Ú ÌǸ*‡’{í:âø[‚ÍxÔàý>úiX²ÜVp¼€»<_¶9â /.G4]À¢_vaV/†ÚÿéîW!|=V 8Fæ=‡ /Áõଈþut¥>r³‹Ôœp‘Jü$Èån÷T—W9¹u4/ŠÙ$U#ÍUÙ29Nt©¥ëEv‘òÔòbÈ@¬nÑL¸»ªù¦A¾—·ËtÈGóÒ`›òÌc+o¿A³!0%À¿ìØ®­-4*ÁÓ T`¥kñ*·x7pNŠãåqž•ü[ø ”óÚ+XÂàendstream +endobj +3919 0 obj << +/Type /Page +/Contents 3920 0 R +/Resources 3918 0 R +/MediaBox [0 0 612 792] +/Parent 3879 0 R +/Annots [ 3921 0 R 3923 0 R 3924 0 R 3925 0 R 3926 0 R 3927 0 R 3928 0 R ] +>> endobj +3921 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [105.873 685.131 451.577 699.078] +/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.music.princeton.edu/psk) >> +>> endobj +3923 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [105.873 654.556 175.86 665.57] +/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.music.princeton.edu/psk) >> +>> endobj +3924 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [184.822 654.556 301.882 665.57] +/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.cs.princeton.edu/~prc) >> +>> endobj +3925 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [376.359 654.556 451.577 665.57] +/Subtype /Link /A << /Type /Action /S /URI /URI (http://www-ccrma.stanford.edu/~gary/) >> +>> endobj +3926 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [105.873 642.601 154.939 653.725] +/Subtype /Link /A << /Type /Action /S /URI /URI (http://www-ccrma.stanford.edu/~gary/) >> +>> endobj +3927 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [194.342 630.369 337.554 642.324] +/Subtype /Link /A << /Type /Action /S /URI /URI (http://www-ccrma.stanford.edu/software/stk) >> +>> endobj +3928 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [291.5 595.057 340.565 605.905] +/Subtype /Link /A << /Type /Action /S /URI /URI (http://music.columbia.edu/PeRColate) >> +>> endobj +3922 0 obj << +/D [3919 0 R /XYZ 106.869 686.127 null] +>> endobj +3929 0 obj << +/D [3919 0 R /XYZ 106.869 534.143 null] +>> endobj +3930 0 obj << +/D [3919 0 R /XYZ 106.869 355.236 null] +>> endobj +3918 0 obj << +/Font << /F23 479 0 R /F29 818 0 R /F8 483 0 R /F32 881 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3933 0 obj << +/Length 500 +/Filter /FlateDecode +>> +stream +xÚ­SMÓ0½ûWøèh‰ëñG_)[Ð.H,ÍmÙC6 4¢I IAž™8›VÚ P$gÆ¿™7ó \á\{éœçIæe +–— {™³ÕFî¥O Ï?Mùî^@¦¢Øè¬ØF ò[ô2+ÞGF‹âs¼WþA”Q âˆQ UK1c1Öäu¸ÝFù »ÎÌuÄJŸñØHŸ9*ã»P|Ç¿aáìÚJ‚÷¼a6uRC6û¶ew N%<ÖéDaá¤9XilrIÊI¬FcY X£}(pd‘º…ͱ! + F<#Hbb°Ú`Ï–FCt3åµ~Bÿ¨ qÚŸã‚ò¯%s˜ýM]õE_îOÏ‘ã`Å ¥wúo W×í± øoëaü 4ü!ô¦>TÿtÝ5_»c» Àïªæ±ê‡g:Y¦ëH­³ÕŠ‘Ú#VêÎZ±<‘>µ—RÉ÷ÈÙ'¶'ƒã¾HÏõ@ÛVä¨Db­(¥Ûz G“îÛ`¯¯È¹ +Î#‚)Uâêçr¾B ý%¸EK»à¼&»7 b€J…œë, ‚ÿN¸Ýt§zAýÄG¯ðÕcß±/éÄ­œGãδc}¶ô0HžFèæ¸‹öàŒí„e|=v™r¹ŸZ)2ôÓ »oÙendstream +endobj +3932 0 obj << +/Type /Page +/Contents 3933 0 R +/Resources 3931 0 R +/MediaBox [0 0 612 792] +/Parent 3879 0 R +/Annots [ 3936 0 R 3937 0 R 3938 0 R 3939 0 R ] +>> endobj +3936 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [184.976 627.066 265.424 637.36] +/Subtype /Link /A << /Type /Action /S /URI /URI (file:hierarchy.html) >> +>> endobj +3937 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [184.976 615.498 265.424 625.239] +/Subtype /Link /A << /Type /Action /S /URI /URI (file:annotated.html) >> +>> endobj +3938 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [184.976 603.377 234.042 611.457] +/Subtype /Link /A << /Type /Action /S /URI /URI (file:files.html) >> +>> endobj +3939 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [184.976 588.211 270.654 598.506] +/Subtype /Link /A << /Type /Action /S /URI /URI (file:functions.html) >> +>> endobj +3934 0 obj << +/D [3932 0 R /XYZ 160.667 686.127 null] +>> endobj +3935 0 obj << +/D [3932 0 R /XYZ 160.667 667.729 null] +>> endobj +334 0 obj << +/D [3932 0 R /XYZ 160.667 667.729 null] +>> endobj +3931 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F14 825 0 R /F29 818 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3942 0 obj << +/Length 1949 +/Filter /FlateDecode +>> +stream +xÚµXKsÛ6¾ëWhr¢&&Mð%27Ù‰;Nâ$µ4ñ!Í"a™ Eª$eÙíŸï>>$wâ$êxÆÅb÷Û' Æ6ü‰±°§–„ã Œ¬©ðÆÉzt¶^8î8²¢À/n‰r‘~1|˘nè¯Ë‰ë»‰0мŒSžŒ øVãk™OLaȸ†9ÉsÊFÖÓ‰\/4D(&_oGo#¡$1mË¢±éZQ裾|µÇéÈ¿áZ8ÞÁضP­GÞÔ·ªï|4ýÞ²²Ç¦3%é[uœ±ð,× †ú€t ’ޝu*r˜+c¥Ê40pXÐØ7®I©œuF«}Àm^©Q¹}Q¦Á£?O"ßÐ×YY @®áY¸Õ>a¸\›gg›*ËyʱmG1ŽŒ2öˆñ|ñnbú ÏgY1küð,û0·}Û˜—Û*a9q%Íê¦Ê–Ûi‰wرQ`…ž§àú¶ +ð@×5®Îø·‰«ÓÕßÙXnÀº¡!S ‡ršš‹ëÿº¸4³Ëš;m*™”ëM–ËT/i¹#[JŠ|>v™q•Éú@cÏ·DÐWØèø…û~f*n¦YÎÔë|ÎS>wý<_Æ«Ž»R‚*²á÷øâ?¡˜³‹!@9ìÄŒ-›BÀwƆðö\`êAD)ýÅô!8 + r‡˜x+ÀŸÀHðÀ-|®)VŠ Ì51*Ã~ÆNlͶ)1²8·å1ù$S¸–ã‡Ïh.ïñ@YÅ9ŸUh |g_´ú„ ³"Éq-Í0­xÓ†ñCyËèù£¢>ËKüÜ!§²A+ž ”sio“ݾCÕæ{úMpâþOZƵäY…oBÏQ2Ur“ÇI_±0\BÆŸÚÍ’†‰÷yÉ2­äh‰¼aÇTGæq]óª² Ñà¨RªµÕè×´Â^;ºI{$˜ß< ¼tJ¡Y£Øì\ „ïëîè zZê˜Rmr}àRòïÍ=Ì]2G˜°;…pyÜ6¼²o¦y™š%é8Ùʵ›;sôÒêÿÁê=³-1fÅŠ-„³-Eœg E2ŎƲµ*!¿7l&†$Ý!”801×:Ñ,9ït>ñÊŒò“ó‘œx¶ÅDV®•Ù^( å¹ÄOÛ`m±:L ɩ޳F2,DHY‰‡ä—êó¸í@PÜ•µ†É›F-±’»*k©Örœ®÷ý»&•ydJŠêÛÞ·Öß¾M!EØT²¯=úÒð#[Ê'ÜVÐQš#ÍtîýF;ZsÞ¯c©¾tP÷}zÐQ °Ã }M¡v…ž/Ô5œ¢(crëºà.ŒÂ*ÖíÓrËÙmq=f?q‘= Ò†Ëp«T¿ÆµÍB¡7¬ø©fÐzÄê)ª}a Ðlzò½öO7&í…æ©Î逸àPá~âWþ¬Ä䬟+]MÛfÈÕÑÚœ×ô!¯;Nø‹/Óüƭܼ}öÆá a÷8½¸Ã›£ëóÇb?Í÷ò†À¼˜;  çã@÷]Öðª„;©Tã`‰ yñÓÄ øå¹R3×ÿžSº4Êoü A¢nðñÙ]gb#ì)ß’@Ä$Æî‘uIÛ$ß>áÎdù¾ j;‚£3Qm£ßil:–M£mªg‹ûŠ®‡Œp,x!„HðâYþ?ŽM/玶ڿ5ªþ +endstream +endobj +3941 0 obj << +/Type /Page +/Contents 3942 0 R +/Resources 3940 0 R +/MediaBox [0 0 612 792] +/Parent 3970 0 R +/Annots [ 3945 0 R 3946 0 R 3947 0 R 3951 0 R 3952 0 R 3953 0 R 3954 0 R 3955 0 R 3956 0 R 3957 0 R 3958 0 R 3959 0 R 3960 0 R 3961 0 R 3962 0 R 3965 0 R 3966 0 R 3967 0 R 3968 0 R 3969 0 R ] +>> endobj +3945 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [105.873 609.033 301.388 620.988] +/Subtype /Link /A << /Type /Action /S /URI /URI (file:Release/stk-4.0.tar.gz) >> +>> endobj +3946 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [105.873 591.685 451.577 601.98] +/Subtype /Link /A << /Type /Action /S /URI /URI (file:Release/stk-4.0.binaries.tar.gz) >> +>> endobj +3947 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [105.873 579.453 149.708 591.408] +/Subtype /Link /A << /Type /Action /S /URI /URI (file:Release/stk-4.0.binaries.tar.gz) >> +>> endobj +3951 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [286.596 473.67 327.885 484.518] +/Subtype /Link +/A << /S /GoTo /D (classSaxofony) >> +>> endobj +3952 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [331.981 473.67 374.378 484.518] +/Subtype /Link +/A << /S /GoTo /D (classBlowBotl) >> +>> endobj +3953 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [397.845 473.67 437.226 484.518] +/Subtype /Link +/A << /S /GoTo /D (classStifKarp) >> +>> endobj +3954 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [153.594 460.412 170.254 471.261] +/Subtype /Link +/A << /S /GoTo /D (classStk) >> +>> endobj +3955 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [153.594 449.092 179.829 458.003] +/Subtype /Link +/A << /S /GoTo /D (classFilter) >> +>> endobj +3956 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [250.394 435.834 277.017 444.745] +/Subtype /Link +/A << /S /GoTo /D (classWvIn) >> +>> endobj +3957 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [298.065 435.834 332.713 444.745] +/Subtype /Link +/A << /S /GoTo /D (classWvOut) >> +>> endobj +3958 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [271.624 408.131 319.14 420.086] +/Subtype /Link +/A << /S /GoTo /D (classWaveLoop) >> +>> endobj +3959 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [374.322 408.131 400.945 420.086] +/Subtype /Link +/A << /S /GoTo /D (classWvIn) >> +>> endobj +3960 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [281.277 395.427 307.899 406.275] +/Subtype /Link +/A << /S /GoTo /D (classWvIn) >> +>> endobj +3961 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [284.264 370.214 318.912 381.062] +/Subtype /Link +/A << /S /GoTo /D (classWvOut) >> +>> endobj +3962 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [234.513 344.448 276.218 356.403] +/Subtype /Link +/A << /S /GoTo /D (classMessager) >> +>> endobj +3965 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 168.024 157.801 179.98] +/Subtype /Link +/A << /S /GoTo /D (classWvIn) >> +>> endobj +3966 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [172.689 142.812 199.312 154.767] +/Subtype /Link +/A << /S /GoTo /D (classWvIn) >> +>> endobj +3967 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [202.3 142.812 236.948 154.767] +/Subtype /Link +/A << /S /GoTo /D (classWvOut) >> +>> endobj +3968 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [339.232 130.108 365.854 140.956] +/Subtype /Link +/A << /S /GoTo /D (classWvIn) >> +>> endobj +3969 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [249.236 116.85 286.789 127.698] +/Subtype /Link +/A << /S /GoTo /D (classRtWvIn) >> +>> endobj +3943 0 obj << +/D [3941 0 R /XYZ 106.869 686.127 null] +>> endobj +3944 0 obj << +/D [3941 0 R /XYZ 106.869 667.729 null] +>> endobj +338 0 obj << +/D [3941 0 R /XYZ 106.869 667.729 null] +>> endobj +3948 0 obj << +/D [3941 0 R /XYZ 106.869 580.449 null] +>> endobj +342 0 obj << +/D [3941 0 R /XYZ 106.869 564.777 null] +>> endobj +3949 0 obj << +/D [3941 0 R /XYZ 106.869 533.668 null] +>> endobj +3950 0 obj << +/D [3941 0 R /XYZ 106.869 533.668 null] +>> endobj +3963 0 obj << +/D [3941 0 R /XYZ 106.869 309.06 null] +>> endobj +3964 0 obj << +/D [3941 0 R /XYZ 106.869 304.882 null] +>> endobj +3940 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F29 818 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3973 0 obj << +/Length 2220 +/Filter /FlateDecode +>> +stream +xÚ½Y[s›H~ׯPò2¨&"44^¶Ê'³JâØiÆ3ó€€H¬¹h¡åKöÏï¹tе»–r•é͹~çë–˜:ð'¦ndû~4 ÂÈ^9MÊÉ›õäõ;×›FvxÓõZ¸N³DèÎæži­fÂZ€^(­«™çZñ6ãÞy Oa%³¹°°ªÄFVá«{5 W³?Öï'oסå˜;¶…Ó¹gG¡bükòÛÎ48Ó÷ž»ƒ¶c‹(š–¹ðmW„º_LV“t[ Ø¡Œ¦swA*@½G:ýòú]ØOrƒ\ç(mZEý©îú¶çøæÀMDªù°ØÆ°´=ØJ¸¾õë,òYÖ¦E{׸ý·<\$TÀ¦Ò…Í¥íDO³ç§ìn#1j’'<‚1Û@FûõOc³DÛɶíÙ\J©S¶ÑžHÖH÷âÅ‹ãøücÖü•9gÓ 5smwò¥vÞŠüzÃòuïÆ¼Õ÷¢qñ4ÉÎ0ÉÒ,寿¤xËM„P¤îw„ò™1)™¦5ë4–è4UF/ÓsÊhfž\pÒ¬¬GJ¨w(Ç}„ðyXž/5†=´*+¹]rÚô\ç`5Ý'ÅÁàANQ +Ùw -²Fg–1I~?’äÇÆYÆ/]ÍÑ @f&Ç·ý²º1Ac"w&b:³kµÊ~(u–»‘¥hx,8Ó>rÓ¡Ts0ѤÇ´ø·9vÔ!.4 + ÔùL¯ê¼D˜´w¯xæ:·ËÊÞ‹aAïÃ*ï dfïþoá…" ¦Ò„RÃ\N³‚È€†”"«¶JKLË4aøH®¡÷ÏxèngøÅí 0+.:DÓ’ÚDÄö/ÑÍdì5e1&Õ…©Œq¡òR;Ûp¦a‘òϳгÖ+* Î-/Gä }æ‚Õ̦\~‡'˜²ªºY]óó C=ˆ~·Fa¹"C¤Ah½g¿Â„„ 3ʰƯs”f©Y£øý6.u}ÅÀkÐäž›â òºÄÜö#óÄ;‚ æY ,ï±8îÀ{züì +ýÂ>«ðüóR¯/¨œC(ÛÑ'£Ðjk "E=bhb[aÅÄ%(;>/øþ°Ž# +Èhâq£ÑU§ä7*t-\ÀÌg²†ç¶Y•5±bJÎõ½Èz«_ŽœÅJÕÇ̾! ŸCGç¶w‡!c†¬L%Œ²‚(Ç8FÔ˜i˜OIHbà“}O¶Ø2ïТ´u9à}“æÚâ÷=¥°£$®~P&ë¹v”¨ë†rÞ™¸Ð0^9¦1°úûä1ü†<ʧGç;äQ<ƒ=Ê…{"y=4lÛrß*¹Ö功°ÍØØ—y0Íöl¯ªûLGÃó›çú¦ð.oùå;³ +ŒûãÄctIâÖ%O†šÓJv:Xê¤ñd,7冖°i늊2 ­èb+{;aPù ÅËrÅ›ó‰±e º"—h׆åK°¼ÔŒå„&tbUø¯9& jì-nó¬EßâkÏníè™aI‘Á11ýs¾n€â¹´=xæ¡çF!ĶôMÜåã¶æ‹]ùzìo?& ™Ö ÜÞŸ`à4»'Oιۿˆþ«XzG”l‹›!_ÓùT˜S€¤]ç\RÈÈcÒe„Š&ŠÂ¤ß€?#QÄøAÁ1Üìâ8ä4xýçxØ®ÏfB븠p-îüúöÛ«¿0°ƒ@NçÒ ì(\|ÿòÏ…eÑÉ«?=Ó]ù…oü®yÏü»aÞd´>%™.ahóíE€ùzÊPadþs‰×ƒÉUÖU=Œ¬Ó”Ea€¤>¨c²FÑ–íã†.w‘7Ùà<õðgèDìr,fÉ”U3m 8•› Jâ=U£¼ÈéþeH%\ó42ýR刭¯XX¯aü2$"Ö1¯/lÑ„_ÉcUÉò*ßëªèIÇjs¢5‡BÅ]Áª nà> endobj +3977 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [273.229 531.893 308.513 542.741] +/Subtype /Link +/A << /S /GoTo /D (classShakers) >> +>> endobj +3978 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [330.625 518.867 373.852 529.715] +/Subtype /Link +/A << /S /GoTo /D (classMandolin) >> +>> endobj +3979 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [303.032 440.157 343.63 452.112] +/Subtype /Link +/A << /S /GoTo /D (classBowTabl) >> +>> endobj +3980 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [351.063 440.157 386.126 452.112] +/Subtype /Link +/A << /S /GoTo /D (classJetTabl) >> +>> endobj +3981 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [415.601 440.157 458.966 452.112] +/Subtype /Link +/A << /S /GoTo /D (classReedTabl) >> +>> endobj +3984 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [303.836 282.976 339.121 293.825] +/Subtype /Link +/A << /S /GoTo /D (classShakers) >> +>> endobj +3985 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [420.274 128.805 446.896 139.653] +/Subtype /Link +/A << /S /GoTo /D (classWvIn) >> +>> endobj +3986 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [470.727 128.805 505.375 139.653] +/Subtype /Link +/A << /S /GoTo /D (classWvOut) >> +>> endobj +3974 0 obj << +/D [3972 0 R /XYZ 160.667 686.127 null] +>> endobj +3975 0 obj << +/D [3972 0 R /XYZ 160.667 593.65 null] +>> endobj +3976 0 obj << +/D [3972 0 R /XYZ 160.667 589.623 null] +>> endobj +3982 0 obj << +/D [3972 0 R /XYZ 160.667 368.643 null] +>> endobj +3983 0 obj << +/D [3972 0 R /XYZ 160.667 364.617 null] +>> endobj +3971 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F22 474 0 R /F11 821 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3989 0 obj << +/Length 2450 +/Filter /FlateDecode +>> +stream +xÚµY[sÛ¶~ׯÐ[©iÄàý¼¥Iº‰ãÔVêžiû@Q´ÅšU’ò%ýóÝo (K>íÌ‘Ç3&€Åe¯ß. wìП;vÈVa<ãÄŽ\œU£ïf£×'Ê'vzãÙ5Ïœ-~µÛŸL½Ø·.òr2u­Õ]Žî&¿Ï~ûAhÇ^¤º±‡ÑÑ÷³‘«Ï:¶—$ã©g'q€Sÿýú»3^Œœñ#Ðâñ=µÛ¥YÕÈ[¹±î—£ËÑOýVn`{¾7žªˆ60{üæ¸8y}o‰h(=áËzBûX‹´ËÔòë,í®H¬»Ó•ôÓ•!Ð(ÑîÎé»édìºn¤±Ÿֽžüf{ÖlJ ø¥Ð”çZ‹š¾±•mª|5¡F—vEMd}ÖuSW¬Ng) 8ãûý¼/º¥ ^°gßó,öŸé’=FƒÁn$ ˜sMp{u7HyƒnsÁ %@Ú•¨„%‡¹$ÞzeäÇTÉ…"È€d?Þê`+!SI–@9†z¹D,u»ƒØäV‰ÕñæˆÜµž¢u@'ô&ÿ(à\¯etGL0‚ØìU±>vk†iAö¼ê=J{À—6ß1l•]1Í Í’9éÓåï€<‹ò\*­­ kuÓ Áôž‰‡® ™Ü‡ždÒ‘éÀ¬M[àÌéý÷ià)e;ÕnH >Pÿ\ (*’ƒu€¦ô@¼ŸÿÅHSJ'w“ê— ÄHrN¬5ã9a©ãq" s¹Ct_kJ°¹3ªmô²Z&îËL²Fvà%ýñ/+óÉÇsð÷¦O3ð1áQ@Ì.u!ç$V•wKñ|@a+RTPBW0ìRëâïîÊu‡$3Š ùüŠ|Çv kv׎èîŸjKŠBóÞ„7å[íîjù‚‡¦¨Òæ}eÍ7´½‡Œ*¢`µ˜S® +¢<Š>aò2_ %-K}4RÔBö˜e¥Í¡×,î1)mò#Éû¶ÌÓ•ª<ø{. Ö’,;{)˜J±4g‰…ÏŒ0%³! Èe×IžÁI½( ÎíG<µG[j³ï5”ñ¥{ÍêϨ^‰ûa› j}o põ(X^q†Ùµ¾0«eƒ´x&Åáà”µ²Ã$”‰³¸Ð¤ñe.ú˶‘‘›XÒÚTjlö%u*º”8A ]¯¢P_Ÿh•-uU`ýfË¢Ö'ÿÃy‰Y¹aÓa¾Ïo4¼.ØfGŒÃp|³ý e¨. ­?¶ —Ü3X¦kIër±„­¢¼›æ”¹P ã· Òª þˆVÓ••wÿˆœžm”Ë›¥N?ƒe#pÞ|£Ý9ò­õÉô„±Œï«{é³e¿uÚ×ÌÐa÷Ø…V•²ïÑù‹‚D„-zØ8+!SA†V愤f)n–0Á£ÜXÌcxU "޳OX机Þª1"oàT.•QYY\ó¶û™Ÿ×oš´ßäÉ×쥾MÊ;Æ]æò2Ÿ¶ƒgÊÝg™(°cßÅÍ·åþ¿Jéß·¶O<ò³š?í$ò‡4³e.—¤KªéCÉ9,ø…G×á†h5gÓE'$h+ß~û­4æØàQˆŸ't½Êá¹°åû›Ñ–·ÒE\é«¡o½g%5bZÙÆ¥ +ÔÖ,f)N¸ÃÖ5/ËåJ ÇÄVn$…ˆ¾[‰§Êp)vìÐ ZzÞ@3®²}Þ *ä“g)_Gãý «ï>endstream +endobj +3988 0 obj << +/Type /Page +/Contents 3989 0 R +/Resources 3987 0 R +/MediaBox [0 0 612 792] +/Parent 3970 0 R +/Annots [ 3991 0 R 3992 0 R 3993 0 R 3994 0 R ] +>> endobj +3991 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [195.465 615.457 213.093 624.368] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +3992 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [154.69 542.848 181.313 553.697] +/Subtype /Link +/A << /S /GoTo /D (classWvIn) >> +>> endobj +3993 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [274.459 489.58 301.081 500.428] +/Subtype /Link +/A << /S /GoTo /D (classWvIn) >> +>> endobj +3994 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [325.994 489.58 360.642 500.428] +/Subtype /Link +/A << /S /GoTo /D (classWvOut) >> +>> endobj +3990 0 obj << +/D [3988 0 R /XYZ 106.869 686.127 null] +>> endobj +3995 0 obj << +/D [3988 0 R /XYZ 106.869 397.567 null] +>> endobj +3996 0 obj << +/D [3988 0 R /XYZ 106.869 392.461 null] +>> endobj +3997 0 obj << +/D [3988 0 R /XYZ 106.869 107.229 null] +>> endobj +3987 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F22 474 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4000 0 obj << +/Length 2433 +/Filter /FlateDecode +>> +stream +xÚ­Y[oÛÆ~ׯúR +‰.¹¼=ðq.pRÛ©¥&=hû@I´Å„"U’²­ž?æ›Ù¥$KM40 îevv.ßÌήÕУ?5ôS7 Óa”¤n¬ôp¾üg:xñÚ†©›FÁpzË„ÓůŽJôhø‘ÒÎd¤œé;ê%Úy? +|'»Ë¥÷²¦¯r棱r6DµB#¯@Óe]^MÃÕè÷éÛÁ«é@9Æž¤Ép¸iBŒ?¿þî oøv sÔö\•¦ÃÕ@Ç¡ë«ÄôËÁdðSÏJÊ ½h8öcV¡×É*å¦a¸¯Tè’4?ɦüÐù0JC'‡ M[Ðx]‘FqèøùÅk2Roºh#ízdDðûÍS±&;:iȆ?Wij 2='{0så;õ­|»%Í”*fkÈfE‰U]‘·2gé'ìjdLÝ@Þ-C×ÑÀÒð»…‘“5¬ÓÆÌƒ{™u·uc}Õº£±bç¬,{ÑH’~l­GZX9µ9ë&¿/j8»•Éj_Hû–š›jΚ’"eÑüÄÙb2t–™Y1‘³œœ­^ÉÜš‡ê¦Ë2ÐÕBûcÁø!.›G™É*CòF¢0Fó¬Ïóâ†-»nÌòŽô §É³²+V0Z ¶Þ€v!sõ]Ó/w³½©Ë‹—Òbæk¦t13–ÖXù$ú:Ìo?Ö º†­;øÍ ½‡‚ÜA=’oÝZ¦¡È˜ÍÐe«5KvGK”̶›uofñ'«Ãœ*!_>—΅؆wÛ_#L¬±Ø Â…µ3°wସ—ܶ•©º*·,šrh;î̋٬¹qmì<ØE"Ï‹B +~Ô‘çplÛ.ïaå”=‹¥<ÏVç£D<Ÿ7äÖ4 •ssñ‹ôsh|d£.pˆª4u +óýcC*ø)yáOk[,’1½*Jk–$Ÿ÷¹qa–÷ð¢öƪoTeFþ8¤µri‰*6¿…”_¶Ö·ÏòÙ—‡EøF0þ0JhF€I@‰3©fÜ»fd[|*u®Kjµ24–rö°A½ûç8›(âZ¶’ée–±»Ê:i±—YWfD5“¡Ë36#)—9cðÌ60‘I~HÄ{·2”5»éÖžƒ'M#½"ß)DliN@akјZÑQ"‰––-é ;|îCk!|‘²þ:ûf‡êËXÛ5ºxÓä0©GaS Å‘öÔñMuõ}'½¥xÄHâÎ,âP›—›Ån÷¬2:ö8»f%‰kÏs>7Y®c•ÊbF3à+·1SøÝô]So—Ñ5kÐgtt “ˆnÝØsä¾X䆜,>Z SY"S…¾“?Îyǵ»äÞOOˆýËtÒåë¿‹0ÿ+ +8te;ÂÀQHÚ¦[œµÔm²Ž}¢ÐÎÅj]ZT®röG—™ƒ¤&ã¿æE z” ïy™µ’CÌjäн=¿á¥÷Ò5ùíØ&W؇Ðq´šÈá+3T…tJI+PZIe\¼§™V1(M½’íÎÏo.Ïä|‹C ƒ`¶c^ü¡)€§Îì‡ +€‚4¢"™¥ƒ¤ÛïygMÚîŠ*+%¶OèºÂ–fâU[Q/™ +„mW”†óxì—Îê +‚Êv:Í€bòɽ{B)QY+ŠtÍìi~ª›VŠ¥j¯òB¿Ël:êOíL#ÏÖI¾+¨(ü“YÐ4wû·èø­Bã%ñõ'ï.®0cÖTèœÉgÍ0¸k²•ô ‹9 ´z.Ä›× Êäs‰éå…tLõgAÌ©4·\¥R%fíºŸÛ½¶kÃÔ±âRs^3Â92¾3µ8•:õÁ± jD¾‡Z‡Ršà+eøº¯Ï2.E¶2ÉÃk‰¨…Y'ÁSK/;…}¹‹èT²¼9Aö=)³=4%¥oºlf²fðåæ‚ÍˆØ™¼ßr=l gVÉmô ÆzR{^÷W(?¸Goí¹~˜âá:¦t›þÓ÷vÊïi´Ÿ"ä½]S1“Æú Àñ­ƒÐ™PiCŸn™‹§~p9)/r¸ØÁ/YãÎZL6Pûü:Ϥ3£­´ß‚ˆ°c™‘×,Óyƒ»¨5ä€:o8IÊŠ7#/v\#ç<û{ð­yM.Ê~ê¹aHGv‰Y·¹„&\½Úcß )¿=7R‘ áÐÐ홇b\3¯ •#•±Wø?ßóÐð­ÿm:$endstream +endobj +3999 0 obj << +/Type /Page +/Contents 4000 0 R +/Resources 3998 0 R +/MediaBox [0 0 612 792] +/Parent 3970 0 R +/Annots [ 4003 0 R 4004 0 R 4005 0 R 4006 0 R 4007 0 R 4008 0 R 4009 0 R ] +>> endobj +4003 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [365.156 484.323 397.756 495.171] +/Subtype /Link +/A << /S /GoTo /D (classReverb) >> +>> endobj +4004 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [455.362 484.323 486.689 495.171] +/Subtype /Link +/A << /S /GoTo /D (classJCRev) >> +>> endobj +4005 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 471.814 211.46 483.77] +/Subtype /Link +/A << /S /GoTo /D (classNRev) >> +>> endobj +4006 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [462.563 460.413 502.607 471.261] +/Subtype /Link +/A << /S /GoTo /D (classPRCRev) >> +>> endobj +4007 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [203.941 423.551 233.884 434.399] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4008 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [237.026 399.087 274.469 411.042] +/Subtype /Link +/A << /S /GoTo /D (classClarinet) >> +>> endobj +4009 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [475.432 387.685 505.375 398.534] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4001 0 obj << +/D [3999 0 R /XYZ 160.667 686.127 null] +>> endobj +4002 0 obj << +/D [3999 0 R /XYZ 160.667 667.729 null] +>> endobj +3998 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F14 825 0 R /F8 483 0 R /F11 821 0 R /F32 881 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4012 0 obj << +/Length 2002 +/Filter /FlateDecode +>> +stream +xÚÕXKsÛ6¾ëWhr¢&%M€96n2ާ6QNi°KL(RåÃŽ§¾û)Ò’ítê:ž1Á¸ïýv!1áOÌE˜2Nçqš‰PóÕnöórvöFFó,Èâh¾¼¦“Ëõ'OzáG©ò>.„טŷÈ;¯à)½U·³åížióª\|^¾›+i”8"ÕHý²œ §‚Q–Íý(ÈR +ü5ûô9œ¯gáüÝ ÷Òù-¬Ã@À©ÝL%:"uïÅìÃìU8÷eBjvȹPA¤â©!`Ø"„Ô½1ðíIb¶G =H“„ךÖyÿȨ³7àªÁ?Bƒ€ˆE£ ðg(>˜ÎáB:Îóš%‚ ¶ªï@dy€ÖÖü_áN‹«Ú¾:é3/l ÃìûD¾®vÈt–9š²y‚³ø^ÆåB¦ 8ú§@K”w¾À0Ï#àÜ’æÕ«…¯”"/-‘pÉ^»(1„ä0t*å!êÓ<ßîIÿ­Bq>’Þ[S´ùβÉû#¬ý1BÞSê™n`>¨• $9w‰Ø²·»&/7¼\R–"3ŠÇW&¿Å¬5û-&ÚÊLüH²õ2dëk³²´óLI~Ò®_/Î/Xî:%& áK(ïPÏ}i$vr޵T“uPÊý+:\…r^µ]mG6¦ch£ÆrëF´©ö¬raoPeË®&Ò={HøüŠ”GÀ¥í•3ÒP‘7ŽåÖ!¬¯Éú¢ÂS·C4‰kmy*bü`hÈË‘¨ï ZÇîõ)‚(Î܉¦&ä»ÏD¤VîÈšœ=V­äØh‡HlÑ¡¸hª®îQÕ‘‚þqÏ4°A!†Y÷ý5H€…„„ÚUìðþ½àÅ @é’:žê°A¦5éÝ¡V¹+¡-mmP}z5¸·vëbSÕhc»Ýq°V…i¸všàYJÿÁ8ˆÞÉy¹*Pb·¶GœÐ6= ‘°c1"E¤ajŸƒJ¤ÞÖš5¢Ò'n‡=v»ˆ§n‡ƒìvØ`·åCïóX2‰þ_>@NÔg§[ÐâôvƒÿlsÄY‡AüxED‰<®$Þ,´ö wÕõäÈC‚YÈÄ»ý ‡:áíª²ÂÂØR·ËWD–žˆý+rª;v…Â7>‡ ñ$¶$õŒC&ò)É-m0îE?9œêú^n]tnsHZ!ìþ 0Šþÿ±QSÉPnö=bƒ±•úÑ¡Ö}™¤ù\)„ÅÀˆ«a–1x7W°—°Û‘7.O­¡,âøßõЇ"íSnOísáÇÊûâúÞq’*}íq H°LR¨}*ɪkøàÚî*^È_ŧÍ7§†Á¶°|aH¬+— q$é—7µÙq=55í\‘»ˆÔ¶àÑ¢qX]föåå8ž»C>Ó÷š"æð§±½ÊPɱ|ÁÚ.|¨Ñ/ÎY/\B90g)ÔœçB:Ñ“~,à†§£EA¢A×á|'’{‡°|9\[DðÙ±IXµ)tÅTä]6­³¥5uá* uˆŽ rgê B¤äø}G37… R:‰Å$Šìñ¡Žø*JO›¯£@Jù„ù¡Ì&æcªàÍP{[Óð‚+‘„[¬N¡½}Apš·-Ó4;ž˜ªýØÕSèÑ'¼mqäàx$j˜[É)¡§~ÈÇÃ:Zϵ%Sä%Ê®g|ˆ‘düYµo©øJ( ?Ñ%y¾Û;°VQ†…Cý!ïÇ(ôñÛ€×L )t4îsq  ¡S¾¿3ëðíÇ‹žÂ!]í +ƒæy6w\B‚óoP³µ]»†BÀ)@Ê TŒòr¨Rþ¸4ÓÈEÚ8F'á,Š¡m„žiòú°+¨Q”‘Ëï“,0Ýš­ðUš±ûQB×2¡}TŠ¡oy‹N¤=µ–8 Õkœ P¯momɇ êÄÙ›æŠì ó°Õ°¸ÛÃí¥p¹É,r*#Ö¶ w~A™í²ŘɌ@ì9täñæx°;Œ§’$z*I ÖÂlÕ6f‡ÞñOÝV40òéAàír7ñàF׸N¾âÆ_ßþßð¥Œ7óCÇïøÒ£,yA¥ì¤¨x=ßl¹úÊ¡JRͳy@’¦êé2C?°ß ‚[GV™èÐw´û•"“ÓÓ‚·ftå­ Wàtƒøcy½¯ñ“ûbHÎ|… °Ej<)ÅÃŒªÂtR.}w’ØŽ†ÒÁ·œžA¥Ð þ‡ —YL9(ÓÔe8f7±høÙO«x ¼‡Ð.ûfwR.^œlßJJè ´ªZC6ù“r¡ÿæè3$þøGWøRãl(Óÿø‹+ÿvë´~uUó8Èp9üèJ?n¨H{îÊ<ÀvR Ë@ÆË…cÂwÿ!q/ó–·ò’¿|ýò%/®Áoþ¾ˆbì5à*Gyðó52–_ù/! |ðò–ZV?ˆ&<4€Š+ƒnuEŸª¡Ãe«’Y`Ö,öaÃ9nibø9X»s#Ï )â….¤‘-ËP–þ[†ø eµ‰EÌøendstream +endobj +4011 0 obj << +/Type /Page +/Contents 4012 0 R +/Resources 4010 0 R +/MediaBox [0 0 612 792] +/Parent 3970 0 R +/Annots [ 4015 0 R 4016 0 R 4017 0 R 4018 0 R 4019 0 R 4020 0 R 4021 0 R 4022 0 R ] +>> endobj +4015 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 626.887 221.423 637.624] +/Subtype /Link +/A << /S /GoTo /D (directory) >> +>> endobj +4016 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 612.877 180.77 623.725] +/Subtype /Link +/A << /S /GoTo /D (compiling) >> +>> endobj +4017 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 600.805 193.666 609.716] +/Subtype /Link +/A << /S /GoTo /D (control) >> +>> endobj +4018 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 586.795 241.653 595.595] +/Subtype /Link +/A << /S /GoTo /D (instruments) >> +>> endobj +4019 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 572.785 245.029 581.696] +/Subtype /Link +/A << /S /GoTo /D (nort) >> +>> endobj +4020 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 558.776 223.72 567.687] +/Subtype /Link +/A << /S /GoTo /D (rt) >> +>> endobj +4021 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 542.275 413.993 554.231] +/Subtype /Link +/A << /S /GoTo /D (tcl) >> +>> endobj +4022 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 528.819 265.757 539.668] +/Subtype /Link +/A << /S /GoTo /D (midi) >> +>> endobj +4013 0 obj << +/D [4011 0 R /XYZ 106.869 686.127 null] +>> endobj +4014 0 obj << +/D [4011 0 R /XYZ 106.869 667.729 null] +>> endobj +346 0 obj << +/D [4011 0 R /XYZ 106.869 667.729 null] +>> endobj +4023 0 obj << +/D [4011 0 R /XYZ 106.869 518.266 null] +>> endobj +350 0 obj << +/D [4011 0 R /XYZ 106.869 512.524 null] +>> endobj +4024 0 obj << +/D [4011 0 R /XYZ 106.869 286.593 null] +>> endobj +4025 0 obj << +/D [4011 0 R /XYZ 106.869 228.132 null] +>> endobj +4026 0 obj << +/D [4011 0 R /XYZ 106.869 182.734 null] +>> endobj +4027 0 obj << +/D [4011 0 R /XYZ 106.869 160.692 null] +>> endobj +4028 0 obj << +/D [4011 0 R /XYZ 106.869 108.233 null] +>> endobj +4010 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F14 825 0 R /F8 483 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4037 0 obj << +/Length 4032 +/Filter /FlateDecode +>> +stream +xÚí[[sÛ6~÷¯ð£4‚²onœvÔ\7v'™éö–h‹ %zI*—Ù?¿çð"R±g¼iÒL,àà\¾s(Oø'OÃD“œFq"¬Ô§«íÉO—'Õi"’H^^SÇËõï3Gó… +#©gs9»|O±ž½ž«p–Þdüt^¯œ­æ 9ÛC¯-²öiÒ&ǧªwó?.=yzy"‹@¨$>](‘ÄÉø×Éï§ë“àô×nûå@È$9ÝžhkD(c÷\œ\œü£J*)L.BKKhמJ-”Žú‹2¨±@– Íì ”Ë-ü¹Í ø›ïnàïHêãŸasÚ‘†Q0A,dÑ8ÿ ¤åŽý­ãÏôK¶Ëª6F'º›`WîU– nJ¾Í NbÑM÷æ 0±çEYÃ:´| +øÆ3|ŽxÓ‘ð´ÆRÑ_î›VÊÛ9lÌŒÚ*ìÛà2é}zësÝd[¦@…=â@Dq4ä»vã +"!áÀ`ÿDb 5®³Û¹ÁC_g»f´mE`üž¤»5L(&=ÝñÃP#…:гUI,t‹çQdk®DÎ"jó”n¸^‡×>»×ö®Ž– õɬáú'XñÃÿs?âÈ­¾óEd¬çoZ¢#˜WȇÖõ¿áQ©‡QnnR9[çs^•Rv¶¡sÃÒÑÙ0yø^Y­=­ÖD® woÛ®q´}Ñ<âúš/•ók~ï3¾WîÝ(½¥yòš{9NÞ4*Ÿd08B8;\ +ˆenÅ¥zö(†=ZÒv7YÁ}nq»K:¹3Ó‡ÕÈÙ@´ Œ'ßÙÎé,?H‰íp²uÆuÍ&;a + ÷xi—Þ).”jZX(aá‚Z:9“Œeçóåååó§‡ëP¡äןüéËóåÙ˯2¹ÌÆe’<²-ûù…Äãuܶ7¯kå™…]I<ŸÛ€(Öxûò&/w\Ù0o*´ è®ZÒJä9–: +Y®nh¾‘T U&Žªu¶-GRN"´ªO7Lo¢ÙŸ~«†gÿHR §.†ä°@bÂYÉ$\Ñyƒä•{(If¤I@‹ X fõ`Q_V(1´Œf)*‡‚®X;/ +|¯öµ£¼æ +†Ï–/—nä•×á-w›v®æök:xG*öÍ„„Y•,>ª²ÀcŒQLÂç2,ʽHMéºðχ9ldZåYã„$½rÍ¿,tðxI„!u(æ° (Û¦M ú wÀКp- ·9¤ñUáui=Ö‰+B¥—îvåXçÁñ©Àó˕׿ +–Ñ*2ÔlÊ:V"¿áçîX±ûÁ±þK"ßÐNžíIf—¨"é*ßBÕ‡åŽê¬³®îÍñÈiq¦¯¯âøõsš¯È>!Áü\û"§™\ÝE'÷qø÷Ø%k\ã妽³)¾ä«Wþ¿êzõt5n{ÂiY¸?Ñ­RfN0&á¼ÇLE7"§ý„Ã$ &$. +¨qºÒÕ¹dU•_ÑZ¹…xÎJ×¶™ +Ò$"ÐÚ2 +!•­šzÌ R„&tÝÇ1‚ô¶VéMºuFójlH%6¢ˆ–Kö’½%c‰¥‹aÞ› º¡k6އúÿSº½-œi31qgÁMË6²34ß)³jÖî gv2K ~±<_rm¾'ΰåç³×Ðaé|È|»7‡jŒf·7Nl„ooѲؓ^˺äRA À{~` ’ߨSxÉ1«í¶Ù€‰µ+90àC¯ +\ØUE;ûy[äÐio7ĨššvDEŠ\2©¡LLÊ%ÚGü7î·æ_^–v|0&iõ™‡o\³_1ãLéÈ7öHz¦JoTB˜ƒ`êr¿¯_i¡l»|´Œ†Ë×°|°Üh’t½îq'..°½íH> sÀIʈ82ߨù¼ê9î¹â;îºÉw ûdø@ Çîm¤E¨íDôï9ÿrì…Ò… BKv=9œ1YbþºÐ°t]t(†¿¾C ­-BÇ[XlÁ u‡C,äWéÙÙèê¾gÂîÔuÀ¹@4’èÅáðy“Ö\˜¼±‰Q(=üò·1BœÛ:/RvÂÈùå}Ä"*'YÖä-6Œ›Ù*\ZÙý±ÐÌØÃ¾u’~D–4à8&ž®mú>j‘X/kf‘ïܹ'°j¨VRFnÓªaÅæ¶·H+×rLÁ¶u^uU%³A³"¶‚¥ÜiQ‚½iW^¤Æ—¤ŒÑ„}Æe`O_£s{§z£È®Ž3Ô/ZÄV·ûBèO  H 3®Ãb;ä*·Lé\„kù’èG^:›ƒ-I Î«9BRk2Jhc¾:%‹Ñ^"èôÂV˜ß +cÔÍ|mâ1n­¥ÀKSÞdŒ%`76í°”åͦÇÙXå8öÐH†úaÛŒ<}õ“št)ÁÚ‰UüÕç#¶oìLZ¡õðÍ{à…»›qä áeÞù?|aîWxþcœ)ZFßüòDÅŒþ![¹ÆÀ+9kzv‘µV€ ¡é('Ì;„àœóŠ¡AyÍ;Òw±Ý~†ÂDCXÁ»ÝÞpBï['ÎûÖÉQÐY¨¾à€‡Ï ¿à€›àˆ³öpѳnãN¸Å„®…´_tÁ °µw5Ñ¢dCá`+BåOîfzä Ù#}h$°’SÉ 9Ês S?ÓN=µ¸û1ÊSN=Ö~¤ =ôš¥ƒ]z~=ÖµjNÊaN…síÁ4štAÅ„K¸¤ì*s˜;1À½åòºì<Öš«|¨ßÝ Ýzhm)„2²u°NÆuû†Ói<ôß§†jŸÎPî vñG©ê©ü‹†ÁÜEh +  ÂÉ»¢L×\ÓºôPÎw5pgÁë±ì½.9C­k¥x;ŒîÛ¸;”§âîаš’<`ˆ›6ÊÚf*"ßàËãÛ5^iæÄz´&#|Mê?Ò%ÜðñÐx¢„º+Ë'Öö®,Ÿ„ý8„僼†Ýý¿Ééb1À|±¤¢.?ÚüHšÁ â«’G_û^”CwÜ?¸Þv ZîÀöH_›ôåÊ€A³¸æ_l‰ú&ŸP±¤¡~ ¥q×S\è«öÖ›ÙŸm$ +»Œ®|¬)æ`ƒAÎ+vÕ"àÁòÚ-U%"8ˆUu¦fµõˆKG.æ\A§˜bGÊ}ÂåíQVmW,Øfñ;\ªÉ7lÙºôyK½³ÄG|Ú°T¶™Z°‹cF/‹5ÛÌ+„.‹A©r4V5VßeCß7«âm¾A¡Àܨa¶ÄÏ[hgÕ¼ã7 Z¢Xp.6”õl“ßlú> ã…½ª=–ÄiO&:@8j®#Þ|…Áq"ÏÀ"¸¾:æ]WüuÛXQ)‚t‘¯ª².¯§?ܲ=€eú?£u¾'Tì\Üwu©"+â@Þ$­EÔBG+u©ÄÿB.é܆𛉠v7LŸ´9üP`#Dý­cKÉoA=ô›D%ÂaV$Ëy}‰¶µ'/)è —þâónÎÖ{5#ù—sDô9‹Á¿pèÏ0“ ›rg·<ù?s£Ê«9T~=‡šU^BÍxB¹eèCÒ#úšlnÃÃ/m¦}½†ù-瀫‡ÿ€ã–;âFæÃä +YÁžX÷³ƒé–¼… 4~üÉö;Jãúõ¶F†BÓX +v–¾EMœËüN ¡?¾ÿ: þendstream +endobj +4036 0 obj << +/Type /Page +/Contents 4037 0 R +/Resources 4035 0 R +/MediaBox [0 0 612 792] +/Parent 3970 0 R +/Annots [ 4039 0 R 4040 0 R 4041 0 R 4042 0 R 4043 0 R 4044 0 R 4045 0 R 4046 0 R 4047 0 R 4048 0 R 4049 0 R 4050 0 R ] +>> endobj +4039 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [389.994 566.89 419.937 577.739] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4040 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [415.106 542.98 452.659 553.828] +/Subtype /Link +/A << /S /GoTo /D (classRtWvIn) >> +>> endobj +4041 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [457.028 542.98 502.607 553.828] +/Subtype /Link +/A << /S /GoTo /D (classRtWvOut) >> +>> endobj +4042 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 531.025 229.033 541.873] +/Subtype /Link +/A << /S /GoTo /D (classRtDuplex) >> +>> endobj +4043 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [234.353 531.025 267.479 541.873] +/Subtype /Link +/A << /S /GoTo /D (classRtMidi) >> +>> endobj +4044 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [272.798 531.025 303.018 541.873] +/Subtype /Link +/A << /S /GoTo /D (classSocket) >> +>> endobj +4045 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [308.338 531.025 341.906 541.873] +/Subtype /Link +/A << /S /GoTo /D (classThread) >> +>> endobj +4046 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [347.226 531.025 391.006 541.873] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvIn) >> +>> endobj +4047 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [396.325 531.025 448.131 541.873] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvOut) >> +>> endobj +4048 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [278.598 420.862 296.281 431.71] +/Subtype /Link /A << /Type /Action /S /URI /URI (http://gnu.cetcol.net.co/) >> +>> endobj +4049 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [256.399 298.19 274.083 310.146] +/Subtype /Link /A << /Type /Action /S /URI /URI (http://gnu.cetcol.net.co/) >> +>> endobj +4050 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [208.648 116.296 257.714 128.252] +/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.microsoft.com/directx/) >> +>> endobj +4038 0 obj << +/D [4036 0 R /XYZ 160.667 686.127 null] +>> endobj +354 0 obj << +/D [4036 0 R /XYZ 160.667 667.729 null] +>> endobj +4035 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F14 825 0 R /F8 483 0 R /F32 881 0 R /F29 818 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4053 0 obj << +/Length 2526 +/Filter /FlateDecode +>> +stream +xÚ­YY“ÛÆ~ß_ÁÒ‹Á²€Å}ì›,EÎzK*ÅËD•²ý0fIdA €¢Xùóé P¤d§’R•ˆ™ééééãëîÙ`áÿ`ø™¦ù"Í / âE¹»ùausû6Œ…W¤ÑbõD”«ê'ñò¥å±óz8¦]F¡3t¦á¹7jPwËßV?-â$õò(“MAžáìÍ_V7œéú^T 7òŠ<Á¿ùå7QÝø‹Ÿnp-_áÛ÷ ÚÝÄYâ…A.ãææñæo–U˜x‘Ÿ,Ü0#aGéóKáKÕU(iæ¨V>ª®†‹|Z†¹£—nàt0êq©pöðÙ\ùTWð­q:wž àüaßðjà|f¦;ü6KÈ©dW‰S +Yª5žØÔC­{œô–nêgÎ?êþ „ëëï¿gF©ç“:ý…^‘$t= + ì“Ôù×xr9ÀŽ u~õƒÙkªN>®\&pPAâÔ-ÿjU.Aä-¾u +r¨;]¦;1µêyåˆtÓð,]p‹|vBÌǺß^¹àÇFQ┆4‰²×t£Èîïpƒ|pܱåÁ.úí@± Ô8ñû7ÕbÕ(uêÝž cºAµÈKH¾-~6Äç™ÇzØ +ÅVœ¸´äý®Õäý`sv•”®ÒÔ¸Ô)TfM¤(G‘ƒ¢D54Ùò$\x_£7Õí†g^tºÑŠô¨_àÔè—›Ní˜äÂya»iåÆ@¯ð»bÚJ¯¹A¥¬Ï%»4Åq«I»Ñ¹1HC^xLqø‚Íp&¬_“ÔV‚oßäØPuñ+B/ÏC\:cÂ9 1ÇõǺ­ BѱÆïWwL>C€4÷²$òûïF‘´p6çÐâlîà…öü9€‹Ehhø—´¡ž-'XÙ²Zzf|$Oíž…!YAwýê'þݰžXDorñ¸^!åèœn˜Ž¢Ý YŸQ ö ÃE{Qœ’AGxŽr/§J<Øy$Âä2‘dHH·° ùä 4G¨ bõ +¡&ü|\=àG>s¿ž'ÞÌ#3_䈨ƎBô0`Ð0¡µ*oßÓ2¯Ž<¨™XBöûòDáñ„wìv<0O¢¦âìN3s?>Ü¿¿¿¸wXxqšˆ›ŽýîþÍ=ÛbÇé¤W=³4AsB/CLŒcgµÕ¼ôN÷´6tâêe¹kÙDËÌÒ @>!‡9ôãùª}bO‰çx¢Êß5m sRj!>€“V£8Àpl-Úbel¼ÖCh6ú% +Ÿ×Uâ%ŠU < û-yñÀ“VŸˆ{‰@‰#LÕ ‘”‚pä k[5\AÌÇXBû¹¤ÎcnPW-Ö”4Ó÷B¨ +ž#?G$é¹›ãD-¼+½çÈô5±K Záô'‡“‹â‡‘]ÛÍ•«õ'‚0æÂ!ŒX½óGR +À/á—@˳1&8³ã½|ïñ6hó‘¹lèÈ[›qfçvZ5C½F˜RnÈÛÁí•{lt ÷l^²·ÖƒüŠ÷²"Lo3Õº· W·œ’Œ+Î0ޏąóßw~Ö¹÷T.a%<Ú\FŽ¡] 3s /ì“l“àX#f~Ý@¢ªõ¯(Ù^r)ÍÌfæAûZÉæ(Ïxr.Ä$g%ðn÷؂צúWÒTÞíÉ©l¥æ]¦)÷Šç¯Êævõ|‘­¢È˃T²Àjr‹:-å~nɣ㯚sªîð.ªý-ŒòŸÿލгhtÞ¢D]H#Ý +÷7ºb®ÝAPÉý8WÕý@=ßš,DIŸhE8*‚È¥äs,UËÇ1‚ røäF8•¢+!ïËè¡¶/†è½ÆK¾«ÙŒØˆ ïF¿˜gläLzâ¬{TÓH|ð¾¨_u¯µYõ~l*Ìw¨t…:$Íùׯ,”M­m'…cÓ¶ÚV„óC‚(ʹpØÎòyc«_â»ÀŒ›—[#$A«+÷!€`'FíFXëÐÍCâCýˆs¾Ã<>>×”*ë OŒ FZv3ém|rFŸ²3¦Ò‹“²ÀKбh«ôÎ\+ër+K…èâ*¬Oìïx%(øÝNÃ͉6ëÞ4z  ¹¤ó#Ï<¼ðaŒø5'|©÷zû"€‰nê.Jpîá*@ö\¶Y̲O#(‘®”8DÈ»\[FN5f›k„/½C:õ…ôoP¡s'H-@”%ô{*Î)QîP>è/@aý·{‰Õ5jQñL³ðÌA._M°ÎÄÝ âF/Uä¬Ä”2PZ½ÚP‘›Û"Ua!…ó=ÜÈ cC¸$h'Ô~×6üíÀ@àÆ 4xõ¼ëص"·6¥æ=Cò¬™Xê&…ÈAê(zÃP¶n:ŽÐ2lÇ^¾ȠkØŽñ²9Øâõîò‘ €–²µ–AñÅ#A~ýàu£ö[=Üñ¥>tz¤¤Çc7 püÅíÕ~K}]ÒÛÜXŒo{íwäZreîsôð_>s|å?4SÿWô²Fôã&б¼b×/ñš~n§ñ…s²oS0.^\(£G/L×<0¿Óê­i¦ ~H6°À36à™RÍã4¿cˆ£}[5ÑŸSÍ£úŒ +yâÆüľÂ<˜;ûþ +ãŽ}&¾vp’ +[J@¬G(Äuò™+NÏ«P5”8Üò4lvš‹òðiÚö°×ÞÙšúy9¡±„UŸ ÕMb‚ÿ‹®Þ6\æQ$Ô#üa DÔnþ‰Xˆ%Â1ð…)H.þ0> %bÃ0ÿßþ PÚ¿aÄ‹Ô+²xþgB³8‚Jíyz`^ª†eà§ÜsãÿÉØ#â½ìÀ4½ÐãÇzIoÒ´øa¥Ð@£Beæg©C^#3`ùÌCÌÀä`8ø‘‚‘RýÈ&€>ÉK…'|BÖ†¶é—ä>aáCNŒàÚaÀ O)É+™nìB¹Ž +öìÓÑ=¡›iü'&^¨Bjg L±NòïÐÇ_?m÷Ídy)endstream +endobj +4052 0 obj << +/Type /Page +/Contents 4053 0 R +/Resources 4051 0 R +/MediaBox [0 0 612 792] +/Parent 4074 0 R +/Annots [ 4055 0 R 4056 0 R 4057 0 R 4059 0 R 4061 0 R 4063 0 R 4064 0 R 4066 0 R 4067 0 R 4068 0 R 4069 0 R 4070 0 R 4071 0 R 4072 0 R 4073 0 R ] +>> endobj +4055 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [105.873 504.173 134.017 515.021] +/Subtype /Link /A << /Type /Action /S /URI /URI (file:skini.html) >> +>> endobj +4056 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [262.386 504.173 304.09 515.021] +/Subtype /Link +/A << /S /GoTo /D (classMessager) >> +>> endobj +4057 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [105.873 480.263 135.816 491.111] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4059 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [205.261 429.11 235.205 439.958] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4061 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [192.551 408.768 222.495 420.724] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4063 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 377.579 161.398 388.427] +/Subtype /Link +/A << /S /GoTo /D (classSocket) >> +>> endobj +4064 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [201.498 377.579 231.441 388.427] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4066 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [105.873 329.995 139.248 341.951] +/Subtype /Link /A << /Type /Action /S /URI /URI (http://dev.scriptics.com) >> +>> endobj +4067 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [200.144 318.594 230.088 329.442] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4068 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [336.522 318.594 378.227 329.442] +/Subtype /Link +/A << /S /GoTo /D (classMessager) >> +>> endobj +4069 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [201.985 282.728 231.928 293.576] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4070 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 179.408 168.621 190.256] +/Subtype /Link +/A << /S /GoTo /D (classClarinet) >> +>> endobj +4071 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 166.525 174.543 177.374] +/Subtype /Link +/A << /S /GoTo /D (classBlowHole) >> +>> endobj +4072 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 141.688 172.468 152.536] +/Subtype /Link +/A << /S /GoTo /D (classSaxofony) >> +>> endobj +4073 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 116.85 156.278 127.698] +/Subtype /Link +/A << /S /GoTo /D (classFlute) >> +>> endobj +4054 0 obj << +/D [4052 0 R /XYZ 106.869 686.127 null] +>> endobj +4029 0 obj << +/D [4052 0 R /XYZ 106.869 572.998 null] +>> endobj +358 0 obj << +/D [4052 0 R /XYZ 106.869 567.663 null] +>> endobj +4058 0 obj << +/D [4052 0 R /XYZ 106.869 445.977 null] +>> endobj +4060 0 obj << +/D [4052 0 R /XYZ 106.869 426.19 null] +>> endobj +4062 0 obj << +/D [4052 0 R /XYZ 106.869 393.893 null] +>> endobj +4065 0 obj << +/D [4052 0 R /XYZ 106.869 374.659 null] +>> endobj +4030 0 obj << +/D [4052 0 R /XYZ 106.869 283.724 null] +>> endobj +362 0 obj << +/D [4052 0 R /XYZ 106.869 268.771 null] +>> endobj +4051 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F14 825 0 R /F22 474 0 R /F29 818 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4077 0 obj << +/Length 2387 +/Filter /FlateDecode +>> +stream +xÚ½Y[sÛ6~ׯÐô‰š†Þ;û×ënšI'Õ¦;mh +²XS¢–„ìUvüž @R²ìq'êŽgL€¸ð\¿ó’ÓþäTå"Žói’å"•Ñ´\O.æ“×W*œæ"OÂé|Iç‹_=™e3?T‰Œ¼ë™ôæï —EÞ‡Y¨¼âVsï²§ôÊ™/½ÌZcCopŽ)L…½^of¿Ï¿Ÿü}>‘V?ažMýPäYŒbükòëïÁt1 ¦ßOxìÚy>]O¢4Jf¶_O®'?ö[É(Y”O}•’ +N'Pï‘N¿2EQ^_eà 7xÂE[tJýÍÌ¢Èû¡1 `z«BíШXp{»š©ÌÛÚQ•EÍk˜ # mûÍ’Ÿ…Ý£ÅMhM‡o"¯B;u¦›60,ïXŸ[¾T"Í_¨WÝàf¤†©gVÃØ{3ÒɪÀoVº^¯šÚ|æn«ÙœhšÖj³±v(P|ûòm¶¶FC;À0˜ây]ä •a]f*õôâØQ«Š>Õì¬Y·ÐcuÎ9Q2>á#˜”zãÙX0m…f¸ý?8îºjWâ†wøÄ] îûç ²^¶9£Ä$#¸]R»Ë)Mú`îFQì<˜R$ŸÅ}×¾X-ß¡ íÖúïÍ(Í*gHô]­?Ö§ ñj´ÒàR ä5GŽ: +RÃ*ˆR˜¢}©j]“_³‚ä³Gn"Ý1ªsÕX>Æ!´Ï¡Òûí¸hj’Á*6§¬hü£("ýÜ|JŽ!ºrw›Å>W}\9Ÿî­´üfd™Î¯+Jè]ër0t9ÄLUl,ò_½·ÙÛ'0.VÝ_NŸ0Åwmíäv +Ù÷6•ùl1@z>{DúBåV½¡ªî)Ø<‹¯æ³,$öpCÛë Þ|T¤® ù~” {Š*R÷ñt$䙬ÿ}¿¯Mm~Y¹R5þ[z*,>ëöȺGò±‘_XG(ÚòŠ ÆXm>ôHÚÎF,ŽiIu?Šø@Œ5Ä8±Ž’çYUÖ5/%$‰ž¯Z­m¤|ÛTf9¸²£~·Å毊ô¢(Csk…E^ýл³ÑôÖŽ0¯‹²i±Þö ОE 0„ô~Æôkª’-à°mJP²„)M».lh"„—R!;eÏóÀùûÔ ½êìçé»mƒ|»1¹È»¨~Äàu¤}lÞs˜ñ£k·fòçÊ>:·jý˜ˆœ,çÉ$är GŸð;ßD‰ +ŽéE_ÿîû8¼EV Í3X)Sø  s¹ç:£Üfôvt9;ø±Ò¶®–äp4¬˜Zöt2á})EǤÄï¶ÅŒ¬d©ž6$‚8Yà)ÊÚñÑïg,¯E[5»¡¶t†q(ÚªgÚfDµIk6æ8cèëÏ´ÁH†•ê`q¦X±h´(ꋞ«žRzIÖ?8nÊ/o9Ùµé|ÅÁvY£¸7…uÛ=êÃçÞíŠvѯ¬ÍL)„€Uò<0«»•ºü†¿êH*F~µ&A7ýiu©_¹#® má|¥é…uíp \ÝRÖçs§'ƒ K«ÔTF"ŒRKÅ" â©f"J’ ¬ð/€uRÅÞ%í¹ÆCÿä9 Æ„ÿQ[îlcõ +ÓØû©#¡ÐåHÄæ»î $^Ýä=Z‡¦q𠚦€’}F¦½®¸ô¡2+žÑöˆ¿eW»{ÃϲYo«º?ÁÀ’kºQ‚Æ’. ±!wøŽŽXs +س-zàHE¢8Þ¢¼;¸Ù@ÀÂj^š©G%žs’^FÅfÚ+ !íF8› ßž2cŠCÞ€Á;¤IܯÚðÓf +eW¨†ô‚ØR9ôéÊYLE1Vèýã\ôÝì±mZüWÞªrI*ásüéñem’‹$r_^hˆñãï©p3²3¶-‡@œx8%Kƒæ ï ‡êní¨ +~¸À‡‚·¥å‡ã„»šg”MOrªº 8BÜx‰ô +rrâ9ñÁ\‰ÈdnÍÅ@Éκm‹µEnC7![‚/ ×ì¡hšŠâjÍâ³¾ö Ã-IªÐØßœ^Úý&Û`Ã;fÁƒ ŸW¾¹0L-#~(Q Ò$~.NÂ@¨Hºt}”Na˜@Áªkn'/øîž^À9•‡xq"Ýe˜RD–¬b¶Ó?ŒÂÁJG™ˆ{ùvÝp}™+"4ì¹Ö'¦Y’$€¡7*ã +Î’UÏ-Çaî‰C|Çm€w{k¡¢¤¯ýØ/îjÃ)d×í—î-¨˜Ü1öeÁk!Z%â³”xœ¤‘%ÙïÍø¢DÍd"‰ÒR$ûå"q,ÏÕ˜0ˆÜea=†æ ô¾¢2°ç[_ðV_dR*¬_´ÅÞœñÁÒ¯|äQˆ¯(|‡T(ò(µ3ˆ÷ †…+¨$ím‡®v½rhqcôÍø·† :Uph5?–h›ºæ ÐÆ4?€vÿ&lz¡ØÈÓ[`qhfñè¸þw³ +¬RÙþ +†BåCö¿,FÓ (ÿ +7Ç€G·\Ã9ft‡ó™ ú±-ö`êw•ᡊJío¿ÆÎ×ܹÁöÜþ0ƒÒè†Ö¾ù(ìܶ¾ã.ÞQ(aç;æú´"„=dz6|®Ë·¿Ç}Z£™á¨<q õì’rq±ÑjûJÄA„?y&²íØÎ™N8íæŒÖ`eüVüà‰ÀS·ÿÒÏ:†endstream +endobj +4076 0 obj << +/Type /Page +/Contents 4077 0 R +/Resources 4075 0 R +/MediaBox [0 0 612 792] +/Parent 4074 0 R +/Annots [ 4079 0 R 4080 0 R 4081 0 R 4082 0 R 4083 0 R 4084 0 R 4085 0 R 4086 0 R 4087 0 R 4088 0 R 4089 0 R 4090 0 R 4091 0 R 4092 0 R 4093 0 R 4094 0 R 4095 0 R 4096 0 R 4097 0 R 4098 0 R 4099 0 R 4100 0 R 4101 0 R 4102 0 R 4103 0 R 4104 0 R 4105 0 R 4106 0 R 4107 0 R 4108 0 R 4109 0 R 4110 0 R 4111 0 R 4112 0 R ] +>> endobj +4079 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 654.832 210.769 665.681] +/Subtype /Link +/A << /S /GoTo /D (classBrass) >> +>> endobj +4080 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 642.042 227.373 652.89] +/Subtype /Link +/A << /S /GoTo /D (classBlowBotl) >> +>> endobj +4081 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 629.252 215.612 640.1] +/Subtype /Link +/A << /S /GoTo /D (classBowed) >> +>> endobj +4082 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 616.461 221.146 627.31] +/Subtype /Link +/A << /S /GoTo /D (classPlucked) >> +>> endobj +4083 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 603.671 224.357 614.519] +/Subtype /Link +/A << /S /GoTo /D (classStifKarp) >> +>> endobj +4084 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 590.327 208.029 602.282] +/Subtype /Link +/A << /S /GoTo /D (classSitar) >> +>> endobj +4085 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 578.09 228.203 588.938] +/Subtype /Link +/A << /S /GoTo /D (classMandolin) >> +>> endobj +4086 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 565.3 220.316 576.148] +/Subtype /Link +/A << /S /GoTo /D (classRhodey) >> +>> endobj +4087 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [340.588 565.3 358.216 576.148] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +4088 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 552.509 218.268 563.358] +/Subtype /Link +/A << /S /GoTo /D (classWurley) >> +>> endobj +4089 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [347.534 552.509 365.162 563.358] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +4090 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 539.719 226.128 550.567] +/Subtype /Link +/A << /S /GoTo /D (classTubeBell) >> +>> endobj +4091 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [231.33 539.719 248.959 550.567] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +4092 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 526.929 229.587 537.777] +/Subtype /Link +/A << /S /GoTo /D (classHevyMetl) >> +>> endobj +4093 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [330.071 526.929 347.7 537.777] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +4094 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 514.138 224.91 524.986] +/Subtype /Link +/A << /S /GoTo /D (classPercFlut) >> +>> endobj +4095 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [319.223 514.138 336.851 524.986] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +4096 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 501.348 228.369 512.196] +/Subtype /Link +/A << /S /GoTo /D (classBeeThree) >> +>> endobj +4097 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [295.866 501.348 313.495 512.196] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +4098 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 488.557 211.322 499.406] +/Subtype /Link +/A << /S /GoTo /D (classMoog) >> +>> endobj +4099 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 475.767 229.781 486.615] +/Subtype /Link +/A << /S /GoTo /D (classFMVoices) >> +>> endobj +4100 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [301.456 475.767 319.085 486.615] +/Subtype /Link +/A << /S /GoTo /D (classFM) >> +>> endobj +4101 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 462.977 226.46 473.825] +/Subtype /Link +/A << /S /GoTo /D (classResonate) >> +>> endobj +4102 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [231.662 462.977 257.233 473.825] +/Subtype /Link +/A << /S /GoTo /D (classNoise) >> +>> endobj +4103 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [304.528 462.977 340.145 473.825] +/Subtype /Link +/A << /S /GoTo /D (classBiQuad) >> +>> endobj +4104 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 450.186 228.95 461.035] +/Subtype /Link +/A << /S /GoTo /D (classDrummer) >> +>> endobj +4105 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 437.396 237.82 448.244] +/Subtype /Link +/A << /S /GoTo /D (classBandedWG) >> +>> endobj +4106 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 414.588 220.261 423.499] +/Subtype /Link +/A << /S /GoTo /D (classShakers) >> +>> endobj +4107 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 399.306 230.583 411.262] +/Subtype /Link +/A << /S /GoTo /D (classModalBar) >> +>> endobj +4108 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 387.07 222.585 397.918] +/Subtype /Link +/A << /S /GoTo /D (classMesh2D) >> +>> endobj +4109 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [193.18 290.97 223.124 302.925] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4110 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [318.81 279.015 348.753 290.97] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4111 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [484.149 152.715 505.375 163.564] +/Subtype /Link +/A << /S /GoTo /D (classBeeThree) >> +>> endobj +4112 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [159.671 140.76 187.152 151.608] +/Subtype /Link +/A << /S /GoTo /D (classBeeThree) >> +>> endobj +4078 0 obj << +/D [4076 0 R /XYZ 160.667 686.127 null] +>> endobj +4031 0 obj << +/D [4076 0 R /XYZ 160.667 380.74 null] +>> endobj +366 0 obj << +/D [4076 0 R /XYZ 160.667 373.191 null] +>> endobj +4032 0 obj << +/D [4076 0 R /XYZ 160.667 117.846 null] +>> endobj +4075 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F22 474 0 R /F32 881 0 R /F34 950 0 R /F29 818 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4115 0 obj << +/Length 2499 +/Filter /FlateDecode +>> +stream +xÚ½Y[oÛF~÷¯Ð#…†cÎäŹl ×mЕm€¦´DY\K¢+’qŒÝ¿ç2CR–ì8íbaÀœë™s¾9sn’“þäD&™Pi>Is'2i&óÍÉ«ÙÉé[¥'N¸TOfKZ9[üY!å4Ö¹‰Þ”›úûil¥ŒÞOc•źÅoµ)yÁ‡©Œšrúûìlj±©ÈuæiÈÜáèÉßg'Ò³'B;7‰µp¹Eþ8ùí÷d²8I&?žà\>¹ƒv"$¬Úœ˜Ì +%sß_Ÿ\žü£'•Lb•Û½j"Ð&ÝØCY¤T( ²¾!”É8½§‘b CmÿHªÌޤ:}›ñÁS#Ú—³ X¬Óh‡ 0 :‹Šn›«šçŠí‚?Ÿ¿9çxÎöþuíiÝáÉ·ôßoßB{¸ ô//Îßóü§ëíTåQ»C©Ö'ÐÅÛR +g-ñý¹*`™L£x„­ó©Ê¢$R¶ž~ÓYÔtHâ–ÖÔ;Ï¡dê 7oéTÜÿe^” ¦¼„õÔø‰XAÚÝh½€Q•D—gÐ>Á4zaù¯tþ¢Æ w Jç oO]~ª’$9ýøËž<)ÉS#‹YDX!?H"c#"qÏüÿ冾bg¹Œ.a|†ý ^Œ{=ଠ¤ï8—ÒZÆ{ó˜ãcî/‘‚ÛdEÿgUf÷šøjª«5ñpxgáR"ªZª )Œ}yÁCÈàÙ¹ïx¥Óѯtä"\Ò]P¤Ù‰®ï§¹H™™H•¡3_?R9`;¨ô ŸƒÃ²²¨è¨»vXhñŠP…éÀ‡àax¸±Ýâ9÷„ϼXG´©Ýë¼ú”HS†ãþÎkº£ «P¼&í9_±»îüëöêØ6ŒA[{üø1k¯Ò×»¢×cLôv +¦®öð•/Å^SÇãÞ®ÂùûfU%N$`ŸØ&-À¤X€©Ó~ÅÀÓ­ˆYñµž*Õü`ñp×Eó=SÕf–1Cª±ÒN(m¡¡„NS>‚[ ˆ$ Ü2|»M¹¥—ÂsKl¯‹ëæ¨!4ÂØœ(Þ­J4UZæQµí_4vD0À¦Él¡¦“¥ôÛUÝøæ¢$ó*ÔÙ6,`,¸[{ò°{0"Yšb‘gš˜Ã ^eòËQãx†m âu®¹]/¡ãñ_ÙË--x¸ŠÄIŽË<ðjXˆpá1œð@™ +™å~Á2hÖÈl¾Ùó)zx\/Œ6 üpß*}6ƒwž’q˜‹ÜH¿â‡C™ÈL'¾móh[lÊCjƒŽ°üo‡pH‘¤î!`¾¤Š^Âý“‡H3Èk’Yëþ,y&´Î¿—æ.©ÛóÄ%T¨’™Ëwo¸ñ)±ÉKTæÐ’##2§=FöÙm¥RÌ¥ùÓ¹Œ²ˆŒÏã8eÏÃ)€ô3Hú½Û,~> õ`'¿QO* +”˜fœ+§¼8ÛPû9, š v4„o v;ìÉ™qÆŠB û®nKžlW…§å·û£ñ°1¨BØ:ìíã3?ûX¢Í¶+¤5}ÓŒüsÅRœWl˺kØ,ËÄ^6´¥ Iio©1ìgëÒtó9ŸAK1V輑ñYùuA +]o½+\>¸È\%²"q CÀ ËOÐÔ'ù^~2/F)HîÌû™Ó«ºÆïM¹£*”hnZûü(f“Z¯J‚d¶Ú…KÃe1SüJNl8X®½t:î8 û>l«/|ATöPìä‰|ìqZ›ÇrFY²$˜BPã %H5ËÕ|’Ú\0õMI‰\Û#ó´”ýƒÂ²ÑcZ®·/æ½bUñQŒ²ÝÓØ`ÍöÌd㤧º¾Îส7ÊO¡ ¹vÉ™} ‡¶’¿†­BÅO|¿¢Ù1•¸ŠþdZžiT´"âu¸W?Ð:¬@P<ŠUìWÄø¶Ä"¢¼äo°ŒâÀÈÆtm¹Ã +›Ë¢zk®ë0æ¬Znt›Î@¼ýdeDYadêWÜU„rKçö‰ö ¯`Ãó½Ã(®ýÆEó] +_Â˾_¤ŽuyK6*U+_ª~O…vrD âÝèuMÅT-½‹t)à[nvM(0bo6_Ÿ†ç —çj­È±8øâ™gd,ŠÛªÎ¼X‹ßhDz˜‚ÙiÙ¬,±FâýÌP ]VÊä3. &²oð‡«˜ä¯Æ5\˜T¨k‡ê’XêCL‚"În(Œ +söá¼áÃzzKÖ§¢øÆI¥èDz'8´W† ¸s0»6úW9oCU0żrUúXB0”9ÛF1û/ªdÝ’FbÒäÔ­Êwq†e© r}‰‹ ÛMðýèpym‘p›BYؾÜ÷5è ø^ñ®x–¸ÁX;CÜ û‡"1U…낊ù¸lH/§ì‘üªjl­Jåñ'þqÈ¿Ìþg3IÁmšñ¯:3º( Yï=h§Å‹cl`x³©LRŒçaŽÜâú¢jy + &î|ýÝwܸB÷<ùË@‰PïüÈ{Áß×H,Ū+u‹­/¼bçŒ0õ~ŽÉÈ$£Ê1²á |>#éš¶•”ùN”ƒèÝB䀰˜{…·ƒÄ±6±øÃY*Ó!çu#d Œ2D !¤_ߜóì¿U‚ßD…[û/ëYÌÂendstream +endobj +4114 0 obj << +/Type /Page +/Contents 4115 0 R +/Resources 4113 0 R +/MediaBox [0 0 612 792] +/Parent 4074 0 R +/Annots [ 4117 0 R 4118 0 R 4119 0 R 4120 0 R 4121 0 R 4122 0 R 4123 0 R ] +>> endobj +4117 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [361.487 626.789 391.43 638.744] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4118 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [260.584 603.432 290.528 614.28] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4119 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [224.994 442.68 254.938 453.528] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4120 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [105.873 383.352 135.816 394.2] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4121 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [430.351 248.17 451.577 259.018] +/Subtype /Link +/A << /S /GoTo /D (classBeeThree) >> +>> endobj +4122 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [105.873 236.215 133.353 247.063] +/Subtype /Link +/A << /S /GoTo /D (classBeeThree) >> +>> endobj +4123 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [211.211 128.805 244.586 139.653] +/Subtype /Link /A << /Type /Action /S /URI /URI (http://dev.scriptics.com) >> +>> endobj +4116 0 obj << +/D [4114 0 R /XYZ 106.869 686.127 null] +>> endobj +370 0 obj << +/D [4114 0 R /XYZ 106.869 667.729 null] +>> endobj +4033 0 obj << +/D [4114 0 R /XYZ 106.869 213.3 null] +>> endobj +374 0 obj << +/D [4114 0 R /XYZ 106.869 198.826 null] +>> endobj +4113 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F34 950 0 R /F14 825 0 R /F32 881 0 R /F11 821 0 R /F29 818 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4126 0 obj << +/Length 1844 +/Filter /FlateDecode +>> +stream +xÚ¥ÙrÓHðÝ_áG¹@“9uP;?Ô)tMebà}ïÓRÁ$&É÷ß§ÂÅVXmJÝÄB9¼(5E}ÖÆ¥¾ÚÂbÆËQû7°ô˜ ÈHLü‹Ø/1¸ŠŸ÷1ID,ŽÌhQo¸G†|UÁ!=ä×^*ôF‡ÉEhXñ¡Õ:º»ÏJ¶ºç`-¬ŠNj»R{$Xª/î/OYÀiœz<©¼D]±¾Am;öØ]ÊØS>×(ˆk°rÃû«S\hNíeŸ»Ô ½ÿT¤„Nz²®Æ;𜣂áâ]rº$h‡ŠûŠÑ1ѹjáâ='žA”\Àº]›9J Á=4Îi=qÀð®9¶‰‘"‘½…iÖZ%Ž$¾¬+ˆ¢}¦€{wÔØ¨ê¶lË~æ 7 ¡¸áNêO—<_ï D:à®9Âùb'Œt¾†ñ½ÖÈÖ&Ž9eo +úÚ hyÏÁXsÝ/üŒ˜Ãx6C"Âú°÷ÍünËœ2¦YÖm·Ê†¹žKÌZ¤"[?C(õ©ÄrúSíýã´ :"•xÄJEzgÆ¡;ÅG±†HÈo?Ì@èF'&v”`ËU´ÓàtbüdËq8B?³ò¾dï}ë8Uñ·q°×÷çY@®jßqwb'´\·Ñúå–Išž¤-~8ÜÄp&¥ëü¼†jlº¼é»‰++Œüð%R¬6"¡àŸsJ»àcž•蛢ò +ÆQðþúêšgçK~ ö_Ó¿KÆ^¯Ö„¿xbâ²énà’<ºÓ¢íÇñµû¦#sªAq +ROꃱ «ºLöž€§ç[Í.7á^B î}Ÿ¸W¼@X±b+2Cz†ôÌÛŽ;#½°‘…Ÿg.Kö%·a¥°ËxïqÇáªøôÀlû–¿?îR¬ýfÜ­N^êÃûÚAk×:ù¿¯u#tº«¦Ã/vüvÿ¹Îã‚邆j ùšÊfÎDÉ5\Mн£J¨ÂÏ™¸¾|†›g¼ù†Œ¶¼¾™˜sâÄC> +™ëÞb\ð»—æRÊ4:a€‡’q ¼œó ÙÿD¾5ÉŸ“³u*…ƒaH‚]øÙ0÷¹åvj‡0³J‹?D*ÚzL·g,ñ‚2ä©Iñ.÷–’~‡è}ø‚X»endstream +endobj +4125 0 obj << +/Type /Page +/Contents 4126 0 R +/Resources 4124 0 R +/MediaBox [0 0 612 792] +/Parent 4074 0 R +/Annots [ 4129 0 R 4132 0 R 4133 0 R ] +>> endobj +4129 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 503.872 227.968 515.827] +/Subtype /Link +/A << /S /GoTo /D (classClarinet) >> +>> endobj +4132 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [381.032 452.619 410.267 463.468] +/Subtype /Link +/A << /S /GoTo /D (classSocket) >> +>> endobj +4133 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [183.471 313.099 220.914 323.947] +/Subtype /Link +/A << /S /GoTo /D (classClarinet) >> +>> endobj +4127 0 obj << +/D [4125 0 R /XYZ 160.667 686.127 null] +>> endobj +4128 0 obj << +/D [4125 0 R /XYZ 160.667 532.763 null] +>> endobj +4130 0 obj << +/D [4125 0 R /XYZ 160.667 500.883 null] +>> endobj +4131 0 obj << +/D [4125 0 R /XYZ 160.667 469.279 null] +>> endobj +4034 0 obj << +/D [4125 0 R /XYZ 160.667 391.602 null] +>> endobj +378 0 obj << +/D [4125 0 R /XYZ 160.667 376.589 null] +>> endobj +4124 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F32 881 0 R /F34 950 0 R /F29 818 0 R /F11 821 0 R /F22 474 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4136 0 obj << +/Length 916 +/Filter /FlateDecode +>> +stream +xÚ¥U[oÛ6~ׯУ„V¬H‘YE·bÐ °-zëú Ër¬Å–R‰JìÏï\¨Ä†ƒ=t0`‘çþó‘”q?˼ª´qi¨¤ŽÛcôs½ú ŠØ Wq½#Ëzû51Bê4+¬Nê}*“Ž×_`Ùôi&“ >ƒ€ö3,|ú­þkS +[T!Žt¥Ñ/u$CY. +çâ¬Î,â{ôõ[o£<þ¡ÎÆ÷°Î…«c¤+#”´aˆ®¢ßCåq¦**ý‹Š¥….ÏÁ@uˆGJ…€MU&_ +#©Lò×3AxõÁž6ShG~X¯Ü“¬„T6dºª?]DNX©‚Á±éý©®ÓLK Ù¡3vУ HöÍÌšM +‰±ñÐýud×yÖ/àyËr?²h‡ãiѨ§¸¾ñkÚñˆâcªl²`ú¾m|?†¸ÍqB=W c 0 R8CÓ„3†ª_æn¢"X+“\-ìJÚ ¸Y±©ÊQYª²‰ß#B”œ¡EÕªxÀÂÆebé ôÙ³Á=4ø÷À‚qǶ7(ëÈö£×,Gl”|¼ ‚;Lg !i?­ûúhfNý’Ú‡”ÔÍÂøŠ¢HþÌ¥þ»#8/YÒ`ð-¯ïRS&ÍÔ ·¨(xf<ĉ¶ÝÕ¿æo´Rý ­^«¨D©4UQ§¶H°»e•ü…n=¢-ËdÞTj–Óô»™6×ë`>ÄU)OÈ +X­q­o.é^‰J¯êÙßdS÷}éfÿ®m§c#fß ÈÂqÚŠn»<n'ƒÿÛ˳’ —A}ßû=—ï÷PyȘŸÊB,uÎPgêç×—¥++Ì{^63PvÓ]”±Ùsí–Ö’ÓºöGÌû4Í-TÉn¢£‡ž+ +r<ô+|PŸÍŽ$Mø2'æ™&GÞÏ?4:ȽûáÑI‘Wg“C‚¯˜‘ý09šÍŒÈd² gS:}C«1R(¸xÿßÂOQ Ðã#¢c€ZéÓ7„^ ]À÷0¤ðñ{>ùxƒiW§2/‘$ é8ê=«ðp¢çû/x±Á¬ü--J¼d2É‚¿ï1„¼á-L‡i…›_é £×cxÝéZÆÛ3Üaè‘Ü:¾Ë”Ë…1ÀV²"Xm˜yBœ)arƒÏt)™KpÑ™`wÒ©„¦XØB~ëæ2ÿ¨¿¹Z§ö/QKendstream +endobj +4135 0 obj << +/Type /Page +/Contents 4136 0 R +/Resources 4134 0 R +/MediaBox [0 0 612 792] +/Parent 4074 0 R +/Annots [ 4139 0 R 4140 0 R 4141 0 R 4142 0 R 4143 0 R 4144 0 R 4145 0 R ] +>> endobj +4139 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [123.001 627.342 140.684 638.191] +/Subtype /Link /A << /Type /Action /S /URI /URI (mailto:stk-request@ccrma.stanford.edu) >> +>> endobj +4140 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [217.732 585.531 451.577 596.656] +/Subtype /Link /A << /Type /Action /S /URI /URI (mailto:stk-request@ccrma.stanford.edu) >> +>> endobj +4141 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [225.481 585.531 384.384 596.656] +/Subtype /Link /A << /Type /Action /S /URI /URI (mailto:stk-request@ccrma.stanford.edu) >> +>> endobj +4142 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [382.391 585.531 392.132 596.656] +/Subtype /Link /A << /Type /Action /S /URI /URI (mailto:stk-request@ccrma.stanford.edu) >> +>> endobj +4143 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [105.873 543.996 451.577 555.121] +/Subtype /Link /A << /Type /Action /S /URI /URI (mailto:stk-request@ccrma.stanford.edu) >> +>> endobj +4144 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [113.622 543.996 272.524 555.121] +/Subtype /Link /A << /Type /Action /S /URI /URI (mailto:stk-request@ccrma.stanford.edu) >> +>> endobj +4145 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [270.532 543.996 280.273 555.121] +/Subtype /Link /A << /Type /Action /S /URI /URI (mailto:stk-request@ccrma.stanford.edu) >> +>> endobj +4137 0 obj << +/D [4135 0 R /XYZ 106.869 686.127 null] +>> endobj +4138 0 obj << +/D [4135 0 R /XYZ 106.869 667.729 null] +>> endobj +382 0 obj << +/D [4135 0 R /XYZ 106.869 667.729 null] +>> endobj +4134 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4148 0 obj << +/Length 1776 +/Filter /FlateDecode +>> +stream +xÚíXYoÔH~Ÿ_1oë¸ã¾|ðÆ@ ,6H,ÎØÉxñØÁö$Œøó[G·3h‘VZ­¢‰«»ËÕU_×Õ–ÓþäTeÂÚl§™H¤™.V“_ç““'JO3‘Åz:¿$Æyñ!™š…ZÅÒg3Ì_À(5Á›™VA~Uòè´…§ ³PkàZ!Q6È3äC…£¦›ÙÇùóÉãùD:=ÂHè,†Zd©E5>O>|Œ¦Å$š>ŸðÚ-БY6]MLb…’©ד³Éï£(©¥°Q< UB&Œ6©©4B›xÛ(+@iA/©À®M?À¸­ubƒ·åçuÕ•+Ô_CJïcƒ»˜Œd=-›²Ëkæ0G.ia[ ¬VØÌL˜1½ãc‚{ˆ8šà·g§Ï˜ªš™Jƒ¡ì.AÜFÌ¥ På–I„¼—î^·A…¨_ÿõÀK$¡¡Y0tmÝ‹Yht +ŠÙèÕëùcà|ÀŒsd\¸êYÔ*GM6¼z1 aà¶»Àý«z@Ë)EfÙàŠwB=µ ”W2Ý·ëFÅ"ï +œÑ¨=7¸O‹2;ž`WlFÙ PVÂ2J»Ë=¸Uvïù¢>™:8‹^ažÔ§ìú +4q¤"b¢íø¹¬®œe¤3N¡Éø\÷%Éh;ÒtV•´«v+N¢ŸÂü»g=®;:n•€:ðnQ„vè4ÝÆü¶‚½Àë ¹È²DÚŽÁ‹óEåf@±à@öá2:öÍÌÆA^ÕèzuÉ«—]éD¶ÌCè¸ —Žéüü \¶n)¯k&ú5| ƒœ!Þmb2¡+ózrC8åBÛ­H}òˆÃŨӑuÑgHêËŠ2Òú &-Mföט܂rQ¯˜ÅqÏ¢@V?ÈÆ¤ 2ùrSÌ\‚Ìó‚×ÉMàÉnb2gùÊr|³¨S…sMguÒ®Ö¸´È¯ó ŠÂŠp#WÄàN²(xÖ0SKÃYÆ)ééL‚cçµðšTÄÊÛZº\øL¹G¯cëØœ ‡àSyÃ}ØHEwáQj À85˜ +Mã •Ç®òAÉs+ ŒQ÷_ê}5º.q²®9€R-Ò4Ý£ —j¯ãÎB«–r^á§ÅOJA¯ÏÎp“™ˆ¤r mw(vP‘ñ¾öòìáe„2^DQÞT Fûø¡m¥H <.M“²òº?\u¥¨-o=Ÿi$’x·:žWMÑb„ÞöðVfO²ôDEQtòþ ·±œ<8h9|_àšÿXàÆÿ§Ð$.†÷‡Øe"¶vì4¡W€BD¾KQôOújYvä¶4Õ­¹S"ÒQÔºEG>W±Wð‚ïû€ÜéûpÉ÷W@£“u|TÐ:U#(ïG>×8éý·`1`ŠL.êûèª_çXëÓ$x„‚ïÍðã4ˆ $¸ˆ3ÍúQ§zÅ3ˆÙÒ®¯–,)çrÅãV!WQõC‡’¶;˜ÇV¥–Û]Mx¤R,Ö¥ï-~ÔU¾É“$¯v¯›E5kÊ WG»ãÎ'lD™/ùý¦˜ÈëŒ{3æÝí6ÚíÚç\y»&AExÔ0£Œ¯Gêdmé‹ +¶ð…X˜n¬€Ö×q-Ë34ªšR5‚«c¶ê´"'%D ˆ'ÒE0…ü‹MŒÈ¬Èä['Š,Ž÷/°°ÜÁǵç”<œŠÛ™´/Ç¿À¬´dà0Žòay¤‚1øÈlö€adïCfH}±ÞŽü wÑœsL"vw¡€Øá|L×Z†Ç!?|½Aú¾'”É •U¨î–w†ÕÝœo¡—ãÉCÏ$B)½S›wëÿ«ù]›ÎéïHá÷¥ùç5îgô…ì§{/¤ä¦ågÝR¬úK²ÀUÆW(4s̯°Ä—[r|x÷¼ò]án{2Ü=z‘S¡uÄpí]™Žä-jàŒŠ 5£8ãásU5c;—×tW +eƒw͘;{bMƒS¬[;£8*_†-¤‰ý«.L]^>)S9r›ûtk!ÝÒåíÂmŠÛ¹phË«ù}v> + nÉ›_†ía÷I|N?YÈÝJ¥ÿô“’*‹GåÆOJf‹,1Û_”æxó5îÙ¸dZ¼ ó-¡Ðø9EBQFWÂ{3,Ô/ª—È™¦ÝãŠIƒ ´aúÍLÇxÍÔÝÌ[á^A¡ ú¡ãb/ÄÁSJzCƒ %pz.rƒr[z§¼O‡¡²HX á¸$dÛÂ…¯½3;T€³Áïw±Œ}`YÇ·TIC²t–¹Ï‰îe¿Bc„ògø7P1ýæendstream +endobj +4147 0 obj << +/Type /Page +/Contents 4148 0 R +/Resources 4146 0 R +/MediaBox [0 0 612 792] +/Parent 4074 0 R +/Annots [ 4151 0 R 4152 0 R 4153 0 R 4154 0 R 4155 0 R 4156 0 R ] +>> endobj +4151 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [184.976 576.288 218.351 588.243] +/Subtype /Link /A << /Type /Action /S /URI /URI (http://dev.scriptics.com) >> +>> endobj +4152 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [184.976 464.88 202.66 475.728] +/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.opensound.com) >> +>> endobj +4153 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [216.192 464.88 239.106 475.728] +/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.alsa-project.org/) >> +>> endobj +4154 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [184.976 376.276 223.581 388.231] +/Subtype /Link /A << /Type /Action /S /URI /URI (http://www.microsoft.com/directx/) >> +>> endobj +4155 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [206.894 318.493 250.729 330.448] +/Subtype /Link /A << /Type /Action /S /URI /URI (file:Misc/dsound.h) >> +>> endobj +4156 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [0 1 1] +/Rect [206.894 295.579 261.19 307.534] +/Subtype /Link /A << /Type /Action /S /URI /URI (file:Misc/dsound.lib) >> +>> endobj +4149 0 obj << +/D [4147 0 R /XYZ 160.667 686.127 null] +>> endobj +4150 0 obj << +/D [4147 0 R /XYZ 160.667 667.729 null] +>> endobj +386 0 obj << +/D [4147 0 R /XYZ 160.667 667.729 null] +>> endobj +4146 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F14 825 0 R /F8 483 0 R /F29 818 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4159 0 obj << +/Length 1978 +/Filter /FlateDecode +>> +stream +xÚ­XKÛ6¾ûWÛCdd¥õVomÚMúÜ5CÛ-imaeÉ•äuùóo†’ìØItáƒÈ!9œÇ7ZÍ]ú©¹rcÇ‹’y”¤N¬‚y¶}¿œÝ¼öüyꤑ?_ÞóÎeþ§:*ZØ~XËEYû¾iÊ*¶²tµø{ùv„‘“ø±Ù¯RÔÙË™2×Ù®ã§éÜö4 qÙ?³?ÿvçùÌ¿a-™hì:ŠvmgA:žJ̼šÝÍþY¹sÛ‹YÄQfo®Ç¢S¡IFÈ­”Ç‚û$8‘š¶¡o^“Ú£®*$>³Rfð—«bÙ—LÛ0ðÌ ?Õ /±zØ¢YØ4Ì÷4Ì`–¾±>¿Æ¶òœ$ùºkÞ}_ÖÄoM>ð뎆½n¡K»ò/ߥ6¯š-¸íàÙ +â×ëça|u[¤À.[ž\Aßz윅uõkSÛ÷1çÛ¹Ê K‰†þ‘³cãlrŒO<ˆÔ‚ 9‡¦ù>¥l Ú™Àî±ç_—ðiÇŽ¤³^jiØ?—ñ}ÓÛFV¯¡‡ËWm +Ã=O‚ŒÍࢮìdq¹H|Kl5Õ»ÒpVµL™uaÖš{ù¾zùRŒ¯JvrÛÑ·–mΉýXîŽC”4TÊIÈU|‚€Íž$IC«. xÖ7ò}¨Ø$ê„Èê0Åh¥»2ëd¬WŒýØï… µÍºÕÛmI(bn„`þ²Ó5‘µÕÅpÞwf½±ínùîDüЀ.tWlF–\´|¤`úB¼üAo!RÅ´ÔÚqÄB¼N#À´­–¼ «¬ë§åE'|¯(×ì#:£¡{^Þ®‡,P\Éz)Îböl¬¢ÙU¼û\³Ã¦ùö ٠о.îtÕé ”˜{¨¨{d²mÇ9¼‚]“ e÷áûJ¶ñyô9ò{AKäg&°²¶Ð}an[1@´ý.c]C˪M<ípÇ¥X ŽTìž'Ñ*(Áx (r4ˆfL‘l[˜}œî@_aÏ“P÷CŒ›lÌÄfßN«ui.ZuÑj©Ëp‚9hë é¾¿‘ÝI ž#¯•u.5b©gqëIa¼\Ëwe2|ñ9ßû´º5ØÓñÍÞléž>çÚcxî¦úœÉ®›2ãjM]¤Ù<ÊncRQc¾…Î`Cžb³²Åý  +hI­)lÔ$v©¯âFR +¤K€y=5m>qQÃõýÂÔÅt‚Ù± Í åás¨0a¹¬ÒbÎâ‚å%÷Ò\EUH1k8cfúKÓÍn:UÉUiØ,L™[Ê[Û ýPV•Œ¸s + +݇Pr“)/ç²m¿:Û†›Ù±Å²F七v"«`¥—\ É„p?­  ÎႹø¡8H”]_Ñ„”¼ýÝg0‚â i€‡¾h»k!7]Fnœ’ÛqÔgŽTáófнÐ&¦ |SHgÚq–/¦ŽÝkEþåfðý‚Þ=Ìéj6áÌë¨ùX3s}×ËϾ ¸ 58;¿!‰a|w9DÁ'QšüI ‡²ßC-99µ=´GHœÝm %ç¦ ÀíXâ’gÏØôÒ; +CjŒœ¸òQmQ—¾’ÃØ”]¾ +ä…µœì$SŒÆÍJƒ”L¶Iß  À‰£D÷Àr ax¦ž´ÉçJþTw”›ók„±¤?INÄ̧ŠÈkZ>\tK‘ÍOÒ‹7Þó‹s+.˜ä1@ŒŒ¸Oøül¼±Ì¶ƒ¤s„ûPW’ØÊt}¡Ý¯ÍÝ€ØY¡¹ C‹3Qi¢dè;bn½ñÍäñdRÄ©¸]I†cjèkY E”Æx…ñþ)u¡G/^×ÒPÆŽ(ùTÄÄ”3³JýöªÜpuÁ‹÷ŒI:E+ˆ¯wšŠh~ûÝB)˜gC*¡©j.ùáŽY Ã[˜·O[z"Ê!Ф+¸Ü×+jV+N8Ûñ € ¬·áHQ®Á˜¸ËÍå­Ê :ž©˜nØo¹À­5'8¡øÞð°êóô¨ßSª5Ô汓ÆCª å‹77Ty|MÙ `l·NØP}ÃÿÕYµçêUà,?íÉÂúÑÀ¶áûÍè³ÔI"ÿ¿Îßöïñý :“Óñ£ûEÈ^Žmµ¤7).¡:¿î#“'ˆÒcò ó]Ñˀߎ¬+~¥+c<#m æ-?J0Z÷+­™ãÁ"±ˆk1«¸ÔVØTÖ]/otÓÃ9ŸþiFâ‡Tö> endobj +4162 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 629.279 187.716 638.191] +/Subtype /Link +/A << /S /GoTo /D (intro) >> +>> endobj +4163 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 614.463 201.899 625.311] +/Subtype /Link +/A << /S /GoTo /D (start) >> +>> endobj +4164 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 601.584 178.003 612.432] +/Subtype /Link +/A << /S /GoTo /D (compile) >> +>> endobj +4165 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 590.641 271.873 599.552] +/Subtype /Link +/A << /S /GoTo /D (rtvsnonrt) >> +>> endobj +4168 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [353.302 246.891 400.818 257.739] +/Subtype /Link +/A << /S /GoTo /D (classWaveLoop) >> +>> endobj +4169 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [263.381 222.981 308.96 233.829] +/Subtype /Link +/A << /S /GoTo /D (classRtWvOut) >> +>> endobj +4160 0 obj << +/D [4158 0 R /XYZ 106.869 686.127 null] +>> endobj +4161 0 obj << +/D [4158 0 R /XYZ 106.869 667.729 null] +>> endobj +390 0 obj << +/D [4158 0 R /XYZ 106.869 667.729 null] +>> endobj +4166 0 obj << +/D [4158 0 R /XYZ 106.869 582.035 null] +>> endobj +394 0 obj << +/D [4158 0 R /XYZ 106.869 576.687 null] +>> endobj +4167 0 obj << +/D [4158 0 R /XYZ 106.869 337.287 null] +>> endobj +398 0 obj << +/D [4158 0 R /XYZ 106.869 322.336 null] +>> endobj +4157 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F14 825 0 R /F8 483 0 R /F34 950 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4175 0 obj << +/Length 2699 +/Filter /FlateDecode +>> +stream +xÚ¥YmoÛFþî_!ä¾P­EsùÎæ mê^›¤ÉÙÖ-¦H…¤ìºÅý÷›gf—¢D¥î`ÀÜ—™ÙyŸÙ•šyô§f~æFQ6‹ÓÌMT8Ë×'ß\œûÁ,s³8˜]Ý2àÕòGeá|ø± +˹r®ÞÒ, óÀwôªÙ›†¾ÊÉç ål jAQ¦×}‰YCËõü·«O¾»:Q†…çY:[n–F`ãÓÉ/¿y³å‰7ûñDöiì¹*Ëfë“0‰\_¥f^\žüs ¥b=‰f ?a¬LA8£…d,Òe†î¿úªc6ûKïzSø^èž¿¿z‘7_D$Vˆi¨<_×,Ò¶Âü%d" Eºôc>àì 0¾ó¦¸HY2×õRU£Í¨¿c„fÇšªÍìý`poKbÏ•¹)ŒD']3ëÅ»†u¼Ì/äÔÍß^Ö¾2uñ(ƒkýÀ'¿kuq_t†ÝÝÑ$p«yúâT]±’~þn¢€WeÍ$·ýßW]Á +?o‹Oì EÍŽò„#E·žë•«ÿIŸÍ†œmªÏ% p«·ÕH-/êJÜrmH5Û~Ą̃%“y(ó¹[ÖT+“FLµ`€;]³ÈE%›LªÒO7|T~?UÑ«äúáÃØF_4ÂÂ_f›ØöÖMÕsŠûX±Ÿ< Å=5ló¼¬XGº˸'pÈ&òð@~ª';ÞHSAFY(¢lSm >{Î5+ç-FŒ”zÄ?;ñ3@SN H™Ón‘ˆ˜_=V®„󀚷ã/—F"ßVlë’½´;"›n¹OΜQLAp+Û,Ã;Rëi°­`¬JÉŵ¬æÖsug3Vžó¾éz¿”} +)Ñ#@ySwÛuq¶âÅz°â²0|:róŠž5YèGV@ØÛ¹r òjãÔ²e#ckCÚfÄ@<јqn«3@­%&lñϱ gCnéaÐVlÂÌzpVÂB#l‡Î‹ÉS|Áþ—9È€Aè#s‘œaI(ö§@΃µOXR;vIg[>ׯÓ$7êò9îÑ¡:âѲ®«N.[<Û´¼Ï”ˉš©ï t’ЇôT\SØ1=o0É|Ü:žš¦àÚ è{Éù2Ý/9æÞá.ƒ®üÎçƒ8}µ]ÿF'§qmµ‰‡ ¬æÚz粺ÓspM-+‘Fæ¼oZ>_5µQ,O³Þ€L¿ oNEã¼2¹+ä‘P¦H†Ê\O0à6ŸK1ò½ÄL÷ên»Ù•Êv¸†ÂX±ðeJ¤ÆuCn€;HM £´z=Tï8 ¨@пFPà¼%ã-Ž¨Æ¸â¶ì+Ê$?ð@É XØóŒ£3¸•Ã0l’k®3``«YËd Q¶§…=ÙpŽÈ–ù<ícÍÞ.§ ó…Þçbè%£°Ál?8w.(tú¡êÝŸ£Áw£ŠéMšI{l…8AgK%§6çNHŽ)%¶!ÊæÌá¤ÐH çÔpÀ†©éJelU=q#«j-9Ck¤²È)>Q †äÐê•ä‘L´ìv`uÛ…YI6†rKc\äº ˆ}—šš¾¡ñÛ¾-o™e¥ÖyÛt„›",šd›ÙÀP%! 8ÜPW>N ˆÛv×  ù¡S±iÅhÀ8TÉa˜'Õ]Ñ–½@2y †„üµZ¹þ^Æ7ƒ·4áLYˆ—,åà Ç–tåËÁùeO˧ãÇ8Xÿùbx(ÙfD÷6[ˆ¸zfr¤OÛq÷PZ«ÄÔTî²80I¤´ùÖEAU‡$LÈ,ß°ô¹Þv†•µ¹kÑ'YR$¢õ^Œ"Y6çÖ º_¤û#°kˆ¸L˜N@¦Köô¡Âñ…žô;\J[1N¾4Lj'H2öΫÇlôwzM‚!6¯]Ù²ëg;¶ ×´²«4±šPAêeqP¹¤X•$CBP ™ô"4•fbE9ÎGMW<ì Þ†œ¡‘ÑOZÑÌ6¸ÛAÇ6Ì}ŸŸo°ô?Ž…Þ뺑dÒòã´0W®5w]4§7/¬?÷²f4K£Òd¼k$¾‡ÍæÆ–ùœí+šz j#û;f“Vø„߇$1Ü Àד¡íçîÖ!úY¾‚‡„>ºhÓøœA¸‘Ýk‚LHF;5Bƒ<#bl¹A_D°·±¹i)siUh0tÏ¢>hj×ÂЈKê˜_omûÛÒÓ× S“qï¶A^&¿éÊ]Ñ­ Lûß6Ûw³\j|¥Å|×ÌÉ\ 2Þ5€6> endobj +4177 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [159.671 437.852 207.188 449.808] +/Subtype /Link +/A << /S /GoTo /D (classWaveLoop) >> +>> endobj +4178 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [284.897 437.852 311.519 449.808] +/Subtype /Link +/A << /S /GoTo /D (classWvIn) >> +>> endobj +4179 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [335.339 414.496 361.962 425.344] +/Subtype /Link +/A << /S /GoTo /D (classWvIn) >> +>> endobj +4180 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [180.943 283.605 207.566 294.454] +/Subtype /Link +/A << /S /GoTo /D (classWvIn) >> +>> endobj +4181 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [229.852 283.605 264.5 294.454] +/Subtype /Link +/A << /S /GoTo /D (classWvOut) >> +>> endobj +4182 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [339.801 218.16 356.461 229.009] +/Subtype /Link +/A << /S /GoTo /D (classStk) >> +>> endobj +4183 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [411.366 218.16 428.026 229.009] +/Subtype /Link +/A << /S /GoTo /D (classStk) >> +>> endobj +4176 0 obj << +/D [4174 0 R /XYZ 160.667 686.127 null] +>> endobj +4173 0 obj << +/Font << /F23 479 0 R /F34 950 0 R /F8 483 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4186 0 obj << +/Length 1815 +/Filter /FlateDecode +>> +stream +xÚÅXëoÓVÿž¿"ê¤É¡µëwl“¶BÑ F3õðÁuœÄªû:!Cüï;çü®§i‹¦}˜PÉ}œ÷ëžcghÓ?gèØcË £aÅÖØñ‡i9ø}28¿t½alÅ¡7œÌr2ýh–L/òW™RùÈtŒåœ<ãJ%µÊ¦£Ï“×C?­Èk$'øtðr2p4OÓ¶¼8šžGsü2øøÙNöðõ€ï¢á†Ö¶åT9ðÇå:‘Þƒ«ÁŸ;RöÐtÇ"g'xt,÷d1r#£mÎHVß6ÔÈ1­½Ø˜ŒHøjdÒ}UÐù›\ñEd¤¬]²Ä¦¥›†4—Kº¬ê2)ò¿•W¥IGî˜Ø”eš ¼ ǘÒ™~h“|è†Î’>£œ–ª[S,KÚ:ލU +EA@ßqI¶)/ˆë3¯ê\-hQv×u†“.™ÀŠ…*3Ë4… £‚~暣Vu!.€h§L±ñ&)WE†›é–áÅ é}ª$_óRœD`¾ÕŒã”ÎMFu,ZÚäBì³Ø‚"êe@»^ÿ±ÄiâzýŽ=¨°ÏIÓˆ ûàâF¸¡¸ïáÅ/¾A|º¯O(ú$+¶j]Éÿy¢²B‚Å3f,X¿`…ã0¹ÀAw!œ*–`ÉQòÉv|0¢[ßÈYÔU«Û .ø­b†­²v"­ÐõE¤KÁK +’„˜SÁv«ÉÒ1Œ…Ž<7&Ý*Ž,^íã1OwqzŠEV×Z•º[ä\ÜØ7fíR¼m:ž”b.J0äãݰ’y¡€‘/9!<Ǹ(Àµ!sËfAÒk=6’4í<#îä31YÖ a¢sXw Yëé†IH6,"£¬]àÁegxÊ‹ +°µxF2%/õ]g‚µÂ]maœ}8Ü—ÉYÍñá±q’& +Êà iQHx'lªº+FgžÅÐñZ1üšièóìkrèB–ØU[ €ø„ªÒ®RmjN[¥¨:€Os—3Û 4ˆ˜;:Ä—‘ç—ž?¤j=Fq6]DzÇH˜óó‘xT8(JÙ™ÌJ)‘:{Ñåú'¼=iÑJ%Í×1Nxs¬…ïÛª-2¤&[¿ ãP×kþ}Ç FìÑ{ü!¤Z™H‚,?ÙMÎ1»orY~÷;¯2……x’óB„¿áâ*V¡r*ÆÔ÷5U¬n²™‹ZïÓ:qDœCÄ´jÅ%Œòe£ð¼é̱Že¾R·|÷ô)Êžº²¨êd%€KS`ƒ…ïK‘¶m±š>sÐþÙ=6$G å·¢*¥†`<-WmÏÀÏ!µýìXJòr}ßÃ?ŠT %ÒEÕ[ÜîÝç¨0v¾ÔÆ–§–E•L;ê×›y63½“‘èdÀY^dÇúÀkRÜè90—HCl®ÅëÝ:¸ÆIÇo£A¬ZXnNÎ0ùÀû¿^þØ9?Ô¸Zq58Òx*’Î’¶è™¾ÎðV¢c,5)y¬ÄOUȬó´GnV¡ÍMåLX$KŠ—Hd{#¬ÒÛcÓVˆ†#Û +m[±€w ¦¥¨fSÁLæQp|?fE5œÑÒ81N/©~÷Tú>x$ôæÎ/ä1Š@"B·«ŠtP²´µ¥™úµÉDÄË:û"ÇJÁ–eE*Û–­3Üy,BÞl[x •”Ž4/P}TUëÐï›À.¶mß­tͱ]g–±®ƒG6Ï)¹Qß~ÙQíNNyÚ™ÛyÈܪî)óL?è9ÿaÞî…Ò…‡®Ð:ÝvÄüÿu, ­ÿ9–<÷-× o Ñ#¬žb$Ø}š¬{ÇváyO‘¿ [Áò«pÈnëåAÅ7žßïhIæEÓõ,‡å{ž$¼n¾È¹—¤¾%Í£ÊS†&““[!t?^7Lä¥ô^[I9üŠVXsÐÀ+i"ç5÷kÌû®®- :@ZúzlÞi«»BÆâ¸¯ç4ݪ?4Bb´IxºóC_tåߤUUI#m*Cƒaž¡Þ76”žbéÜ“ â{!¤¦ý±æ¸¤Ž8òBvJºÑj„—Áƒ}«É};7×2vü´A3Ÿ/0ïÞù¤@jÄÆu£ÿø=_&´‰vCüaHm«øQ…÷ãŠæ[Oœ_³õhL›Œ;”ö?ÀÓUÈ·œ`Ê0Å‹&°Ååû*Ëé“~/˜‘¼Å™;Åæ•x±vd{,“‹HU„~ÖLºÂ‹w&ÑàÆ¶©í:c¤/²Â ö›®Øµ ä¹)Ðp=Ë8®å -6!>ýÄÌ+øæ¢»×þb €—endstream +endobj +4185 0 obj << +/Type /Page +/Contents 4186 0 R +/Resources 4184 0 R +/MediaBox [0 0 612 792] +/Parent 4170 0 R +/Annots [ 4188 0 R 4189 0 R ] +>> endobj +4188 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [240.974 630.369 267.596 642.324] +/Subtype /Link +/A << /S /GoTo /D (classWvIn) >> +>> endobj +4189 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [290.53 630.369 325.178 642.324] +/Subtype /Link +/A << /S /GoTo /D (classWvOut) >> +>> endobj +4187 0 obj << +/D [4185 0 R /XYZ 106.869 686.127 null] +>> endobj +4184 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F34 950 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4192 0 obj << +/Length 2698 +/Filter /FlateDecode +>> +stream +xÚÕYYsÛF~ׯà›Á²1‹ÌàØ7­ä¤+²c2–·’” !pP²6~û˜Áñ«¼®Ý”ª„9{º{úú†rÀŸœ¨T“N¢$±Ô“üþä‹“¿}§ÂI*Ò(œ,nhábù‹'Óhê‡*’Ú›O¥·x½D{o¦¡ò²Û‚{ç |¥—O}ém`Õ=6Š×ôY_b¯ázúÛ⇓—‹iùð¦ÉÄEšdã_'¿üL–'Á䇞{„v dšNîOtl„’‰íW'ó“ŸR2”ÂÑÄW1‰àdJEÊú¾ ×ÀSœ‡±×7üm‹¼™ªØ{˜ªÄ+Z¼umsÏÆþHý‘›\Ö‚¸#MTY»l›ë +>NZjY½„‘ØI¼ò†»MžÓ¢®Ãÿxü¦zÁsD¹©§*õú²F.7D4 âùRŠÔsÝNQí>,SCöê[àÆÕDjêˆõãë:’¶ e +[¤ÒÞÞßý7WLaKÀIàïž–ÊEI6±ùÈ›wîÆW¡2¤­³„•wK|×Ng(PFŠHBï eo6¼ð±¬*n±Ô×Ù5rú„c¡÷ˆK3RVÏ«èºauGZ)¸ŸY©Ò-g2Õ"Jµµ³»â¦¬Š´—ŠíªÔVË$ŸÃ¹žùjÌñm›Ýwt‹¾ÒP¼#:â»D3ñµ +¬M}c¼ß ²…¾S?Œ÷Ý´‚Ö‰ëú,,;ì€gxD_æ2Ç-[Ò(ùhUkå­Èf€ãGô‚‚ÝÀéÞ®éWÓEÃlªŠ×—xM·<Á×çtð“(ìEÒ$Ò¯ ¼ç0d +Á²È®7¹Û=ÑÕ€³ÂZùwVy¨'àà±³™X)Ûëís\ ÿ D"ÿ +;raÀàüópàbv‰ŸŸßxßù‡íøp1£›Y\¼¤îËËsüÎN/yÚoxSì¢é4ÄfΓó;w"_s„¡Á«"S º±õš÷_e¤Ú‹¦¡Å°ÇÍÐú×›^e7ü¶ÿäÄ)œeÙìÚcq—+¿¢N¿jiM¶<ê•© {åb…ÚË8”lC½·¶þÌ™ Žu$cÏܱ¶4ðz˲uî÷MûÄ£ý*³;(ØäÕféVÙ£ÈÀéC¡ݽèÝWE‘ЉsLÐè"'í kbaBççd$¸]±ñBÔÛäNŒm3²}rj’ƒ [.RŒY2†Z[ŽÁD›=°)Gc–TÈ¡ $·ç¬àê(UA{˜¥ â°“Ó:5VõÉ}í¾Y(f©Œ(tƒÎÚöER‡”‰ˆ!ÔÕqõ0«mœˆïjšè]­ ­CB‚$ºÆ5Q +;^#½í¾EEöW02R’]røyKqü”,¢l0øA]¬ÆIã“Uµ¶Ñð=¶ö²Ù¦ýDÞÌ›z—g<»,8}¼àÐtOÄê&Ôò[µúvã*t †âeñ¶kJãw–e7Ôö’–6€f}ÑŠA¦XDŠeú±é€¬å"ÑmÝð‘]¤Š“ŽÇ‡cÚÖÊÛŸìdƒZ00Jv=„[dĨ²‡­4@$ ûÂ]¯1ýÍy0³wÈ3$|‹#ìNŸºŸ%N”¶@#¾Át¢¼–OÚ¸(„÷¡#”­*.è—µSÛ n¶ä+´y\sz1?åV†ÒSXÅ2׎Žfz$¹£eI±n™áµe·:"QONy÷Ù5:ÇÞ¦³æ¿Æ«3ª-Fk˜QÜ{ú¦fÜÎ]ò³‚¾@ë¡2g+ÒÀwÜÑt?Dæ¢U‰eTKWñdyĻ٠5aïš¼ÙníÖl¥t¼DÎÒF §(Ü„ +¿6ÒBJ5&ÛŒÝǹöµU¨åÛë-\‡ÃX]©å"`&T6 úUÖ5›ú0íi)í4ÖÌ"Ý)ñjƒ ´Ò—+ÍöêmŒ ¸iH`V 5¹GÙÔ¶è BÇÆê+âܰj6>ôî‘åÙrbv“1°J",ÀKÔ>¬ ôã*à*Š õU$hf 3ÓCL•ÙÏï÷¥P‘ˆ“o69ÑþÑ€&uúµgÿ×UwÍŠ#@Ì—G4ìôÁ”U¢öñ˜²xlÖº8ý9D¶`ß„Å}?b' /›Çy‰R5ÎW;™G#ZŽe˜qé{[j•Ö¹˜´É¯ÁT‡Jƒ©bˆMk7q  è¼Úñh½– ‚‹nK4f‡ôÇà„#Õj·˜ û]yOI9kYBmƒy25`BJª·¼r[™B1ÀàÊÒØ/›×.ت6¤¢ ¿¤›Crc€S9×h%Abk8¿i¨t°8nÀü‡,o>ÓRÝAõÞ>1cY³¢b²²qç‘÷9TvvfÖUF…ee¡v”ÍðûvöžÐÕéÅŸ£¬œ¾aÁ(%ÂO£,B¦v`Ù× ¬ÜN|eí?œ£†ûŽZG½*ëeƒO'd+Ç|Õˆ(à[Å*@Ç{6¬t‚¡Í·]SCu€ j’¦æV<Ü)íXÚ±’ÜZïJ—}6ô ãgÏŸÛ…«¢æ–ËÒdTîU'Ö;n(\|9,KzkþMŠƒ»0®ø½ô@ý Þ´A;Åöð4ÑØÃ¹TÅÁ› \¸¤G9c¬tØzWv›¬âöÙs{€dØ&Fêg=¯¨‹¡Öƒ^v¬¤#ôÒ´%ÕPâS‡ÆrÇ;n¯¾âêm̪û©vKÚ–•FüƒµoÍóB,1¼Êèhˆ$Ø~‡e]î:ŽJ{i¬ŽQÔ#2ºÈñ !A#z» B”q“Ä·©}(8(Ëíïx/¿q=ÊFKLJ1õðM!I}Á“”›2po™«4w_ £}É[@$Bª¸(‹…®ÿŸôˆPÃŒâ>»KŠk ªác#NøE–1>¼Û´7͸?Ž€¥hG[çãGœ9% +ʺ:`z×d¹í¯ÍS '­xKªËƒW%Â@js7À"?TT[6ð,¹…s.Ö"Uϸ´¡¿$A–qÁµC= S:"±•,°î‚Ö\.GšÑZ(©wJø­æv~÷"#£ð­7Aþ*ô«Ùåùë«ù¾(a,”þö§Ÿ J’ä^¡GB›ôÏ+tëø;ð"ø¿ƒÇQÙŸÂ÷¯\‰@~ûÃ_^žÏN/¤…kÿÄ˿ع×Âe¡œ^·H@2¨Û‰¡RBÆée÷Õ?–‘tÇkÐ X뱄üth¼9"ðŒÈ%HÇèg1•AÄ9Å£º¸zUö<…e1îcç{ŠÚ¼#bŠy†änS[p„ÁY¥0&m(É?Oæ6™­È¾r‹ˆHF.Ï»n¤©àö‘VšåÉñwRÏü¡‚Ê]ß?¿nÁendstream +endobj +4191 0 obj << +/Type /Page +/Contents 4192 0 R +/Resources 4190 0 R +/MediaBox [0 0 612 792] +/Parent 4170 0 R +/Annots [ 4196 0 R 4197 0 R 4198 0 R 4199 0 R 4200 0 R 4205 0 R 4206 0 R 4207 0 R 4208 0 R 4209 0 R ] +>> endobj +4196 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [485.948 455.238 502.607 466.087] +/Subtype /Link +/A << /S /GoTo /D (classStk) >> +>> endobj +4197 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [159.671 443.283 186.294 454.131] +/Subtype /Link +/A << /S /GoTo /D (classWvIn) >> +>> endobj +4198 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [191.748 443.283 239.264 454.131] +/Subtype /Link +/A << /S /GoTo /D (classWaveLoop) >> +>> endobj +4199 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [244.718 443.283 279.366 454.131] +/Subtype /Link +/A << /S /GoTo /D (classWvOut) >> +>> endobj +4200 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [284.82 443.283 330.399 454.131] +/Subtype /Link +/A << /S /GoTo /D (classRtWvOut) >> +>> endobj +4205 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [176.821 152.715 193.48 163.564] +/Subtype /Link +/A << /S /GoTo /D (classStk) >> +>> endobj +4206 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [197.569 152.715 224.192 163.564] +/Subtype /Link +/A << /S /GoTo /D (classWvIn) >> +>> endobj +4207 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [228.281 152.715 275.797 163.564] +/Subtype /Link +/A << /S /GoTo /D (classWaveLoop) >> +>> endobj +4208 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [279.886 152.715 314.534 163.564] +/Subtype /Link +/A << /S /GoTo /D (classWvOut) >> +>> endobj +4209 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [318.623 152.715 364.202 163.564] +/Subtype /Link +/A << /S /GoTo /D (classRtWvOut) >> +>> endobj +4193 0 obj << +/D [4191 0 R /XYZ 160.667 686.127 null] +>> endobj +4171 0 obj << +/D [4191 0 R /XYZ 160.667 643.874 null] +>> endobj +402 0 obj << +/D [4191 0 R /XYZ 160.667 621.135 null] +>> endobj +4194 0 obj << +/D [4191 0 R /XYZ 160.667 585.27 null] +>> endobj +4195 0 obj << +/D [4191 0 R /XYZ 160.667 585.27 null] +>> endobj +4201 0 obj << +/D [4191 0 R /XYZ 160.667 368.816 null] +>> endobj +4202 0 obj << +/D [4191 0 R /XYZ 160.667 347.15 null] +>> endobj +4203 0 obj << +/D [4191 0 R /XYZ 160.667 245.071 null] +>> endobj +4204 0 obj << +/D [4191 0 R /XYZ 160.667 234.964 null] +>> endobj +4172 0 obj << +/D [4191 0 R /XYZ 160.667 117.846 null] +>> endobj +4190 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F22 474 0 R /F29 818 0 R /F34 950 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4212 0 obj << +/Length 1726 +/Filter /FlateDecode +>> +stream +xÚÕkOÛHð{~EħµÚ,Þ]??¦¥œÒB¸#¾ã¤¶LlŠU'NmŠúçok“:QîŠ"ÅëÙçÎŒgF ]ø©¡rC©ƒhD± •7œ/o’Áá±6ÃXÆ&Wt2É> +_jיȎçÎH‰<-[|‹ü·Œ¸i¤3ò•Ój9zàµk„ŠCçsò~ð.(+ÊÈ•&އ##ãÈGA¾ >~v‡ÙÀ¾à^4¼…µ+œZ ¼äQ‘}/³Á=)wlHü^=Tž4^°­è:)¥A©ó¥Lò¢¸ðG T-ôA5 v® ÚÁ$嶃^‡ÇѦýP/&ž§UÆ0q(ª+|¢½fTPPÌ`y·tt$èuÞÝFH°o…Uù¡h}ŽGÊ´iˆ»=šÖ9/V¨MÚ^U5, +–r\¥Häü‚¸À7-(_$שe°`³,¤º¡>JÉØ÷I!ŸÎzq¯ h€H¬ÖeÆ yµ@ JV”9ãUKÞKIw‹[ç)¡WÈ:½,K5óu]oKÍð·¯^Y„·X¨>«ùî¼XjÖà€qµFât|´¥\ÀÊ̼k[Á´/–ï<Ë3]¡Š5¯kô‰‚íÍŒ˜®ÑÎEeß–„ç‰ÓÉÑ„AR]­á¯=¬Ö-šgݾƽ@ ðy‹Bg4FiiÙÍÞ")n¶mÜÖ¼bïª+Àö\ßÞnÓ¤_r/2Æ7d_4VÃÓ†¨×y3­òŽIíúQãïWÖãꔬ³ü2jØS»I›[¤O®ïžt ÅádôV¶…>b”=~qsÖ;ÎpboÑÂBJ/GëUßw÷O‘vV܃Rnu ×ç](ï0FûVtÝd¯丰¹ï‘ + ayïÁ™Í´€šô)ïÇ6ZÑÇ9=Ü'>Ü[#‘z#3 w"ù¹ÍbôR-»l8—ÝåõÄ·2GÖ¡ðó¤ ¯Ç›úŽÊ¡˜ÔEg¿ ê\~_Ó Š›¬Bô[ ¥À«çßçygÆ–ÁheNÓ|ÚjèZLé"(2è½¹kZB_X’ë.žˆÝòçd÷“«‘:Ö(¥’* ÿê©ÌÃß\#ÃÀ‡Õ“H(3 þhÇûEÈÉdúçß{z2 ã§3a~6›í²V4êɬà ø¹ÒGû¿Þ=’ʼ_MòuéÑóó¶ Ø˜Hz‘ÚªÆ'³ñ^kÀ#b£ûƒ/Ï/À®*x~19Ÿì»…’¾÷ä‚ñÉ^*PÒ~B*øÉYôÁ+6X°îªIø¼„«¿˜LÎ.öÒ±vÖ{~îG³/?úßMHÏäòW}™…Gm«4n5êaÀ5²«X, +Ûоäd¨BMSXÈìÍÕ ÕÕš«kès^lô&Ñïαö&ý¿¶Méº_m[„¢k|bëg¼¸´1®ø XÆTf&Ó‰%Ä%^/’-×Ëœ™®•{¬w +cA] 7j è»X£ øÜ,jqÁ‹;·5™û®È¥ +­:¼ª±;&Zü¸q|è¢ê"ïPâè€HõM%BQ´®û&Œzó‡;w¬=¡ÐTJŒá_‹¿ÀòjÅÙôˆVZŒ'HàðíÞ騉<‘Œ¶ ‡{aÈŠá¡ó1QÅ"ëTÉÐÉ?çX]—Ü2¤kžqòã:î¶ìL7²õ<ñÒ基Æaʾbäá_s{Û_¹M}í~1~uQ’œ¼ÛËZºêù™¿›MÆÓgaþ˦A6ׯ<ͳàõ¾}4^G HÝý`»YKlÍ!Gʃ¢Ò÷ hŒd ü¡¤²CÉĉiægBO¼ÉyùÙ/ƒé°[­i›Rv̶}»çz2pÃ'ÎWyRkC®wì‡Þ¦•üxƳ;ÓǸëgšžAýäzTÐÇÈ&4ØÄ-h_ “†z¸¸Dw¼ù»c‘S¯o!ç’Ÿo‘üʯéÒöðøò[Ú{2Ê …Ŝф#E.7H¾Zæü= £cWú>´K`”?öFý{­GZú®“ì@6Ç*ßžÛ°ŽÒpÆš‰‘•ÿC»8Žº»ÀÒïNµendstream +endobj +4211 0 obj << +/Type /Page +/Contents 4212 0 R +/Resources 4210 0 R +/MediaBox [0 0 612 792] +/Parent 4170 0 R +/Annots [ 4214 0 R 4215 0 R 4216 0 R 4217 0 R 4218 0 R 4219 0 R 4220 0 R 4221 0 R 4222 0 R ] +>> endobj +4214 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [138.232 567.566 183.811 578.415] +/Subtype /Link +/A << /S /GoTo /D (classRtWvOut) >> +>> endobj +4215 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [187.887 567.566 225.441 578.415] +/Subtype /Link +/A << /S /GoTo /D (classRtWvIn) >> +>> endobj +4216 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [229.516 567.566 273.573 578.415] +/Subtype /Link +/A << /S /GoTo /D (classRtDuplex) >> +>> endobj +4217 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [277.649 567.566 310.775 578.415] +/Subtype /Link +/A << /S /GoTo /D (classRtMidi) >> +>> endobj +4218 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [314.851 567.566 358.631 578.415] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvIn) >> +>> endobj +4219 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [362.707 567.566 414.513 578.415] +/Subtype /Link +/A << /S /GoTo /D (classTcpWvOut) >> +>> endobj +4220 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [418.589 567.566 448.809 578.415] +/Subtype /Link +/A << /S /GoTo /D (classSocket) >> +>> endobj +4221 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [125.518 555.611 159.086 566.46] +/Subtype /Link +/A << /S /GoTo /D (classThread) >> +>> endobj +4222 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [363.57 514.077 393.514 524.925] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4213 0 obj << +/D [4211 0 R /XYZ 106.869 686.127 null] +>> endobj +406 0 obj << +/D [4211 0 R /XYZ 106.869 667.729 null] +>> endobj +4223 0 obj << +/D [4211 0 R /XYZ 106.869 479.207 null] +>> endobj +410 0 obj << +/D [4211 0 R /XYZ 106.869 464.194 null] +>> endobj +4210 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F32 881 0 R /F29 818 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4226 0 obj << +/Length 2773 +/Filter /FlateDecode +>> +stream +xÚ¥Y[oãÖ~÷¯Ð[)ìŠËËá­/Åf·›*n 7vƒ¢I(Š– “¢BRö +ýóofI¯äEáëp.ßÜŽý…Gþ"ÈÜ(Êqš¹‰oEsõÝýÕ‡/A¸ÈÜ,÷|ð~û‹ãgér±oœ»¥ïÜ_Ó,5Îí2 œ|WÊìsK¿¾S,W¾s¤S åg†|¨0kiy¿üíþ‡«¿Þ_ùÊÇÊsÃ,]¬B7K#°ñûÕ/¿y‹í•·øáJö^hì¹~–-š+“Dnà§:¯¯î®þ1’òCß¼x± +a”)XøÆ M<*r‰› ¾ü€ä:§¾3ÐÚcÙWýre<§"X¯¯«%ŽðÖzßc·cq•‰¸râ¦0{Yêu>údo¯ ‡…1n‹•O ‡!ó5”ÝC^@©IäüêEÞÝõú†®¯iìãÒ‡/éd¢•¥@"›Œ Ü?‚ýÀøÎÖ²Õ]µ¡µD§²=<Ê>Æu>”=öÌ=þðó2HåB·äK¾´{¹âC>sÅóª9@I|¡!ÃÓe^Ž{Nû ¿w׿f-—ÚN–çÌÀAFKåøÑžÕ呦|7‹"t™†0}¨­éÌSĖaèT{ùýôî XŒ\ak0x’ñ-KÚu:ýÉÕûJüɽ‡fAvJ ÷0tÓÄÚë…ª÷V0¾ŠÈà;™le6Ìv6%~ %Ý‘=ä/,ÙÊ Éb•¹i,@ø[ŽýçR®±_µûQDâò"ŸØo…`Wæ:‚øm+ÔƒÈ5^4'þQN0¶ˆÆZè=2Áêéè^Z@ Å.ù¹.Ú‡î.ØŽùþ©Ç4=ˆ†Ÿó½a»áê±ä Aë¾óžö²ÄùÎÂ-WzßçÓØëÜ~è{b‹Ñä®ÈaBFl»/僸×ÉÚŸÇá’Zæ,÷¯z™tåsÕ¾¾Cxˆ½ åv›J@Ýïd¼é\]¹/»øMÄu)å²µ;M«¦ª9dÔ'X p0 K$yß\æÚ0×¹ÕæÌ5G†É:e+—•~ÿ dúf4 Än?KfÅZ-¼[a‚rlŠÝõVí•@E¬¬VN‰0¨ŽñŸòÕ¨å˜ÇÛºjƒa1@G©š•™hA®tlJÙA½°¾ σ¸¡á LŒ‹ƒ(‹CŽ}mWÊ TŠŒÓn€ 3ynº~l˜Å^iŽ…™“ɲ®O²»ð]’‹–gî¡7_ºj8K¤DÂ)ÆdA‚½ˆ¤Ê-ð. S—¬·à•R'[H‚n(è­¨árþÙ—ãi>Yn«ÁV*X¶%ˆÈ]P)>?Œ¹ÖFŸp¡šáÔª{]ËI:Ó¤›9’ˆ™Y¸±ñ=À÷›}YËš¥¦(›«ku“§Ôþе × e‡Z‰Xÿ{›oå¢Ò¶*³^Èuo”5•|¸"v.úé“:¡ JîýcYjׂéxÚ90<°ÚY(ùZÚ4Ò—¼‚x¬RéêP5H¨!iû5e›ÃY—K¬§V¼ìœ{-9"Ï™òw-ŸT‘\xTåè’Qä”CgÉbçö(}fq‰Bj¤%y’-.^#ON’H‡©Ñ+ª¼–Í£ÞAl4ºÔ|™!Gƒ]©>q-Íqꂈ{{ÿ+ºÝ(uvc!ÊSÎöl^jžVi@€¨ì?‘ØWjK\émb£°0íãw \.îdãjø áœölÄÆæ!g]meMªŽŽ”Þ^]îwœ•©¨m$ÐHÛ»”ç¥Aˆ©°«ú'9Ô¸‡7^ö²(>nú–+uæžvî-RÇú—ÏwºMµª ^åÄN¾«­K¹ý#™@óf<]Ë{ùýx÷iÍŠYË|ËÑPCT5å£B^ +ø +.† †N9AÛ|ÃoOTUKíÀ磙ÒpÀc‘ê-Ûôc??åí1J%=›6Ñg™AbµDm#¨ÕG É“Ø šN¦ž T+|w,í;%v »=5¼´zÐ<†1xªº²@©÷‡ùžÐ2• +˜5bÑž{qóØOØs=ÐʉÆ:çœLaÃÁd«6éOïå×§îžV=™ «s"ôõükeˆrÁ9ë¢öZ]¨´½ê¥Hà¬zò´Åžç÷üaÃ/ÜŠŸ¸¹ X 7’ÑXÿò$çXó¹¬D^¡m3´([ý#ƒè 'šj»µ p_Yý¦±ŠµC´¼1ZfŠLsx1ªóQñ*­,F*ÁˆóÔâ<<ǹ‘«,\Ö¦í ¢)ƒ)Miͦ§ ÐP01¯»²Sz«³`[i]‰—~K‡nÌnܶ{.§ÒTË@î—h&/†™Í›X’ÁÔ>¦èyê²±V’W'S‚«D+¯w\>‘b›³™Œÿèˆ"ß ‚ôÿý·IèR¬µ2þÛÄ,b7KÌü¿&÷ÇPgÏÿ0‰¦7z”8!Þv}*X |äðx}×hlUúp„ñ§w˜¼“É„N2¾]†1òE]ùÉÕ+ J¤Ÿd +g§—oÁ+} 6üšïSÙå*ŸEòÏ ÛòRJö #ïŠ(—“^yKÕ—Åh{ž þGû±­ +"=7S¸†i…Y¦ÿ2Ëð­è?çaXþøj³ endstream +endobj +4225 0 obj << +/Type /Page +/Contents 4226 0 R +/Resources 4224 0 R +/MediaBox [0 0 612 792] +/Parent 4170 0 R +/Annots [ 4228 0 R 4230 0 R 4231 0 R 4232 0 R 4233 0 R 4234 0 R 4235 0 R 4236 0 R ] +>> endobj +4228 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [401.96 608.856 431.904 620.811] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4230 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [159.671 425.839 189.615 436.687] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4231 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [224.967 346.219 254.91 357.067] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4232 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [475.431 334.263 505.375 345.112] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4233 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [244.878 309.8 274.821 321.755] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4234 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [449.69 298.398 479.634 309.246] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4235 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [205.757 152.715 235.7 163.564] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4236 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.976 116.85 214.92 127.698] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4227 0 obj << +/D [4225 0 R /XYZ 160.667 686.127 null] +>> endobj +3096 0 obj << +/D [4225 0 R /XYZ 160.667 667.729 null] +>> endobj +414 0 obj << +/D [4225 0 R /XYZ 160.667 667.729 null] +>> endobj +4229 0 obj << +/D [4225 0 R /XYZ 160.667 492.69 null] +>> endobj +418 0 obj << +/D [4225 0 R /XYZ 160.667 477.927 null] +>> endobj +4224 0 obj << +/Font << /F23 479 0 R /F22 474 0 R /F8 483 0 R /F34 950 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4239 0 obj << +/Length 3069 +/Filter /FlateDecode +>> +stream +xÚ¥ZK“ÛÆ¾ï¯`åb°,"x?’CÊÖÆ±¤Èr¼[öÁöKbID @ V¬üùô×Ý3¸XçRÕr===ýî†ü•Gÿü•ï¥nd«$ËÝÔVÛãÍ·÷7þ.W¹›'áêþ‘!ïw¿:±DëM˜EÎ/kß9¬ÃÀ¹ÈüîÝ›ÞümýûýÛU'n¦zÄÏs¬ÞüýþÆ×7žæùjºyã¾O7¿þî­v7Þêí ö²Õ=—ήŽ7QJ×ú™Îë›»›YTAì†^¼Ú)“jhÏž“þ°& §\o|§jˆø=ÑÆÎ m³2g Õ®­ër'[X¼ÈøŽöðBÌçXö8Ö{Æ×»ëMœzηçA ‡C)Þþˆ Y9uå¶âÓÕš/æU¬ñp E>ÔÉ€[f«·Úø¾›Çñü9a9çžiC§íä·Ú7mgpíhà 5Xù‘F X³1Ü‹|bm¦&`Ù÷’2‰Ø·Óà‡÷ºR×­­ƒ¬Z‘$ U§Å†íGDÒyô™˜Úú§Ù›«GÍ  \¾U:&^Û%‘ðG.`í¯ôH3‡áùCË/…ÍöjUv±A¶€×®ŒïM}j¬ $MµÃpZ«j-Ëõ£¨HÛ‘ö¾2€ÒyàÞ¨ùíMˆ½"`^³ kÚq›r¼¥ª÷ý´)¥Ù<Ÿée­j¶œHì¦P¡^C'ýÞ¸™[¼„¨®LDÁì‡v(?4âþbèæä™BžKM“«­—»·½±‡0¡‹†­šmÄš- LSÂX6\µpÔœeqÆ ±k +¡ ø¦ÂY˜ÜŠð> +ÀÄQ“ +ƒJ’³ä¹5¹!ßþpÖ, +p;œm ûRw¸_×M³…HÂN+0À¹a£°œÏÓgŸ »Ï +EÒV7Ž¥V§ûu9ó^¶T€Kéò9.îíh3²9“6 E +NÒ¤UqÁBq@‹W™¶H#fÚ‰ù]9üÈ.ü¤øe®µñÉÝ +^6üIû*Hb¶Õ^Só A;k(;̓4»Ï´÷A©m~’¾¸ú]5AÒôb>Е¡¼ù8~õQÔh޳·[¸ªàüµ¾Ø®:­¡ ™Ô­ÁÛ˽‹_gО–„×>XË1Oº`’u¦ùUmæÿ³ó›û†¿ n?L]ª:И‚ÎU‚•æ¬wmcT„êGïÚç,|ø°]“Qe(Œ’~‡¤²leàžäTQ|/ËÎ8*¬ZÃ6Î& LßdÚà sŠ0]aMÆ&A¼ÑÊÕj¶k¢[/:‘±?UµÝ„¯+^ú¤`¾ïƒû¥líQ*D_aÄmSíÍ…¾i—u]-@,ù +pc°-MºPuU4Ûçã¼ÉØsÏÊ hΣTæ˜ÿrÕ¸XȰÄÇŠëªl¸CA(žD‚2释Û6”¯KÜçJ>¡¦Ü´ÃìVñ¼ôýÎ~ü ýyŽcó }›—aü¸65U;èîS5ØbqvnúydöñÙ|ôŒ‰_AýߟõK¶²Ö~:V‰›§Ñôûó=B c玌;ŒGãfyRb¼öQÚ£NÅ_bþ»j­ªÑ&Ý×_Ëà.²ùã:L&“°uå'W~_Y‘SôQ$´Ñä¶IlÑødÚ ¼Û¸á3P·|¬”ðäžÇ!=;ð¥9µÕFX<¾x¸1칉Ÿ¿+Ü„3~àFŒ ,4ÿU€îŠÿxøõ#»ÿeõøFendstream +endobj +4238 0 obj << +/Type /Page +/Contents 4239 0 R +/Resources 4237 0 R +/MediaBox [0 0 612 792] +/Parent 4254 0 R +/Annots [ 4241 0 R 4243 0 R 4244 0 R 4245 0 R 4246 0 R 4247 0 R 4248 0 R 4250 0 R 4251 0 R 4252 0 R 4253 0 R ] +>> endobj +4241 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [219.358 654.832 249.301 665.681] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4243 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [105.873 573.672 135.816 584.521] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4244 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [105.873 525.852 135.816 536.7] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4245 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [239.096 501.941 269.039 512.79] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4246 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [119.295 472.362 149.238 483.21] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4247 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [305.465 460.407 335.408 471.255] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4248 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [386.151 447.898 416.095 459.853] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4250 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [142.682 355.336 172.626 366.185] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4251 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [156.941 265.981 186.884 276.829] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4252 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [421.633 265.981 451.577 276.829] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4253 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [382.159 128.252 412.102 140.207] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4240 0 obj << +/D [4238 0 R /XYZ 106.869 686.127 null] +>> endobj +4242 0 obj << +/D [4238 0 R /XYZ 106.869 632.111 null] +>> endobj +422 0 obj << +/D [4238 0 R /XYZ 106.869 626.277 null] +>> endobj +4249 0 obj << +/D [4238 0 R /XYZ 106.869 425.538 null] +>> endobj +426 0 obj << +/D [4238 0 R /XYZ 106.869 407.941 null] +>> endobj +4237 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F22 474 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4257 0 obj << +/Length 2704 +/Filter /FlateDecode +>> +stream +xÚµÙ’ã¶ñ}¾BoK–W4 €WÞ'›Ìn9•d”ʃíHâHÌòIj'Sùùô:Ö›Ô&5U#Ýh}w3YÅð—¬T¥i¹ÊŠ2ʳڵ¿Ý<|ûNéU•™^mž q³ÿ1Pq®µÊ<…I°ù³Âµ +ì¡âÙïzøM‚]¸N‚3`µ8¨:Ä™ìT㬇å.üyóþá÷›‡D#]«µŽÊ"ÅküòðãÏñjÿ¯Þ?0ìÆq””åª}0y©¤yóðôðO*ÑI”ÆÙj­rz‚{Sqû¤íàºZÛp­Š âÉy¬ðž{žM=ÿîú.œièÀ;ŽU‹ÔBh€EÚmVÝV¾Ž\'y”)CGׂ‰ãà§81U³qÌ™ŽŽÂÀð鈗¤žÿz‚«æAõÖ’‚ÈËÐèÒHf‡¨GZ骆׬ÜÍÄ*èO0žêlCr °wGV¼åâD¼“ÜRŽr¯J¢2ÍèUÀ:V`Iÿ,ášÝïaRû“cfÎê‘q÷ަ‡ˆD¯—„§‘éÓ˜<þé1š¶ Œî `ƒT&–“ œ ÛéBÜš,ËœAxFSñxÖœmCU¯Lmã-äÆËÕ¨qßX®2¼뤕ÇåàïãcäÈQü½åŒœºº”IJmíÇ•[|?Š ´'ÁîÒöCÅÀ¡²{»v&Ý5öú…høk›¦Gâ/~#=¥»m^yù˜kÒÉqx­=¡"Öˆ~à[ðŃˆÉ­îöif7ÙÎzŠÂåîî^M»( +×¹)Áðða°¬S:Ì€º€ÂvÅËw5ãk‹'²·è>v­üþ±>tŽÆž¨ù)Õ 1?…iü;;¼Qî÷.7 +Úwk\ï-’à}ð.«Ù2Њ +¯Kº€Sf ’oÐn²¥“ðP»#“ÊH T`DÛW´µ±ÈvK¦Jëäh°|£sðl&HkG_-—Ç·wDwòžrôûäM˜­’ÇÈéž™þ‘mŸ/#ž„~dÞÔÀ8ZöÎgAe>qºB:Šç÷VQÌ:@¾"¢Z%&Ò&ãøÁ.*uIOI#ÀU 'Ê é< ÞÕd?#Ïþºwîya–OÂñc ÐSSµ'ÉØuŽ. }¹0¬¥ÂDçæøžb4hQèÃÒœIJ¡æ=p+Mƒ¸·í&^Á ªRí](Qs[«ú"2µE`èx‹åó>fÞ7£#ÉõìH€ÆxÞÑ1•èÔ'rUä8ŠŽèŽî°ðSx¦õ†ŽL5iJÍ6Š€o¢;þ3d榊Tfâlœ”ZwÑ¼ð…ƒ Ë%O²}FäÏä¡ZAî.ƒ8^€Ÿ]0þsÏ*IШ/º$ílYÀëL)ˆ[bòjì4¡?Á1ÞáÜ9%˜ð~}g›š bzeÚ/ÈàþÜÈQÞg"‰EâC ñ 0¶Œ0²mˆ'ggäÑÉÆ9]»æèYÉÒ•ãw^²GƒÜª›YC—½ÁîèÍ.âÀÀ…ŽNµ¢@”}J Že (…hß´€)—@©"¥@2ºÄ"Û+cÔ×·Á´…·zÿwÏÃmÏ¢oàX@%$?ä{RH«wÓœh*I4ͽÒŸs™ÈÜw„9"—À™ŒG”Žç€°Úk 2輯< q0‚Ôf:²¾ó"é¤FËuÊ +€é‘Â'‰÷E ù³'¥“;N)ºÃÍÍ‘òBÈj™­FÞÌ~ÅN”º½†…Æè¯!§ð’€-ç¥Ã€9¹  :yU–$Y>ê…þ>)¿\™((`Ê»u‰ŽÒ"‡ÑWȯ•4  ×oÐQQ$ÿ÷ƒ)ѶǛÓËÈ$Ùמ®úõÓ)3s)`߈~\¦×(fJÔt¿ºõ¢ò„ŽV« =t¾ £$ó¨ù ¼TÌ€—«;•ÐþæÄ#2@•p¹p5”vÄ›¢êÉ٠줸€ƒÏ­io=NU·{åÍ/ǪãÑW˜¦¾ú£(Gsÿ\ ÒJ˜F&u/u]GÝw?Xq­MÊ•Œ“稂«t}t­ruŽc \pöí™Ã!ÅHE|§ª/þ§ñç3"€&B‹¸;9RÜ“¹à-Sî=‘J —” i(©‰ÁƒuA3–ì#¦lýën:“÷Gù2ù\{X” DMr$ß«)pSB0ñ—‹LÉÓÃ5Îwó¯Òe~‘Qap.3:Iá×'‹I@.£FÚMÚGPßC((ËÃSæç¾å+³Š—¨Æ3ÕùVÒ à›áB[ùÜ6=÷ƒ; nÖ÷dÈ;–wËK¹›„¢B’PP£0Cw9ñ(Ⱦ$Æ™[Ýõí©n‚QùÜŠÁqSwQÍ—ðš¢*1HXÒϦvêj%y“|Äòe2,: ùRâqUΓôXðñmëç;ˆÐôv¿T4lï¹jK” +Y¸lÇpŽ$)œ_ÃÎ金+ÉEÝå›"ÿa‰•K‰Å¥UI?8•#©JµÅ×Íg×y¶LõÂ]ËëÏá7_¨³¨WdÊâÆ•Xcuo&ZêéÁ`"-ÆÑÈmŽsäT^6HÌ›3åèÔ"*-ƒ2ÂÚ«An`ÝÀûKoíöNÃá,uçmÿàÐsÿÀåíh„Ý\rk'Aq+uè{ ŽáZ_Û‘p.13ë’d¨‰E¢èd°ßü†Å<àðýHQÎý ÃQïŒ&†£‹ïÈ8Öûª©ÛšË€DØß1™’2[hˆ²û&†û4áÒ#ìÎaU.™åüì2XdíŽa@ž[•eðæÛ7wø=9'éZTƒ,[œÓœëOΜ¬À¬k;“Wm%m@·qÕ©¼Qö.»Ÿ›×¼ŠôÆiO~`ŠnE¶æÑ-2•RyÊ ŒfÝÄD¥ëyavÄåEgNq*ÀÛx*¢nc)&„à¦î\ê"íÑô–sDG`ä¦m÷QV}·Áܲê^Û5ü½ÈoSȦh0. œ­“R7[Éèr »óáQ†¹M= Õ­¤E¡/˜åξìfþD÷´¼$òüèQ¼ _TQHÜCÞe V' +üE±hà#gа¼²¨Õaæ\‡aXð–àËvþwdtuG@m}8º~£)–=hmJNp +ò†S}rßLyíÁF^• @ö6lª°Nùøä{9;³ (¥wö;Iû†rÜ·ÜÚR8ü\´ßrR!Õ6i„DIŒŸñArüµòtYçšÿ8i ",s³¬ÿ8Bë4xzíBúŽ>!`c›0‰3r…)þ‡×|@-¦Î¼ô/qüý78ù†'[$ôÊcÈ2ÔÐYùk$[hFiÃanúÿtŒwh ‘Ä9i8ÞsgCú +€{»EI•1ä`ªÀ—œ¿RJz”ÎÏ^«( ~5Í’Ì}*x ö€ ÑÒ%'RÀe<+ý}Í…œÊÉðßo@¢endstream +endobj +4256 0 obj << +/Type /Page +/Contents 4257 0 R +/Resources 4255 0 R +/MediaBox [0 0 612 792] +/Parent 4254 0 R +/Annots [ 4259 0 R 4261 0 R 4262 0 R 4263 0 R 4264 0 R 4265 0 R 4266 0 R 4268 0 R 4269 0 R 4270 0 R ] +>> endobj +4259 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [300.583 607.629 330.526 618.477] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4261 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [363.82 493.314 393.763 504.162] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4262 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [273.349 481.359 303.293 492.207] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4263 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [275.519 457.448 305.462 468.297] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4264 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [298.769 373.825 328.713 385.781] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4265 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [472.664 338.513 502.607 349.362] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4266 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [458.108 326.558 488.052 337.406] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4268 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [237.186 248.109 267.13 258.957] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4269 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [423.086 219.743 453.029 231.698] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4270 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [394.448 140.207 424.391 152.162] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4258 0 obj << +/D [4256 0 R /XYZ 160.667 686.127 null] +>> endobj +4260 0 obj << +/D [4256 0 R /XYZ 160.667 560.804 null] +>> endobj +430 0 obj << +/D [4256 0 R /XYZ 160.667 545.467 null] +>> endobj +4267 0 obj << +/D [4256 0 R /XYZ 160.667 327.554 null] +>> endobj +434 0 obj << +/D [4256 0 R /XYZ 160.667 312.217 null] +>> endobj +4255 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F22 474 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4273 0 obj << +/Length 3061 +/Filter /FlateDecode +>> +stream +xÚµZÝsÛÆ×_Á< lL8|wÆŽ]7Š9µ8“‡$ ‰¨@@@ËJÿùîow%Øn'©=cö–{{û½ û þú ßK\§‹8ÍÜÄÛÃÙwë³çoL°ÈÜ,ëkÆ\ï~q"פËU†ÎK<çjß´½.ß^,W¾s¹ô ÁyC˰ªøëò·õ‹0ŠÝ4H”˜ñ|@Ïþ¶>ó•—•çY¶Xn–FàäÃÙ/¿y‹Ý™·øá {éâžÖžëÖá,Lˆ!?Õ÷êìêìŸ)¹-V&áKØ[¥O/U|\šÔ)ÀhUß¹ËUâŸ.Ñ´t9m‘ïVù¦¬p©xKºõ3ì&΀cÕcó(…‹t»ü†éw€ÆÎÝ’Ø’•zUÒoêB¶w͸ßÕç½ ì‹êNVtXâé[,ö´`.R§kXÌÞbåûnE|½²?_ÊÉAèkZWå-߸z0púFž:–æ‡Ü ·¤çb'[UÞí¯^ä»8îù2šA¨+¬ ‰=vC‚ƒ_=?ĉðM°ÞÓ™&ö¶Â¬ïô#LäIŒÓb'`x§H+0'Ø!¿½¸¼P|‘&Sfeaä€"Uq«&z—M_¼ª\y,w“ß1 üîfÏ4£†Í¨Ómn YÏ–Ùéº*k{õ¢îʾ´fiRãÐ?¯¡‘þØŠD@b4ÞAr`¤©;2 +“0 +FÜ1ÖBw°ƒ\©6úd2ŸØ°VlåôO}#{[«F’SÛ™{6Ø9eªjòÛ÷ØOs-ωøÕ4×çö‡µ ŸòÃ]¥goÿËêãG™ç¡8à`Cñ“×õ˜¡™º·¢Â›‘ m©T÷íÇõ;¶t./¨½±ó•ÀÓ‘ÐéQ«™«©è²/ÙïÛ —zZ\ªäw²ë^.¯Uc[u‚I¦CÕMPðjP›þJ.ÍtØN“LƒnFú®‹6W&9ØÑÓV¢3ª¢„È^ÇÌTH)ðNjיüØñ¦!•é×=÷/q<ªT8pŸ+ÉûR^QCQ+…“ûa¶¼~Ô$Q¨£&áRÒ¬5 +¾¤‹èÄ/J½¨^¼îtW"v‹›°HÿÊÒóšéøªGî&?Àè ô9—,t¶6Oï]äÖªAüt„œq‚ŒR1zæÊþƒ¿"HêŨ9òSS¸¾¬Ÿ†‰åÒK2}Æ— ½Ó3;yNfE ·¶¦A××°Y>›)?ìȨé÷Óª“4Hª¶UŒ¶<§‡2GKútð§4-hÛq X áÛüZ‡Í–V?Å×Âzðß…õ—•¶CtÈÙàx؉“¡³å* ‡ÜŠu§^#ã©B…²z‰á³Èå:ô~S¯05ˆ2²om:4ThWÒy)&„Ç|*eÈv@?Ô¨b4×&®©gøÎý¾[¤áŽTpå©öi›Çê¿Û¸q,¨3$=¤é×?Ý7K³ù7²ó¥/6—k{!ôê«íx‹\|–Å8qSâÁû£¬¥_fíõwÿ`m¡ãr#ßœ( ìrwÜTvúçOfUznuÈxõä"+ã%n`ÂòÿWÖWë÷ãl³ë[ñç“T=^¥Ê{m=¥ÊÅ´²Ó²ƒ£ž:hç;$³²;ÈÎPŸÒú~_Žƒ–i¸~’œNCÔ¸)u·7œ¦òdG'÷Ù$bô³cæq€žiħµøaU¹ú“Ù|¦ŽOh E\LéäDàÇé°V"c&Qb& +Ÿú†Ob Ã@G2ˆÉ´¯éÛá« mæÒ+TH-A«Ÿ–t†°AÆzõÈœ@R·þ~&©Á¿‚:ÛÒzž{1Ÿú¹J´…v§sÿEM­\Œ_4¶:«°Íãï€Cg š¡u×çCO:j1f´l 6¾œAã4 !ÃÚ¶fc~èaÌiÆ~NÒ!ÏDˆêøîûF>4P÷uE!Û¾vÉ¡ª–7ß”Ëácøó7A¸HÜ,ù pÓ$”SÈyAýù_ˆ†Î÷ ˆÝï¾Áóú7 +|çgv¡jË›°y{íÓ±¾ÂZŽf;ló€§q~råùªineåg@˲'ÁÆ÷éÂ)˜1nòG?Êëçý1pÉÿ41 "œ†n âaEÊN¾ë¬—$Îp‘Ã2¨Þ–½lñ™À¯¾ýVxÍŸ–AŒÆ–t¤÷ú¥èˆÉ[y…‘²áåï¹-)2¾—È7&bq›ã„ ÝðÏ +©¨(йQеŸÈGDµ­h¼ñʸ,Ësc?¶L¤xÉøÆ ™DÈÓŒ•ýÛxxzÆ*ï?µ`#Þendstream +endobj +4272 0 obj << +/Type /Page +/Contents 4273 0 R +/Resources 4271 0 R +/MediaBox [0 0 612 792] +/Parent 4254 0 R +/Annots [ 4275 0 R 4276 0 R 4277 0 R 4278 0 R ] +>> endobj +4275 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [236.024 615.91 265.968 627.866] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4276 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [131.178 422.678 161.121 433.526] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4277 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [375.587 422.678 410.235 433.526] +/Subtype /Link +/A << /S /GoTo /D (classWvOut) >> +>> endobj +4278 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [421.633 214.434 451.577 225.282] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4274 0 obj << +/D [4272 0 R /XYZ 106.869 686.127 null] +>> endobj +4279 0 obj << +/D [4272 0 R /XYZ 106.869 182.731 null] +>> endobj +438 0 obj << +/D [4272 0 R /XYZ 106.869 176.709 null] +>> endobj +4271 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F14 825 0 R /F22 474 0 R /F34 950 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4282 0 obj << +/Length 1155 +/Filter /FlateDecode +>> +stream +xÚíXKsÛ6¾ëWðÐ41aâEIÛC›¦ãxê>¤›ë%Ñk‰rE:O¦ÿ½ûeÊ’]{¢ô”ÉŒA,€ow¿}ˆŠø§"í¥s>Js/3e£érðÃxpüN›ÈKŸšh|Idzs¡=ŒN•£¡ãS˜åVü64ZW%ÏÞ®`Tb:Œ•¸…]Kü(kÜÓm…³ˆëáÅøýà§ñ@;âDŸG±‘>whÆßƒó‹$š ’èý€×>Âw"•÷Ñr`3'µÊÃ|1 ~ß@©ÔIP:#:—Œ@õ=:[¡=mùk=ŒQF$I’ÐkkAƒÎñÄ`<@Ä^æHQéGøc³\ µ‡Ã¸ä ´gÙ•úÇíµxb]ÕW8¾-Û[k–VÚ\µk ­ªäÀ€æÐ€îåä=ˆÂ#ÏÚW}ððî<>þO%ÅòGž:o·ùU}-©K»ÕÏMògß6’~$âúÅHj?R¦eSæ¿Hky>ÜÓ5¢ +÷,Ú^÷ü +ÞJÝ$5â;û²É”½_óökÞþ/y W.)+Mñ†#óÌF±URçép.NN)¥­ÏñÆ•¥btzr '²…¿“ +xWÁdQò¤¨güñK‰†4°Ôð… d|}[w XJ¼f“òþ%0Ö¹L´#SH¹…ƒxý 5[pëÏDÙHú®ê¡ÎÚWTuà EÍû‹õåC‰;–¬.ylˆR\½¶·kÆ$1žÿ8G§xnÞ!Å”´–ÐСo™ AM;'ÄJ¥¤wìÜMºèp ¼cÄj±r⯒€[n|ŸÞÜÀ'ÄÚZÔ°¡ÆØàÌ×ચÀíÖuïªÆq˜îYtóâ‹‚³“5/4ÅŸÈr¥e–˜~&Nç¸ ŠIÆ×ï¦)p¼*·ûá¹Ñ8\¼ÙÍçåó¦O¶w7Dã“;Qߌ”·…~Ñns¿;ÞõèŸ7{³ÑKk=3¶bº1¥ã¢iª«zICæù.`˜X4Ö!>,€—Éœs¥äõ­Äkx+¹³ºæÔ QuéTî´+Þ^TCéAÝ‘¢QK÷ >–òL‘Æ;ðÑ*;Å; +=Ãßs²i=f(nÉÓVjk¨jØçv8Y†²á‚–jLƒJëòº£6ï¨` S1^³àé[-D¯&ºªé8ò}'XEÅšÁ×TQ»Nãc•ÉT[ra$ñN¥z^&ÒCKe/¿ÝEÊd$ñr½{ž—Eßï0Í"ÉHVW§ìÀëWn÷6uúºÎ?ó¡ ×>Ý4¯ÍãÝF)d¢í?uCÇvbtq·IùŠÚ)üœ ¡Ð’T£‹Óªå¥ŠƒMß?¾ÂÉ+žL莿ág$Åv ŽÉ2AÐ+‡¦X¤¡[ñ3÷*:aC%õQ´sZ üÄ]Õ¡0°ChŸHç 8À ×Ö4D×Ý»ké‹ÿ«ª”6Áï’ ûzô@·±„e> endobj +4285 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [356.572 134.198 386.515 145.322] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4283 0 obj << +/D [4281 0 R /XYZ 160.667 686.127 null] +>> endobj +4284 0 obj << +/D [4281 0 R /XYZ 160.667 369.777 null] +>> endobj +442 0 obj << +/D [4281 0 R /XYZ 160.667 363.916 null] +>> endobj +4280 0 obj << +/Font << /F23 479 0 R /F34 950 0 R /F22 474 0 R /F8 483 0 R /F29 818 0 R /F11 821 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4288 0 obj << +/Length 3073 +/Filter /FlateDecode +>> +stream +xÚÅZëoÛFÿî¿BÈ—R¨Åòý¸q’;7‰“«„âmaÐ-¡H•\Åv‹ûßo~3»KÊR’ö|¹ƒïîìpö1ïYùþü‰ï¥nd“$ËÝÔ&ËíÙóÅÙw¯‚p’»yN·Œ¹XýäÄnOga9‹ÍÔwJéÏ__^]ºÓ™ï¨› ÐyUÕ—2*š•tÞ–}Oßkýåûi8EG ¾j֙΂ ö<'ðÂé/‹ïÏ^.Î|½Ë™ç†y>™…nžÅØã¯g?ýâMVgÞäû3Ìe“;ê{®OXÛ³(¥­ú™×gó³¿[R~ì†Q8™)Ïœ—Ž~tÞŸ=?ÅN¾{• “èáêÝ{ÚüKÚxœ:Øœá£H.Çwê•L5h•Ìïq\¾Õ9AÒ@F;ôr‰~¥i,‹º~˜ÒE1bè¨!ÜI'ˆs§ nÇ@¬ò’×-ݨtU+ ßÈ +2(ši9‚±Å×­¥)g(ëUÃÓQg¾ïæqÌGnBÉ é**µÌ9Í ¢‡$t¯$‘¹ÿTAÌ¿(ˆ½˜…cµò³ÐÓ쩊5ócr]adé|]Õzñü ]nä³jQ³jaÑoêR†»®\VV!`-¥cÅ­p +f™Ù·ZÈÀ÷$†‘;”½ð¿—‰Do¼* «Æ€µ+Ž‚ÏªŽS&y?…îÓ7)Yg¶ýÔOœ¦U†œ¡œ¶»-gôݶZv­tÕŠOÎRåÎ`ŽadØ+8ËJUrÄݲƨ®es¤cš§qâõÞ€ûóêSªå§í¿b¿g"³Ø£8ék Ù|ñ A!‹¢P\Å Ó×Q­dA@«ƒ†¦¨‡1Ì#ûä”âŒûk+pÃu ÖÜi|BS-q} ~ßTlÜŠNo`+\˜}JÔzá‘´I”!ÒNrÉÉ$$Akå +ðx§U£SìM$ãA£UÛ]ÍýäÀYUÆá€þÆÐTÕ9»nâ¼îêDÿMÕ”'¤‰cÖH´NßïWÀ+öf-¾~%-h£-ôµð;š?¬wäÖ¥ôebSð6Èc0ƒ<çb=è"fËûb+!±ª<‡}È?ÜíüŸ0/ÿçš0+MùЫr+>·¼_Öû¾…Ô&lÍLÆ&¾õmo¥ÝïÐÆr:q"ÃYel ¬‚ðŸøÆr«we±œâÐù%"2»bÉ„f«²®¶•°Þ‹ÇNÂã%Òʼ°šÀþkÌO8¼Ä¥Xs2‹R7 ¾¶ÇcÕÅFnö¤!3·ñF""k×¼ý ƒ–ãÚ:Š‚¥‰Köì@ÃÚ}³bEõ£zdgEd iÍ$òœ~ÃΉc¤|dÆ)—â ¸`"µˆ‡ã<´‚eÃÀ;?’*Õ#-¨ ZÖ?æ˜ÕP¢ËìãeŽ¥Ù£^õªØBôCÊ8£H%€Bvø+ÀN,ÕW×nKµ± ’ñ+k8SôzEª¹\v¢©¯¥ˆ:ÇÒ“xnìeÿ›hId'õíæ“yödÌ›4ЗF;ÊÝ$<4½My'AàcË+!Ôí·È¢¡ª™ÍÞðÝ!ƒ‡¬NV¤ÜÙ‹<éßJ‰¯MJoÂT–¿]ýhùQ¾Ø ä¶k·ÒV x庂B¢Q dvvÝòQŸâ#7à0"ßÌÛúý‹O+ÖéÝí-cdБ öëë9f^__µ,G%yjo¯ !ÍÉÔêéÏѾ!¨ï%ØÔ5ÆþkÐP!F–„§Vn°0%~¼pš´0àDçŠï‡æ\õ?\×§Ð7HF _´bÓÖhÉɬ9j¤ÙÀbÇP´û¸à‹\<ÚG_=ÞÖ%ïzñg¯ãÇ–¢7j·åè:þä6â—G +J€k"Èႈë53ÕsþômÍàú×/ +ÞßŒÆø¶â"ÁÇKJt½äi+ƒkÉÿ‹kÁÓÎþך,CXöd–%_`'˜¤{«¦o\°$MâYm×$~Kb×ËãƒÌk”B Îk*Pî–M[ O×IýQA¨ÖbÒ„6ÓŒ2J ø8c©8ì9–÷çvRIr¢ËæG¥çú\J©b&½Ñ‚/Õ•À?‘g¶A’9·°]A’æq_2ñΡ›äW! ©ˆè×Ð>žø +éï2“òzR»S‚¨FTµÕ=³3JÕ©ÄH0C~ ‰=¦ŠÒÒAj~)˜ znÅ…ÈR#ðcuÌ—GÏ2¾. ê¥ÌÛ•¡$.dÙU£¢ !É©wÅíÄM½µa?û›• ø°n¿4IâÛÛ†T7å=ª'HüÇ®Soà@/ðC¦2&hЛší½\ íBjk»³ã².ðtYWck!:4ˆ VëtUEÓM)óN³‡-á!:‹eš¦ ÅÁ®*nlfßË —tx1}Q:âfv…Ÿ¤&•YQ?>TWn‹Šë6²^`²¸ˆ9Q5:¥«t†Ø+)¤mÆÏ1˜×4N»R'ž[•¶<ªê†Ž˜F§vížS7 âQ ꧈àGo6R‰[ëÉGï±ñÆ©åÀ”_eÙŽ)C¯/¶:Ì*4æUk™ô®lÃGôŒÔ1(t»Ù+CýWßëxªdñð*dÉè©#yWMô'JðùE8ã ñXWÔÌ~×lÎ2)$šçà‰.u F¨˜¨ e„ÃB/jÖ¹c»®d žBÈ骿¬lêø¬Fd´ÎV†é#±.WÖ<ŠçIìüÈÕÕšSFŒûÝ`À–2¯†‰<îQƒ%®/ip¯Ê¦¯ø]'ª%:'9—úÌÝ„ôod+yÏ8óð2¢—dU±ŒfÑ ¬-0Nï#N鼫8ËÀ@›g@O<^bþÑÛ/ebðb¹>Ï=xªe¥ô+rg&á®quyfrôÐÊÑ2>üðÉÅÆ+qBÿi¿üп!Ñ÷fèM7O£qhÅ2ƒ¢íü¡™rn(^ßOHSÊ…9ÕŠI­_ó3@IØEà‹o¿5Upú÷ “ï§a‚«$a×\i/@ŒH~¡V2øka¼³%ãS`§ëÊóe>‚´¤û¥$®Aî¹qÒ±?•'@IÖI1ì‰g£¢ç¹‰oãÁXãnÆ܈iá +F׋µâß­æýÅÌ–endstream +endobj +4287 0 obj << +/Type /Page +/Contents 4288 0 R +/Resources 4286 0 R +/MediaBox [0 0 612 792] +/Parent 4254 0 R +/Annots [ 4290 0 R 4291 0 R 4292 0 R 4293 0 R ] +>> endobj +4290 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [318.541 565.362 348.485 576.21] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4291 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [179.391 442.918 209.611 453.766] +/Subtype /Link +/A << /S /GoTo /D (classSocket) >> +>> endobj +4292 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [382.262 223.276 412.205 235.231] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4293 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [362.786 199.919 392.73 210.768] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4289 0 obj << +/D [4287 0 R /XYZ 106.869 686.127 null] +>> endobj +4286 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F34 950 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4296 0 obj << +/Length 1966 +/Filter /FlateDecode +>> +stream +xÚ¥XYsÓH~÷¯0¼ šÕŒî@¨Ú$Ë M¼û”KȲ­,I&ë¢øïÛÇŒlc…“T1Wßóu÷XrèÀŸªXø~< ¢X„Ò¦ËÁÑxðÛSåcîp<#Âñô¥od»*žu9’Öø¬"Ïz=r••Ì3^T0J+ÙÒZÕ'Y‰4mÒæ¸ª`»½?ü1Hm‡í7ކ¶+âÈG3> Þ¼s†Ó3|>೘;BÆñp9ðB_(éu1¸üÕ‰’®¾ m’ ƧhߥF‘kU´Z¢žk½u|'„ÿ¤Ù^n.F*"W&h0×ijª@æ +Inз}›ã!øË»*´*Þ(ò’Yµ,¥OQx1å$¥ÐUËkÜÌ›…–µÈxÒàibŒM‘íIʹV qçl)Eìûäd5b×µÎNO€äžõ«ŠÍ1MUò¸%¸³¹à#u€:~{êzCˆoˆá”ˆÝî ¤ô¸B–²­i,Ž ­&Ò \˸và#ÛØ(”ò*À#OHãS,"¼>¼7–J—æ…‘º]œôcoGÐìÎò@¸~H²OÙÍ"¿Âe®îÒa®0"SCUnÞr«¶Íê‡L¬*¶V Ó,QèšO(ðU ò#?° ?Lügˆªšç—/NϵQyÙÉì´¾u¤W3ª)¡çúp™Ï:x¸Lt­Ûw¬!]¥±–« ¼ÔPzÂõî¦á9qøˆ]¬ÃDÿݘªâ†—²ƒ½2ìP¯öbâ–ÕŒÓr#ºˆYcB¹Ö †ÙP¾ +Ó—#nyÀ‘V”¦ÓÍ ¤uо.˜ ulÚzfbRÑEatß·þ5y’¶ÌK(‚±Î’)Ï´\°÷c‰5¢Ø&¢vÀfjVñ„é†H¡ÙòrSì°Ä^[v]…žnË›ZÜ€GµåŽ{È “N³^œQqF#Ñ$æÄב¯›->’í÷æ†ÝÁKÜ–L¡Ó’!¾6Å‘–zNIüF¾ÓZú$ß,EfØš{$Xl?!þ¬¯ JbOØg³ó‰4˜ÀFM›1¾N葱z_ìzB¡O+)(æ†È}±h“mÍ=>ä3†d\ð–{г¢-àú‚m{ƒ]{ûÅh{m^õQI«ÇÂoˆk)ÐðXÀFU­Þ“ÛÙŽªjED׫–€2Ïh9ιU£ç¿œ¾{T"tÜmi×5××vfÔÞ=Jt‹A¾s†dëgäßê;wô3õˆQW7I½Åù;yÝ`žâ3C[Æâì"û@'9‹›Š·Òõ¨ŽÞ½Åóo  f´÷]ý¬ö°ñ¹OÃû%¿Ðç¬ápùB˜›ûèÏŠû:¥) ®(2 ã£È.(»Û|¼%3Ìe£~(:h|¼1™ŠÐüQþÇl!=ñoKŽŠ +]{ÍmÎ÷I:L-$‡°Œ"¥ý„(óôªßæ òn¶¹;±Þ¯^G8¬ÛlŒã¢Î~$_º²K}ÿ‰IºõõŽC­{2ÁÝË“sþ ’½¢;Ÿ°Wx(È*:ƒ÷µ–s’zq6¡V«ŸòáhÍ5g¼àpeÆ"‡;ÒööÒþ«á÷™ÙÓ8±ü—$ âGEfF™¢+ä 9Jhí~ ¡ðʈ¯É¾Õ¬Ø£[³™ o7åÒô¯/ ·f?Æô£ú +èúc¨vŸåSÊ\õš†6]¼añ\^Ò i½û™@wï[ y¸·ÿÝñÿ¾ÜΊF1AÉÁY—7Nÿóòxú¡;™ð‹hr^1x^ÍN“ é§½fÝg.ß—B©èW?š¹BÅA÷^í>zCˆ ¼"·¾šñ××·.×åü-J5ŽÀ u<‚$¤_o¾Åj^ä-åük‚æÇ\Äyñ­yþzäЊñu«w.„fA¡ úŠ—I©›2.þä‡$q¸ CÂÏp¡íLÿår ÉÒ½ª²Ýw!"JòןTÿ¾ñ7nÛ +âìáÊ@æ!ïkº­ð@[öH–ó/ˆ2êò?)þ,¥Ìþ¸Ú+Ïendstream +endobj +4295 0 obj << +/Type /Page +/Contents 4296 0 R +/Resources 4294 0 R +/MediaBox [0 0 612 792] +/Parent 4254 0 R +/Annots [ 4298 0 R 4300 0 R 4301 0 R ] +>> endobj +4298 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [376.47 582.391 406.413 593.24] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4300 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [370.658 439.098 400.601 449.946] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4301 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [475.432 439.098 505.375 449.946] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4297 0 obj << +/D [4295 0 R /XYZ 160.667 686.127 null] +>> endobj +4299 0 obj << +/D [4295 0 R /XYZ 160.667 507.925 null] +>> endobj +446 0 obj << +/D [4295 0 R /XYZ 160.667 493.123 null] +>> endobj +4294 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F34 950 0 R /F22 474 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4304 0 obj << +/Length 1793 +/Filter /FlateDecode +>> +stream +xÚ¥XÛrÛ6}×Wè­Tc±ïl'yˆÓtœ›ÛX>¤MBJTHÊ®šé¿wÏ.@Ñ·v2ÏÄ.pö¾¤¦ý©©ò×Óiœfn¢Âi±™<_L¾{éÓÌÍâ`ºXòÊEùÁ‰ÜÀ›Íƒ4t~)§«¶+™]Ðìõl®œ³wgßÏ>.^MÃ(vÓ 1û|/uòãb¢ŒØ¹çY6n–Fúyòá£7-'ÞôÕ¼tzCßž«hÕf&‘ë«ÔÌëÉÅä—*NÜ$L¦s?a}­A8%B2Ö¿×Pr³{Ñ`Ü_Õ<fó(PηO1úλó÷ ¾½|˽8û-ò¦óÌM᪶àu}»g@½í1Οm¸×çKŒËß½ÈcŽ&™’Éó€XJ€ç*v3rÕþïû5ïë´èZ1¼|CH‡yÑ´ZÔX±Œ~qÀ¸ÓXybßScçååÇìò”•Þö-õé:çùJ_b”¡yÎV뾺֭oh%z1]ÁÔVÏŸa\ivÈóƒlZÜ4g"ý¨¤r¾ÂãÅ]å1䤼ÑÝëõ†½ð¦a„Õ‰Õ6Ààz_ˆ®à@’=ŸmõŸò·šcÐåâ{kÍ9¾‡üÝËôXdó pÓ$ä<ŽÒ„Wý¶¦Êb}Iù NÞ‚8sFAÇ"‰yñšŠP7W‚ÈùC³Ê½x÷†«NpŠVç½.e²$ĶÙXáƒ(£6š‘Ã7†S=óvuýêã‰u¡RnE’0ÖŠ d¬ÝĪÎõ,м®J™Íf#a¥u†VWÛ#«NDÒܰ—€d½‰-z²jóoÍÒôo;¶¥¤owP8qc_^!Œ8›yŽRÇà…±‡¡i3ÏîÅ*3\ª€ÅÌOœÉÚÍæ~êŒ +4ŒP*}[éë8œSBî­›!Õ¤„°ð¤ÄÑîlžd™s¶´{HHÕɾjf°|‡sWÑü„æ)c·Z¶ä­ÿ6’¾QH 9¸Âä]š!X ‚J¡lDm«`'TN ‡àgÞ8‘À’˜ÜYÓ¶°°'ÊZ,¯ bݰûš¦©iCü¦ÚR +óZrH¬”sÞ•„73õ%§µ„³oe2§¿=¡J†ˆÞE³ÕåíL +mô_0(Öç£È{Á­È#R^8hƒïR×}¾¨6f +1⚪–ýâ#á{Újã<æsé‘9 ò Rš}]‚ä;âWn/F!Òjì¯øè/Xï'Ù0®¸‰´2áT¼4Iïà¦{!´à›¸J‚ú©Ç$c îÞŒ¤kù9Óunvé:ßÙƒ°Ðqs@¡Ò&í?‚„&ïBÒµ³yM³~ Ó‚ sþbü¶9â­ø®Äý²ËbUbnw-i‚F¡R–äfi~Õ55‚Þ[P¸a jzZf:Qš}à}ÿ€a¥¾® +¬‹Œ:TýŸ±XS–BgÙ4öŒ7ë=:$âÚSŠÅÆAVݘ ³:h~gÙþƒhd,›Vìª\hÇ qÙ,lºl-cñ…"Ó–eyÿ „+ß‘vÙtU_ÙF‹57(mó- :Ôåh%†EAÂùswkõ\å WÇ.ޤP$i>Ÿ˜3=ï  ¯e +æîÑ“7ð22x¸!xÔó—BjŒ¾åbÆ- ©“»BÑ … +B>n¢ðyÏçèÑ#fûF}ŽLà ·ht„€^ŽdØõ¾d—пÕm”‡Ì9:cÓ¡DAã¯cÖÔ3e»qe¤‰Ã‡Æ‰t7Îtl;mÄÓmƒm§¶¯ã6Ì=Ïob! ¥™Vİ®HH}°>ÿ4¾ð*éÖÌòB~<†þí0åþaºÝÊ$8Ñ­ã‡i¬$¼`­ ¡°¦ÁµÐ˜²ç&@!¿’ -œ¹‡^Ióc0J>ƒ>¾ 0«Ì‘H¹°å"L)s¼+i„4–lïUÍ÷í¥lˆ{<™© ±=ßxkvŽá¶V»¼” bnëm‡ËjwçfKσtïŒç òL^¨ÏÛ—a÷ÞÃÜ>§£H¹¾Ÿþ¿·¹yå ¿-„SzÑ[gô6—+v9t) ¡]öB2a1S^ìðáÈ[ï5°p³ÄÎÓ'Oäã +aþ< b´<е¡¼weÄ»—xÍ'™æ[sæbò»»å%|˜AÅ"‡„k@˳ÒA~æ¹QÙ¾’\!oJ€Áâ¹ïF^„_@bYcÖ<£|7d,¸ËȽ}ñ=Œžoc÷ó"Z«endstream +endobj +4303 0 obj << +/Type /Page +/Contents 4304 0 R +/Resources 4302 0 R +/MediaBox [0 0 612 792] +/Parent 4307 0 R +/Annots [ 4306 0 R ] +>> endobj +4306 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [182.004 547.788 211.948 559.743] +/Subtype /Link +/A << /S /GoTo /D (classSKINI) >> +>> endobj +4305 0 obj << +/D [4303 0 R /XYZ 106.869 686.127 null] +>> endobj +4302 0 obj << +/Font << /F23 479 0 R /F34 950 0 R /F8 483 0 R /F11 821 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4310 0 obj << +/Length 796 +/Filter /FlateDecode +>> +stream +xÚ­˜]o›0†ïù\‚4(þÛ—ÍÒ¬­š­]Ñ&­ë ^‰@GÒ¦ý÷³ ÒÅI5å" ¿œç=sl@n¤~ÈÅ"D r‡ w¶tþ8w÷‘›;‘{éD!Üݨã(DB¸K‡²8Ĉ·ç…sëÜ8¨… +E» +Æ1ÕÁF©s2ÁØÅ4dœ¹éïFšæwÞE™Ëÿ>½<™ êŠP$D[d@EÈi”?#m…¼×±QÞ†:ßúÈûª5.ÂaÌ”õE<þà„Pá=P¬¨Êðö*z˜*Zê(+sWúòôÁwsï“ÍÄ~uã‰xˆByjâËt^Kiu2Иš$PüÅÍ“J.Ë­p#0™s(rQéŠntn£j]X ¼Õ!¯-FÀVΫB¾Çƹò ¥Ak…x˜³¿ÓŠ¢0o“úœxÙ/ÅÙSjQ/ Ö‹N[æGllEÆA å ÎV++¹ÜDý8¯jUÏ'+¹´d‚ ÈEV/TäR®­ì^bèPso,‹LßÇW»r M>µ=~½Â°ÐÃßE¾:ʾ2lÅ®uo].›þ^[ù;ªÖ…j~g3Û¼²Ñ͸á(nécá=7Cg¦{õè͹ÍËkŒ¿Èßdjs¡Fº¦ïÙœ „«ÃÄ¥Da#ñnò¾éf^-fMr«ƒü]©q–üB—vÝ·ÎË]QW +õdNЧm|¿7ÉG@ÝhâsêUõòvÓM´G[KÜ«ígÔR|.Ÿ_§rmÝ ˜ñ–›@•â¢\­ëe©s³®HCác þ¥\·kêCIWøješf¥ŠšW:ö¢´yØUP7*Ws<¶²e³ š+4´€C7ѳûò4Ô´|µ8M+ÕÜ™—gÖ׃^aØœ=Êêãx%2b`ºÍ™½þ£ë7ÅŒÁz©Ž˜¨ j“ô¹Z¬¬©oû|9ÔÌûRš—ÿk½ç8ðf¸G9ðCžÄžòCÖ•­쪌‡ÈÃu³ÆÕ³váµ™x#3.šÎYÚ}} +ºÏOT$ìÿ>fý4 j|endstream +endobj +4309 0 obj << +/Type /Page +/Contents 4310 0 R +/Resources 4308 0 R +/MediaBox [0 0 612 792] +/Parent 4307 0 R +/Annots [ 4312 0 R 4313 0 R 4314 0 R 4315 0 R 4316 0 R 4317 0 R 4318 0 R 4319 0 R 4320 0 R 4321 0 R 4322 0 R 4323 0 R 4324 0 R 4325 0 R 4326 0 R 4327 0 R 4328 0 R 4329 0 R 4330 0 R 4331 0 R 4332 0 R 4333 0 R 4334 0 R 4335 0 R 4336 0 R 4337 0 R 4338 0 R 4339 0 R 4340 0 R 4341 0 R 4342 0 R 4343 0 R 4344 0 R 4345 0 R 4346 0 R 4347 0 R ] +>> endobj +4312 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [214.034 534.864 225.989 545.601] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +4313 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [236.934 510.275 248.89 521.123] +/Subtype /Link +/A << /S /GoTo /D (page.14) >> +>> endobj +4314 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [227.484 485.686 239.439 496.534] +/Subtype /Link +/A << /S /GoTo /D (page.16) >> +>> endobj +4315 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [219.707 461.097 231.663 471.945] +/Subtype /Link +/A << /S /GoTo /D (page.18) >> +>> endobj +4316 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [226.487 436.508 238.443 447.356] +/Subtype /Link +/A << /S /GoTo /D (page.21) >> +>> endobj +4317 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [227.456 411.919 239.411 422.767] +/Subtype /Link +/A << /S /GoTo /D (page.23) >> +>> endobj +4318 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [224.689 387.33 236.644 398.178] +/Subtype /Link +/A << /S /GoTo /D (page.27) >> +>> endobj +4319 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [214.726 362.74 226.681 373.589] +/Subtype /Link +/A << /S /GoTo /D (page.25) >> +>> endobj +4320 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [209.883 338.151 221.838 348.889] +/Subtype /Link +/A << /S /GoTo /D (page.29) >> +>> endobj +4321 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [217.161 313.562 229.116 324.411] +/Subtype /Link +/A << /S /GoTo /D (page.31) >> +>> endobj +4322 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [221.534 288.973 233.489 299.822] +/Subtype /Link +/A << /S /GoTo /D (page.33) >> +>> endobj +4323 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [210.852 264.384 222.807 275.232] +/Subtype /Link +/A << /S /GoTo /D (page.35) >> +>> endobj +4324 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [218.324 239.795 230.279 250.643] +/Subtype /Link +/A << /S /GoTo /D (page.37) >> +>> endobj +4325 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [217.078 215.206 229.033 226.054] +/Subtype /Link +/A << /S /GoTo /D (page.39) >> +>> endobj +4326 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [228.065 190.617 240.02 201.355] +/Subtype /Link +/A << /S /GoTo /D (page.41) >> +>> endobj +4327 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [207.531 166.028 219.486 176.876] +/Subtype /Link +/A << /S /GoTo /D (page.43) >> +>> endobj +4328 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [225.519 141.439 237.474 152.287] +/Subtype /Link +/A << /S /GoTo /D (page.45) >> +>> endobj +4329 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [201.719 116.85 213.674 127.587] +/Subtype /Link +/A << /S /GoTo /D (page.52) >> +>> endobj +4330 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [418.185 534.864 430.14 545.601] +/Subtype /Link +/A << /S /GoTo /D (page.55) >> +>> endobj +4331 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [399.616 510.275 411.571 521.123] +/Subtype /Link +/A << /S /GoTo /D (page.47) >> +>> endobj +4332 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [398.481 485.686 410.436 496.534] +/Subtype /Link +/A << /S /GoTo /D (page.50) >> +>> endobj +4333 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [420.648 461.097 432.603 471.834] +/Subtype /Link +/A << /S /GoTo /D (page.57) >> +>> endobj +4334 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [417.992 436.508 429.947 447.356] +/Subtype /Link +/A << /S /GoTo /D (page.60) >> +>> endobj +4335 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [413.647 411.919 425.602 422.656] +/Subtype /Link +/A << /S /GoTo /D (page.62) >> +>> endobj +4336 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [408.444 387.33 420.399 398.178] +/Subtype /Link +/A << /S /GoTo /D (page.65) >> +>> endobj +4337 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [416.608 362.74 428.563 373.589] +/Subtype /Link +/A << /S /GoTo /D (page.67) >> +>> endobj +4338 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [410.99 338.151 422.945 349] +/Subtype /Link +/A << /S /GoTo /D (page.69) >> +>> endobj +4339 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [415.086 313.562 427.041 324.3] +/Subtype /Link +/A << /S /GoTo /D (page.71) >> +>> endobj +4340 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [403.048 288.973 415.003 299.822] +/Subtype /Link +/A << /S /GoTo /D (page.73) >> +>> endobj +4341 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [418.988 264.384 430.943 275.232] +/Subtype /Link +/A << /S /GoTo /D (page.75) >> +>> endobj +4342 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [416.885 239.795 428.84 250.643] +/Subtype /Link +/A << /S /GoTo /D (page.77) >> +>> endobj +4343 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [399.727 215.206 411.682 225.944] +/Subtype /Link +/A << /S /GoTo /D (page.79) >> +>> endobj +4344 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [398.952 190.617 410.907 201.355] +/Subtype /Link +/A << /S /GoTo /D (page.81) >> +>> endobj +4345 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [411.765 166.028 423.72 176.876] +/Subtype /Link +/A << /S /GoTo /D (page.84) >> +>> endobj +4346 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [412.484 141.439 424.44 152.176] +/Subtype /Link +/A << /S /GoTo /D (page.86) >> +>> endobj +4347 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [413.315 116.85 425.27 127.698] +/Subtype /Link +/A << /S /GoTo /D (page.88) >> +>> endobj +4311 0 obj << +/D [4309 0 R /XYZ 160.667 686.127 null] +>> endobj +4308 0 obj << +/Font << /F22 474 0 R /F14 825 0 R /F8 483 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4350 0 obj << +/Length 1187 +/Filter /FlateDecode +>> +stream +xÚµYYsÚH~çWèQª,ÊIìl9É:^P•·r<È ÊyAPûç·{F'Ö’ŒËU 4_wÓצ?jQ¸Ì-?ŒÜ€zÖl5z^¾eÜŠÜÈçV|/‘ñü³}u}qéPûçküÎò„ï†<(‡ ðíè2ÑRó˜¸<Ь1w£P ÞGŸ¿k>"ֻޅÖwx&.ÔjäÂe4,g£éèïZ±Æ,l*zÀô ½/„$ñòmØ nàE%àf ì‹é>—÷…œe®„5¦Ô„èCQûg̹gG¥ò¶é1ƒ‰0¯#šFJw3‡…öCüÝa?åâë ’ ·#ïØàGꌩ=×:§Ý8‰™¢…Úó,ý”nr-™¦r‹oÈþDÎ,Å©ÅNÈíä.Ó©Z²¡„¥³Í×`$)RGŽaã20H…¥²wX¤¢¿¹fÓA¶øœL`ÿL>‹Üö`ÏÓƒ–H©ÍKLÂâb÷sËÒZ +]XM#4Jã¯%fár˜D ª(Pj*Rûíþj=l_"šD Ü¨ n÷±E§8(TMÂT:L߃ޫë+ùj¼ì—”CÞŸ&+•[²Ò´æ»¨V"SH~€Úüz8ú 'Ò…5L5Å—ðD-S›­–HÕꘌ› + î(V¨ºô½ŽÊ®&b,9åÖ&Ù €ñÚ°©î4Uýw†;åêB·šö@+:ÜT§˜rs‡¥˜lµÞè jIƒÆ*£1jô+“o´1è jÆÜ¿Åw×9f›¬8}EÍ2ÚÃ¥»” +jŠÌP:<™kyt@K„gŠÆ^¦!ô%èF¯¥­,Ì•>|}F¢žOfNt&=u*¼ÁMv>ÁG°V cÉ£lôžØº4Z6ê›J—['ôìõïå²ñ!—Èudôs|Ï$»Ý&«’õ0Ȫ ¬©˜j6C-樱ø¡1›Ãí三r­il1æz‘‚&3ÙzÒG¥¬‡ÍÐBtõ¶¤’9ö¹l­J=ȳçg }üB(ßÊpÏj4^®~oV²ð>n g"-‰WSNª>ØSù¿’[GZ™2¯§¬Må[ZL‹¤hvÞ=•Q³spëVçïÕq…ŸA€dFl‡4Wò$[$ê6nRÑö~BHæCûÈ£¼Hg29ð¨6‘Ë-ž~E:Æ7õQ'=Cz’fiY*“äl›-©Ê­gHaŽì¶E²Ä¸}¨n° ’YG¸}Ó z„ .cáo^s« órÿ[ßÄ{–ïF×¾êŽ@ÌãžÖ|‹TNt¹Å׸˜߆†±\î?Þ/ 5ó’’o^¼Pw¨à oîÃ1÷ý囉«¾ß 2Pù ~&kuñ+ü)Ó¥j5”¶[R„ÈÃ×Uçë2 ²EÄ‚ô ä´fªÎ™hf<†µ‚üg‚O«ã6%®åXS<© ]ˆ0p/Úÿ1‚ߤŽÚÿ¤¢ÆZendstream +endobj +4349 0 obj << +/Type /Page +/Contents 4350 0 R +/Resources 4348 0 R +/MediaBox [0 0 612 792] +/Parent 4307 0 R +/Annots [ 4352 0 R 4353 0 R 4354 0 R 4355 0 R 4356 0 R 4357 0 R 4358 0 R 4359 0 R 4360 0 R 4361 0 R 4362 0 R 4363 0 R 4364 0 R 4365 0 R 4366 0 R 4367 0 R 4368 0 R 4369 0 R 4370 0 R 4371 0 R 4372 0 R 4373 0 R 4374 0 R 4375 0 R 4376 0 R 4377 0 R 4378 0 R 4379 0 R 4380 0 R 4381 0 R 4382 0 R 4383 0 R 4384 0 R 4385 0 R 4386 0 R 4387 0 R 4388 0 R 4389 0 R 4390 0 R 4391 0 R 4392 0 R 4393 0 R 4394 0 R 4395 0 R 4396 0 R 4397 0 R 4398 0 R 4399 0 R 4400 0 R 4401 0 R 4402 0 R 4403 0 R 4404 0 R ] +>> endobj +4352 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [166.463 642.877 178.418 653.725] +/Subtype /Link +/A << /S /GoTo /D (page.90) >> +>> endobj +4353 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [175.872 618.967 187.827 629.815] +/Subtype /Link +/A << /S /GoTo /D (page.94) >> +>> endobj +4354 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [166.462 595.057 178.418 605.905] +/Subtype /Link +/A << /S /GoTo /D (page.92) >> +>> endobj +4355 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [170.365 571.146 182.32 581.994] +/Subtype /Link +/A << /S /GoTo /D (page.96) >> +>> endobj +4356 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [173.658 547.236 190.594 558.084] +/Subtype /Link +/A << /S /GoTo /D (page.100) >> +>> endobj +4357 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [171.776 523.326 188.712 534.063] +/Subtype /Link +/A << /S /GoTo /D (page.102) >> +>> endobj +4358 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [162.893 499.415 179.829 510.263] +/Subtype /Link +/A << /S /GoTo /D (page.104) >> +>> endobj +4359 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [165.632 475.505 182.569 486.353] +/Subtype /Link +/A << /S /GoTo /D (page.106) >> +>> endobj +4360 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.35 451.595 191.286 462.443] +/Subtype /Link +/A << /S /GoTo /D (page.108) >> +>> endobj +4361 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [163.418 427.684 180.355 438.532] +/Subtype /Link +/A << /S /GoTo /D (page.111) >> +>> endobj +4362 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [167.846 403.774 184.783 414.511] +/Subtype /Link +/A << /S /GoTo /D (page.113) >> +>> endobj +4363 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [175.872 379.864 192.808 390.601] +/Subtype /Link +/A << /S /GoTo /D (page.116) >> +>> endobj +4364 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [160.236 355.953 177.172 366.691] +/Subtype /Link +/A << /S /GoTo /D (page.130) >> +>> endobj +4365 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [167.736 332.043 184.672 342.891] +/Subtype /Link +/A << /S /GoTo /D (page.119) >> +>> endobj +4366 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [171.582 308.133 188.519 318.981] +/Subtype /Link +/A << /S /GoTo /D (page.121) >> +>> endobj +4367 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [165.577 284.222 182.513 295.07] +/Subtype /Link +/A << /S /GoTo /D (page.123) >> +>> endobj +4368 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [161.62 260.312 178.556 271.16] +/Subtype /Link +/A << /S /GoTo /D (page.126) >> +>> endobj +4369 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [153.345 236.402 170.282 247.139] +/Subtype /Link +/A << /S /GoTo /D (page.128) >> +>> endobj +4370 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [160.513 212.491 177.449 223.339] +/Subtype /Link +/A << /S /GoTo /D (page.133) >> +>> endobj +4371 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [169.673 188.581 186.609 199.429] +/Subtype /Link +/A << /S /GoTo /D (page.137) >> +>> endobj +4372 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [146.952 164.671 163.889 175.519] +/Subtype /Link +/A << /S /GoTo /D (page.140) >> +>> endobj +4373 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [170.42 140.76 187.356 151.608] +/Subtype /Link +/A << /S /GoTo /D (page.143) >> +>> endobj +4374 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [172.468 116.85 189.404 127.698] +/Subtype /Link +/A << /S /GoTo /D (page.144) >> +>> endobj +4375 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [345.652 642.844 362.588 653.693] +/Subtype /Link +/A << /S /GoTo /D (page.146) >> +>> endobj +4376 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [363.363 618.868 380.3 629.606] +/Subtype /Link +/A << /S /GoTo /D (page.148) >> +>> endobj +4377 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [371.389 594.892 388.325 605.63] +/Subtype /Link +/A << /S /GoTo /D (page.151) >> +>> endobj +4378 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [353.151 570.916 370.088 581.765] +/Subtype /Link +/A << /S /GoTo /D (page.154) >> +>> endobj +4379 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [360.734 546.94 377.671 557.788] +/Subtype /Link +/A << /S /GoTo /D (page.156) >> +>> endobj +4380 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [359.35 522.964 376.287 533.812] +/Subtype /Link +/A << /S /GoTo /D (page.158) >> +>> endobj +4381 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [360.07 498.988 377.006 509.726] +/Subtype /Link +/A << /S /GoTo /D (page.161) >> +>> endobj +4382 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [367.099 475.012 384.036 485.75] +/Subtype /Link +/A << /S /GoTo /D (page.164) >> +>> endobj +4383 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [352.875 451.036 369.811 461.884] +/Subtype /Link +/A << /S /GoTo /D (page.166) >> +>> endobj +4384 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [346.205 427.06 363.142 437.798] +/Subtype /Link +/A << /S /GoTo /D (page.168) >> +>> endobj +4385 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [354.231 403.084 371.167 413.822] +/Subtype /Link +/A << /S /GoTo /D (page.173) >> +>> endobj +4386 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [349.803 368.598 366.739 379.446] +/Subtype /Link +/A << /S /GoTo /D (page.135) >> +>> endobj +4387 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [367.099 344.622 384.036 355.359] +/Subtype /Link +/A << /S /GoTo /D (page.165) >> +>> endobj +4388 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [367.099 320.646 384.036 331.383] +/Subtype /Link +/A << /S /GoTo /D (page.165) >> +>> endobj +4389 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [367.099 296.67 384.036 307.407] +/Subtype /Link +/A << /S /GoTo /D (page.164) >> +>> endobj +4390 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [346.205 284.682 363.142 295.419] +/Subtype /Link +/A << /S /GoTo /D (page.169) >> +>> endobj +4391 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [329.202 272.694 341.157 283.431] +/Subtype /Link +/A << /S /GoTo /D (page.11) >> +>> endobj +4392 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [357.275 260.706 369.23 271.443] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +4393 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [349.526 248.718 361.481 259.455] +/Subtype /Link +/A << /S /GoTo /D (page.11) >> +>> endobj +4394 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [357.551 236.73 369.507 247.467] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +4395 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [349.803 224.742 361.758 235.59] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +4396 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [349.526 212.754 361.481 223.602] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +4397 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [373.436 200.766 385.392 211.614] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +4398 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [383.759 188.778 395.714 199.626] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +4399 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [385.834 176.79 397.79 187.638] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +4400 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [380.853 164.802 392.808 175.539] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +4401 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [382.929 152.814 394.884 163.551] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +4402 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [386.72 140.826 398.675 151.674] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +4403 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [388.795 128.838 400.751 139.686] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +4404 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [388.795 116.85 400.751 127.698] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +4351 0 obj << +/D [4349 0 R /XYZ 106.869 686.127 null] +>> endobj +4348 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4407 0 obj << +/Length 1092 +/Filter /FlateDecode +>> +stream +xÚ­X]o›H}çWðjM™/`ë¶I¶+µicuWÛö:4F¡Àx£hÿüΧ xÀcÕŠpî™{ïæ^ø1ÿ>¤!ÔO2¥ûë_Þr彺€È§M¿ú)«Û¯Œ³ðû꽉R”è»|xû.Áßâ‘÷nåM¼ˆ#D3"šÁûè}ýû·^ì¿÷Ô³'>Ž#@©ÿËÃ)‰ ÈôuåÝxŸvT€€(Cþ¦Ò%ãcvèbW„ °U˜¡ o¹[wêÆËp +”ÄþîVÖ·ùf8È«m1‡eå:„Ypo0HbÇ1ÿ…¦ +¹Ìë[>¿äƒ¿„Ý¥€¿ºàyÞynL{“|‹Q¬€½Ó(ÅTGiç6>aå“2èóº˜ Ã]W,39‹kjÁÅÚ¦âÈ7ÂfÃy}·Ë&±˜Õ 3þ|ü䊭{îØ°‹-_©4¸?Õ‹!¿-·E½~ž‹Tã¯9m[tb\0ü dz¶¼Y*®Åÿ¦+YÙÔGÛ±¼eËF< ¢’ãë»y‹æá$ƒ±¤ÉPÒ¿¥Ÿ¥Ä«M[g’~ÑÌœL +~ Æ즭Ä!]Étºg_–Ÿ¶âe¹=S† ñ0;LCßl¸»‚]æe?{Ô‚ªòŽ}“²9”~i^ƒ¹ :€–± ÈeºåìtcqÐiqØsoAê‰E}ÜæbgÓyþG>h›×E%ÞN“Áx:€K1kY; ?4LF³qÀ~V{¡ÜÏòz-o:$¡ÚoTˆUgz4ëRzÄ*#I@>“›ÅØ™½p{/4ðV +RŸ Þ­ð®Å­>ÂA·AÈ\}úcÁÖ>lr¬èY¹UÒù)wådËëtô¶hŒ + §–t">¿jª©²3äwÖ”dÜk¢5<à+î®Õn˜›¢¬¸ãbÂ'ˆ [8%&Ð4^¶èr¿(L> endobj +4409 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [226.847 654.832 238.802 665.57] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +4410 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [222.668 642.844 234.624 653.693] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +4411 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [202.134 630.856 214.089 641.705] +/Subtype /Link +/A << /S /GoTo /D (page.13) >> +>> endobj +4412 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [244.683 596.37 256.638 607.219] +/Subtype /Link +/A << /S /GoTo /D (page.14) >> +>> endobj +4413 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [236.934 584.382 248.89 595.231] +/Subtype /Link +/A << /S /GoTo /D (page.14) >> +>> endobj +4414 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.59 572.394 218.545 583.242] +/Subtype /Link +/A << /S /GoTo /D (page.14) >> +>> endobj +4415 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [248.931 560.406 260.886 571.254] +/Subtype /Link +/A << /S /GoTo /D (page.15) >> +>> endobj +4416 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [218.462 548.418 230.417 559.266] +/Subtype /Link +/A << /S /GoTo /D (page.15) >> +>> endobj +4417 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [218.185 536.43 230.14 547.168] +/Subtype /Link +/A << /S /GoTo /D (page.15) >> +>> endobj +4418 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [209.33 524.442 221.285 535.29] +/Subtype /Link +/A << /S /GoTo /D (page.15) >> +>> endobj +4419 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.76 512.454 254.715 523.192] +/Subtype /Link +/A << /S /GoTo /D (page.14) >> +>> endobj +4420 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [225.657 500.466 237.612 511.204] +/Subtype /Link +/A << /S /GoTo /D (page.14) >> +>> endobj +4421 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [259.143 488.478 271.098 499.326] +/Subtype /Link +/A << /S /GoTo /D (page.14) >> +>> endobj +4422 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [238.885 476.49 250.841 487.228] +/Subtype /Link +/A << /S /GoTo /D (page.14) >> +>> endobj +4423 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [236.644 464.502 248.599 475.24] +/Subtype /Link +/A << /S /GoTo /D (page.14) >> +>> endobj +4424 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [202.134 452.514 214.089 463.362] +/Subtype /Link +/A << /S /GoTo /D (page.15) >> +>> endobj +4425 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [216.611 440.526 228.566 451.374] +/Subtype /Link +/A << /S /GoTo /D (page.14) >> +>> endobj +4426 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [235.232 416.55 247.188 427.398] +/Subtype /Link +/A << /S /GoTo /D (page.16) >> +>> endobj +4427 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [227.484 404.562 239.439 415.41] +/Subtype /Link +/A << /S /GoTo /D (page.16) >> +>> endobj +4428 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [218.185 392.574 230.14 403.311] +/Subtype /Link +/A << /S /GoTo /D (page.16) >> +>> endobj +4429 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [202.134 380.586 214.089 391.434] +/Subtype /Link +/A << /S /GoTo /D (page.16) >> +>> endobj +4430 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [207.16 368.598 219.115 379.446] +/Subtype /Link +/A << /S /GoTo /D (page.16) >> +>> endobj +4431 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [227.456 344.622 239.411 355.47] +/Subtype /Link +/A << /S /GoTo /D (page.18) >> +>> endobj +4432 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [219.707 332.634 231.663 343.482] +/Subtype /Link +/A << /S /GoTo /D (page.18) >> +>> endobj +4433 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.59 320.646 218.545 331.494] +/Subtype /Link +/A << /S /GoTo /D (page.18) >> +>> endobj +4434 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [220.468 308.658 232.424 319.395] +/Subtype /Link +/A << /S /GoTo /D (page.19) >> +>> endobj +4435 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [218.794 296.67 230.749 307.518] +/Subtype /Link +/A << /S /GoTo /D (page.19) >> +>> endobj +4436 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [210.769 284.682 222.724 295.419] +/Subtype /Link +/A << /S /GoTo /D (page.18) >> +>> endobj +4437 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [210.769 272.694 222.724 283.431] +/Subtype /Link +/A << /S /GoTo /D (page.18) >> +>> endobj +4438 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [210.353 260.706 222.309 271.443] +/Subtype /Link +/A << /S /GoTo /D (page.18) >> +>> endobj +4439 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [210.353 248.718 222.309 259.455] +/Subtype /Link +/A << /S /GoTo /D (page.18) >> +>> endobj +4440 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [210.353 236.73 222.309 247.467] +/Subtype /Link +/A << /S /GoTo /D (page.18) >> +>> endobj +4441 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [202.134 224.742 214.089 235.59] +/Subtype /Link +/A << /S /GoTo /D (page.19) >> +>> endobj +4442 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [199.384 212.754 211.339 223.602] +/Subtype /Link +/A << /S /GoTo /D (page.18) >> +>> endobj +4443 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [272.772 200.766 284.727 211.614] +/Subtype /Link +/A << /S /GoTo /D (page.20) >> +>> endobj +4444 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [219.417 188.778 231.372 199.515] +/Subtype /Link +/A << /S /GoTo /D (page.20) >> +>> endobj +4445 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [224.329 176.79 236.284 187.638] +/Subtype /Link +/A << /S /GoTo /D (page.20) >> +>> endobj +4446 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [243.894 164.802 255.85 175.539] +/Subtype /Link +/A << /S /GoTo /D (page.19) >> +>> endobj +4447 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [234.236 140.826 246.191 151.674] +/Subtype /Link +/A << /S /GoTo /D (page.21) >> +>> endobj +4448 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [226.487 128.838 238.443 139.686] +/Subtype /Link +/A << /S /GoTo /D (page.21) >> +>> endobj +4449 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.59 116.85 218.545 127.698] +/Subtype /Link +/A << /S /GoTo /D (page.21) >> +>> endobj +4450 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [438.221 654.832 450.176 665.681] +/Subtype /Link +/A << /S /GoTo /D (page.22) >> +>> endobj +4451 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [407.752 642.877 419.707 653.725] +/Subtype /Link +/A << /S /GoTo /D (page.21) >> +>> endobj +4452 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [407.475 630.922 419.431 641.66] +/Subtype /Link +/A << /S /GoTo /D (page.21) >> +>> endobj +4453 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [432.05 618.967 444.005 629.704] +/Subtype /Link +/A << /S /GoTo /D (page.21) >> +>> endobj +4454 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [430.943 607.012 442.898 617.86] +/Subtype /Link +/A << /S /GoTo /D (page.21) >> +>> endobj +4455 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [428.701 595.057 440.657 605.905] +/Subtype /Link +/A << /S /GoTo /D (page.21) >> +>> endobj +4456 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [391.424 583.101 403.38 593.95] +/Subtype /Link +/A << /S /GoTo /D (page.21) >> +>> endobj +4457 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [395.454 571.146 407.409 581.994] +/Subtype /Link +/A << /S /GoTo /D (page.21) >> +>> endobj +4458 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [424.495 547.236 436.45 558.084] +/Subtype /Link +/A << /S /GoTo /D (page.23) >> +>> endobj +4459 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [416.746 535.281 428.701 546.129] +/Subtype /Link +/A << /S /GoTo /D (page.23) >> +>> endobj +4460 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [395.88 523.326 407.835 534.174] +/Subtype /Link +/A << /S /GoTo /D (page.23) >> +>> endobj +4461 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [438.221 511.37 450.176 522.219] +/Subtype /Link +/A << /S /GoTo /D (page.24) >> +>> endobj +4462 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [407.752 499.415 419.707 510.263] +/Subtype /Link +/A << /S /GoTo /D (page.24) >> +>> endobj +4463 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [407.475 487.46 419.431 498.198] +/Subtype /Link +/A << /S /GoTo /D (page.24) >> +>> endobj +4464 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [432.05 475.505 444.005 486.242] +/Subtype /Link +/A << /S /GoTo /D (page.23) >> +>> endobj +4465 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [426.626 463.55 438.581 474.398] +/Subtype /Link +/A << /S /GoTo /D (page.23) >> +>> endobj +4466 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [407.807 451.595 419.763 462.332] +/Subtype /Link +/A << /S /GoTo /D (page.23) >> +>> endobj +4467 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [430.943 439.639 442.898 450.488] +/Subtype /Link +/A << /S /GoTo /D (page.23) >> +>> endobj +4468 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [428.701 427.684 440.657 438.532] +/Subtype /Link +/A << /S /GoTo /D (page.23) >> +>> endobj +4469 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [391.424 415.729 403.38 426.577] +/Subtype /Link +/A << /S /GoTo /D (page.24) >> +>> endobj +4470 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [396.422 403.774 408.378 414.622] +/Subtype /Link +/A << /S /GoTo /D (page.23) >> +>> endobj +4471 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [383.692 391.819 395.648 402.667] +/Subtype /Link +/A << /S /GoTo /D (page.25) >> +>> endobj +4472 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [411.765 379.864 423.72 390.712] +/Subtype /Link +/A << /S /GoTo /D (page.25) >> +>> endobj +4473 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [404.016 367.908 415.971 378.757] +/Subtype /Link +/A << /S /GoTo /D (page.25) >> +>> endobj +4474 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [395.88 355.953 407.835 366.801] +/Subtype /Link +/A << /S /GoTo /D (page.25) >> +>> endobj +4475 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [438.221 343.998 450.176 354.846] +/Subtype /Link +/A << /S /GoTo /D (page.26) >> +>> endobj +4476 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [407.752 332.043 419.707 342.891] +/Subtype /Link +/A << /S /GoTo /D (page.26) >> +>> endobj +4477 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [407.475 320.088 419.431 330.825] +/Subtype /Link +/A << /S /GoTo /D (page.25) >> +>> endobj +4478 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [432.05 308.133 444.005 318.87] +/Subtype /Link +/A << /S /GoTo /D (page.25) >> +>> endobj +4479 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [421.119 296.177 433.074 307.026] +/Subtype /Link +/A << /S /GoTo /D (page.25) >> +>> endobj +4480 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [428.176 284.222 440.131 294.96] +/Subtype /Link +/A << /S /GoTo /D (page.25) >> +>> endobj +4481 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [425.934 272.267 437.889 283.005] +/Subtype /Link +/A << /S /GoTo /D (page.25) >> +>> endobj +4482 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [391.424 260.312 403.38 271.16] +/Subtype /Link +/A << /S /GoTo /D (page.26) >> +>> endobj +4483 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [421.727 236.402 433.683 247.25] +/Subtype /Link +/A << /S /GoTo /D (page.27) >> +>> endobj +4484 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [413.979 224.446 425.934 235.295] +/Subtype /Link +/A << /S /GoTo /D (page.27) >> +>> endobj +4485 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [408.084 212.491 420.039 223.339] +/Subtype /Link +/A << /S /GoTo /D (page.27) >> +>> endobj +4486 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [391.424 200.536 403.38 211.384] +/Subtype /Link +/A << /S /GoTo /D (page.27) >> +>> endobj +4487 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [393.655 188.581 405.61 199.429] +/Subtype /Link +/A << /S /GoTo /D (page.27) >> +>> endobj +4488 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [413.398 176.626 425.353 187.474] +/Subtype /Link +/A << /S /GoTo /D (page.28) >> +>> endobj +4489 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [411.128 164.671 423.084 175.519] +/Subtype /Link +/A << /S /GoTo /D (page.28) >> +>> endobj +4490 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [391.424 152.715 403.38 163.564] +/Subtype /Link +/A << /S /GoTo /D (page.28) >> +>> endobj +4491 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [378.849 140.76 390.805 151.498] +/Subtype /Link +/A << /S /GoTo /D (page.29) >> +>> endobj +4492 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [406.922 128.805 418.877 139.543] +/Subtype /Link +/A << /S /GoTo /D (page.29) >> +>> endobj +4493 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [399.173 116.85 411.128 127.587] +/Subtype /Link +/A << /S /GoTo /D (page.29) >> +>> endobj +4408 0 obj << +/D [4406 0 R /XYZ 160.667 686.127 null] +>> endobj +4405 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4496 0 obj << +/Length 1204 +/Filter /FlateDecode +>> +stream +xÚ­˜Ys›H€ßõ+x„ÊŠ0Çcä#k'Ž[µÞÚ$a‹2GÂv\ûçwzRƒµÙ-=ˆã›îž>âòGD> c'Œ?"ÜÉî'³ùäí1eNâ'!sæ7Šœ/¾¸'Ÿ<âþé}›Ÿ:\„~Ì"s‹ \Í'ÄHž>KgÊü$ ÷ÇäË·ÀYLçt÷bçY>‘Ôý„G§$6çåäjò¹E%N¹3¥‘2ÉÚ•¹7%nº’vþæMc.U–ÉûSB¤)±æêÊ£±Û¬êR’°f)Òê67ËX€,«êFRJÅù×€°}ÙêsÖ +k޽˜»«üÇc^e/{ð )÷alÒU3+kØìsQÝŽ³õÞhSd€Ýõ÷?mãD}žhò`YC,×%€¾=–©ÖÏ.ë(øh™½ G~Äh\®3ÕLWÔ¹•»yƒreºnÎ%ÔìG}Tboö_pYÜ.UfŽá&üPŒ…p’gÍYñÓZÏG×I¬ö¦RËâ0€,]î¡­³ªÍS›àß¼Œ ÚÎÚÏšnÌÊt¹]å­Øÿ”7’ÑÌb_Ïök=‡ÿ‹žÓW‘ŒõÔœ‘žƒóx+`±V‚¢ÛIÁ“bãg `–V »}8¸Áï`‚ùvV|†NŠ1Èldrë¦Ü%#øïµ¶×öQló3‰Fî3ð¹µ + \¥ëuWÖ•÷êt{&õa^¦`V›b zg©¡ŽT€—µa8¦î¸·6Êa:☼ãRuJ[4B"`hâ&Ÿb¦Á³$A»’„PÀéÁ¥Òø´áBŽpgùÚV+=´`/"Ô 4ÈÈ]¤¥¡"†ˆû´£5Æ0UÁмðhâöÓ)æ£+þÊWÖßqˆÍ쨸i6È®. 6¤êXÒ˜]„ù¶·ˆ¸óg8²6%˜õ&r—ÛÔöKwC—$¬©u žI›®I@ù'U‘«ï^‡æˆg®ÒûÉ”ÛyKfËU +º¾Ñsृ÷‰Å!F÷ Yëháp–º…b jT¼?¤òoeŸI¿h jâ…d1â ÃwbGB²ÛÊô¬¬UEå;­ÜZª Éæœ FÓšËÚ#þºÝXõ\?tæ$ 1¯]?C*·˜šî« íˆ¯ä“Ø¯ìJ`AÈlô·mlxëæ1Ã<˜Éø5ÊïÔÕ!Óvú}8¶É¡ç˜!éã“ÛúÈÐ¥#øöÐÅú :t±šÚº kŽÈ<Å”n-¬à{óŠ x1së"ÓÍâ˜Oªu³º¯º¯!&ö,…X¨p•%±*Ça`"w!¥fmçŠÄ·›PBŸÒø¿}K0_%Œíçî„~ñî·„ùRº˜3á^½Tžük–z÷Å.swî‘ „W"y¯†凢ѷŠJ¯•aQõ¢NÞ·ï­D®oLÌRÐð¢kµLfš*Æ$ð…`rÛ”Dº|õû›O©/_lBš÷(]•}Ïù^¯d “î]âoÀ¿ž¨»"¥LMendstream +endobj +4495 0 obj << +/Type /Page +/Contents 4496 0 R +/Resources 4494 0 R +/MediaBox [0 0 612 792] +/Parent 4307 0 R +/Annots [ 4498 0 R 4499 0 R 4500 0 R 4501 0 R 4502 0 R 4503 0 R 4504 0 R 4505 0 R 4506 0 R 4507 0 R 4508 0 R 4509 0 R 4510 0 R 4511 0 R 4512 0 R 4513 0 R 4514 0 R 4515 0 R 4516 0 R 4517 0 R 4518 0 R 4519 0 R 4520 0 R 4521 0 R 4522 0 R 4523 0 R 4524 0 R 4525 0 R 4526 0 R 4527 0 R 4528 0 R 4529 0 R 4530 0 R 4531 0 R 4532 0 R 4533 0 R 4534 0 R 4535 0 R 4536 0 R 4537 0 R 4538 0 R 4539 0 R 4540 0 R 4541 0 R 4542 0 R 4543 0 R 4544 0 R 4545 0 R 4546 0 R 4547 0 R 4548 0 R 4549 0 R 4550 0 R 4551 0 R 4552 0 R 4553 0 R 4554 0 R 4555 0 R 4556 0 R 4557 0 R 4558 0 R 4559 0 R 4560 0 R 4561 0 R 4562 0 R 4563 0 R 4564 0 R 4565 0 R 4566 0 R 4567 0 R 4568 0 R 4569 0 R 4570 0 R 4571 0 R 4572 0 R 4573 0 R 4574 0 R 4575 0 R 4576 0 R 4577 0 R 4578 0 R 4579 0 R 4580 0 R 4581 0 R 4582 0 R 4583 0 R ] +>> endobj +4498 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.791 654.832 164.747 665.681] +/Subtype /Link +/A << /S /GoTo /D (page.29) >> +>> endobj +4499 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [195.133 642.844 207.088 653.693] +/Subtype /Link +/A << /S /GoTo /D (page.30) >> +>> endobj +4500 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.664 630.856 176.619 641.705] +/Subtype /Link +/A << /S /GoTo /D (page.30) >> +>> endobj +4501 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.387 618.868 176.342 629.606] +/Subtype /Link +/A << /S /GoTo /D (page.29) >> +>> endobj +4502 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.961 606.88 200.917 617.618] +/Subtype /Link +/A << /S /GoTo /D (page.29) >> +>> endobj +4503 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [159.046 594.892 171.001 605.63] +/Subtype /Link +/A << /S /GoTo /D (page.29) >> +>> endobj +4504 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [187.855 582.904 199.81 593.753] +/Subtype /Link +/A << /S /GoTo /D (page.29) >> +>> endobj +4505 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.613 570.916 197.568 581.765] +/Subtype /Link +/A << /S /GoTo /D (page.29) >> +>> endobj +4506 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [148.336 558.928 160.291 569.777] +/Subtype /Link +/A << /S /GoTo /D (page.30) >> +>> endobj +4507 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [143.039 536.43 154.994 547.278] +/Subtype /Link +/A << /S /GoTo /D (page.31) >> +>> endobj +4508 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [171.112 524.442 183.067 535.29] +/Subtype /Link +/A << /S /GoTo /D (page.31) >> +>> endobj +4509 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [163.363 512.454 175.318 523.302] +/Subtype /Link +/A << /S /GoTo /D (page.31) >> +>> endobj +4510 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.791 500.466 164.747 511.314] +/Subtype /Link +/A << /S /GoTo /D (page.31) >> +>> endobj +4511 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.996 488.478 176.951 499.326] +/Subtype /Link +/A << /S /GoTo /D (page.31) >> +>> endobj +4512 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [182.569 476.49 194.524 487.338] +/Subtype /Link +/A << /S /GoTo /D (page.31) >> +>> endobj +4513 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [189.211 464.502 201.166 475.35] +/Subtype /Link +/A << /S /GoTo /D (page.31) >> +>> endobj +4514 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [186.997 452.514 198.952 463.362] +/Subtype /Link +/A << /S /GoTo /D (page.31) >> +>> endobj +4515 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [191.424 440.526 203.38 451.374] +/Subtype /Link +/A << /S /GoTo /D (page.31) >> +>> endobj +4516 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [208.887 428.538 220.842 439.386] +/Subtype /Link +/A << /S /GoTo /D (page.31) >> +>> endobj +4517 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [148.336 416.55 160.291 427.398] +/Subtype /Link +/A << /S /GoTo /D (page.32) >> +>> endobj +4518 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [147.412 404.562 159.367 415.41] +/Subtype /Link +/A << /S /GoTo /D (page.33) >> +>> endobj +4519 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [175.484 392.574 187.439 403.422] +/Subtype /Link +/A << /S /GoTo /D (page.33) >> +>> endobj +4520 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [167.735 380.586 179.691 391.434] +/Subtype /Link +/A << /S /GoTo /D (page.33) >> +>> endobj +4521 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.791 368.598 164.747 379.446] +/Subtype /Link +/A << /S /GoTo /D (page.33) >> +>> endobj +4522 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [195.133 356.61 207.088 367.458] +/Subtype /Link +/A << /S /GoTo /D (page.34) >> +>> endobj +4523 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.664 344.622 176.619 355.47] +/Subtype /Link +/A << /S /GoTo /D (page.33) >> +>> endobj +4524 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.387 332.634 176.342 343.371] +/Subtype /Link +/A << /S /GoTo /D (page.33) >> +>> endobj +4525 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.961 320.646 200.917 331.383] +/Subtype /Link +/A << /S /GoTo /D (page.33) >> +>> endobj +4526 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [187.855 308.658 199.81 319.506] +/Subtype /Link +/A << /S /GoTo /D (page.33) >> +>> endobj +4527 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.613 296.67 197.568 307.518] +/Subtype /Link +/A << /S /GoTo /D (page.33) >> +>> endobj +4528 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [148.336 284.682 160.291 295.53] +/Subtype /Link +/A << /S /GoTo /D (page.34) >> +>> endobj +4529 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [183.136 260.706 195.091 271.554] +/Subtype /Link +/A << /S /GoTo /D (page.14) >> +>> endobj +4530 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [165.909 248.718 177.864 259.566] +/Subtype /Link +/A << /S /GoTo /D (page.18) >> +>> endobj +4531 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [172.689 236.73 184.644 247.578] +/Subtype /Link +/A << /S /GoTo /D (page.21) >> +>> endobj +4532 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [173.658 224.742 185.613 235.59] +/Subtype /Link +/A << /S /GoTo /D (page.23) >> +>> endobj +4533 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [160.928 212.754 172.883 223.602] +/Subtype /Link +/A << /S /GoTo /D (page.25) >> +>> endobj +4534 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [156.085 200.766 168.04 211.503] +/Subtype /Link +/A << /S /GoTo /D (page.29) >> +>> endobj +4535 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [163.363 188.778 175.318 199.626] +/Subtype /Link +/A << /S /GoTo /D (page.31) >> +>> endobj +4536 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [167.735 176.79 179.691 187.638] +/Subtype /Link +/A << /S /GoTo /D (page.33) >> +>> endobj +4537 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [157.053 164.802 169.009 175.65] +/Subtype /Link +/A << /S /GoTo /D (page.35) >> +>> endobj +4538 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.525 152.814 176.481 163.662] +/Subtype /Link +/A << /S /GoTo /D (page.37) >> +>> endobj +4539 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [153.732 140.826 165.688 151.674] +/Subtype /Link +/A << /S /GoTo /D (page.43) >> +>> endobj +4540 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [156.528 128.838 168.483 139.686] +/Subtype /Link +/A << /S /GoTo /D (page.47) >> +>> endobj +4541 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [155.393 116.85 167.348 127.698] +/Subtype /Link +/A << /S /GoTo /D (page.50) >> +>> endobj +4542 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [337.211 654.832 349.166 665.57] +/Subtype /Link +/A << /S /GoTo /D (page.52) >> +>> endobj +4543 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [350.91 642.877 362.865 653.615] +/Subtype /Link +/A << /S /GoTo /D (page.64) >> +>> endobj +4544 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [357.192 630.922 369.147 641.77] +/Subtype /Link +/A << /S /GoTo /D (page.69) >> +>> endobj +4545 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [349.249 618.967 361.204 629.815] +/Subtype /Link +/A << /S /GoTo /D (page.73) >> +>> endobj +4546 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [346.067 607.012 358.022 617.749] +/Subtype /Link +/A << /S /GoTo /D (page.83) >> +>> endobj +4547 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [357.967 595.057 369.922 605.905] +/Subtype /Link +/A << /S /GoTo /D (page.84) >> +>> endobj +4548 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [358.686 583.101 370.641 593.839] +/Subtype /Link +/A << /S /GoTo /D (page.86) >> +>> endobj +4549 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [355.753 571.146 367.708 581.994] +/Subtype /Link +/A << /S /GoTo /D (page.90) >> +>> endobj +4550 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [355.753 559.191 367.708 570.039] +/Subtype /Link +/A << /S /GoTo /D (page.92) >> +>> endobj +4551 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [365.162 547.236 377.117 558.084] +/Subtype /Link +/A << /S /GoTo /D (page.94) >> +>> endobj +4552 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [359.655 535.281 371.61 546.129] +/Subtype /Link +/A << /S /GoTo /D (page.96) >> +>> endobj +4553 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [359.627 523.326 371.582 534.063] +/Subtype /Link +/A << /S /GoTo /D (page.99) >> +>> endobj +4554 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [361.066 511.37 378.003 522.108] +/Subtype /Link +/A << /S /GoTo /D (page.102) >> +>> endobj +4555 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [352.183 499.415 369.119 510.263] +/Subtype /Link +/A << /S /GoTo /D (page.104) >> +>> endobj +4556 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [357.026 487.46 373.962 498.308] +/Subtype /Link +/A << /S /GoTo /D (page.119) >> +>> endobj +4557 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [360.872 475.505 377.809 486.353] +/Subtype /Link +/A << /S /GoTo /D (page.121) >> +>> endobj +4558 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [350.91 463.55 367.846 474.398] +/Subtype /Link +/A << /S /GoTo /D (page.126) >> +>> endobj +4559 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [342.635 451.595 359.572 462.332] +/Subtype /Link +/A << /S /GoTo /D (page.128) >> +>> endobj +4560 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [358.963 439.639 375.899 450.488] +/Subtype /Link +/A << /S /GoTo /D (page.137) >> +>> endobj +4561 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [359.35 427.684 376.287 438.532] +/Subtype /Link +/A << /S /GoTo /D (page.158) >> +>> endobj +4562 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [360.07 415.729 377.006 426.467] +/Subtype /Link +/A << /S /GoTo /D (page.161) >> +>> endobj +4563 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [349.803 391.819 366.739 402.667] +/Subtype /Link +/A << /S /GoTo /D (page.133) >> +>> endobj +4564 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [370.835 391.819 387.772 402.667] +/Subtype /Link +/A << /S /GoTo /D (page.134) >> +>> endobj +4565 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [346.205 367.908 363.142 378.646] +/Subtype /Link +/A << /S /GoTo /D (page.168) >> +>> endobj +4566 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [354.231 355.953 371.167 366.691] +/Subtype /Link +/A << /S /GoTo /D (page.173) >> +>> endobj +4567 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [349.803 332.043 366.739 342.891] +/Subtype /Link +/A << /S /GoTo /D (page.135) >> +>> endobj +4568 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [371.389 320.088 388.325 330.825] +/Subtype /Link +/A << /S /GoTo /D (page.153) >> +>> endobj +4569 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [346.343 296.177 358.299 307.026] +/Subtype /Link +/A << /S /GoTo /D (page.36) >> +>> endobj +4570 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [372.426 272.267 384.381 283.115] +/Subtype /Link +/A << /S /GoTo /D (page.15) >> +>> endobj +4571 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [361.979 260.312 373.935 271.16] +/Subtype /Link +/A << /S /GoTo /D (page.22) >> +>> endobj +4572 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [362.948 248.357 374.903 259.205] +/Subtype /Link +/A << /S /GoTo /D (page.24) >> +>> endobj +4573 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [350.218 236.402 362.173 247.25] +/Subtype /Link +/A << /S /GoTo /D (page.26) >> +>> endobj +4574 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [345.375 224.446 357.33 235.184] +/Subtype /Link +/A << /S /GoTo /D (page.30) >> +>> endobj +4575 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [357.026 212.491 368.981 223.339] +/Subtype /Link +/A << /S /GoTo /D (page.34) >> +>> endobj +4576 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [344.683 200.536 356.638 211.384] +/Subtype /Link +/A << /S /GoTo /D (page.51) >> +>> endobj +4577 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [337.211 188.581 349.166 199.318] +/Subtype /Link +/A << /S /GoTo /D (page.53) >> +>> endobj +4578 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [364.387 176.626 376.342 187.363] +/Subtype /Link +/A << /S /GoTo /D (page.55) >> +>> endobj +4579 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [359.848 164.671 371.804 175.408] +/Subtype /Link +/A << /S /GoTo /D (page.63) >> +>> endobj +4580 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [362.81 152.715 374.765 163.564] +/Subtype /Link +/A << /S /GoTo /D (page.68) >> +>> endobj +4581 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [357.192 140.76 369.147 151.608] +/Subtype /Link +/A << /S /GoTo /D (page.70) >> +>> endobj +4582 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [349.249 128.805 361.204 139.653] +/Subtype /Link +/A << /S /GoTo /D (page.74) >> +>> endobj +4583 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [365.19 116.85 377.145 127.698] +/Subtype /Link +/A << /S /GoTo /D (page.75) >> +>> endobj +4497 0 obj << +/D [4495 0 R /XYZ 106.869 686.127 null] +>> endobj +4494 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4586 0 obj << +/Length 1197 +/Filter /FlateDecode +>> +stream +xÚ­XÛnÛ8}÷WèQB×*¯ù˜æ†M›f71vhû µGˆ-¥²’ÖèÏïmÉ&e°Hñðp83œ~8 2æ\‰qŠY0]Ž>LFï/ d,Lî5p2ûŒ¢o“«€Q§4ißþþùì<Âá?jht>á–xŒb*E0¦±\ñ~}ù†‚ÙW#3öÚ(ÆRËKyL°hû‹ÑÝèÏ æ84“T‹deû"^W Âjþ[4¦”†©Ô£`ŒIŒPªA·y4Æáª*Aì¬ÑŽíá…ÆßeË'€.4²Ž¶h‚ìwÙO€T÷@OD¸î‰‹üAIñ¨°y½êÊB¨‹½øRÁŒHpê7€)î?fð¨Ÿ,” + 0að$±`?SUcv¨#g«ÙY¶°ªe}šÎºgù"Ó›o¡”+èû ð¯ÅK|E`Dziœ2ÙZ×ÍŒ ¦+ÁÔ+ëX«÷545V2NM6Ú'ú­™8ìæ‘¥OŸ—y=DÌóæL/¾Pn†×^‘Í‹lÕÜ<È#žá]iÒfOJ¶)¦ +óØÇŒÚÐ0húJƒžØµÓ}‹ +¯E]>ï£|ÚS‡Úw•”öþ PŸ•Äa |zc |²kKŸ|Ð×hVá~òˆÍ÷±Çk–!¯Ùf*²êÃAA¥Í0m|q2µQøï—ø¶ç²•ß7jur—:€çµ +¿Qxô“»bä¼o¡²j¬>n¾"LÝX±‡-·–gä°åö%¦s{¨,¾ó;i,pÌ8…rC_ôaÛôŒ'û˜½îDùx«Ê0emÐis]üš´«|ÚQ>í!MÛžƒþè@"Ü‚®s}²T­CÎl¼+ªèÄü¢ë"Nª'¨A oEö•}²Ãn ÿKmOQGÔÝÉU¤¢‚cr_#'ï¨>‡0¦*\÷ÎÜnsÞ˜·ïy‰ß›n×Â&‘ æ\ÌÍ‹cæË|HÎöW$X˜-žÅØuãd/†0i…2l³[ųt ˜¼Â‹é]žãŠ)©c‡^bÛn÷ºÌŠnG9„ð›ã´2^ Þ˜èÜWä¦x^Ùɲ7YöãXY- óÅUÕî ½Õ.´(@~~¶ŸDy­È;{–G8Ìn­ÕQüB«Æº*‡z#_é2Ó£WøGŽMÙR¾rjcmVÎ7k`—k9åèc<ÉßÉçIþNl'i•3ø3_å°ßÖ^EÕ iNéZ– *êüûs^N×C»iñWù^f=¿U~Ïsíø*«rpb“ÕÍH°Â¢œc«'ïݨØ{OBÄÿ¼T¡4&21’p¾½ùaAË”u¯U& Fyx·.#x4&Ÿ+õš…“£$„øc•΂‹Æ æËZ·Oß©Î;ÓùW­Mûˆ&pzÕ5Eûæ6n§(R ~4ݬT 3Ó¹4GCÏ ÀQÆ­œÓLÑ¿(ÞJÏ׌D1ç4Bp{`N*áÛmIÌS7X NÚÛb£«¨5™æ¢Ò;вZ‹ÿ"©±&ü…Ê„ªendstream +endobj +4585 0 obj << +/Type /Page +/Contents 4586 0 R +/Resources 4584 0 R +/MediaBox [0 0 612 792] +/Parent 4307 0 R +/Annots [ 4588 0 R 4589 0 R 4590 0 R 4591 0 R 4592 0 R 4593 0 R 4594 0 R 4595 0 R 4596 0 R 4597 0 R 4598 0 R 4599 0 R 4600 0 R 4601 0 R 4602 0 R 4603 0 R 4604 0 R 4605 0 R 4606 0 R 4607 0 R 4608 0 R 4609 0 R 4610 0 R 4611 0 R 4612 0 R 4613 0 R 4614 0 R 4615 0 R 4616 0 R 4617 0 R 4618 0 R 4619 0 R 4620 0 R 4621 0 R 4622 0 R 4623 0 R 4624 0 R 4625 0 R 4626 0 R 4627 0 R 4628 0 R 4629 0 R 4630 0 R 4631 0 R 4632 0 R 4633 0 R 4634 0 R 4635 0 R 4636 0 R 4637 0 R 4638 0 R 4639 0 R 4640 0 R 4641 0 R 4642 0 R 4643 0 R 4644 0 R 4645 0 R 4646 0 R 4647 0 R 4648 0 R 4649 0 R 4650 0 R 4651 0 R 4652 0 R 4653 0 R 4654 0 R 4655 0 R 4656 0 R 4657 0 R 4658 0 R 4659 0 R 4660 0 R 4661 0 R 4662 0 R 4663 0 R 4664 0 R 4665 0 R 4666 0 R 4667 0 R 4668 0 R 4669 0 R 4670 0 R 4671 0 R 4672 0 R ] +>> endobj +4588 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [210.436 654.832 222.392 665.57] +/Subtype /Link +/A << /S /GoTo /D (page.79) >> +>> endobj +4589 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [225.574 642.825 242.511 653.563] +/Subtype /Link +/A << /S /GoTo /D (page.103) >> +>> endobj +4590 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [221.534 630.818 238.47 641.666] +/Subtype /Link +/A << /S /GoTo /D (page.120) >> +>> endobj +4591 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [225.381 618.81 242.317 629.659] +/Subtype /Link +/A << /S /GoTo /D (page.122) >> +>> endobj +4592 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [219.375 606.803 236.312 617.651] +/Subtype /Link +/A << /S /GoTo /D (page.123) >> +>> endobj +4593 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [215.418 594.796 232.354 605.644] +/Subtype /Link +/A << /S /GoTo /D (page.127) >> +>> endobj +4594 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [223.471 582.788 240.408 593.636] +/Subtype /Link +/A << /S /GoTo /D (page.138) >> +>> endobj +4595 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [213.757 547.941 225.713 558.789] +/Subtype /Link +/A << /S /GoTo /D (page.74) >> +>> endobj +4596 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [190.528 535.933 202.483 546.782] +/Subtype /Link +/A << /S /GoTo /D (page.35) >> +>> endobj +4597 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [218.6 523.926 230.556 534.774] +/Subtype /Link +/A << /S /GoTo /D (page.35) >> +>> endobj +4598 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.59 511.919 218.545 522.767] +/Subtype /Link +/A << /S /GoTo /D (page.35) >> +>> endobj +4599 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [233.185 499.911 245.14 510.649] +/Subtype /Link +/A << /S /GoTo /D (page.36) >> +>> endobj +4600 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [210.852 487.904 222.807 498.752] +/Subtype /Link +/A << /S /GoTo /D (page.35) >> +>> endobj +4601 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [214.615 475.897 226.57 486.247] +/Subtype /Link +/A << /S /GoTo /D (page.35) >> +>> endobj +4602 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [224.135 463.889 236.09 474.737] +/Subtype /Link +/A << /S /GoTo /D (page.35) >> +>> endobj +4603 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [218.794 451.882 230.749 462.73] +/Subtype /Link +/A << /S /GoTo /D (page.36) >> +>> endobj +4604 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [223.083 439.874 235.039 450.723] +/Subtype /Link +/A << /S /GoTo /D (page.36) >> +>> endobj +4605 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [202.134 427.867 214.089 438.715] +/Subtype /Link +/A << /S /GoTo /D (page.36) >> +>> endobj +4606 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [226.072 403.852 238.028 414.701] +/Subtype /Link +/A << /S /GoTo /D (page.37) >> +>> endobj +4607 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.59 391.845 218.545 402.693] +/Subtype /Link +/A << /S /GoTo /D (page.37) >> +>> endobj +4608 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [218.324 379.838 230.279 390.686] +/Subtype /Link +/A << /S /GoTo /D (page.37) >> +>> endobj +4609 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [224.135 367.83 236.09 378.678] +/Subtype /Link +/A << /S /GoTo /D (page.37) >> +>> endobj +4610 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [202.134 355.823 214.089 366.671] +/Subtype /Link +/A << /S /GoTo /D (page.37) >> +>> endobj +4611 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [198 343.815 209.955 354.664] +/Subtype /Link +/A << /S /GoTo /D (page.37) >> +>> endobj +4612 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [223.083 331.808 235.039 342.656] +/Subtype /Link +/A << /S /GoTo /D (page.38) >> +>> endobj +4613 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [224.827 307.793 236.782 318.642] +/Subtype /Link +/A << /S /GoTo /D (page.39) >> +>> endobj +4614 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [217.078 295.786 229.033 306.634] +/Subtype /Link +/A << /S /GoTo /D (page.39) >> +>> endobj +4615 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [224.135 283.779 236.09 294.627] +/Subtype /Link +/A << /S /GoTo /D (page.39) >> +>> endobj +4616 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [202.134 271.771 214.089 282.619] +/Subtype /Link +/A << /S /GoTo /D (page.39) >> +>> endobj +4617 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [196.754 259.764 208.71 270.612] +/Subtype /Link +/A << /S /GoTo /D (page.39) >> +>> endobj +4618 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [223.083 247.756 235.039 258.605] +/Subtype /Link +/A << /S /GoTo /D (page.40) >> +>> endobj +4619 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [235.897 223.742 252.833 234.479] +/Subtype /Link +/A << /S /GoTo /D (page.151) >> +>> endobj +4620 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [207.741 211.734 219.696 222.472] +/Subtype /Link +/A << /S /GoTo /D (page.41) >> +>> endobj +4621 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [235.814 199.727 247.769 210.464] +/Subtype /Link +/A << /S /GoTo /D (page.41) >> +>> endobj +4622 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [228.065 187.72 240.02 198.457] +/Subtype /Link +/A << /S /GoTo /D (page.41) >> +>> endobj +4623 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [218.462 175.712 230.417 186.56] +/Subtype /Link +/A << /S /GoTo /D (page.41) >> +>> endobj +4624 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [218.185 163.705 230.14 174.442] +/Subtype /Link +/A << /S /GoTo /D (page.42) >> +>> endobj +4625 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [202.134 151.698 214.089 162.546] +/Subtype /Link +/A << /S /GoTo /D (page.41) >> +>> endobj +4626 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [187.207 128.857 199.162 139.706] +/Subtype /Link +/A << /S /GoTo /D (page.43) >> +>> endobj +4627 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [215.279 116.85 227.235 127.698] +/Subtype /Link +/A << /S /GoTo /D (page.43) >> +>> endobj +4628 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [395.88 654.832 407.835 665.681] +/Subtype /Link +/A << /S /GoTo /D (page.43) >> +>> endobj +4629 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [396.821 642.844 408.776 653.693] +/Subtype /Link +/A << /S /GoTo /D (page.43) >> +>> endobj +4630 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [408.084 630.856 420.039 641.705] +/Subtype /Link +/A << /S /GoTo /D (page.43) >> +>> endobj +4631 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [412.374 618.868 424.329 629.717] +/Subtype /Link +/A << /S /GoTo /D (page.43) >> +>> endobj +4632 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [430.085 606.88 442.04 617.729] +/Subtype /Link +/A << /S /GoTo /D (page.43) >> +>> endobj +4633 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [391.424 594.892 403.38 605.741] +/Subtype /Link +/A << /S /GoTo /D (page.43) >> +>> endobj +4634 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [400.142 570.916 412.097 581.765] +/Subtype /Link +/A << /S /GoTo /D (page.35) >> +>> endobj +4635 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [410.99 558.928 422.945 569.777] +/Subtype /Link +/A << /S /GoTo /D (page.70) >> +>> endobj +4636 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [394.485 546.94 406.44 557.788] +/Subtype /Link +/A << /S /GoTo /D (page.45) >> +>> endobj +4637 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [422.558 534.952 434.513 545.8] +/Subtype /Link +/A << /S /GoTo /D (page.45) >> +>> endobj +4638 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [414.809 522.964 426.764 533.812] +/Subtype /Link +/A << /S /GoTo /D (page.45) >> +>> endobj +4639 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [411.35 510.976 423.305 521.714] +/Subtype /Link +/A << /S /GoTo /D (page.45) >> +>> endobj +4640 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [403.601 498.988 415.556 509.836] +/Subtype /Link +/A << /S /GoTo /D (page.45) >> +>> endobj +4641 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [403.324 487 415.279 497.848] +/Subtype /Link +/A << /S /GoTo /D (page.45) >> +>> endobj +4642 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [408.084 475.012 420.039 485.86] +/Subtype /Link +/A << /S /GoTo /D (page.46) >> +>> endobj +4643 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [408.223 463.024 420.178 473.762] +/Subtype /Link +/A << /S /GoTo /D (page.45) >> +>> endobj +4644 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [416.137 451.036 428.092 461.774] +/Subtype /Link +/A << /S /GoTo /D (page.45) >> +>> endobj +4645 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [410.298 439.048 422.253 449.786] +/Subtype /Link +/A << /S /GoTo /D (page.45) >> +>> endobj +4646 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [411.959 427.06 423.914 437.908] +/Subtype /Link +/A << /S /GoTo /D (page.45) >> +>> endobj +4647 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [391.424 415.072 403.38 425.92] +/Subtype /Link +/A << /S /GoTo /D (page.46) >> +>> endobj +4648 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [379.292 392.574 391.247 403.422] +/Subtype /Link +/A << /S /GoTo /D (page.47) >> +>> endobj +4649 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [407.365 380.586 419.32 391.434] +/Subtype /Link +/A << /S /GoTo /D (page.47) >> +>> endobj +4650 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [395.88 368.598 407.835 379.446] +/Subtype /Link +/A << /S /GoTo /D (page.47) >> +>> endobj +4651 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [399.616 356.61 411.571 367.458] +/Subtype /Link +/A << /S /GoTo /D (page.47) >> +>> endobj +4652 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [415.667 356.61 427.622 367.458] +/Subtype /Link +/A << /S /GoTo /D (page.48) >> +>> endobj +4653 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [409.758 344.622 421.714 355.359] +/Subtype /Link +/A << /S /GoTo /D (page.48) >> +>> endobj +4654 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [408.084 332.634 420.039 343.482] +/Subtype /Link +/A << /S /GoTo /D (page.48) >> +>> endobj +4655 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [437.474 320.646 449.429 331.494] +/Subtype /Link +/A << /S /GoTo /D (page.49) >> +>> endobj +4656 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [444.503 308.658 456.458 319.395] +/Subtype /Link +/A << /S /GoTo /D (page.49) >> +>> endobj +4657 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [408.707 296.67 420.662 307.407] +/Subtype /Link +/A << /S /GoTo /D (page.49) >> +>> endobj +4658 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [434.983 284.682 446.939 295.419] +/Subtype /Link +/A << /S /GoTo /D (page.49) >> +>> endobj +4659 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [391.424 272.694 403.38 283.542] +/Subtype /Link +/A << /S /GoTo /D (page.48) >> +>> endobj +4660 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [378.158 260.706 390.113 271.554] +/Subtype /Link +/A << /S /GoTo /D (page.50) >> +>> endobj +4661 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [406.23 248.718 418.185 259.566] +/Subtype /Link +/A << /S /GoTo /D (page.50) >> +>> endobj +4662 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [395.88 236.73 407.835 247.578] +/Subtype /Link +/A << /S /GoTo /D (page.50) >> +>> endobj +4663 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [438.221 224.742 450.176 235.59] +/Subtype /Link +/A << /S /GoTo /D (page.51) >> +>> endobj +4664 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [398.481 212.754 410.436 223.602] +/Subtype /Link +/A << /S /GoTo /D (page.50) >> +>> endobj +4665 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [407.752 200.766 419.707 211.614] +/Subtype /Link +/A << /S /GoTo /D (page.51) >> +>> endobj +4666 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [407.475 188.778 419.431 199.515] +/Subtype /Link +/A << /S /GoTo /D (page.51) >> +>> endobj +4667 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [448.765 176.79 460.72 187.638] +/Subtype /Link +/A << /S /GoTo /D (page.50) >> +>> endobj +4668 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [432.05 164.802 444.005 175.539] +/Subtype /Link +/A << /S /GoTo /D (page.50) >> +>> endobj +4669 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [425.796 152.814 437.751 163.662] +/Subtype /Link +/A << /S /GoTo /D (page.50) >> +>> endobj +4670 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [444.337 140.826 456.292 151.674] +/Subtype /Link +/A << /S /GoTo /D (page.50) >> +>> endobj +4671 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [430.943 128.838 442.898 139.686] +/Subtype /Link +/A << /S /GoTo /D (page.50) >> +>> endobj +4672 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [428.701 116.85 440.657 127.698] +/Subtype /Link +/A << /S /GoTo /D (page.51) >> +>> endobj +4587 0 obj << +/D [4585 0 R /XYZ 160.667 686.127 null] +>> endobj +4584 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4675 0 obj << +/Length 1185 +/Filter /FlateDecode +>> +stream +xÚÅXMs›H½ó+8BeE˜†clY.%qìHÔ:•‘X™2a¥´ûç·{`’ŒÖ®ÚòÁ^¿~ÝÓÝÌ@tþˆNlÏ¢®¯»~`yÄÑkí,ÔÞN(Ó+p™þ%áò›1ý4¾0‰ñÅü¾×îZ>óêG”¼«]„©™G¶Å‚@1+ð9òþÒ¾ý°õ¥fëï5|æë¿áÚ¶ Öšãq‹¿þjsísCEN}D=!IjôŸJ,“…I}ãþsÄ3¸P†5! ÆÈÉ„"`ŽÁá’"òíRÐ*¬¾ÛÌ®€-çžå9A-`O Þiå½zÞ¦Y¤±9"FT<Û‡¸<ÃpÊ"OyŽ6wpe«Xš1…™BÄ!àYãÝõw›°>"‰ËZ¹RáÒnø"l¾]é8NÅIN|Æ5 wåõ¡>JTÐÿ^au©{~Üÿù¶g˜EêY2`õ;è'Iãp¸Ž^?¾Fð-U:7]å\ ½Ý^ö±l”ºŠ… +rùª¬Aë| ;Ï®ÈϒϸGŒ–’*P¸ƒô5C¢u q|ź_7scÒ¶Óí÷Šï(Ø÷_ã"—HU–nÄ|Jã.P•}(Þn¹BáA7¾EK\Ò×Ê'ê^Á¦¼#µÕvã'îÀ$8nßbµú«sãFòþW¢È‹†– ¥ÅQ/¦B}Àb/UàV?[½hò79š Þ5Öœ6âB¨.įÕë¼[æÉßC;Úõ{‰ÊžÙðnŒ¹™IITQóVÚ¶Ùýa·äâ&Oï¢&ÈäS”ƒ+Ò–sbQê¿ìÛJý•¦ÖÑ|þqt× +<§ým%¼ƒðÆù.3á_yWU]²ÁÛT±]<šÂ³\$êCRV .„åù›7ÕÅO$ØUoL汨÷úÎ̪þŸ#PÞW?£¬:ÚŠ—Í”††ØžaÕzØ"u.Ì`©DÞÛâœAØ”xÕù°:÷P¾xD-nsü‚å·>‘úÛÎ ³àÂ" Ò‹¾ø?ÔÆÿ6•k÷/Ê‹·endstream +endobj +4674 0 obj << +/Type /Page +/Contents 4675 0 R +/Resources 4673 0 R +/MediaBox [0 0 612 792] +/Parent 4748 0 R +/Annots [ 4677 0 R 4678 0 R 4679 0 R 4680 0 R 4681 0 R 4682 0 R 4683 0 R 4684 0 R 4685 0 R 4686 0 R 4687 0 R 4688 0 R 4689 0 R 4690 0 R 4691 0 R 4692 0 R 4693 0 R 4694 0 R 4695 0 R 4696 0 R 4697 0 R 4698 0 R 4699 0 R 4700 0 R 4701 0 R 4702 0 R 4703 0 R 4704 0 R 4705 0 R 4706 0 R 4707 0 R 4708 0 R 4709 0 R 4710 0 R 4711 0 R 4712 0 R 4713 0 R 4714 0 R 4715 0 R 4716 0 R 4717 0 R 4718 0 R 4719 0 R 4720 0 R 4721 0 R 4722 0 R 4723 0 R 4724 0 R 4725 0 R 4726 0 R 4727 0 R 4728 0 R 4729 0 R 4730 0 R 4731 0 R 4732 0 R 4733 0 R 4734 0 R 4735 0 R 4736 0 R 4737 0 R 4738 0 R 4739 0 R 4740 0 R 4741 0 R 4742 0 R 4743 0 R 4744 0 R 4745 0 R 4746 0 R 4747 0 R ] +>> endobj +4677 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [148.336 654.832 160.291 665.681] +/Subtype /Link +/A << /S /GoTo /D (page.51) >> +>> endobj +4678 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [127.597 642.844 139.552 653.582] +/Subtype /Link +/A << /S /GoTo /D (page.52) >> +>> endobj +4679 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [155.67 630.856 167.625 641.594] +/Subtype /Link +/A << /S /GoTo /D (page.52) >> +>> endobj +4680 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.791 618.868 164.747 629.717] +/Subtype /Link +/A << /S /GoTo /D (page.52) >> +>> endobj +4681 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [195.133 606.88 207.088 617.729] +/Subtype /Link +/A << /S /GoTo /D (page.53) >> +>> endobj +4682 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [147.921 594.892 159.876 605.63] +/Subtype /Link +/A << /S /GoTo /D (page.52) >> +>> endobj +4683 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [160.513 582.904 172.468 593.753] +/Subtype /Link +/A << /S /GoTo /D (page.53) >> +>> endobj +4684 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [160.236 570.916 172.191 581.765] +/Subtype /Link +/A << /S /GoTo /D (page.53) >> +>> endobj +4685 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [178.003 558.928 189.958 569.777] +/Subtype /Link +/A << /S /GoTo /D (page.52) >> +>> endobj +4686 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.664 546.94 176.619 557.788] +/Subtype /Link +/A << /S /GoTo /D (page.53) >> +>> endobj +4687 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [182.458 534.952 194.413 545.8] +/Subtype /Link +/A << /S /GoTo /D (page.53) >> +>> endobj +4688 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [182.458 522.964 194.413 533.812] +/Subtype /Link +/A << /S /GoTo /D (page.53) >> +>> endobj +4689 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.961 510.976 200.917 521.714] +/Subtype /Link +/A << /S /GoTo /D (page.52) >> +>> endobj +4690 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [165.618 498.988 177.574 509.726] +/Subtype /Link +/A << /S /GoTo /D (page.52) >> +>> endobj +4691 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [221.866 487 233.821 497.848] +/Subtype /Link +/A << /S /GoTo /D (page.53) >> +>> endobj +4692 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [220.621 475.012 232.576 485.86] +/Subtype /Link +/A << /S /GoTo /D (page.52) >> +>> endobj +4693 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [168.455 463.024 180.41 473.762] +/Subtype /Link +/A << /S /GoTo /D (page.52) >> +>> endobj +4694 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [148.336 451.036 160.291 461.884] +/Subtype /Link +/A << /S /GoTo /D (page.53) >> +>> endobj +4695 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [154.773 439.048 166.728 449.786] +/Subtype /Link +/A << /S /GoTo /D (page.55) >> +>> endobj +4696 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [182.846 427.06 194.801 437.798] +/Subtype /Link +/A << /S /GoTo /D (page.55) >> +>> endobj +4697 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [195.133 415.072 207.088 425.92] +/Subtype /Link +/A << /S /GoTo /D (page.55) >> +>> endobj +4698 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [175.097 403.084 187.052 413.822] +/Subtype /Link +/A << /S /GoTo /D (page.55) >> +>> endobj +4699 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.387 391.096 176.342 401.834] +/Subtype /Link +/A << /S /GoTo /D (page.55) >> +>> endobj +4700 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.961 379.108 200.917 389.845] +/Subtype /Link +/A << /S /GoTo /D (page.55) >> +>> endobj +4701 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [148.336 367.12 160.291 377.968] +/Subtype /Link +/A << /S /GoTo /D (page.55) >> +>> endobj +4702 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.309 343.144 197.264 353.881] +/Subtype /Link +/A << /S /GoTo /D (page.57) >> +>> endobj +4703 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [177.56 331.156 189.515 341.893] +/Subtype /Link +/A << /S /GoTo /D (page.57) >> +>> endobj +4704 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [171.139 319.168 183.095 329.905] +/Subtype /Link +/A << /S /GoTo /D (page.57) >> +>> endobj +4705 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [176.979 307.18 188.934 317.917] +/Subtype /Link +/A << /S /GoTo /D (page.57) >> +>> endobj +4706 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [148.336 295.192 160.291 306.04] +/Subtype /Link +/A << /S /GoTo /D (page.58) >> +>> endobj +4707 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [157.236 283.204 169.191 293.941] +/Subtype /Link +/A << /S /GoTo /D (page.57) >> +>> endobj +4708 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [190.096 271.216 202.051 281.953] +/Subtype /Link +/A << /S /GoTo /D (page.58) >> +>> endobj +4709 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [191.978 259.228 203.933 269.965] +/Subtype /Link +/A << /S /GoTo /D (page.58) >> +>> endobj +4710 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [194.053 247.24 206.009 257.977] +/Subtype /Link +/A << /S /GoTo /D (page.58) >> +>> endobj +4711 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [171.997 212.754 183.952 223.491] +/Subtype /Link +/A << /S /GoTo /D (page.71) >> +>> endobj +4712 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [163.418 200.766 180.355 211.614] +/Subtype /Link +/A << /S /GoTo /D (page.111) >> +>> endobj +4713 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [160.236 188.778 177.172 199.515] +/Subtype /Link +/A << /S /GoTo /D (page.131) >> +>> endobj +4714 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [160.236 164.802 177.172 175.539] +/Subtype /Link +/A << /S /GoTo /D (page.131) >> +>> endobj +4715 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [171.997 140.826 183.952 151.563] +/Subtype /Link +/A << /S /GoTo /D (page.71) >> +>> endobj +4716 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [163.418 128.838 180.355 139.686] +/Subtype /Link +/A << /S /GoTo /D (page.111) >> +>> endobj +4717 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [160.236 116.85 177.172 127.587] +/Subtype /Link +/A << /S /GoTo /D (page.130) >> +>> endobj +4718 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [349.526 642.877 366.463 653.615] +/Subtype /Link +/A << /S /GoTo /D (page.131) >> +>> endobj +4719 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [361.287 618.967 373.243 629.704] +/Subtype /Link +/A << /S /GoTo /D (page.71) >> +>> endobj +4720 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [352.709 607.012 369.645 617.86] +/Subtype /Link +/A << /S /GoTo /D (page.111) >> +>> endobj +4721 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [349.526 595.057 366.463 605.794] +/Subtype /Link +/A << /S /GoTo /D (page.130) >> +>> endobj +4722 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [346.205 571.146 363.142 581.884] +/Subtype /Link +/A << /S /GoTo /D (page.169) >> +>> endobj +4723 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [346.343 547.236 358.299 558.084] +/Subtype /Link +/A << /S /GoTo /D (page.35) >> +>> endobj +4724 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [353.815 535.281 365.771 546.129] +/Subtype /Link +/A << /S /GoTo /D (page.37) >> +>> endobj +4725 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [352.57 523.326 364.525 534.174] +/Subtype /Link +/A << /S /GoTo /D (page.39) >> +>> endobj +4726 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [361.287 499.415 373.243 510.153] +/Subtype /Link +/A << /S /GoTo /D (page.71) >> +>> endobj +4727 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [349.526 487.46 366.463 498.198] +/Subtype /Link +/A << /S /GoTo /D (page.130) >> +>> endobj +4728 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [352.709 463.55 369.645 474.398] +/Subtype /Link +/A << /S /GoTo /D (page.111) >> +>> endobj +4729 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [346.205 439.639 363.142 450.377] +/Subtype /Link +/A << /S /GoTo /D (page.171) >> +>> endobj +4730 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [365.162 415.729 382.098 426.467] +/Subtype /Link +/A << /S /GoTo /D (page.116) >> +>> endobj +4731 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [371.389 403.774 388.325 414.511] +/Subtype /Link +/A << /S /GoTo /D (page.151) >> +>> endobj +4732 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [354.231 391.819 371.167 402.556] +/Subtype /Link +/A << /S /GoTo /D (page.173) >> +>> endobj +4733 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [355.199 367.908 367.154 378.757] +/Subtype /Link +/A << /S /GoTo /D (page.19) >> +>> endobj +4734 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [345.818 355.953 357.773 366.801] +/Subtype /Link +/A << /S /GoTo /D (page.48) >> +>> endobj +4735 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [357.967 343.998 369.922 354.846] +/Subtype /Link +/A << /S /GoTo /D (page.84) >> +>> endobj +4736 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [358.686 332.043 370.641 342.78] +/Subtype /Link +/A << /S /GoTo /D (page.86) >> +>> endobj +4737 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [359.655 320.088 371.61 330.936] +/Subtype /Link +/A << /S /GoTo /D (page.97) >> +>> endobj +4738 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [359.35 308.133 376.287 318.981] +/Subtype /Link +/A << /S /GoTo /D (page.159) >> +>> endobj +4739 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [360.07 296.177 377.006 306.915] +/Subtype /Link +/A << /S /GoTo /D (page.161) >> +>> endobj +4740 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [345.652 272.267 362.588 283.115] +/Subtype /Link +/A << /S /GoTo /D (page.146) >> +>> endobj +4741 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [359.71 248.357 376.647 259.205] +/Subtype /Link +/A << /S /GoTo /D (page.143) >> +>> endobj +4742 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [349.526 224.446 366.463 235.184] +/Subtype /Link +/A << /S /GoTo /D (page.131) >> +>> endobj +4743 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [349.526 200.536 366.463 211.274] +/Subtype /Link +/A << /S /GoTo /D (page.131) >> +>> endobj +4744 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [346.205 176.626 363.142 187.363] +/Subtype /Link +/A << /S /GoTo /D (page.168) >> +>> endobj +4745 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [349.526 152.715 361.481 163.453] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +4746 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [361.011 140.76 372.966 151.608] +/Subtype /Link +/A << /S /GoTo /D (page.45) >> +>> endobj +4747 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [365.162 116.85 382.098 127.587] +/Subtype /Link +/A << /S /GoTo /D (page.116) >> +>> endobj +4676 0 obj << +/D [4674 0 R /XYZ 106.869 686.127 null] +>> endobj +4673 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4751 0 obj << +/Length 1186 +/Filter /FlateDecode +>> +stream +xÚÕX]s¢H}÷Wð5+Cý¸1q×ÌšdÔšÙÚ™y J"…Ád¬ýó{o7hcÜÚ¼l¥Ê€œ>÷Þs?º‘Xü‹JWiù¡t­ùºw1ë½RfIWúÌš=(àlñŦ„:ßf×g ˜_~;º¹¼rˆý'>ê]Íz¤$î{.“¡Õg® òþè}ùæY‹žg]÷ô³¸ö\"¥µîñ@¸”„åýª7í}ÜSAÜY}(—*Ãcgs§OìïàÏçç[øÜ¿8}Ƙ ÊwÏêêzT*ø!(` +Ô§àå-èc\ÌØ»ïøaÇ +ØÄ1Ç9zGñ¦d L–' íbœ,À~R™'&äô@F7#â6až TèéjŸ›¬2LøA8”¹”újÁ2J»XÁGŒc +7°ô(¬–=±×©Óïñón+¼BEísdõt4­\nÀe™ÏŠ­4ì—v5¤!»×Ö(ÍŠ*Ú[ þ¶H映§»'â=bkˆ=Jób³NUÊ+}:©["•lóL7æ}€J,á"Jãj-kŠÁ^1ÑÖlåÅíø +#™! _=ÂÎÅ63fÂæ +V Û›øÇ6Nç»A&¸»ñ“|¥iÄ¢Dòhwé¦:—[Müsïth +Ra&1ÉÑ9m¹‰÷µÙY#ëÎíŠç"ùˆÏ£EÅfÒó"ùúR6-F^¢iÐBën,3q›— F ”—ñ*ByªMù¦ +Te™UÕÆÎ©RCo›¸‡ "‹Ã‚2 +n:2˜|ym¢Öȱޯ¨ýªÝA`ÀßdIÞ…&MÕ¡B¡îP“lÕZ!N®ø+ÞT2‡&î°¥Š)nêÉCQ7¸ôL`T +Ì7HeÐ9âÅ O9 Ú¾›¼N°Nôæ¾Qÿïì½7ïÓºZ3ËXaÿ®©g/Øc™!sDÈn|CbâÓ7(󧿯YMþZÊN{1I—*3G¯âÕ ´€ÿ”†ÿñmœÁyCúÚ !êŸ ¸å»2à­÷ñ%DÄ™°§»ÔÅR¿㉗C7Ìâù6ô6<ËÔ4úúQ‚·©¾¼Ã›wúæ‰vúúÎa>H…/¯å7·\‚¤@ý¤oáuWÞÕÍoú`ªV0à ^`»¥Ÿó韑7Sk`(ª”JÏ‚"”ú€«Ï–p4އݧ®ð8þôá¿<ƒQâòÀQ‹+.&õ*£-ñ7…V† Z¥ðªÃŸendstream +endobj +4750 0 obj << +/Type /Page +/Contents 4751 0 R +/Resources 4749 0 R +/MediaBox [0 0 612 792] +/Parent 4748 0 R +/Annots [ 4753 0 R 4754 0 R 4755 0 R 4756 0 R 4757 0 R 4758 0 R 4759 0 R 4760 0 R 4761 0 R 4762 0 R 4763 0 R 4764 0 R 4765 0 R 4766 0 R 4767 0 R 4768 0 R 4769 0 R 4770 0 R 4771 0 R 4772 0 R 4773 0 R 4774 0 R 4775 0 R 4776 0 R 4777 0 R 4778 0 R 4779 0 R 4780 0 R 4781 0 R 4782 0 R 4783 0 R 4784 0 R 4785 0 R 4786 0 R 4787 0 R 4788 0 R 4789 0 R 4790 0 R 4791 0 R 4792 0 R 4793 0 R 4794 0 R 4795 0 R 4796 0 R 4797 0 R 4798 0 R 4799 0 R 4800 0 R 4801 0 R 4802 0 R 4803 0 R 4804 0 R 4805 0 R 4806 0 R 4807 0 R 4808 0 R 4809 0 R 4810 0 R 4811 0 R 4812 0 R 4813 0 R 4814 0 R 4815 0 R 4816 0 R 4817 0 R 4818 0 R 4819 0 R 4820 0 R 4821 0 R 4822 0 R 4823 0 R 4824 0 R 4825 0 R 4826 0 R ] +>> endobj +4753 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [235.897 654.832 252.833 665.57] +/Subtype /Link +/A << /S /GoTo /D (page.151) >> +>> endobj +4754 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [218.739 642.803 235.675 653.541] +/Subtype /Link +/A << /S /GoTo /D (page.173) >> +>> endobj +4755 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [225.796 618.745 237.751 629.482] +/Subtype /Link +/A << /S /GoTo /D (page.71) >> +>> endobj +4756 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [217.217 606.716 234.153 617.564] +/Subtype /Link +/A << /S /GoTo /D (page.111) >> +>> endobj +4757 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [214.034 594.686 230.971 605.424] +/Subtype /Link +/A << /S /GoTo /D (page.130) >> +>> endobj +4758 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [224.218 582.657 241.155 593.505] +/Subtype /Link +/A << /S /GoTo /D (page.143) >> +>> endobj +4759 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [200.751 547.402 217.687 558.251] +/Subtype /Link +/A << /S /GoTo /D (page.140) >> +>> endobj +4760 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [236.45 523.344 248.405 534.192] +/Subtype /Link +/A << /S /GoTo /D (page.60) >> +>> endobj +4761 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [228.701 511.315 240.657 522.163] +/Subtype /Link +/A << /S /GoTo /D (page.60) >> +>> endobj +4762 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [218.185 499.286 230.14 510.023] +/Subtype /Link +/A << /S /GoTo /D (page.60) >> +>> endobj +4763 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [202.134 487.256 214.089 498.105] +/Subtype /Link +/A << /S /GoTo /D (page.60) >> +>> endobj +4764 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [208.378 475.227 220.333 486.075] +/Subtype /Link +/A << /S /GoTo /D (page.60) >> +>> endobj +4765 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [204.033 452.002 215.988 462.739] +/Subtype /Link +/A << /S /GoTo /D (page.62) >> +>> endobj +4766 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [232.105 439.972 244.06 450.71] +/Subtype /Link +/A << /S /GoTo /D (page.62) >> +>> endobj +4767 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [248.931 427.943 260.886 438.791] +/Subtype /Link +/A << /S /GoTo /D (page.63) >> +>> endobj +4768 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [224.357 415.914 236.312 426.652] +/Subtype /Link +/A << /S /GoTo /D (page.62) >> +>> endobj +4769 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [218.794 403.885 230.749 414.733] +/Subtype /Link +/A << /S /GoTo /D (page.63) >> +>> endobj +4770 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [218.462 391.856 230.417 402.704] +/Subtype /Link +/A << /S /GoTo /D (page.63) >> +>> endobj +4771 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [218.185 379.826 230.14 390.564] +/Subtype /Link +/A << /S /GoTo /D (page.63) >> +>> endobj +4772 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.76 367.797 254.715 378.535] +/Subtype /Link +/A << /S /GoTo /D (page.63) >> +>> endobj +4773 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [202.134 355.768 214.089 366.616] +/Subtype /Link +/A << /S /GoTo /D (page.63) >> +>> endobj +4774 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [227.871 331.71 244.808 342.447] +/Subtype /Link +/A << /S /GoTo /D (page.150) >> +>> endobj +4775 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [210.713 307.651 227.65 318.389] +/Subtype /Link +/A << /S /GoTo /D (page.169) >> +>> endobj +4776 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [214.311 283.593 231.247 294.441] +/Subtype /Link +/A << /S /GoTo /D (page.134) >> +>> endobj +4777 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [195.094 260.367 207.049 271.105] +/Subtype /Link +/A << /S /GoTo /D (page.64) >> +>> endobj +4778 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.59 248.338 218.545 259.186] +/Subtype /Link +/A << /S /GoTo /D (page.64) >> +>> endobj +4779 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [202.134 236.309 214.089 247.157] +/Subtype /Link +/A << /S /GoTo /D (page.64) >> +>> endobj +4780 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [226.903 212.25 238.858 223.099] +/Subtype /Link +/A << /S /GoTo /D (page.65) >> +>> endobj +4781 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [219.154 200.221 231.109 211.069] +/Subtype /Link +/A << /S /GoTo /D (page.65) >> +>> endobj +4782 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [218.794 188.192 230.749 199.04] +/Subtype /Link +/A << /S /GoTo /D (page.65) >> +>> endobj +4783 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [202.134 176.163 214.089 187.011] +/Subtype /Link +/A << /S /GoTo /D (page.65) >> +>> endobj +4784 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [198.83 164.134 210.785 174.982] +/Subtype /Link +/A << /S /GoTo /D (page.65) >> +>> endobj +4785 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [214.034 128.879 225.989 139.616] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +4786 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [225.519 116.85 237.474 127.698] +/Subtype /Link +/A << /S /GoTo /D (page.45) >> +>> endobj +4787 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [391.009 654.832 402.964 665.57] +/Subtype /Link +/A << /S /GoTo /D (page.53) >> +>> endobj +4788 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [414.864 642.844 431.801 653.582] +/Subtype /Link +/A << /S /GoTo /D (page.102) >> +>> endobj +4789 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [410.824 630.856 427.76 641.705] +/Subtype /Link +/A << /S /GoTo /D (page.119) >> +>> endobj +4790 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [404.708 618.868 421.644 629.717] +/Subtype /Link +/A << /S /GoTo /D (page.126) >> +>> endobj +4791 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [403.324 594.892 415.279 605.63] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +4792 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [414.809 582.904 426.764 593.753] +/Subtype /Link +/A << /S /GoTo /D (page.45) >> +>> endobj +4793 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [391.009 570.916 402.964 581.654] +/Subtype /Link +/A << /S /GoTo /D (page.53) >> +>> endobj +4794 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [414.864 558.928 431.801 569.666] +/Subtype /Link +/A << /S /GoTo /D (page.102) >> +>> endobj +4795 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [410.824 546.94 427.76 557.788] +/Subtype /Link +/A << /S /GoTo /D (page.119) >> +>> endobj +4796 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [404.708 534.952 421.644 545.8] +/Subtype /Link +/A << /S /GoTo /D (page.126) >> +>> endobj +4797 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [417.438 500.466 434.375 511.314] +/Subtype /Link +/A << /S /GoTo /D (page.108) >> +>> endobj +4798 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [410.935 488.478 427.871 499.216] +/Subtype /Link +/A << /S /GoTo /D (page.113) >> +>> endobj +4799 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [417.161 476.49 434.098 487.228] +/Subtype /Link +/A << /S /GoTo /D (page.148) >> +>> endobj +4800 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [400.003 464.502 416.94 475.24] +/Subtype /Link +/A << /S /GoTo /D (page.169) >> +>> endobj +4801 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [408.997 440.526 420.953 451.374] +/Subtype /Link +/A << /S /GoTo /D (page.19) >> +>> endobj +4802 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [413.979 428.538 425.934 439.386] +/Subtype /Link +/A << /S /GoTo /D (page.27) >> +>> endobj +4803 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [406.451 416.55 418.407 427.398] +/Subtype /Link +/A << /S /GoTo /D (page.31) >> +>> endobj +4804 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [400.142 404.562 412.097 415.41] +/Subtype /Link +/A << /S /GoTo /D (page.36) >> +>> endobj +4805 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [396.821 392.574 408.776 403.422] +/Subtype /Link +/A << /S /GoTo /D (page.43) >> +>> endobj +4806 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [414.809 380.586 426.764 391.434] +/Subtype /Link +/A << /S /GoTo /D (page.46) >> +>> endobj +4807 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [399.616 368.598 411.571 379.446] +/Subtype /Link +/A << /S /GoTo /D (page.48) >> +>> endobj +4808 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [413.647 356.61 425.602 367.347] +/Subtype /Link +/A << /S /GoTo /D (page.63) >> +>> endobj +4809 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [408.444 344.622 420.399 355.47] +/Subtype /Link +/A << /S /GoTo /D (page.65) >> +>> endobj +4810 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [416.885 332.634 428.84 343.482] +/Subtype /Link +/A << /S /GoTo /D (page.77) >> +>> endobj +4811 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [398.952 320.646 410.907 331.383] +/Subtype /Link +/A << /S /GoTo /D (page.81) >> +>> endobj +4812 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [411.765 308.658 423.72 319.506] +/Subtype /Link +/A << /S /GoTo /D (page.85) >> +>> endobj +4813 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [412.484 296.67 424.44 307.407] +/Subtype /Link +/A << /S /GoTo /D (page.87) >> +>> endobj +4814 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [409.551 284.682 421.506 295.53] +/Subtype /Link +/A << /S /GoTo /D (page.90) >> +>> endobj +4815 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [413.453 272.694 425.408 283.542] +/Subtype /Link +/A << /S /GoTo /D (page.97) >> +>> endobj +4816 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [416.746 260.706 433.683 271.554] +/Subtype /Link +/A << /S /GoTo /D (page.100) >> +>> endobj +4817 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [405.981 248.718 422.917 259.566] +/Subtype /Link +/A << /S /GoTo /D (page.104) >> +>> endobj +4818 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [417.438 236.73 434.375 247.578] +/Subtype /Link +/A << /S /GoTo /D (page.108) >> +>> endobj +4819 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [410.935 224.742 427.871 235.479] +/Subtype /Link +/A << /S /GoTo /D (page.113) >> +>> endobj +4820 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [399.45 212.754 416.386 223.602] +/Subtype /Link +/A << /S /GoTo /D (page.146) >> +>> endobj +4821 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [417.161 200.766 434.098 211.503] +/Subtype /Link +/A << /S /GoTo /D (page.148) >> +>> endobj +4822 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [413.149 188.778 430.085 199.626] +/Subtype /Link +/A << /S /GoTo /D (page.159) >> +>> endobj +4823 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [413.868 176.79 430.805 187.527] +/Subtype /Link +/A << /S /GoTo /D (page.162) >> +>> endobj +4824 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [400.003 164.802 416.94 175.539] +/Subtype /Link +/A << /S /GoTo /D (page.169) >> +>> endobj +4825 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [406.451 140.826 418.407 151.674] +/Subtype /Link +/A << /S /GoTo /D (page.31) >> +>> endobj +4826 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [405.981 128.838 422.917 139.686] +/Subtype /Link +/A << /S /GoTo /D (page.104) >> +>> endobj +4752 0 obj << +/D [4750 0 R /XYZ 160.667 686.127 null] +>> endobj +4749 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4829 0 obj << +/Length 1173 +/Filter /FlateDecode +>> +stream +xÚ­X[sÚ8~çWøÑž®]I¾ê±&›v ÙÀl»ÓöÁ-x6µEZº~ud™/Mf°lçÓѹéXØ@⇠ŒB‡‘DÔ ±gÌ7ƒ«Ùàõ5q êÐÀ5fÿJälñÙ¼ŒÞZØüd}½3˜M3Åä¢X3oè„U&n!7ìXç›g)¬‰çR`6Z‰Aœ.Y%i|Ô6Ë12͸ÀHG~¨™]‹ÝÝn +=¶á +Iǯ2ËPpÑ~šˆÿŸð˜µIòDÇ®óýX¸YƒŒ*8½X±:!Õúf-×ç5³QÍ¢º}"KY¾Ü·!tz6{÷ Ân_lÚ±$åᛋ¼ Í}÷Zá2¯·;ñÇïÀ"Y‘ð$Kû O>õPhòDuÑ¥lÚ]E¼dy…Æ .É}F­ ±%ãWs¹Ä„NÎäøXuI~—6ï®â4­â`muN2:yÜU¡²•uµÁuV"º e?ø¸R÷ Ò&¡"å^¦äˆ­OÕÖ†T²Ð\Äë +ë^(ôÄ=«ÿrµñ4b‹x³­1ë MÊö*9ZƆ’£°X4U„¾+ú–È=ª;‰LÙ2ðXÝa“Óê¤Ä®­Èbßv,ï{à!°bSœåý§1µõ±!Òá°* c«ÊÞ¤‹{ÙÖ$P(‹zžk¥yž….2ÖqÁ?ÈîáÚ }#õ1þ̃a[Ž–mõæ$­[Dþ†¤~Ècž^2¢(TR/§ol® È–”^Ô¡'¼/ÌoÚìÖÓ úí'ô÷úûuãÓ­\bÙÛ-:¸N]N?gõ-RÓ7²®óÕµQeÿ4NäNU}«crú^@n'·ªÇÇ.iŒÎI–õ`.Ôsëy{Õ˜H×6ðµz(jn/Sy겑ž€H~6ºçäp$D‡>;AªÄ};„D¿wˆ¤Ž£@ß>çòŒÀ¡¡W?Dš­„i<×7§ûÔ¾*C*)à±gÎ,ŒHñ.“ï^¾EUJ_½*@°/_ÞYn`2°T®žÜ;åud‚ò±¼EZ&¼¹94ÍŒBÓQ*ŠïWqyê,UÇÒô9¾ïŠe–u«Œ0â?¯Ø&Ž|8ª p "û +W³ É(¹À„æ…¹üÿ‚+"•ïþS8Ì¡endstream +endobj +4828 0 obj << +/Type /Page +/Contents 4829 0 R +/Resources 4827 0 R +/MediaBox [0 0 612 792] +/Parent 4748 0 R +/Annots [ 4831 0 R 4832 0 R 4833 0 R 4834 0 R 4835 0 R 4836 0 R 4837 0 R 4838 0 R 4839 0 R 4840 0 R 4841 0 R 4842 0 R 4843 0 R 4844 0 R 4845 0 R 4846 0 R 4847 0 R 4848 0 R 4849 0 R 4850 0 R 4851 0 R 4852 0 R 4853 0 R 4854 0 R 4855 0 R 4856 0 R 4857 0 R 4858 0 R 4859 0 R 4860 0 R 4861 0 R 4862 0 R 4863 0 R 4864 0 R 4865 0 R 4866 0 R 4867 0 R 4868 0 R 4869 0 R 4870 0 R 4871 0 R 4872 0 R 4873 0 R 4874 0 R 4875 0 R 4876 0 R 4877 0 R 4878 0 R 4879 0 R 4880 0 R 4881 0 R 4882 0 R 4883 0 R 4884 0 R 4885 0 R 4886 0 R 4887 0 R 4888 0 R 4889 0 R 4890 0 R 4891 0 R 4892 0 R 4893 0 R 4894 0 R 4895 0 R 4896 0 R 4897 0 R 4898 0 R 4899 0 R 4900 0 R 4901 0 R 4902 0 R 4903 0 R 4904 0 R 4905 0 R 4906 0 R 4907 0 R 4908 0 R 4909 0 R 4910 0 R 4911 0 R 4912 0 R 4913 0 R 4914 0 R 4915 0 R 4916 0 R ] +>> endobj +4831 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [163.363 654.832 175.318 665.681] +/Subtype /Link +/A << /S /GoTo /D (page.31) >> +>> endobj +4832 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [162.893 642.844 179.829 653.693] +/Subtype /Link +/A << /S /GoTo /D (page.104) >> +>> endobj +4833 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.073 618.868 191.009 629.606] +/Subtype /Link +/A << /S /GoTo /D (page.149) >> +>> endobj +4834 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [147.921 594.892 159.876 605.63] +/Subtype /Link +/A << /S /GoTo /D (page.52) >> +>> endobj +4835 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [153.196 572.394 165.151 583.242] +/Subtype /Link +/A << /S /GoTo /D (page.67) >> +>> endobj +4836 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [181.268 560.406 193.223 571.254] +/Subtype /Link +/A << /S /GoTo /D (page.67) >> +>> endobj +4837 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [195.133 548.418 207.088 559.266] +/Subtype /Link +/A << /S /GoTo /D (page.68) >> +>> endobj +4838 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [173.519 536.43 185.475 547.278] +/Subtype /Link +/A << /S /GoTo /D (page.67) >> +>> endobj +4839 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.387 524.442 176.342 535.18] +/Subtype /Link +/A << /S /GoTo /D (page.67) >> +>> endobj +4840 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [155.531 512.454 167.486 523.302] +/Subtype /Link +/A << /S /GoTo /D (page.67) >> +>> endobj +4841 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.783 500.466 196.738 511.314] +/Subtype /Link +/A << /S /GoTo /D (page.67) >> +>> endobj +4842 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [148.336 488.478 160.291 499.326] +/Subtype /Link +/A << /S /GoTo /D (page.67) >> +>> endobj +4843 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [147.578 476.49 159.533 487.338] +/Subtype /Link +/A << /S /GoTo /D (page.69) >> +>> endobj +4844 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [175.65 464.502 187.605 475.35] +/Subtype /Link +/A << /S /GoTo /D (page.69) >> +>> endobj +4845 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.791 452.514 164.747 463.362] +/Subtype /Link +/A << /S /GoTo /D (page.69) >> +>> endobj +4846 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [195.133 440.526 207.088 451.374] +/Subtype /Link +/A << /S /GoTo /D (page.70) >> +>> endobj +4847 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [160.817 428.538 172.772 438.888] +/Subtype /Link +/A << /S /GoTo /D (page.70) >> +>> endobj +4848 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [167.902 416.55 179.857 427.398] +/Subtype /Link +/A << /S /GoTo /D (page.69) >> +>> endobj +4849 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.664 404.562 176.619 415.41] +/Subtype /Link +/A << /S /GoTo /D (page.69) >> +>> endobj +4850 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.387 392.574 176.342 403.311] +/Subtype /Link +/A << /S /GoTo /D (page.69) >> +>> endobj +4851 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [170.946 380.586 182.901 391.323] +/Subtype /Link +/A << /S /GoTo /D (page.69) >> +>> endobj +4852 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [203.933 368.598 215.888 379.335] +/Subtype /Link +/A << /S /GoTo /D (page.69) >> +>> endobj +4853 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [159.461 356.61 171.416 367.347] +/Subtype /Link +/A << /S /GoTo /D (page.69) >> +>> endobj +4854 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [159.461 344.622 171.416 355.359] +/Subtype /Link +/A << /S /GoTo /D (page.69) >> +>> endobj +4855 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [148.336 332.634 160.291 343.482] +/Subtype /Link +/A << /S /GoTo /D (page.70) >> +>> endobj +4856 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [151.673 320.646 163.629 331.383] +/Subtype /Link +/A << /S /GoTo /D (page.71) >> +>> endobj +4857 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [179.746 308.658 191.701 319.395] +/Subtype /Link +/A << /S /GoTo /D (page.71) >> +>> endobj +4858 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [191.674 296.67 203.629 307.518] +/Subtype /Link +/A << /S /GoTo /D (page.71) >> +>> endobj +4859 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [185.281 284.682 197.236 295.419] +/Subtype /Link +/A << /S /GoTo /D (page.71) >> +>> endobj +4860 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [181.545 272.694 193.5 283.542] +/Subtype /Link +/A << /S /GoTo /D (page.71) >> +>> endobj +4861 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [169.23 260.706 181.185 271.554] +/Subtype /Link +/A << /S /GoTo /D (page.71) >> +>> endobj +4862 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [167.985 248.718 179.94 259.455] +/Subtype /Link +/A << /S /GoTo /D (page.71) >> +>> endobj +4863 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [171.997 236.73 183.952 247.467] +/Subtype /Link +/A << /S /GoTo /D (page.72) >> +>> endobj +4864 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [187.19 224.742 199.146 235.479] +/Subtype /Link +/A << /S /GoTo /D (page.72) >> +>> endobj +4865 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [179.109 212.754 191.065 223.602] +/Subtype /Link +/A << /S /GoTo /D (page.71) >> +>> endobj +4866 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [139.635 200.766 151.591 211.614] +/Subtype /Link +/A << /S /GoTo /D (page.73) >> +>> endobj +4867 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [167.708 188.778 179.663 199.626] +/Subtype /Link +/A << /S /GoTo /D (page.73) >> +>> endobj +4868 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.791 176.79 164.747 187.638] +/Subtype /Link +/A << /S /GoTo /D (page.73) >> +>> endobj +4869 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [195.133 164.802 207.088 175.65] +/Subtype /Link +/A << /S /GoTo /D (page.74) >> +>> endobj +4870 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [156.638 152.814 168.593 163.662] +/Subtype /Link +/A << /S /GoTo /D (page.74) >> +>> endobj +4871 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [159.959 140.826 171.914 151.674] +/Subtype /Link +/A << /S /GoTo /D (page.73) >> +>> endobj +4872 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.664 128.838 176.619 139.686] +/Subtype /Link +/A << /S /GoTo /D (page.74) >> +>> endobj +4873 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.387 116.85 176.342 127.587] +/Subtype /Link +/A << /S /GoTo /D (page.74) >> +>> endobj +4874 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [381.918 654.832 393.874 665.57] +/Subtype /Link +/A << /S /GoTo /D (page.73) >> +>> endobj +4875 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [378.252 642.844 390.207 653.582] +/Subtype /Link +/A << /S /GoTo /D (page.73) >> +>> endobj +4876 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [385.156 630.856 397.112 641.594] +/Subtype /Link +/A << /S /GoTo /D (page.73) >> +>> endobj +4877 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [379.262 618.868 391.217 629.717] +/Subtype /Link +/A << /S /GoTo /D (page.73) >> +>> endobj +4878 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [406.368 606.88 418.324 617.729] +/Subtype /Link +/A << /S /GoTo /D (page.73) >> +>> endobj +4879 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [345.458 594.892 357.413 605.741] +/Subtype /Link +/A << /S /GoTo /D (page.74) >> +>> endobj +4880 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [337.626 582.904 349.581 593.753] +/Subtype /Link +/A << /S /GoTo /D (page.74) >> +>> endobj +4881 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [372.938 558.928 384.893 569.777] +/Subtype /Link +/A << /S /GoTo /D (page.75) >> +>> endobj +4882 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [384.423 546.94 396.378 557.788] +/Subtype /Link +/A << /S /GoTo /D (page.75) >> +>> endobj +4883 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [365.19 534.952 377.145 545.8] +/Subtype /Link +/A << /S /GoTo /D (page.75) >> +>> endobj +4884 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [411.156 522.964 423.111 533.812] +/Subtype /Link +/A << /S /GoTo /D (page.75) >> +>> endobj +4885 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [361.149 510.976 373.104 521.714] +/Subtype /Link +/A << /S /GoTo /D (page.75) >> +>> endobj +4886 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [395.105 498.988 407.06 509.836] +/Subtype /Link +/A << /S /GoTo /D (page.75) >> +>> endobj +4887 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [394.635 487 406.59 497.848] +/Subtype /Link +/A << /S /GoTo /D (page.75) >> +>> endobj +4888 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [344.866 475.012 356.821 485.86] +/Subtype /Link +/A << /S /GoTo /D (page.75) >> +>> endobj +4889 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [342.763 463.024 354.718 473.872] +/Subtype /Link +/A << /S /GoTo /D (page.77) >> +>> endobj +4890 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [370.835 451.036 382.79 461.884] +/Subtype /Link +/A << /S /GoTo /D (page.77) >> +>> endobj +4891 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [354.286 439.048 366.241 449.896] +/Subtype /Link +/A << /S /GoTo /D (page.77) >> +>> endobj +4892 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [363.086 427.06 375.042 437.908] +/Subtype /Link +/A << /S /GoTo /D (page.77) >> +>> endobj +4893 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [342.137 415.072 354.092 425.422] +/Subtype /Link +/A << /S /GoTo /D (page.77) >> +>> endobj +4894 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [391.577 403.084 403.532 413.932] +/Subtype /Link +/A << /S /GoTo /D (page.77) >> +>> endobj +4895 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [388.422 391.096 400.377 401.944] +/Subtype /Link +/A << /S /GoTo /D (page.77) >> +>> endobj +4896 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [387.938 379.108 399.893 389.956] +/Subtype /Link +/A << /S /GoTo /D (page.77) >> +>> endobj +4897 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [337.626 367.12 349.581 377.968] +/Subtype /Link +/A << /S /GoTo /D (page.77) >> +>> endobj +4898 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [325.605 355.132 337.56 365.869] +/Subtype /Link +/A << /S /GoTo /D (page.79) >> +>> endobj +4899 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [353.677 343.144 365.632 353.881] +/Subtype /Link +/A << /S /GoTo /D (page.79) >> +>> endobj +4900 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [384.423 331.156 396.378 342.004] +/Subtype /Link +/A << /S /GoTo /D (page.79) >> +>> endobj +4901 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [345.928 319.168 357.884 329.905] +/Subtype /Link +/A << /S /GoTo /D (page.79) >> +>> endobj +4902 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [353.677 307.18 365.632 317.917] +/Subtype /Link +/A << /S /GoTo /D (page.79) >> +>> endobj +4903 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [378.252 295.192 390.207 305.929] +/Subtype /Link +/A << /S /GoTo /D (page.79) >> +>> endobj +4904 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [411.156 283.204 423.111 294.052] +/Subtype /Link +/A << /S /GoTo /D (page.79) >> +>> endobj +4905 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [409.911 271.216 421.866 282.064] +/Subtype /Link +/A << /S /GoTo /D (page.79) >> +>> endobj +4906 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [337.626 259.228 349.581 270.076] +/Subtype /Link +/A << /S /GoTo /D (page.79) >> +>> endobj +4907 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [361.287 224.742 373.243 235.479] +/Subtype /Link +/A << /S /GoTo /D (page.72) >> +>> endobj +4908 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [352.709 212.754 369.645 223.602] +/Subtype /Link +/A << /S /GoTo /D (page.112) >> +>> endobj +4909 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [349.526 200.766 366.463 211.503] +/Subtype /Link +/A << /S /GoTo /D (page.132) >> +>> endobj +4910 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [324.83 188.778 336.785 199.515] +/Subtype /Link +/A << /S /GoTo /D (page.81) >> +>> endobj +4911 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [352.902 176.79 364.857 187.527] +/Subtype /Link +/A << /S /GoTo /D (page.81) >> +>> endobj +4912 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [354.286 164.802 366.241 175.65] +/Subtype /Link +/A << /S /GoTo /D (page.81) >> +>> endobj +4913 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [345.153 152.814 357.109 163.551] +/Subtype /Link +/A << /S /GoTo /D (page.81) >> +>> endobj +4914 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [337.626 140.826 349.581 151.674] +/Subtype /Link +/A << /S /GoTo /D (page.81) >> +>> endobj +4915 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [346.205 116.85 363.142 127.587] +/Subtype /Link +/A << /S /GoTo /D (page.170) >> +>> endobj +4916 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [367.237 116.85 384.174 127.587] +/Subtype /Link +/A << /S /GoTo /D (page.171) >> +>> endobj +4830 0 obj << +/D [4828 0 R /XYZ 106.869 686.127 null] +>> endobj +4827 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +4919 0 obj << +/Length 1166 +/Filter /FlateDecode +>> +stream +xÚÍXKs›H¾ëWp„ÊŠ03Ì0Wqä(.?ÖV­·6ÉH8¢,ƒ°Õþùíy€Àj=¼öa˃øº§û›¯{ˆÀqhìs;BÆ~DBg²è ƽ÷CÊœØsÆw8ž~q) ½oãÏNȸ1a]œ|ôˆû—zÔû8îë¸ø,–NŸù±äÊïÏÞ—o3íÎçžyö×OâØYôˆû”H{?ïÝôþh\F|§O#S¤ÜŽ1/*&õúĽü¦¦° >!~Ì¹Æ ’|ZÕÅ­G¥{ú›×gŒ¹„k³ k1/æIY ŠjF/¸Ø‚l1×kÙhˆ­X€Y:­–ÉrÙòÆôaž”,œ§U cì¤|Ðb¡Ü¥¥E†Aç +Y¥ñ¬‡çZ8\b+ŽòeU.r•f™Àpç©ÎqnèI Œ1`á2Üi2·¨c÷JíØãDQ|o(Þ„S$—ŽqÇOꪰKĘD®õ/‹àIÕÞo`Þ$‹€e”ÞMbýKéè®ÐÔ­[pJ1¸".1©–mµŠÆ¢´¢U`BjÀ¡Fƒ«¤l@ó¨*1»;Kà_ùPC™ö‘šl×nþ†…«±éxV¦©Ýo"þ?Î(p¿uÓ×øŸždn‘MŒÜk8–ȧtµ>O«º0Eðš~¨ºšjc²¼FFÿ­sˆt‹*~Ô l7®L¡M,‰*åë:Ñᾂâg6¯tÝàÐ2ÞÝQÈË: +yG!0qÐØá Îtɵêì¶Õ07m%ê@# +ªíøt@ЦÌ[•M¸@ìn=ºå¼î3 ‹B´šë„uq®êMoM¬ãxbzDÒêõ’!9VÙD±|ßÅ4ËRêËP/ó:FÐ_¬{ ßa’kF#$ޝ:#TäGalÇ(Äïf»¥)’¾18”_ˆä÷#­N“,߉2ÞæÉ²ºìTG|uB•nѨû\/5¢úûRy¾UQHt4§ˆ™âTÕ^ÓöP&,ÒÐЈ÷%ý–Å[ Hù¬cÛ‘;…ƒUæ¶pBĶp°î°/ÄB»Ù}žž«%:rSº>‘öƒ«$ÚLÛk´³«ú Ñ&* af: ¦‰ÛÕ¨µ1$ +°ÎººTg_Õ€ø®Î¦ÎŒÄœ20º©ƒa¹+÷›3x:ºÕ=Ѭ>;¥h]§õ½G?Ò%»sîFÊ!ìàX±%¡:¼ÊôçcšOÖû\?×¢<–µ}A\©Ã¹Ò“BvWm}hÞä9'>¥òµßŒ¢™:š¡#ü8 +ÛÆ3 'dܽYçü«ffHÌ–êçf˜‘àôèóB gYeeFýúúÃ;uóÎÜ|WŽÖæúÊc8Rï:ö—kßš(§àúÞÜ«_]ôÍ©ézÚ‚)ò‚Èõmœ“D¹_)¿…¶ JW@øœ3`„{ìyR¾I»OçP}„DX›·£.=°u¡öÅ€]–ÕZüê‚Ö{ø/:64endstream +endobj +4918 0 obj << +/Type /Page +/Contents 4919 0 R +/Resources 4917 0 R +/MediaBox [0 0 612 792] +/Parent 4748 0 R +/Annots [ 4921 0 R 4922 0 R 4923 0 R 4924 0 R 4925 0 R 4926 0 R 4927 0 R 4928 0 R 4929 0 R 4930 0 R 4931 0 R 4932 0 R 4933 0 R 4934 0 R 4935 0 R 4936 0 R 4937 0 R 4938 0 R 4939 0 R 4940 0 R 4941 0 R 4942 0 R 4943 0 R 4944 0 R 4945 0 R 4946 0 R 4947 0 R 4948 0 R 4949 0 R 4950 0 R 4951 0 R 4952 0 R 4953 0 R 4954 0 R 4955 0 R 4956 0 R 4957 0 R 4958 0 R 4959 0 R 4960 0 R 4961 0 R 4962 0 R 4963 0 R 4964 0 R 4965 0 R 4966 0 R 4967 0 R 4968 0 R 4969 0 R 4970 0 R 4971 0 R 4972 0 R 4973 0 R 4974 0 R 4975 0 R 4976 0 R 4977 0 R 4978 0 R 4979 0 R 4980 0 R 4981 0 R 4982 0 R 4983 0 R 4984 0 R 4985 0 R 4986 0 R 4987 0 R 4988 0 R 4989 0 R 4990 0 R 4991 0 R 4992 0 R 4993 0 R 4994 0 R 4995 0 R 4996 0 R 4997 0 R 4998 0 R 4999 0 R 5000 0 R 5001 0 R 5002 0 R ] +>> endobj +4921 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [236.934 642.877 248.89 653.725] +/Subtype /Link +/A << /S /GoTo /D (page.15) >> +>> endobj +4922 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [226.487 630.922 238.443 641.77] +/Subtype /Link +/A << /S /GoTo /D (page.21) >> +>> endobj +4923 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [227.456 618.967 239.411 629.815] +/Subtype /Link +/A << /S /GoTo /D (page.24) >> +>> endobj +4924 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [214.726 607.012 226.681 617.86] +/Subtype /Link +/A << /S /GoTo /D (page.26) >> +>> endobj +4925 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [209.883 595.057 221.838 605.794] +/Subtype /Link +/A << /S /GoTo /D (page.30) >> +>> endobj +4926 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [221.534 583.101 233.489 593.95] +/Subtype /Link +/A << /S /GoTo /D (page.33) >> +>> endobj +4927 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [228.065 571.146 240.02 581.884] +/Subtype /Link +/A << /S /GoTo /D (page.41) >> +>> endobj +4928 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [209.191 559.191 221.146 570.039] +/Subtype /Link +/A << /S /GoTo /D (page.51) >> +>> endobj +4929 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [201.719 547.236 213.674 557.973] +/Subtype /Link +/A << /S /GoTo /D (page.53) >> +>> endobj +4930 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [224.357 535.281 236.312 546.018] +/Subtype /Link +/A << /S /GoTo /D (page.63) >> +>> endobj +4931 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [221.7 523.326 233.655 534.174] +/Subtype /Link +/A << /S /GoTo /D (page.69) >> +>> endobj +4932 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [213.757 511.37 225.713 522.219] +/Subtype /Link +/A << /S /GoTo /D (page.74) >> +>> endobj +4933 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [220.261 499.415 232.216 510.263] +/Subtype /Link +/A << /S /GoTo /D (page.92) >> +>> endobj +4934 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [229.67 487.46 241.625 498.308] +/Subtype /Link +/A << /S /GoTo /D (page.95) >> +>> endobj +4935 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [225.574 475.505 242.511 486.242] +/Subtype /Link +/A << /S /GoTo /D (page.103) >> +>> endobj +4936 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [221.534 463.55 238.47 474.398] +/Subtype /Link +/A << /S /GoTo /D (page.119) >> +>> endobj +4937 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [225.381 451.595 242.317 462.443] +/Subtype /Link +/A << /S /GoTo /D (page.122) >> +>> endobj +4938 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [219.375 439.639 236.312 450.488] +/Subtype /Link +/A << /S /GoTo /D (page.123) >> +>> endobj +4939 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [215.418 427.684 232.354 438.532] +/Subtype /Link +/A << /S /GoTo /D (page.126) >> +>> endobj +4940 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [207.143 415.729 224.08 426.467] +/Subtype /Link +/A << /S /GoTo /D (page.128) >> +>> endobj +4941 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [223.471 403.774 240.408 414.622] +/Subtype /Link +/A << /S /GoTo /D (page.138) >> +>> endobj +4942 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [236.934 379.864 248.89 390.712] +/Subtype /Link +/A << /S /GoTo /D (page.15) >> +>> endobj +4943 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [227.484 367.908 239.439 378.757] +/Subtype /Link +/A << /S /GoTo /D (page.16) >> +>> endobj +4944 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [226.487 355.953 238.443 366.801] +/Subtype /Link +/A << /S /GoTo /D (page.21) >> +>> endobj +4945 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [227.456 343.998 239.411 354.846] +/Subtype /Link +/A << /S /GoTo /D (page.24) >> +>> endobj +4946 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [214.726 332.043 226.681 342.891] +/Subtype /Link +/A << /S /GoTo /D (page.25) >> +>> endobj +4947 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [209.883 320.088 221.838 330.825] +/Subtype /Link +/A << /S /GoTo /D (page.29) >> +>> endobj +4948 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [221.534 308.133 233.489 318.981] +/Subtype /Link +/A << /S /GoTo /D (page.33) >> +>> endobj +4949 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [228.065 296.177 240.02 306.915] +/Subtype /Link +/A << /S /GoTo /D (page.42) >> +>> endobj +4950 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [209.191 284.222 221.146 295.07] +/Subtype /Link +/A << /S /GoTo /D (page.51) >> +>> endobj +4951 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [228.895 272.267 240.85 283.005] +/Subtype /Link +/A << /S /GoTo /D (page.55) >> +>> endobj +4952 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [228.701 260.312 240.657 271.16] +/Subtype /Link +/A << /S /GoTo /D (page.60) >> +>> endobj +4953 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [224.357 248.357 236.312 259.094] +/Subtype /Link +/A << /S /GoTo /D (page.63) >> +>> endobj +4954 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [227.318 236.402 239.273 247.25] +/Subtype /Link +/A << /S /GoTo /D (page.67) >> +>> endobj +4955 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [221.7 224.446 233.655 235.295] +/Subtype /Link +/A << /S /GoTo /D (page.69) >> +>> endobj +4956 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [213.757 212.491 225.713 223.339] +/Subtype /Link +/A << /S /GoTo /D (page.74) >> +>> endobj +4957 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [210.436 200.536 222.392 211.274] +/Subtype /Link +/A << /S /GoTo /D (page.79) >> +>> endobj +4958 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [224.024 188.581 235.98 199.429] +/Subtype /Link +/A << /S /GoTo /D (page.88) >> +>> endobj +4959 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [220.261 176.626 232.216 187.474] +/Subtype /Link +/A << /S /GoTo /D (page.92) >> +>> endobj +4960 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [225.574 164.671 242.511 175.408] +/Subtype /Link +/A << /S /GoTo /D (page.102) >> +>> endobj +4961 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [219.431 152.715 236.367 163.564] +/Subtype /Link +/A << /S /GoTo /D (page.106) >> +>> endobj +4962 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [225.381 140.76 242.317 151.608] +/Subtype /Link +/A << /S /GoTo /D (page.121) >> +>> endobj +4963 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [219.375 128.805 236.312 139.653] +/Subtype /Link +/A << /S /GoTo /D (page.125) >> +>> endobj +4964 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [215.418 116.85 232.354 127.698] +/Subtype /Link +/A << /S /GoTo /D (page.126) >> +>> endobj +4965 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [396.433 654.832 413.37 665.57] +/Subtype /Link +/A << /S /GoTo /D (page.128) >> +>> endobj +4966 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [412.761 642.825 429.698 653.673] +/Subtype /Link +/A << /S /GoTo /D (page.137) >> +>> endobj +4967 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [414.532 630.818 431.469 641.666] +/Subtype /Link +/A << /S /GoTo /D (page.156) >> +>> endobj +4968 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [406.673 618.81 423.609 629.659] +/Subtype /Link +/A << /S /GoTo /D (page.166) >> +>> endobj +4969 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [379.541 606.803 391.496 617.54] +/Subtype /Link +/A << /S /GoTo /D (page.83) >> +>> endobj +4970 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [395.88 594.796 407.835 605.644] +/Subtype /Link +/A << /S /GoTo /D (page.83) >> +>> endobj +4971 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [391.424 582.788 403.38 593.636] +/Subtype /Link +/A << /S /GoTo /D (page.83) >> +>> endobj +4972 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [419.514 547.941 431.469 558.789] +/Subtype /Link +/A << /S /GoTo /D (page.84) >> +>> endobj +4973 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [395.88 535.933 407.835 546.782] +/Subtype /Link +/A << /S /GoTo /D (page.84) >> +>> endobj +4974 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [409.758 523.926 421.714 534.663] +/Subtype /Link +/A << /S /GoTo /D (page.84) >> +>> endobj +4975 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [408.084 511.919 420.039 522.767] +/Subtype /Link +/A << /S /GoTo /D (page.85) >> +>> endobj +4976 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [411.765 499.911 423.72 510.759] +/Subtype /Link +/A << /S /GoTo /D (page.84) >> +>> endobj +4977 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [400.059 487.904 412.014 498.641] +/Subtype /Link +/A << /S /GoTo /D (page.84) >> +>> endobj +4978 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [399.644 475.897 411.599 486.634] +/Subtype /Link +/A << /S /GoTo /D (page.84) >> +>> endobj +4979 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [391.424 463.889 403.38 474.737] +/Subtype /Link +/A << /S /GoTo /D (page.85) >> +>> endobj +4980 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [391.441 451.882 403.396 462.73] +/Subtype /Link +/A << /S /GoTo /D (page.84) >> +>> endobj +4981 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [408.707 439.874 420.662 450.612] +/Subtype /Link +/A << /S /GoTo /D (page.85) >> +>> endobj +4982 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [406.285 427.867 418.241 438.715] +/Subtype /Link +/A << /S /GoTo /D (page.85) >> +>> endobj +4983 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [420.233 403.852 432.188 414.59] +/Subtype /Link +/A << /S /GoTo /D (page.86) >> +>> endobj +4984 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [395.88 391.845 407.835 402.693] +/Subtype /Link +/A << /S /GoTo /D (page.86) >> +>> endobj +4985 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [409.758 379.838 421.714 390.575] +/Subtype /Link +/A << /S /GoTo /D (page.86) >> +>> endobj +4986 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [408.084 367.83 420.039 378.678] +/Subtype /Link +/A << /S /GoTo /D (page.87) >> +>> endobj +4987 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [412.484 355.823 424.44 366.56] +/Subtype /Link +/A << /S /GoTo /D (page.86) >> +>> endobj +4988 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [399.644 343.815 411.599 354.553] +/Subtype /Link +/A << /S /GoTo /D (page.86) >> +>> endobj +4989 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [399.644 331.808 411.599 342.546] +/Subtype /Link +/A << /S /GoTo /D (page.86) >> +>> endobj +4990 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [391.424 319.801 403.38 330.649] +/Subtype /Link +/A << /S /GoTo /D (page.87) >> +>> endobj +4991 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [392.161 307.793 404.116 318.531] +/Subtype /Link +/A << /S /GoTo /D (page.86) >> +>> endobj +4992 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [408.707 295.786 420.662 306.523] +/Subtype /Link +/A << /S /GoTo /D (page.87) >> +>> endobj +4993 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [407.005 283.779 418.96 294.516] +/Subtype /Link +/A << /S /GoTo /D (page.87) >> +>> endobj +4994 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [400.003 259.764 416.94 270.501] +/Subtype /Link +/A << /S /GoTo /D (page.170) >> +>> endobj +4995 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [408.029 247.756 424.965 258.494] +/Subtype /Link +/A << /S /GoTo /D (page.175) >> +>> endobj +4996 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [403.324 212.909 420.261 223.646] +/Subtype /Link +/A << /S /GoTo /D (page.132) >> +>> endobj +4997 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [421.063 188.894 433.019 199.742] +/Subtype /Link +/A << /S /GoTo /D (page.88) >> +>> endobj +4998 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [407.475 176.887 419.431 187.624] +/Subtype /Link +/A << /S /GoTo /D (page.88) >> +>> endobj +4999 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [413.315 164.88 425.27 175.728] +/Subtype /Link +/A << /S /GoTo /D (page.88) >> +>> endobj +5000 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [432.05 152.872 444.005 163.61] +/Subtype /Link +/A << /S /GoTo /D (page.88) >> +>> endobj +5001 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [391.424 140.865 403.38 151.713] +/Subtype /Link +/A << /S /GoTo /D (page.88) >> +>> endobj +5002 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [392.991 128.857 404.946 139.706] +/Subtype /Link +/A << /S /GoTo /D (page.88) >> +>> endobj +4920 0 obj << +/D [4918 0 R /XYZ 160.667 686.127 null] +>> endobj +4917 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +5005 0 obj << +/Length 1206 +/Filter /FlateDecode +>> +stream +xÚ­XYo›J~çWðê5…õ±N“¨K׶Ԫ˱IŒBÁÁØmtÿü3 {0¸7²dóï|g™Å`±61 +⇦FN€]sñËÏ×W„š‘ùÔœßsä|ùÝz÷éí¥­¯öÏù{Óõ|'¤"؃§ÆåÜÀ’y„Eæˆ:Qèï“ñý'2—2ß0š¿Ù5r0Cý2ÜÀså}fÌŒÏ5apâš#pIJ#“{¤ñ¢”¼¾ +÷ƒ¸‘LRB5[±ïô¾bßÿØ#J]+âfæH`G;‘çq‹E–Ø#lÅ¥SF-\oªÛ-°ëQþÿmÊ ÷\AÖ Lá&YT7éŸav3[¥÷Ý’ºJ6 ­Ç6f¤²Þ@ž%~1À–QÖ#nŠlŒã|ÉP\.\|!×Rˆè©Ö›8g¸eäi.‘~ AN”|ÕN”h¢1šñãRI ¡Tñ|°¡+Ö +JMÞü¶H‰:¤´;Z“þþæî ™]’sú\—¢¼¨TÉn¡+‡bóÞuC¼çÿ}]匸²C×*“§m’/žO‰9œ¤{N4k‹­ùo¸*^¾ž’X rÏ)£«IcW½ž©¤Õ¡MöÛ¤‚å0OÝçö׿ _À8W8ÓVö~¸3Ò¾‹MZ¥EÞ“µÃ¾ðÎì‹6·ÆLÊÇââca@ÜšQ\ÇiSÞ ×<ž,ù–”/Õˆ‚QÕˆ• ÿ¸ýÎFô5yHªƒÈ‚A»«vÍoD~ʧÌò<4Fzßd:ìš`PéÚŒEŽÏêèQv + +i+ (L¶Ž7›ædiå' [j3ÑVBÕ7þÊT °½†]¯Þyu¡Hüš¹`_VG­.³‚#Ô¶ÈVòªÞKi'íd +Ћ)W³ktMÔåG׈‘&ÀÃ*EÝ¡•üôèêFM +‘ýø!éÒ1ø–·TEŠqKI´?`<^‚—²¨Ï"îARqÜHP—I¼o›ÇÄòo²îvF,Ò,ç°ÌÆwÙéeEõ.+Ó¤Þ¼1b¥ŸÇ%ëÑJ °H«¸›ûdõk’q`¢±sç¶Q!ù¨¶ÅÝSÎñY!æSs?Ô‚;)Þ³Iç½Ͳ„tgqÕtèÖˆ/»w…ûaO7|ÃmcD^ª»xtÝ.tÝ¥Y,ºê¢ó¿äÛâÁÿ¢8Hj;ª±sî¹yæÒ;PÀ|´Õ;Nrz÷'r=so‘ôý +ÿWŸ¶q¶?³4¶¾ñÞ!\ŸŠŠ·ój¸Uñ|Ñ/øh®Ðž†Ýñ¢”wÍ̹/Õ®»úïŒÆÁàfu5qjÖÌÓ°œøþ ‹iú°ââ$¾ÎbÔhë%’J¤ça‡ðÿ½G’o¤äq«~Õåš¾nó5Ò|ÅÔ¹Ô³fϹÍ~ª•è¬t]¶£`äC/³±²i%†X¿sË‹W¯ÄÅ<‹Á‰M}Ø›YàòÉÔ¿@Æ(Åmœ‹‘ß\×E®i0 +,GJ\ÄàaÔ7c _Ï#äxeaˆ~ H¼}Ä#âxȃ·u>öe£Š/íÌ`vØà\B€±ô‚/ï_‚àWL/¨ÝÆà»endstream +endobj +5004 0 obj << +/Type /Page +/Contents 5005 0 R +/Resources 5003 0 R +/MediaBox [0 0 612 792] +/Parent 4748 0 R +/Annots [ 5007 0 R 5008 0 R 5009 0 R 5010 0 R 5011 0 R 5012 0 R 5013 0 R 5014 0 R 5015 0 R 5016 0 R 5017 0 R 5018 0 R 5019 0 R 5020 0 R 5021 0 R 5022 0 R 5023 0 R 5024 0 R 5025 0 R 5026 0 R 5027 0 R 5028 0 R 5029 0 R 5030 0 R 5031 0 R 5032 0 R 5033 0 R 5034 0 R 5035 0 R 5036 0 R 5037 0 R 5038 0 R 5039 0 R 5040 0 R 5041 0 R 5042 0 R 5043 0 R 5044 0 R 5045 0 R 5046 0 R 5047 0 R 5048 0 R 5049 0 R 5050 0 R 5051 0 R 5052 0 R 5053 0 R 5054 0 R 5055 0 R 5056 0 R 5057 0 R 5058 0 R 5059 0 R 5060 0 R 5061 0 R 5062 0 R 5063 0 R 5064 0 R 5065 0 R 5066 0 R 5067 0 R 5068 0 R 5069 0 R 5070 0 R 5071 0 R 5072 0 R 5073 0 R 5074 0 R 5075 0 R 5076 0 R 5077 0 R 5078 0 R 5079 0 R 5080 0 R 5081 0 R 5082 0 R 5083 0 R 5084 0 R 5085 0 R 5086 0 R 5087 0 R 5088 0 R 5089 0 R ] +>> endobj +5007 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.211 654.832 186.166 665.681] +/Subtype /Link +/A << /S /GoTo /D (page.90) >> +>> endobj +5008 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.791 642.877 164.747 653.725] +/Subtype /Link +/A << /S /GoTo /D (page.90) >> +>> endobj +5009 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.996 630.922 176.951 641.77] +/Subtype /Link +/A << /S /GoTo /D (page.90) >> +>> endobj +5010 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [166.463 618.967 178.418 629.815] +/Subtype /Link +/A << /S /GoTo /D (page.90) >> +>> endobj +5011 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [186.997 607.012 198.952 617.86] +/Subtype /Link +/A << /S /GoTo /D (page.90) >> +>> endobj +5012 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [165.273 595.057 177.228 605.905] +/Subtype /Link +/A << /S /GoTo /D (page.90) >> +>> endobj +5013 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [148.336 583.101 160.291 593.95] +/Subtype /Link +/A << /S /GoTo /D (page.90) >> +>> endobj +5014 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [146.139 571.146 158.094 581.994] +/Subtype /Link +/A << /S /GoTo /D (page.90) >> +>> endobj +5015 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [183.136 547.236 195.091 558.084] +/Subtype /Link +/A << /S /GoTo /D (page.15) >> +>> endobj +5016 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [173.519 535.281 185.475 546.129] +/Subtype /Link +/A << /S /GoTo /D (page.67) >> +>> endobj +5017 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [166.462 523.326 178.418 534.174] +/Subtype /Link +/A << /S /GoTo /D (page.92) >> +>> endobj +5018 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [153.345 511.37 170.282 522.108] +/Subtype /Link +/A << /S /GoTo /D (page.128) >> +>> endobj +5019 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [169.673 499.415 186.609 510.263] +/Subtype /Link +/A << /S /GoTo /D (page.137) >> +>> endobj +5020 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [146.139 487.46 158.094 498.308] +/Subtype /Link +/A << /S /GoTo /D (page.92) >> +>> endobj +5021 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.211 475.505 186.166 486.353] +/Subtype /Link +/A << /S /GoTo /D (page.92) >> +>> endobj +5022 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.791 463.55 164.747 474.398] +/Subtype /Link +/A << /S /GoTo /D (page.92) >> +>> endobj +5023 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.664 451.595 176.619 462.443] +/Subtype /Link +/A << /S /GoTo /D (page.92) >> +>> endobj +5024 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.387 439.639 176.342 450.377] +/Subtype /Link +/A << /S /GoTo /D (page.92) >> +>> endobj +5025 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [155.531 427.684 167.486 438.532] +/Subtype /Link +/A << /S /GoTo /D (page.92) >> +>> endobj +5026 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [166.462 415.729 178.418 426.577] +/Subtype /Link +/A << /S /GoTo /D (page.92) >> +>> endobj +5027 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.961 403.774 200.917 414.511] +/Subtype /Link +/A << /S /GoTo /D (page.92) >> +>> endobj +5028 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [148.336 391.819 160.291 402.667] +/Subtype /Link +/A << /S /GoTo /D (page.92) >> +>> endobj +5029 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [183.62 367.908 195.576 378.757] +/Subtype /Link +/A << /S /GoTo /D (page.94) >> +>> endobj +5030 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.791 355.953 164.747 366.801] +/Subtype /Link +/A << /S /GoTo /D (page.94) >> +>> endobj +5031 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.664 343.998 176.619 354.846] +/Subtype /Link +/A << /S /GoTo /D (page.95) >> +>> endobj +5032 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [175.872 332.043 187.827 342.891] +/Subtype /Link +/A << /S /GoTo /D (page.94) >> +>> endobj +5033 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [175.927 320.088 187.882 330.825] +/Subtype /Link +/A << /S /GoTo /D (page.94) >> +>> endobj +5034 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [213.73 308.133 225.685 318.981] +/Subtype /Link +/A << /S /GoTo /D (page.94) >> +>> endobj +5035 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.961 296.177 200.917 306.915] +/Subtype /Link +/A << /S /GoTo /D (page.94) >> +>> endobj +5036 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [204.348 284.222 216.303 295.07] +/Subtype /Link +/A << /S /GoTo /D (page.94) >> +>> endobj +5037 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [148.336 272.267 160.291 283.115] +/Subtype /Link +/A << /S /GoTo /D (page.95) >> +>> endobj +5038 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [155.548 260.312 167.503 271.16] +/Subtype /Link +/A << /S /GoTo /D (page.94) >> +>> endobj +5039 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [208.015 248.357 219.97 259.094] +/Subtype /Link +/A << /S /GoTo /D (page.95) >> +>> endobj +5040 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [178.113 224.446 190.068 235.295] +/Subtype /Link +/A << /S /GoTo /D (page.96) >> +>> endobj +5041 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.791 212.491 164.747 223.339] +/Subtype /Link +/A << /S /GoTo /D (page.96) >> +>> endobj +5042 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [166.67 200.536 178.625 211.274] +/Subtype /Link +/A << /S /GoTo /D (page.97) >> +>> endobj +5043 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.996 188.581 176.951 199.429] +/Subtype /Link +/A << /S /GoTo /D (page.97) >> +>> endobj +5044 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [170.365 176.626 182.32 187.474] +/Subtype /Link +/A << /S /GoTo /D (page.96) >> +>> endobj +5045 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [156.97 164.671 168.925 175.408] +/Subtype /Link +/A << /S /GoTo /D (page.96) >> +>> endobj +5046 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [156.555 152.715 168.51 163.453] +/Subtype /Link +/A << /S /GoTo /D (page.96) >> +>> endobj +5047 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [156.555 140.76 168.51 151.498] +/Subtype /Link +/A << /S /GoTo /D (page.96) >> +>> endobj +5048 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [148.336 128.805 160.291 139.653] +/Subtype /Link +/A << /S /GoTo /D (page.97) >> +>> endobj +5049 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [150.041 116.85 161.996 127.698] +/Subtype /Link +/A << /S /GoTo /D (page.96) >> +>> endobj +5050 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [365.189 654.832 377.145 665.681] +/Subtype /Link +/A << /S /GoTo /D (page.97) >> +>> endobj +5051 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [377.698 642.844 389.653 653.693] +/Subtype /Link +/A << /S /GoTo /D (page.97) >> +>> endobj +5052 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [354.909 630.856 366.864 641.594] +/Subtype /Link +/A << /S /GoTo /D (page.97) >> +>> endobj +5053 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [349.803 606.88 366.739 617.729] +/Subtype /Link +/A << /S /GoTo /D (page.133) >> +>> endobj +5054 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [339.303 594.892 351.258 605.63] +/Subtype /Link +/A << /S /GoTo /D (page.99) >> +>> endobj +5055 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [342.082 582.904 354.037 593.753] +/Subtype /Link +/A << /S /GoTo /D (page.99) >> +>> endobj +5056 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [337.626 570.916 349.581 581.765] +/Subtype /Link +/A << /S /GoTo /D (page.99) >> +>> endobj +5057 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [352.709 546.94 369.645 557.788] +/Subtype /Link +/A << /S /GoTo /D (page.111) >> +>> endobj +5058 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [359.71 534.952 376.647 545.8] +/Subtype /Link +/A << /S /GoTo /D (page.143) >> +>> endobj +5059 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [349.803 500.466 366.739 511.314] +/Subtype /Link +/A << /S /GoTo /D (page.134) >> +>> endobj +5060 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [370.697 476.49 387.633 487.338] +/Subtype /Link +/A << /S /GoTo /D (page.100) >> +>> endobj +5061 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [354.286 464.502 371.222 475.35] +/Subtype /Link +/A << /S /GoTo /D (page.100) >> +>> endobj +5062 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [362.948 452.514 379.884 463.362] +/Subtype /Link +/A << /S /GoTo /D (page.100) >> +>> endobj +5063 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [337.626 440.526 354.563 451.374] +/Subtype /Link +/A << /S /GoTo /D (page.100) >> +>> endobj +5064 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [342.624 428.538 359.561 439.386] +/Subtype /Link +/A << /S /GoTo /D (page.100) >> +>> endobj +5065 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [359.599 416.55 376.536 427.398] +/Subtype /Link +/A << /S /GoTo /D (page.101) >> +>> endobj +5066 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [357.33 404.562 374.267 415.41] +/Subtype /Link +/A << /S /GoTo /D (page.101) >> +>> endobj +5067 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [337.626 392.574 354.563 403.422] +/Subtype /Link +/A << /S /GoTo /D (page.101) >> +>> endobj +5068 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [363.086 368.598 375.042 379.446] +/Subtype /Link +/A << /S /GoTo /D (page.77) >> +>> endobj +5069 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [346.205 356.61 363.142 367.347] +/Subtype /Link +/A << /S /GoTo /D (page.168) >> +>> endobj +5070 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [340.742 344.622 357.679 355.359] +/Subtype /Link +/A << /S /GoTo /D (page.102) >> +>> endobj +5071 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [368.815 332.634 385.751 343.371] +/Subtype /Link +/A << /S /GoTo /D (page.102) >> +>> endobj +5072 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [342.082 320.646 359.018 331.494] +/Subtype /Link +/A << /S /GoTo /D (page.102) >> +>> endobj +5073 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [384.423 308.658 401.36 319.506] +/Subtype /Link +/A << /S /GoTo /D (page.103) >> +>> endobj +5074 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [349.803 296.67 366.739 307.518] +/Subtype /Link +/A << /S /GoTo /D (page.102) >> +>> endobj +5075 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [349.526 284.682 366.463 295.53] +/Subtype /Link +/A << /S /GoTo /D (page.102) >> +>> endobj +5076 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [353.954 272.694 370.89 283.542] +/Subtype /Link +/A << /S /GoTo /D (page.103) >> +>> endobj +5077 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [353.677 260.706 370.614 271.443] +/Subtype /Link +/A << /S /GoTo /D (page.102) >> +>> endobj +5078 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [361.066 248.718 378.003 259.455] +/Subtype /Link +/A << /S /GoTo /D (page.102) >> +>> endobj +5079 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [408.264 236.73 425.201 247.578] +/Subtype /Link +/A << /S /GoTo /D (page.102) >> +>> endobj +5080 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [359.821 224.742 376.757 235.59] +/Subtype /Link +/A << /S /GoTo /D (page.102) >> +>> endobj +5081 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [379.386 212.754 396.323 223.491] +/Subtype /Link +/A << /S /GoTo /D (page.102) >> +>> endobj +5082 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [337.626 200.766 354.563 211.614] +/Subtype /Link +/A << /S /GoTo /D (page.103) >> +>> endobj +5083 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [331.859 188.778 348.795 199.626] +/Subtype /Link +/A << /S /GoTo /D (page.104) >> +>> endobj +5084 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [359.931 176.79 376.868 187.638] +/Subtype /Link +/A << /S /GoTo /D (page.104) >> +>> endobj +5085 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [342.082 164.802 359.018 175.65] +/Subtype /Link +/A << /S /GoTo /D (page.104) >> +>> endobj +5086 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [354.286 152.814 371.222 163.662] +/Subtype /Link +/A << /S /GoTo /D (page.104) >> +>> endobj +5087 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [371.859 140.826 388.796 151.674] +/Subtype /Link +/A << /S /GoTo /D (page.104) >> +>> endobj +5088 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [378.501 128.838 395.437 139.686] +/Subtype /Link +/A << /S /GoTo /D (page.104) >> +>> endobj +5089 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [352.183 116.85 369.119 127.698] +/Subtype /Link +/A << /S /GoTo /D (page.104) >> +>> endobj +5006 0 obj << +/D [5004 0 R /XYZ 106.869 686.127 null] +>> endobj +5003 0 obj << +/Font << /F23 479 0 R /F14 825 0 R /F8 483 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +5092 0 obj << +/Length 1124 +/Filter /FlateDecode +>> +stream +xÚ­X]s›8}çWðÓ…êôØ4ÍN»Óu3³~<°6M˜8àÚ¤±§~u% €Ñ'3±dν:÷êèêl#ù‡m"|Æ„ráG8°W÷ÖEl½¼"Ô¾©WÀxýÅ!8t¿Åïì€2?¢aõíÛ¿/߸Øù¬7±…+Çò©à¶G}Áøýa}ù†ìµ…ìw–~ö(ÇÈÇBØ÷V1Ÿ`^Í7ÖÒúظ ûœÚ‰¥š#?¥¸O];%úŠ0…Iº*ßg‡?\Rê`¨íaì Æ”U™­\»'P3b +îI˜£ëÛ•ŒœuzlÐ*?/¯dfËPY~Ei`+‚ÈQE1êÚö4¬Í#/J­Š{‘ËQÏÍ#ÝÃUy¼ryàìÒi¾š68Ia8ž8–—[Iv“Δ²®Ó†KÛ&ÙCxÔÙI‹ä^ÅÛ³B'‹ .'acDÄÜ|ô¼$cz‰ÞF–É®4 Šm ÀhÆÖN‚ÆRZÇÿ>[K«ìœj¨\6ð˜nÒòÈawíøVwj˜öì‘Éô/LV¯ «$y^ŸßMëøŽÙ]6È2‰³ûY cWy`¸•‡Ÿâur·°{Y®3X3Ûïár3½ÔdÚM;ßÃÀóô0ňÖùççÛÜ /ö;òRþZFOåKMee*5ƒ°aÁœ4œ˜ $Ó)2806§È°é"#¯¥~&™1ð… ä¡<¯´Ï†D8&y [PÇvß¡Ž]Ê"vzG=œDS¤ 8ä2ŽÈfTvQ²›2¡²Bõœ›@hWÈ–&†'šà ÑÆ[²€’øÐ¦Ëf+ôM +£][ëbD*ݤ¥²Lî§訅 e²ÒàdÝ UèJ½+àJh]*O…‘ »;°J è’'¨MF€í>ÔèÕ”’žR&ºÑAƒ刮Ú¾Û +¸Nä>¢ý%„×x¤ã•¬Åw½3ÇVpŸKPéu|…®¢ø¨¢þŸŠ"¿±ÿFpnbd wP-›àT;¶ÏʬÈgš +mت\½R–ßÀÅv.¶¯`2ÐÝtI¿:í›*ÀEöš‰d];ª£‹¦ Õ kNgeă# ݤŸÓ]ÝðŠp=qä.ޮό#Ï +ìykoàlÙmŽpJA4Ïmݾú~u µäº.»f ¨ƒ[&Z:ÝbvNÏ’xzòº§~IÃä'!ü™o|(õ‰›î¦y-Ø¡/¢ ýÎ'¾•Êœå1wåGy«;«l_NìbJA{òY¡~<ý••úQÓ\_¿€É =ùõøƒKC'…º¹«¾¹ö+p*]ßéi’ƒ‡µžü©«­² ÒF‘ãW> endobj +5094 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [240.795 654.832 257.731 665.681] +/Subtype /Link +/A << /S /GoTo /D (page.104) >> +>> endobj +5095 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [202.134 642.877 219.071 653.725] +/Subtype /Link +/A << /S /GoTo /D (page.104) >> +>> endobj +5096 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [223.167 642.877 240.103 653.725] +/Subtype /Link +/A << /S /GoTo /D (page.105) >> +>> endobj +5097 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [199.107 630.922 216.043 641.77] +/Subtype /Link +/A << /S /GoTo /D (page.106) >> +>> endobj +5098 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [227.179 618.967 244.116 629.815] +/Subtype /Link +/A << /S /GoTo /D (page.106) >> +>> endobj +5099 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [218.185 607.012 235.122 617.749] +/Subtype /Link +/A << /S /GoTo /D (page.106) >> +>> endobj +5100 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [219.431 595.057 236.367 605.905] +/Subtype /Link +/A << /S /GoTo /D (page.106) >> +>> endobj +5101 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.76 583.101 259.696 593.839] +/Subtype /Link +/A << /S /GoTo /D (page.106) >> +>> endobj +5102 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [202.134 571.146 219.071 581.994] +/Subtype /Link +/A << /S /GoTo /D (page.106) >> +>> endobj +5103 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [235.897 547.236 252.833 558.084] +/Subtype /Link +/A << /S /GoTo /D (page.108) >> +>> endobj +5104 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [228.923 535.281 245.859 546.129] +/Subtype /Link +/A << /S /GoTo /D (page.108) >> +>> endobj +5105 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [218.794 523.326 235.731 534.174] +/Subtype /Link +/A << /S /GoTo /D (page.108) >> +>> endobj +5106 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [228.148 511.37 245.084 522.219] +/Subtype /Link +/A << /S /GoTo /D (page.109) >> +>> endobj +5107 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [207.824 499.415 224.761 510.263] +/Subtype /Link +/A << /S /GoTo /D (page.108) >> +>> endobj +5108 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [228.148 487.46 245.084 498.308] +/Subtype /Link +/A << /S /GoTo /D (page.109) >> +>> endobj +5109 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.645 475.505 223.582 485.855] +/Subtype /Link +/A << /S /GoTo /D (page.109) >> +>> endobj +5110 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [204.404 463.55 221.34 473.9] +/Subtype /Link +/A << /S /GoTo /D (page.110) >> +>> endobj +5111 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [202.134 451.595 219.071 462.443] +/Subtype /Link +/A << /S /GoTo /D (page.110) >> +>> endobj +5112 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [229.421 439.639 246.357 450.488] +/Subtype /Link +/A << /S /GoTo /D (page.110) >> +>> endobj +5113 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [224.965 415.729 241.902 426.577] +/Subtype /Link +/A << /S /GoTo /D (page.111) >> +>> endobj +5114 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [245.472 403.774 262.408 414.622] +/Subtype /Link +/A << /S /GoTo /D (page.111) >> +>> endobj +5115 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [239.079 391.819 256.016 402.556] +/Subtype /Link +/A << /S /GoTo /D (page.111) >> +>> endobj +5116 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [235.343 379.864 252.28 390.712] +/Subtype /Link +/A << /S /GoTo /D (page.111) >> +>> endobj +5117 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [245.721 367.908 262.657 378.757] +/Subtype /Link +/A << /S /GoTo /D (page.111) >> +>> endobj +5118 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [221.783 355.953 238.719 366.691] +/Subtype /Link +/A << /S /GoTo /D (page.111) >> +>> endobj +5119 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [243.23 343.998 260.167 354.736] +/Subtype /Link +/A << /S /GoTo /D (page.111) >> +>> endobj +5120 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [217.217 332.043 234.153 342.891] +/Subtype /Link +/A << /S /GoTo /D (page.111) >> +>> endobj +5121 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [196.893 320.088 213.829 330.936] +/Subtype /Link +/A << /S /GoTo /D (page.111) >> +>> endobj +5122 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [240.989 308.133 257.925 318.87] +/Subtype /Link +/A << /S /GoTo /D (page.112) >> +>> endobj +5123 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [229.393 284.222 246.33 294.96] +/Subtype /Link +/A << /S /GoTo /D (page.113) >> +>> endobj +5124 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [228.923 272.267 245.859 283.115] +/Subtype /Link +/A << /S /GoTo /D (page.113) >> +>> endobj +5125 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [218.794 260.312 235.731 271.16] +/Subtype /Link +/A << /S /GoTo /D (page.113) >> +>> endobj +5126 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [221.644 248.357 238.581 259.094] +/Subtype /Link +/A << /S /GoTo /D (page.114) >> +>> endobj +5127 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [201.321 236.402 218.257 247.139] +/Subtype /Link +/A << /S /GoTo /D (page.113) >> +>> endobj +5128 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [221.644 224.446 238.581 235.184] +/Subtype /Link +/A << /S /GoTo /D (page.114) >> +>> endobj +5129 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.645 212.491 223.582 222.841] +/Subtype /Link +/A << /S /GoTo /D (page.114) >> +>> endobj +5130 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [204.404 200.536 221.34 210.886] +/Subtype /Link +/A << /S /GoTo /D (page.115) >> +>> endobj +5131 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [202.134 188.581 219.071 199.429] +/Subtype /Link +/A << /S /GoTo /D (page.115) >> +>> endobj +5132 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [229.421 176.626 246.357 187.474] +/Subtype /Link +/A << /S /GoTo /D (page.115) >> +>> endobj +5133 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [237.419 152.715 254.355 163.453] +/Subtype /Link +/A << /S /GoTo /D (page.116) >> +>> endobj +5134 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [230.583 140.76 247.52 151.498] +/Subtype /Link +/A << /S /GoTo /D (page.116) >> +>> endobj +5135 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [222.06 128.805 238.996 139.543] +/Subtype /Link +/A << /S /GoTo /D (page.116) >> +>> endobj +5136 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [229.67 116.85 246.606 127.587] +/Subtype /Link +/A << /S /GoTo /D (page.117) >> +>> endobj +5137 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [398.636 654.832 415.573 665.57] +/Subtype /Link +/A << /S /GoTo /D (page.116) >> +>> endobj +5138 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [418.96 642.844 435.897 653.582] +/Subtype /Link +/A << /S /GoTo /D (page.117) >> +>> endobj +5139 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [395.935 630.856 412.872 641.206] +/Subtype /Link +/A << /S /GoTo /D (page.117) >> +>> endobj +5140 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [393.694 618.868 410.63 629.218] +/Subtype /Link +/A << /S /GoTo /D (page.117) >> +>> endobj +5141 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [391.424 606.88 408.361 617.729] +/Subtype /Link +/A << /S /GoTo /D (page.118) >> +>> endobj +5142 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [418.711 594.892 435.648 605.741] +/Subtype /Link +/A << /S /GoTo /D (page.118) >> +>> endobj +5143 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [390.5 572.394 407.437 583.242] +/Subtype /Link +/A << /S /GoTo /D (page.119) >> +>> endobj +5144 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [418.573 560.406 435.509 571.254] +/Subtype /Link +/A << /S /GoTo /D (page.119) >> +>> endobj +5145 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [395.88 548.418 412.816 559.266] +/Subtype /Link +/A << /S /GoTo /D (page.119) >> +>> endobj +5146 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [438.221 536.43 455.158 547.278] +/Subtype /Link +/A << /S /GoTo /D (page.120) >> +>> endobj +5147 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [403.601 524.442 420.538 535.29] +/Subtype /Link +/A << /S /GoTo /D (page.119) >> +>> endobj +5148 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [403.324 512.454 420.261 523.302] +/Subtype /Link +/A << /S /GoTo /D (page.119) >> +>> endobj +5149 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [407.752 500.466 424.689 511.314] +/Subtype /Link +/A << /S /GoTo /D (page.119) >> +>> endobj +5150 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [410.824 488.478 427.76 499.326] +/Subtype /Link +/A << /S /GoTo /D (page.119) >> +>> endobj +5151 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [432.05 476.49 448.986 487.228] +/Subtype /Link +/A << /S /GoTo /D (page.119) >> +>> endobj +5152 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [391.424 464.502 408.361 475.35] +/Subtype /Link +/A << /S /GoTo /D (page.119) >> +>> endobj +5153 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [390.041 440.526 406.977 451.374] +/Subtype /Link +/A << /S /GoTo /D (page.139) >> +>> endobj +5154 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [394.347 428.538 411.283 439.386] +/Subtype /Link +/A << /S /GoTo /D (page.121) >> +>> endobj +5155 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [422.419 416.55 439.356 427.398] +/Subtype /Link +/A << /S /GoTo /D (page.121) >> +>> endobj +5156 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [395.88 404.562 412.816 415.41] +/Subtype /Link +/A << /S /GoTo /D (page.121) >> +>> endobj +5157 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [438.221 392.574 455.158 403.422] +/Subtype /Link +/A << /S /GoTo /D (page.122) >> +>> endobj +5158 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [407.752 380.586 424.689 391.434] +/Subtype /Link +/A << /S /GoTo /D (page.122) >> +>> endobj +5159 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [407.475 368.598 424.412 379.335] +/Subtype /Link +/A << /S /GoTo /D (page.121) >> +>> endobj +5160 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [414.671 356.61 431.607 367.458] +/Subtype /Link +/A << /S /GoTo /D (page.121) >> +>> endobj +5161 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [444.669 344.622 461.606 355.47] +/Subtype /Link +/A << /S /GoTo /D (page.121) >> +>> endobj +5162 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [432.05 332.634 448.986 343.371] +/Subtype /Link +/A << /S /GoTo /D (page.121) >> +>> endobj +5163 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [430.943 320.646 447.88 331.494] +/Subtype /Link +/A << /S /GoTo /D (page.121) >> +>> endobj +5164 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [428.701 308.658 445.638 319.506] +/Subtype /Link +/A << /S /GoTo /D (page.121) >> +>> endobj +5165 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [391.424 296.67 408.361 307.518] +/Subtype /Link +/A << /S /GoTo /D (page.122) >> +>> endobj +5166 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [408.997 272.694 420.953 283.542] +/Subtype /Link +/A << /S /GoTo /D (page.18) >> +>> endobj +5167 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [411.765 260.706 423.72 271.554] +/Subtype /Link +/A << /S /GoTo /D (page.84) >> +>> endobj +5168 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [413.453 248.718 425.408 259.566] +/Subtype /Link +/A << /S /GoTo /D (page.96) >> +>> endobj +5169 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [413.149 236.73 430.085 247.578] +/Subtype /Link +/A << /S /GoTo /D (page.158) >> +>> endobj +5170 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [408.997 212.754 420.953 223.602] +/Subtype /Link +/A << /S /GoTo /D (page.18) >> +>> endobj +5171 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [413.149 200.766 430.085 211.614] +/Subtype /Link +/A << /S /GoTo /D (page.158) >> +>> endobj +5172 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [413.453 176.79 425.408 187.638] +/Subtype /Link +/A << /S /GoTo /D (page.97) >> +>> endobj +5173 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [403.324 152.814 415.279 163.551] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +5174 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [403.324 128.838 415.279 139.575] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +5093 0 obj << +/D [5091 0 R /XYZ 160.667 686.127 null] +>> endobj +5090 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +5177 0 obj << +/Length 1199 +/Filter /FlateDecode +>> +stream +xÚµXÝs›8÷_Á#LÏ ÄÇc'¹~ä.=×›öú@mR3Á¦ÜÔwÿ|wWˆ8‰dH27™ ²øí÷jw³<øcó"—‡±Ɖ±ÀZ¬G“ùèõ)÷­ÄMBßš_r¾ül¿ùczâ0ûoçËü­ˆÐý¨}ÅY„»£“ùˆµœÇžë'‰5öÝ$È÷fôù‹g-Gžõv„ïbë֞˵‘p9‹ÛßÅh6úбâç5橤tŒ«x4†—¿9cßlÆIÕ±¢gÌM„ `9cf7À$ÿ°Vé’xù6‹ éµ @nBœ.žØeAë–"îQˆŸ²ªTÈPƒŽ1rÜÃ%:ÜüÖá‘]j`"6ã÷زõú‰=öS8ÄOÿ³ÕO´‚¿ÈŠçÉLåâ}éŒÑ´ï æ,Í7¦¼»(°] ®[ÊB£Ó¬x~õ•¯¾+µü¸W­Bê#åŸo&çÌ!4²¯Ÿ5 ài‚>ÑfÒJ£4 ‘d·’¸Î›¼4zx–þDùW€ðι;/¼?šÒ˜%íf9üÿ·3“çÎStì²Ä˜æ›VLØkͱ”’ýã±p;yFº6µÉ¦ÓE4w[QAÒ/Jr¦ÌÈÿüŽ©ðŸÆÔxèžÆtš-RÌÀIÇó¬^ñ©rr2œ4 ÜIGJ1´³„&ösŠ!,Ö†lÏj^Ó¬He +v€Ö)¾®’v #…Š¡Þ«Ôò4ýð„NùJÛ`@P7嚪OÚ”Õó²›…1Œ¡%|bÿ>ûËúÆx@»j‹•Ù +noq›bP«ŒÎhs†V˜ û¹¬¢Ë´hÙG½ÞÁi j€OY³hÎóŸ&æÇ«³­U ™&†úèÜàZÔÌVÔUåëÀN< ÃKRóµ„êë^!õ‚!¦m°ŒJ`¥P#ÂâPñ>-¶” +ªlxCÝlÓBµ]A(d8h]¹.é¥u)³øÞæõžáS' ƒnŽÈ˜¯›CUè…ùª¤m³ÍÂX5&)éB¸øˆñ=S&é†ZÕ}'HR6Å]Úp¦q˜‚ÿ~\徎u‰ÞRŠuQÐ B“*­ë}n‰t\¤UNAM0¾N¨>ÉX,î,sWx¿ü„Lfõu‰Ûó ãn@¼Ð…÷¢,ñ¤> endobj +5179 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [160.236 654.832 172.191 665.57] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +5180 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [165.909 630.922 177.864 641.77] +/Subtype /Link +/A << /S /GoTo /D (page.18) >> +>> endobj +5181 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [168.676 618.967 180.632 629.815] +/Subtype /Link +/A << /S /GoTo /D (page.84) >> +>> endobj +5182 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [169.396 607.012 181.351 617.749] +/Subtype /Link +/A << /S /GoTo /D (page.86) >> +>> endobj +5183 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [170.365 595.057 182.32 605.905] +/Subtype /Link +/A << /S /GoTo /D (page.96) >> +>> endobj +5184 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [170.06 583.101 186.997 593.95] +/Subtype /Link +/A << /S /GoTo /D (page.158) >> +>> endobj +5185 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [170.78 571.146 187.716 581.884] +/Subtype /Link +/A << /S /GoTo /D (page.161) >> +>> endobj +5186 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [165.909 547.236 177.864 558.084] +/Subtype /Link +/A << /S /GoTo /D (page.18) >> +>> endobj +5187 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [169.396 535.281 181.351 546.018] +/Subtype /Link +/A << /S /GoTo /D (page.86) >> +>> endobj +5188 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [170.365 523.326 182.32 534.174] +/Subtype /Link +/A << /S /GoTo /D (page.96) >> +>> endobj +5189 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [170.78 511.37 187.716 522.108] +/Subtype /Link +/A << /S /GoTo /D (page.161) >> +>> endobj +5190 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [165.909 487.46 177.864 498.308] +/Subtype /Link +/A << /S /GoTo /D (page.18) >> +>> endobj +5191 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [170.78 475.505 187.716 486.242] +/Subtype /Link +/A << /S /GoTo /D (page.161) >> +>> endobj +5192 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [175.872 451.595 187.827 462.443] +/Subtype /Link +/A << /S /GoTo /D (page.95) >> +>> endobj +5193 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [169.673 439.639 186.609 450.488] +/Subtype /Link +/A << /S /GoTo /D (page.138) >> +>> endobj +5194 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [160.513 415.729 177.449 426.577] +/Subtype /Link +/A << /S /GoTo /D (page.134) >> +>> endobj +5195 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [170.365 391.819 182.32 402.667] +/Subtype /Link +/A << /S /GoTo /D (page.97) >> +>> endobj +5196 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [171.582 367.908 188.519 378.757] +/Subtype /Link +/A << /S /GoTo /D (page.121) >> +>> endobj +5197 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [173.519 343.998 185.475 354.846] +/Subtype /Link +/A << /S /GoTo /D (page.67) >> +>> endobj +5198 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [156.528 320.088 168.483 330.936] +/Subtype /Link +/A << /S /GoTo /D (page.49) >> +>> endobj +5199 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [147.921 296.177 159.876 306.915] +/Subtype /Link +/A << /S /GoTo /D (page.53) >> +>> endobj +5200 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [147.921 272.267 159.876 283.005] +/Subtype /Link +/A << /S /GoTo /D (page.53) >> +>> endobj +5201 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [167.902 248.357 179.857 259.205] +/Subtype /Link +/A << /S /GoTo /D (page.69) >> +>> endobj +5202 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [160.236 224.446 172.191 235.184] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +5203 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [160.236 200.536 172.191 211.274] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +5204 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [157.053 176.626 169.009 187.474] +/Subtype /Link +/A << /S /GoTo /D (page.36) >> +>> endobj +5205 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.525 164.671 176.481 175.519] +/Subtype /Link +/A << /S /GoTo /D (page.38) >> +>> endobj +5206 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [163.28 152.715 175.235 163.564] +/Subtype /Link +/A << /S /GoTo /D (page.40) >> +>> endobj +5207 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [153.732 140.76 165.688 151.608] +/Subtype /Link +/A << /S /GoTo /D (page.43) >> +>> endobj +5208 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [156.528 116.85 168.483 127.698] +/Subtype /Link +/A << /S /GoTo /D (page.49) >> +>> endobj +5209 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [365.162 642.877 377.117 653.725] +/Subtype /Link +/A << /S /GoTo /D (page.94) >> +>> endobj +5210 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [349.249 618.967 361.204 629.815] +/Subtype /Link +/A << /S /GoTo /D (page.73) >> +>> endobj +5211 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [352.653 595.057 364.608 605.905] +/Subtype /Link +/A << /S /GoTo /D (page.31) >> +>> endobj +5212 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [343.023 583.101 354.978 593.95] +/Subtype /Link +/A << /S /GoTo /D (page.43) >> +>> endobj +5213 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [355.753 571.146 367.708 581.994] +/Subtype /Link +/A << /S /GoTo /D (page.90) >> +>> endobj +5214 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [352.183 559.191 369.119 570.039] +/Subtype /Link +/A << /S /GoTo /D (page.104) >> +>> endobj +5215 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [344.683 535.281 356.638 546.129] +/Subtype /Link +/A << /S /GoTo /D (page.50) >> +>> endobj +5216 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [355.199 511.37 367.154 522.219] +/Subtype /Link +/A << /S /GoTo /D (page.20) >> +>> endobj +5217 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [361.066 499.415 378.003 510.153] +/Subtype /Link +/A << /S /GoTo /D (page.102) >> +>> endobj +5218 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [365.162 475.505 377.117 486.353] +/Subtype /Link +/A << /S /GoTo /D (page.94) >> +>> endobj +5219 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [372.426 451.595 384.381 462.443] +/Subtype /Link +/A << /S /GoTo /D (page.14) >> +>> endobj +5220 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [361.979 439.639 373.935 450.488] +/Subtype /Link +/A << /S /GoTo /D (page.21) >> +>> endobj +5221 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [362.948 427.684 374.903 438.532] +/Subtype /Link +/A << /S /GoTo /D (page.23) >> +>> endobj +5222 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [350.218 415.729 362.173 426.577] +/Subtype /Link +/A << /S /GoTo /D (page.25) >> +>> endobj +5223 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [345.375 403.774 357.33 414.511] +/Subtype /Link +/A << /S /GoTo /D (page.29) >> +>> endobj +5224 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [357.026 391.819 368.981 402.667] +/Subtype /Link +/A << /S /GoTo /D (page.33) >> +>> endobj +5225 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [344.683 379.864 356.638 390.712] +/Subtype /Link +/A << /S /GoTo /D (page.50) >> +>> endobj +5226 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [337.211 367.908 349.166 378.646] +/Subtype /Link +/A << /S /GoTo /D (page.52) >> +>> endobj +5227 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [364.387 355.953 376.342 366.691] +/Subtype /Link +/A << /S /GoTo /D (page.55) >> +>> endobj +5228 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [359.848 343.998 371.804 354.736] +/Subtype /Link +/A << /S /GoTo /D (page.63) >> +>> endobj +5229 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [349.249 332.043 361.204 342.891] +/Subtype /Link +/A << /S /GoTo /D (page.73) >> +>> endobj +5230 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [345.928 320.088 357.884 330.825] +/Subtype /Link +/A << /S /GoTo /D (page.79) >> +>> endobj +5231 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [359.516 308.133 371.472 318.981] +/Subtype /Link +/A << /S /GoTo /D (page.88) >> +>> endobj +5232 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [355.753 296.177 367.708 307.026] +/Subtype /Link +/A << /S /GoTo /D (page.92) >> +>> endobj +5233 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [365.162 284.222 377.117 295.07] +/Subtype /Link +/A << /S /GoTo /D (page.94) >> +>> endobj +5234 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [354.922 272.267 371.859 283.115] +/Subtype /Link +/A << /S /GoTo /D (page.106) >> +>> endobj +5235 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [357.026 260.312 373.962 271.16] +/Subtype /Link +/A << /S /GoTo /D (page.119) >> +>> endobj +5236 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [360.872 248.357 377.809 259.205] +/Subtype /Link +/A << /S /GoTo /D (page.121) >> +>> endobj +5237 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [350.91 236.402 367.846 247.25] +/Subtype /Link +/A << /S /GoTo /D (page.126) >> +>> endobj +5238 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [342.635 224.446 359.572 235.184] +/Subtype /Link +/A << /S /GoTo /D (page.128) >> +>> endobj +5239 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [358.963 212.491 375.899 223.339] +/Subtype /Link +/A << /S /GoTo /D (page.137) >> +>> endobj +5240 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [367.099 200.536 384.036 211.274] +/Subtype /Link +/A << /S /GoTo /D (page.165) >> +>> endobj +5241 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [352.875 188.581 369.811 199.429] +/Subtype /Link +/A << /S /GoTo /D (page.166) >> +>> endobj +5242 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [355.199 164.671 367.154 175.519] +/Subtype /Link +/A << /S /GoTo /D (page.20) >> +>> endobj +5243 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [345.818 152.715 357.773 163.564] +/Subtype /Link +/A << /S /GoTo /D (page.49) >> +>> endobj +5244 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [337.211 140.76 349.166 151.498] +/Subtype /Link +/A << /S /GoTo /D (page.52) >> +>> endobj +5245 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [357.967 128.805 369.922 139.653] +/Subtype /Link +/A << /S /GoTo /D (page.85) >> +>> endobj +5246 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [358.686 116.85 370.641 127.587] +/Subtype /Link +/A << /S /GoTo /D (page.87) >> +>> endobj +5178 0 obj << +/D [5176 0 R /XYZ 106.869 686.127 null] +>> endobj +5175 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +5250 0 obj << +/Length 1181 +/Filter /FlateDecode +>> +stream +xÚ½X[s›8~çWðÓ5‹$Ä屩“lÓÆumÏô¶} F©™`p1N&Ó?¿:GÂvsñÆÓÉL,ÁÑwîDLWþ“Fç‘金Ïœ/³™ñ÷efäD>3g·H8K¾Y”„ö÷Ù•é1îÌ×Oߎ†ç6±>Ã+ã|f R¯°z›K»¬6ò_¥äZÃãöi‘ãé'‡«kd IF‡š™àÅã%9T¢\Ù4‹+ÑÄáÓ=JV+.ð+Q E‡Ç&Ћ •»]Ö‘ ñ¯K¸˜ã>-äùü%ðOd~Ÿ®š°ÎÊx½Þs9í´îµäãiáKؤ$Uê]è$Î4|ÀúÀéÐJ†bUÙàýÙß,ŠR¾ß¬58#G€‹ËƒróÈ}a‡žUŠŸ¡…}l²Ð‹t€0Á D,°V£©.®wAÎÙ¤Þi|—µÒ¼™°øQEÿWà©JOTI“žHNO"Ш¨æ¿Ö:K?‚¤qR'…{€ïÁÖ¨ +˜½²éÒS•Íȱ„¥(ãJ†J“Ó KP–;ƒyݶøÜR{GÝÑ—Æ"pÐY™^7:¨[>ÌìYñ Uí©°ÑS"‘túD¶õTgºå©tìî OWªMöê^S¨^éí;rU³dA—Óe¶Á½ÓÍ2mã3ßkzeu¿÷ºÕ|`X·ÈÈñåìÙœ/䜤 Ä‘üÀŒò>ꔪ‘‹fÆyRsÅ'ë²¶™w\ÅjÑwƒ2I±ìSþu¹ÚW7º9š6”EÎs0à=è†Äà¸b…µ±îæÞ¡¢;InFDœ2äÖ2‡LsôP#eN±J÷i´/Úë<™ÄàÌtƒrŸnH˜ˆL¨DLZ†»×édMùO5´)~=TÐ͈õŸ©þ’5ر5 ¨± ˆm´e\¯ªt»YºÏ®Tê‹.) _x«Â˜C#+ÏöêÇ3}' +¼ý{•ÙB +æ1nMs[þT Ïé{2‰ëÃ|W`——VêU +Û\­ß¼‚Í+µ¹ GµÛÌ—ã>LMúÉÄÑGTBß©­e0¸ps‰eT`ƒ¸åh9ç1Àßn‘ëñ½¹çLZ„’u›Ãs©6ß©= w=¸Âò‰ + ¸¨Ðt{æ!Ôñ‹Ië™´2ð⿨ë‚Ö.üy€—endstream +endobj +5249 0 obj << +/Type /Page +/Contents 5250 0 R +/Resources 5248 0 R +/MediaBox [0 0 612 792] +/Parent 5247 0 R +/Annots [ 5252 0 R 5253 0 R 5254 0 R 5255 0 R 5256 0 R 5257 0 R 5258 0 R 5259 0 R 5260 0 R 5261 0 R 5262 0 R 5263 0 R 5264 0 R 5265 0 R 5266 0 R 5267 0 R 5268 0 R 5269 0 R 5270 0 R 5271 0 R 5272 0 R 5273 0 R 5274 0 R 5275 0 R 5276 0 R 5277 0 R 5278 0 R 5279 0 R 5280 0 R 5281 0 R 5282 0 R 5283 0 R 5284 0 R 5285 0 R 5286 0 R 5287 0 R 5288 0 R 5289 0 R 5290 0 R 5291 0 R 5292 0 R 5293 0 R 5294 0 R 5295 0 R 5296 0 R 5297 0 R 5298 0 R 5299 0 R 5300 0 R 5301 0 R 5302 0 R 5303 0 R 5304 0 R 5305 0 R ] +>> endobj +5252 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [224.163 654.832 236.118 665.681] +/Subtype /Link +/A << /S /GoTo /D (page.97) >> +>> endobj +5253 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [223.858 642.877 240.795 653.725] +/Subtype /Link +/A << /S /GoTo /D (page.159) >> +>> endobj +5254 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [224.578 630.922 241.514 641.66] +/Subtype /Link +/A << /S /GoTo /D (page.162) >> +>> endobj +5255 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [221.7 607.012 233.655 617.86] +/Subtype /Link +/A << /S /GoTo /D (page.69) >> +>> endobj +5256 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [210.713 583.101 227.65 593.839] +/Subtype /Link +/A << /S /GoTo /D (page.171) >> +>> endobj +5257 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [209.191 559.191 221.146 570.039] +/Subtype /Link +/A << /S /GoTo /D (page.50) >> +>> endobj +5258 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [209.191 535.281 221.146 546.129] +/Subtype /Link +/A << /S /GoTo /D (page.50) >> +>> endobj +5259 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [209.883 511.37 221.838 522.108] +/Subtype /Link +/A << /S /GoTo /D (page.29) >> +>> endobj +5260 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [213.757 487.46 225.713 498.308] +/Subtype /Link +/A << /S /GoTo /D (page.73) >> +>> endobj +5261 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [217.161 463.55 229.116 474.398] +/Subtype /Link +/A << /S /GoTo /D (page.31) >> +>> endobj +5262 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [213.757 439.639 225.713 450.488] +/Subtype /Link +/A << /S /GoTo /D (page.73) >> +>> endobj +5263 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [217.161 415.729 229.116 426.577] +/Subtype /Link +/A << /S /GoTo /D (page.31) >> +>> endobj +5264 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [201.719 391.819 213.674 402.556] +/Subtype /Link +/A << /S /GoTo /D (page.53) >> +>> endobj +5265 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [229.698 379.864 241.653 390.712] +/Subtype /Link +/A << /S /GoTo /D (page.75) >> +>> endobj +5266 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [210.436 367.908 222.392 378.646] +/Subtype /Link +/A << /S /GoTo /D (page.79) >> +>> endobj +5267 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [201.719 343.998 213.674 354.736] +/Subtype /Link +/A << /S /GoTo /D (page.52) >> +>> endobj +5268 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [210.436 332.043 222.392 342.78] +/Subtype /Link +/A << /S /GoTo /D (page.79) >> +>> endobj +5269 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [219.707 308.133 231.663 318.981] +/Subtype /Link +/A << /S /GoTo /D (page.20) >> +>> endobj +5270 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [225.574 296.177 242.511 306.915] +/Subtype /Link +/A << /S /GoTo /D (page.102) >> +>> endobj +5271 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [224.578 284.222 241.514 294.96] +/Subtype /Link +/A << /S /GoTo /D (page.162) >> +>> endobj +5272 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [210.326 260.312 222.281 271.16] +/Subtype /Link +/A << /S /GoTo /D (page.49) >> +>> endobj +5273 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [221.7 236.402 233.655 247.25] +/Subtype /Link +/A << /S /GoTo /D (page.69) >> +>> endobj +5274 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [221.7 212.491 233.655 223.339] +/Subtype /Link +/A << /S /GoTo /D (page.69) >> +>> endobj +5275 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [224.689 188.581 236.644 199.429] +/Subtype /Link +/A << /S /GoTo /D (page.28) >> +>> endobj +5276 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [227.456 176.626 244.393 187.474] +/Subtype /Link +/A << /S /GoTo /D (page.101) >> +>> endobj +5277 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [223.471 152.715 240.408 163.564] +/Subtype /Link +/A << /S /GoTo /D (page.137) >> +>> endobj +5278 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [229.67 128.805 241.625 139.653] +/Subtype /Link +/A << /S /GoTo /D (page.94) >> +>> endobj +5279 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [411.765 654.832 423.72 665.681] +/Subtype /Link +/A << /S /GoTo /D (page.85) >> +>> endobj +5280 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [426.225 630.922 438.18 641.77] +/Subtype /Link +/A << /S /GoTo /D (page.14) >> +>> endobj +5281 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [418.988 618.967 430.943 629.815] +/Subtype /Link +/A << /S /GoTo /D (page.75) >> +>> endobj +5282 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [416.885 595.057 428.84 605.905] +/Subtype /Link +/A << /S /GoTo /D (page.77) >> +>> endobj +5283 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [414.809 571.146 426.764 581.994] +/Subtype /Link +/A << /S /GoTo /D (page.45) >> +>> endobj +5284 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [415.556 559.191 432.493 570.039] +/Subtype /Link +/A << /S /GoTo /D (page.144) >> +>> endobj +5285 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [400.003 547.236 416.94 557.973] +/Subtype /Link +/A << /S /GoTo /D (page.171) >> +>> endobj +5286 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [391.009 523.326 402.964 534.063] +/Subtype /Link +/A << /S /GoTo /D (page.52) >> +>> endobj +5287 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [403.048 499.415 415.003 510.263] +/Subtype /Link +/A << /S /GoTo /D (page.73) >> +>> endobj +5288 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [403.324 475.505 415.279 486.242] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +5289 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [403.324 451.595 415.279 462.332] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +5290 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [408.997 427.684 420.953 438.532] +/Subtype /Link +/A << /S /GoTo /D (page.19) >> +>> endobj +5291 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [420.648 415.729 432.603 426.467] +/Subtype /Link +/A << /S /GoTo /D (page.58) >> +>> endobj +5292 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [414.864 403.774 431.801 414.511] +/Subtype /Link +/A << /S /GoTo /D (page.102) >> +>> endobj +5293 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [413.149 391.819 430.085 402.667] +/Subtype /Link +/A << /S /GoTo /D (page.159) >> +>> endobj +5294 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [415.086 367.908 427.041 378.646] +/Subtype /Link +/A << /S /GoTo /D (page.71) >> +>> endobj +5295 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [390.041 343.998 406.977 354.846] +/Subtype /Link +/A << /S /GoTo /D (page.141) >> +>> endobj +5296 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [409.551 320.088 421.506 330.936] +/Subtype /Link +/A << /S /GoTo /D (page.90) >> +>> endobj +5297 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [413.979 296.177 425.934 307.026] +/Subtype /Link +/A << /S /GoTo /D (page.28) >> +>> endobj +5298 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [416.746 284.222 433.683 295.07] +/Subtype /Link +/A << /S /GoTo /D (page.101) >> +>> endobj +5299 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [420.648 260.312 432.603 271.049] +/Subtype /Link +/A << /S /GoTo /D (page.57) >> +>> endobj +5300 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [418.988 236.402 430.943 247.25] +/Subtype /Link +/A << /S /GoTo /D (page.75) >> +>> endobj +5301 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [412.761 212.491 429.698 223.339] +/Subtype /Link +/A << /S /GoTo /D (page.137) >> +>> endobj +5302 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [426.225 188.581 438.18 199.429] +/Subtype /Link +/A << /S /GoTo /D (page.14) >> +>> endobj +5303 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [418.988 176.626 430.943 187.474] +/Subtype /Link +/A << /S /GoTo /D (page.75) >> +>> endobj +5304 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [403.324 152.715 415.279 163.453] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +5305 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [420.648 128.805 432.603 139.543] +/Subtype /Link +/A << /S /GoTo /D (page.58) >> +>> endobj +5251 0 obj << +/D [5249 0 R /XYZ 160.667 686.127 null] +>> endobj +5248 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +5308 0 obj << +/Length 1222 +/Filter /FlateDecode +>> +stream +xÚ­X[“›6~çW𓚠¸<ÖÞÝÔÉl¶µ™$Ó$S›Y àÝxúç«#[o×ã |útî礚ô‡Tdºv<Õñ|ÃE¶m•i ¼½Ã–ê¾c©Á? ¬¾jó7·:Ò¾è߃÷ªMóÜúF>ñúïdÃ3y›Ô¶)Oj>¾Õ%,~ ÇkMc[ˆ*tE\Ã#V4ÌDiÎ}ydlÿÙâ>ŸÅÑ0gR~bǺ¢}5Hǽ–§ +õQE®¦0CaÒÖ^¥‡“ä/Ð'é#’fÈÐ"EË–_易H/’*žîA &a·{Ö ƒõ|iØŽ‡ŠàRÒ&'¥\°œ¼ÙóæWCgú9öóÓ¼Û½‘=€|€þÝʈD#b°)š®:¼dठ+5Ï$[MYwÉ«ô8[bQy>Êž`‹°ì°È^³4ä-¡u÷RïCS#7!ÈÀØ{Ý·¦ú«U-Cû9ÌVÃwíî·¦`Cu´-¢-™N/Õ†w¸¤„Ç6ípÈt4oô]Îú䇤â¯hª±•³7oøŸ@pà/ÿÔ-‡&0t´úÉÂà×QÊG~fÀºâ7ïÚq³¥A¦«µˆQ;<užÕõŒùÜ7 B,ª6F./`¼ÔbrÔx‚ bø¢ç §.ɈԸŽe6lÆ&5/ìEþÅ&\MÜøî?$*È^endstream +endobj +5307 0 obj << +/Type /Page +/Contents 5308 0 R +/Resources 5306 0 R +/MediaBox [0 0 612 792] +/Parent 5247 0 R +/Annots [ 5310 0 R 5311 0 R 5312 0 R 5313 0 R 5314 0 R 5315 0 R 5316 0 R 5317 0 R 5318 0 R 5319 0 R 5320 0 R 5321 0 R 5322 0 R 5323 0 R 5324 0 R 5325 0 R 5326 0 R 5327 0 R 5328 0 R 5329 0 R 5330 0 R 5331 0 R 5332 0 R 5333 0 R 5334 0 R 5335 0 R 5336 0 R 5337 0 R 5338 0 R 5339 0 R 5340 0 R 5341 0 R 5342 0 R 5343 0 R 5344 0 R 5345 0 R 5346 0 R 5347 0 R 5348 0 R 5349 0 R 5350 0 R 5351 0 R 5352 0 R 5353 0 R 5354 0 R 5355 0 R 5356 0 R 5357 0 R 5358 0 R 5359 0 R 5360 0 R 5361 0 R 5362 0 R 5363 0 R 5364 0 R 5365 0 R 5366 0 R 5367 0 R 5368 0 R 5369 0 R 5370 0 R 5371 0 R 5372 0 R 5373 0 R 5374 0 R 5375 0 R 5376 0 R 5377 0 R 5378 0 R 5379 0 R 5380 0 R 5381 0 R 5382 0 R 5383 0 R 5384 0 R 5385 0 R 5386 0 R 5387 0 R 5388 0 R ] +>> endobj +5310 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [177.56 654.832 189.515 665.57] +/Subtype /Link +/A << /S /GoTo /D (page.58) >> +>> endobj +5311 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [160.236 630.922 172.191 641.66] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +5312 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [171.721 618.967 183.676 629.815] +/Subtype /Link +/A << /S /GoTo /D (page.45) >> +>> endobj +5313 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [177.56 595.057 189.515 605.794] +/Subtype /Link +/A << /S /GoTo /D (page.57) >> +>> endobj +5314 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [171.721 571.146 183.676 581.994] +/Subtype /Link +/A << /S /GoTo /D (page.45) >> +>> endobj +5315 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [173.658 547.236 185.613 558.084] +/Subtype /Link +/A << /S /GoTo /D (page.23) >> +>> endobj +5316 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [160.236 523.326 172.191 534.063] +/Subtype /Link +/A << /S /GoTo /D (page.12) >> +>> endobj +5317 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [171.721 511.37 183.676 522.219] +/Subtype /Link +/A << /S /GoTo /D (page.45) >> +>> endobj +5318 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [173.658 487.46 185.613 498.308] +/Subtype /Link +/A << /S /GoTo /D (page.23) >> +>> endobj +5319 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [160.928 463.55 172.883 474.398] +/Subtype /Link +/A << /S /GoTo /D (page.25) >> +>> endobj +5320 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [173.796 439.639 185.751 450.488] +/Subtype /Link +/A << /S /GoTo /D (page.77) >> +>> endobj +5321 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [173.796 415.729 185.751 426.577] +/Subtype /Link +/A << /S /GoTo /D (page.77) >> +>> endobj +5322 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [169.396 391.819 181.351 402.556] +/Subtype /Link +/A << /S /GoTo /D (page.87) >> +>> endobj +5323 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [145.253 379.864 162.19 390.712] +/Subtype /Link +/A << /S /GoTo /D (page.123) >> +>> endobj +5324 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [173.326 367.908 190.262 378.757] +/Subtype /Link +/A << /S /GoTo /D (page.123) >> +>> endobj +5325 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [195.133 355.953 212.069 366.801] +/Subtype /Link +/A << /S /GoTo /D (page.123) >> +>> endobj +5326 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.664 343.998 181.6 354.846] +/Subtype /Link +/A << /S /GoTo /D (page.123) >> +>> endobj +5327 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.387 332.043 181.323 342.78] +/Subtype /Link +/A << /S /GoTo /D (page.125) >> +>> endobj +5328 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [165.577 320.088 182.513 330.936] +/Subtype /Link +/A << /S /GoTo /D (page.123) >> +>> endobj +5329 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [148.336 308.133 165.273 318.981] +/Subtype /Link +/A << /S /GoTo /D (page.123) >> +>> endobj +5330 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [141.296 296.177 158.232 307.026] +/Subtype /Link +/A << /S /GoTo /D (page.126) >> +>> endobj +5331 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [169.368 284.222 186.305 295.07] +/Subtype /Link +/A << /S /GoTo /D (page.126) >> +>> endobj +5332 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.791 272.267 169.728 283.115] +/Subtype /Link +/A << /S /GoTo /D (page.126) >> +>> endobj +5333 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [195.133 260.312 212.069 271.16] +/Subtype /Link +/A << /S /GoTo /D (page.127) >> +>> endobj +5334 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [160.513 248.357 177.449 259.205] +/Subtype /Link +/A << /S /GoTo /D (page.126) >> +>> endobj +5335 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [160.236 236.402 177.172 247.25] +/Subtype /Link +/A << /S /GoTo /D (page.126) >> +>> endobj +5336 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.664 224.446 181.6 235.295] +/Subtype /Link +/A << /S /GoTo /D (page.126) >> +>> endobj +5337 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.387 212.491 181.323 223.229] +/Subtype /Link +/A << /S /GoTo /D (page.126) >> +>> endobj +5338 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [188.961 200.536 205.898 211.274] +/Subtype /Link +/A << /S /GoTo /D (page.126) >> +>> endobj +5339 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [161.62 188.581 178.556 199.429] +/Subtype /Link +/A << /S /GoTo /D (page.126) >> +>> endobj +5340 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [148.336 176.626 165.273 187.474] +/Subtype /Link +/A << /S /GoTo /D (page.126) >> +>> endobj +5341 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [133.021 164.671 149.958 175.408] +/Subtype /Link +/A << /S /GoTo /D (page.128) >> +>> endobj +5342 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [161.094 152.715 178.03 163.453] +/Subtype /Link +/A << /S /GoTo /D (page.128) >> +>> endobj +5343 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.791 140.76 169.728 151.608] +/Subtype /Link +/A << /S /GoTo /D (page.128) >> +>> endobj +5344 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.664 128.805 181.6 139.653] +/Subtype /Link +/A << /S /GoTo /D (page.128) >> +>> endobj +5345 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.387 116.85 181.323 127.587] +/Subtype /Link +/A << /S /GoTo /D (page.128) >> +>> endobj +5346 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [344.821 654.832 361.758 665.681] +/Subtype /Link +/A << /S /GoTo /D (page.128) >> +>> endobj +5347 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [378.252 642.877 395.188 653.615] +/Subtype /Link +/A << /S /GoTo /D (page.128) >> +>> endobj +5348 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [342.635 630.922 359.572 641.66] +/Subtype /Link +/A << /S /GoTo /D (page.128) >> +>> endobj +5349 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [337.626 618.967 354.563 629.815] +/Subtype /Link +/A << /S /GoTo /D (page.128) >> +>> endobj +5350 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [329.202 607.012 346.139 617.749] +/Subtype /Link +/A << /S /GoTo /D (page.130) >> +>> endobj +5351 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [357.275 595.057 374.211 605.794] +/Subtype /Link +/A << /S /GoTo /D (page.130) >> +>> endobj +5352 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [380.964 583.101 397.9 593.95] +/Subtype /Link +/A << /S /GoTo /D (page.131) >> +>> endobj +5353 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [393.694 571.146 410.63 581.994] +/Subtype /Link +/A << /S /GoTo /D (page.131) >> +>> endobj +5354 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [374.571 559.191 391.508 569.929] +/Subtype /Link +/A << /S /GoTo /D (page.130) >> +>> endobj +5355 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [387.301 547.236 404.238 557.973] +/Subtype /Link +/A << /S /GoTo /D (page.131) >> +>> endobj +5356 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [370.835 535.281 387.772 546.129] +/Subtype /Link +/A << /S /GoTo /D (page.130) >> +>> endobj +5357 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [358.52 523.326 375.457 534.174] +/Subtype /Link +/A << /S /GoTo /D (page.130) >> +>> endobj +5358 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [419.68 511.37 436.616 522.108] +/Subtype /Link +/A << /S /GoTo /D (page.131) >> +>> endobj +5359 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [408.665 499.415 425.602 510.263] +/Subtype /Link +/A << /S /GoTo /D (page.131) >> +>> endobj +5360 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [357.275 487.46 374.211 498.198] +/Subtype /Link +/A << /S /GoTo /D (page.130) >> +>> endobj +5361 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [376.481 475.505 393.417 486.242] +/Subtype /Link +/A << /S /GoTo /D (page.132) >> +>> endobj +5362 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [363.778 463.55 380.715 474.398] +/Subtype /Link +/A << /S /GoTo /D (page.132) >> +>> endobj +5363 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [349.526 451.595 366.463 462.332] +/Subtype /Link +/A << /S /GoTo /D (page.130) >> +>> endobj +5364 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [410.575 439.639 427.511 450.488] +/Subtype /Link +/A << /S /GoTo /D (page.131) >> +>> endobj +5365 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [388.934 427.684 405.87 438.532] +/Subtype /Link +/A << /S /GoTo /D (page.131) >> +>> endobj +5366 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [336.242 403.774 353.179 414.622] +/Subtype /Link +/A << /S /GoTo /D (page.140) >> +>> endobj +5367 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [329.479 391.819 346.415 402.667] +/Subtype /Link +/A << /S /GoTo /D (page.133) >> +>> endobj +5368 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [357.551 379.864 374.488 390.712] +/Subtype /Link +/A << /S /GoTo /D (page.133) >> +>> endobj +5369 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [349.249 367.908 366.186 378.258] +/Subtype /Link +/A << /S /GoTo /D (page.135) >> +>> endobj +5370 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [342.109 355.953 359.046 366.801] +/Subtype /Link +/A << /S /GoTo /D (page.133) >> +>> endobj +5371 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [363.142 355.953 380.078 366.801] +/Subtype /Link +/A << /S /GoTo /D (page.134) >> +>> endobj +5372 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [354.784 343.998 371.721 354.348] +/Subtype /Link +/A << /S /GoTo /D (page.135) >> +>> endobj +5373 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [350.965 332.043 367.902 342.891] +/Subtype /Link +/A << /S /GoTo /D (page.134) >> +>> endobj +5374 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [340.145 320.088 357.081 330.438] +/Subtype /Link +/A << /S /GoTo /D (page.133) >> +>> endobj +5375 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [367.154 308.133 384.091 318.981] +/Subtype /Link +/A << /S /GoTo /D (page.134) >> +>> endobj +5376 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [371.582 296.177 388.519 307.026] +/Subtype /Link +/A << /S /GoTo /D (page.134) >> +>> endobj +5377 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [349.803 284.222 366.739 295.07] +/Subtype /Link +/A << /S /GoTo /D (page.135) >> +>> endobj +5378 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [348.198 272.267 365.134 283.115] +/Subtype /Link +/A << /S /GoTo /D (page.133) >> +>> endobj +5379 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [370.475 260.312 387.412 271.16] +/Subtype /Link +/A << /S /GoTo /D (page.134) >> +>> endobj +5380 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [349.803 236.402 366.739 247.25] +/Subtype /Link +/A << /S /GoTo /D (page.133) >> +>> endobj +5381 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [363.64 212.491 380.576 223.339] +/Subtype /Link +/A << /S /GoTo /D (page.109) >> +>> endobj +5382 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [357.136 200.536 374.073 211.274] +/Subtype /Link +/A << /S /GoTo /D (page.114) >> +>> endobj +5383 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [365.162 188.581 382.098 199.318] +/Subtype /Link +/A << /S /GoTo /D (page.117) >> +>> endobj +5384 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [353.151 176.626 370.088 187.474] +/Subtype /Link +/A << /S /GoTo /D (page.155) >> +>> endobj +5385 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [361.979 152.715 373.935 163.564] +/Subtype /Link +/A << /S /GoTo /D (page.21) >> +>> endobj +5386 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [362.948 140.76 374.903 151.608] +/Subtype /Link +/A << /S /GoTo /D (page.23) >> +>> endobj +5387 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [345.375 128.805 357.33 139.543] +/Subtype /Link +/A << /S /GoTo /D (page.29) >> +>> endobj +5388 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [357.026 116.85 368.981 127.698] +/Subtype /Link +/A << /S /GoTo /D (page.33) >> +>> endobj +5309 0 obj << +/D [5307 0 R /XYZ 106.869 686.127 null] +>> endobj +5306 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +5391 0 obj << +/Length 1305 +/Filter /FlateDecode +>> +stream +xÚÝXÛr›H}×Wð•Õ„¹ó¸rl¯ãø²UÙª$XÂ’ÊX(€â¸öçwz .²Ë›ì¦\eq9}ætOOÓ3ذå6ˆ@œ Ãñr13f£‰?z{B¨!p¨áß) ?ÿdb[_ü÷£¹ÔÉŸž]¾;¶°ù¼û#œmD…gŒ)Þ¯£O_lc>²÷#ýîQ^Û a<Œ˜ËÁ^~¦£?K*Ì1ò¨1&®’Thôö%žD[©% ³Æ”R“kÁ¶1Æ Îf|—˜ø.^[Ä3ŸäuŽÆ+ø˜Hy„ÕŒÒ,H²I Ö›+i¶^(x í(ô$XÏ% $\|»ÓbÖ" +¨]I-qá<Þ)gšIÖÕÝyÈß ÀÞžÈÙ+ãÑbòÙ¦¶Vâæ"—‰Ê¼¬ûÒž50Ý5Š «Ù2Üf«Wb¸é•Öêz=ç¦þy³ŒŒlוeÛ²³áBNd½­e<Ó[¿?\ARþ‹ÍŸ()"ÎJçÇ„!Ûq†”õxê wØp~pþ/ Ÿž]úØi¤×U(%ÿ¡Þ:ÓG(é¬óÊ´•²¶\A:¬YåT½¤õXI J×–QD±D3yÿ„u¯4SY™I_Ã/òM§ƒtQàŸP^î™óÏð)¿È<éòò 9ã½Jše÷ÇÐó@çÓÞÑl2JÎRU"°‡gØàTnôä† avª®9 õVˆV  çpJàÓFöœ®ö‚7 c¥7'E—–ªÁ‚E¿i¯µ`bPçN³x³k­ë47Jì»­î¿<ØnáÑØßΪ7æ=È+Ø©d%Ôíô$N"½^U÷ÁuXˆNâ,ÚµD·È¨Âÿˆ•‡• 'm±š$ž°$Z@GQ¨ {XøFÛ¸j‡Ìäðan›úÃÎZÖ}|ÐÛáÇ…ÅÐñASM²ºWà. ±Z?ó ÊÙ\ÖÚ¶ÛËœRsö׊Ül¸Vìñ–!`{û6Y+Û(Ø65Àö€æ^xº½¤ln¨Ùs"64ºVw“³6±¶d¨ö¡Ì­ûæ~¶üsúJlyßôl6Bè[5ƒÛfaÁÌy„í篧kù¹ú  P¢Ù²aQOƒ(H³+U¢za*’v·é®þþ¬8 P—׉]³"Ûë +ÄãœMÔ¡IÝYo¯ÿœ#îÊ^ˆ „iŽ{¤)ED8Õ-¥>7g†ƒ„˪ݘ¿”ÒåæôimÉŸl©šU +a[€mÇ”W¾‹áEt¾Êô«•Î u}ônÞè›[ zÒ××uÌ0(äOnPn¤’ú^ߊm®oNõá­² ’Û®‰r³è¿¯üÊé:¢Ÿ°çTF„`WŸíêI%|ç¶lt¹ÍàüßÁÅ©œî:êáÁra*.*tí–Q†±øßĶá‚Sø2«‹¿endstream +endobj +5390 0 obj << +/Type /Page +/Contents 5391 0 R +/Resources 5389 0 R +/MediaBox [0 0 612 792] +/Parent 5247 0 R +/Annots [ 5393 0 R 5394 0 R 5395 0 R 5396 0 R 5397 0 R 5398 0 R 5399 0 R 5400 0 R 5401 0 R 5402 0 R 5403 0 R 5404 0 R 5405 0 R 5406 0 R 5407 0 R 5408 0 R 5409 0 R 5410 0 R 5411 0 R 5412 0 R 5413 0 R 5414 0 R 5415 0 R 5416 0 R 5417 0 R 5418 0 R 5419 0 R 5420 0 R 5421 0 R 5422 0 R 5423 0 R 5424 0 R 5425 0 R 5426 0 R 5427 0 R 5428 0 R 5429 0 R 5430 0 R 5431 0 R 5432 0 R 5433 0 R 5434 0 R 5435 0 R 5436 0 R 5437 0 R 5438 0 R 5439 0 R 5440 0 R 5441 0 R 5442 0 R 5443 0 R 5444 0 R 5445 0 R 5446 0 R 5447 0 R 5448 0 R 5449 0 R 5450 0 R 5451 0 R 5452 0 R 5453 0 R 5454 0 R 5455 0 R 5456 0 R 5457 0 R 5458 0 R 5459 0 R 5460 0 R 5461 0 R 5462 0 R 5463 0 R 5464 0 R 5465 0 R 5466 0 R ] +>> endobj +5393 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [209.191 654.832 221.146 665.681] +/Subtype /Link +/A << /S /GoTo /D (page.50) >> +>> endobj +5394 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [225.381 642.877 242.317 653.725] +/Subtype /Link +/A << /S /GoTo /D (page.121) >> +>> endobj +5395 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [236.934 618.967 248.89 629.815] +/Subtype /Link +/A << /S /GoTo /D (page.14) >> +>> endobj +5396 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [214.726 607.012 226.681 617.86] +/Subtype /Link +/A << /S /GoTo /D (page.25) >> +>> endobj +5397 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [231.22 583.101 248.156 593.95] +/Subtype /Link +/A << /S /GoTo /D (page.137) >> +>> endobj +5398 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.59 571.146 223.526 581.994] +/Subtype /Link +/A << /S /GoTo /D (page.137) >> +>> endobj +5399 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [248.931 559.191 265.868 570.039] +/Subtype /Link +/A << /S /GoTo /D (page.138) >> +>> endobj +5400 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [218.462 547.236 235.398 558.084] +/Subtype /Link +/A << /S /GoTo /D (page.138) >> +>> endobj +5401 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [218.185 535.281 235.122 546.018] +/Subtype /Link +/A << /S /GoTo /D (page.137) >> +>> endobj +5402 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [209.33 523.326 226.266 534.174] +/Subtype /Link +/A << /S /GoTo /D (page.137) >> +>> endobj +5403 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [242.76 511.37 259.696 522.108] +/Subtype /Link +/A << /S /GoTo /D (page.137) >> +>> endobj +5404 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [263.681 499.415 280.618 510.263] +/Subtype /Link +/A << /S /GoTo /D (page.137) >> +>> endobj +5405 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [229.615 487.46 246.551 498.308] +/Subtype /Link +/A << /S /GoTo /D (page.137) >> +>> endobj +5406 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [223.471 475.505 240.408 486.353] +/Subtype /Link +/A << /S /GoTo /D (page.137) >> +>> endobj +5407 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [202.134 463.55 219.071 474.398] +/Subtype /Link +/A << /S /GoTo /D (page.138) >> +>> endobj +5408 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [203.147 451.595 220.084 462.443] +/Subtype /Link +/A << /S /GoTo /D (page.137) >> +>> endobj +5409 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [261.813 439.639 278.75 450.377] +/Subtype /Link +/A << /S /GoTo /D (page.138) >> +>> endobj +5410 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [180.427 427.684 197.363 438.532] +/Subtype /Link +/A << /S /GoTo /D (page.139) >> +>> endobj +5411 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [208.499 415.729 225.436 426.577] +/Subtype /Link +/A << /S /GoTo /D (page.140) >> +>> endobj +5412 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [238.332 403.774 255.268 414.622] +/Subtype /Link +/A << /S /GoTo /D (page.140) >> +>> endobj +5413 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [236.644 391.819 253.58 402.667] +/Subtype /Link +/A << /S /GoTo /D (page.139) >> +>> endobj +5414 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [250.481 379.864 267.417 390.712] +/Subtype /Link +/A << /S /GoTo /D (page.141) >> +>> endobj +5415 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [207.171 367.908 224.107 378.757] +/Subtype /Link +/A << /S /GoTo /D (page.140) >> +>> endobj +5416 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [200.751 355.953 217.687 366.801] +/Subtype /Link +/A << /S /GoTo /D (page.140) >> +>> endobj +5417 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [254.15 343.998 271.087 354.736] +/Subtype /Link +/A << /S /GoTo /D (page.141) >> +>> endobj +5418 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [254.15 332.043 271.087 342.78] +/Subtype /Link +/A << /S /GoTo /D (page.141) >> +>> endobj +5419 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [243.911 320.088 260.848 330.825] +/Subtype /Link +/A << /S /GoTo /D (page.141) >> +>> endobj +5420 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [243.911 308.133 260.848 318.87] +/Subtype /Link +/A << /S /GoTo /D (page.141) >> +>> endobj +5421 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [238.93 296.177 255.866 306.915] +/Subtype /Link +/A << /S /GoTo /D (page.141) >> +>> endobj +5422 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [217.41 284.222 234.347 294.572] +/Subtype /Link +/A << /S /GoTo /D (page.140) >> +>> endobj +5423 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [217.41 272.267 234.347 282.617] +/Subtype /Link +/A << /S /GoTo /D (page.140) >> +>> endobj +5424 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [217.41 260.312 234.347 270.662] +/Subtype /Link +/A << /S /GoTo /D (page.140) >> +>> endobj +5425 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [200.751 236.402 217.687 247.25] +/Subtype /Link +/A << /S /GoTo /D (page.141) >> +>> endobj +5426 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [200.751 212.491 217.687 223.339] +/Subtype /Link +/A << /S /GoTo /D (page.141) >> +>> endobj +5427 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [200.751 188.581 217.687 199.429] +/Subtype /Link +/A << /S /GoTo /D (page.141) >> +>> endobj +5428 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [200.751 164.671 217.687 175.519] +/Subtype /Link +/A << /S /GoTo /D (page.141) >> +>> endobj +5429 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [200.751 140.76 217.687 151.608] +/Subtype /Link +/A << /S /GoTo /D (page.141) >> +>> endobj +5430 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [231.967 116.85 248.903 127.698] +/Subtype /Link +/A << /S /GoTo /D (page.143) >> +>> endobj +5431 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [424.467 654.832 441.404 665.57] +/Subtype /Link +/A << /S /GoTo /D (page.143) >> +>> endobj +5432 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [411.073 642.844 428.01 653.582] +/Subtype /Link +/A << /S /GoTo /D (page.143) >> +>> endobj +5433 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [432.52 630.856 449.457 641.594] +/Subtype /Link +/A << /S /GoTo /D (page.143) >> +>> endobj +5434 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [413.508 618.868 430.445 629.717] +/Subtype /Link +/A << /S /GoTo /D (page.143) >> +>> endobj +5435 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [393.185 606.88 410.121 617.729] +/Subtype /Link +/A << /S /GoTo /D (page.143) >> +>> endobj +5436 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [417.438 582.904 434.375 593.753] +/Subtype /Link +/A << /S /GoTo /D (page.110) >> +>> endobj +5437 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [410.935 570.916 427.871 581.654] +/Subtype /Link +/A << /S /GoTo /D (page.115) >> +>> endobj +5438 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [418.96 558.928 435.897 569.666] +/Subtype /Link +/A << /S /GoTo /D (page.117) >> +>> endobj +5439 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [415.778 534.952 427.733 545.8] +/Subtype /Link +/A << /S /GoTo /D (page.21) >> +>> endobj +5440 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [416.746 522.964 428.701 533.812] +/Subtype /Link +/A << /S /GoTo /D (page.23) >> +>> endobj +5441 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [399.173 510.976 411.128 521.714] +/Subtype /Link +/A << /S /GoTo /D (page.29) >> +>> endobj +5442 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [410.824 498.988 422.779 509.836] +/Subtype /Link +/A << /S /GoTo /D (page.33) >> +>> endobj +5443 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [398.481 487 410.436 497.848] +/Subtype /Link +/A << /S /GoTo /D (page.51) >> +>> endobj +5444 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [414.671 475.012 431.607 485.86] +/Subtype /Link +/A << /S /GoTo /D (page.121) >> +>> endobj +5445 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [426.225 451.036 438.18 461.884] +/Subtype /Link +/A << /S /GoTo /D (page.14) >> +>> endobj +5446 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [404.016 439.048 415.971 449.896] +/Subtype /Link +/A << /S /GoTo /D (page.25) >> +>> endobj +5447 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [403.048 415.072 415.003 425.92] +/Subtype /Link +/A << /S /GoTo /D (page.74) >> +>> endobj +5448 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [423.305 391.096 440.241 401.944] +/Subtype /Link +/A << /S /GoTo /D (page.144) >> +>> endobj +5449 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [408.223 379.108 425.159 389.845] +/Subtype /Link +/A << /S /GoTo /D (page.144) >> +>> endobj +5450 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [415.556 367.12 432.493 377.968] +/Subtype /Link +/A << /S /GoTo /D (page.144) >> +>> endobj +5451 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [410.99 355.132 427.926 365.98] +/Subtype /Link +/A << /S /GoTo /D (page.144) >> +>> endobj +5452 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [391.424 343.144 408.361 353.992] +/Subtype /Link +/A << /S /GoTo /D (page.144) >> +>> endobj +5453 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [395.232 331.156 412.169 342.004] +/Subtype /Link +/A << /S /GoTo /D (page.144) >> +>> endobj +5454 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [415.556 307.18 432.493 318.028] +/Subtype /Link +/A << /S /GoTo /D (page.144) >> +>> endobj +5455 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [390.041 283.204 406.977 294.052] +/Subtype /Link +/A << /S /GoTo /D (page.140) >> +>> endobj +5456 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [390.041 259.228 406.977 270.076] +/Subtype /Link +/A << /S /GoTo /D (page.140) >> +>> endobj +5457 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [390.041 235.252 406.977 246.1] +/Subtype /Link +/A << /S /GoTo /D (page.140) >> +>> endobj +5458 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [379.126 212.754 396.063 223.602] +/Subtype /Link +/A << /S /GoTo /D (page.146) >> +>> endobj +5459 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [407.199 200.766 424.135 211.614] +/Subtype /Link +/A << /S /GoTo /D (page.146) >> +>> endobj +5460 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [419.237 188.778 436.173 199.626] +/Subtype /Link +/A << /S /GoTo /D (page.146) >> +>> endobj +5461 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [408.084 176.79 425.021 187.638] +/Subtype /Link +/A << /S /GoTo /D (page.146) >> +>> endobj +5462 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [399.45 164.802 416.386 175.65] +/Subtype /Link +/A << /S /GoTo /D (page.146) >> +>> endobj +5463 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [391.424 152.814 408.361 163.662] +/Subtype /Link +/A << /S /GoTo /D (page.146) >> +>> endobj +5464 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [412.457 152.814 429.393 163.662] +/Subtype /Link +/A << /S /GoTo /D (page.147) >> +>> endobj +5465 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [424.91 128.838 441.847 139.575] +/Subtype /Link +/A << /S /GoTo /D (page.148) >> +>> endobj +5466 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [418.213 116.85 435.149 127.698] +/Subtype /Link +/A << /S /GoTo /D (page.148) >> +>> endobj +5392 0 obj << +/D [5390 0 R /XYZ 160.667 686.127 null] +>> endobj +5389 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +5469 0 obj << +/Length 1310 +/Filter /FlateDecode +>> +stream +xÚ¥Xßs›8~÷_Á#žž©$‚ÇÚNÚ¤ç$=—›ëõؤf‚!8©çþùÓJƒ½8ÉÜd&óíj~Z ‘Ô¢D8Ì,?A=k¹Œƒç̵B'ô]kñ ‹Õwûâjz6¤öŸÃ‹KË㾸¢~Ä…_g‹­5ˆã†¡5r0à ÷ŸÁ÷ÄZ ˆu9€gõ"×Ä¡µx‚;Œõ}:˜¾5ª˜„3Ï1¡L26Ç&¦QY]o¥‘ÕoÑëº6õe.±F”:!ç +¶XGÔ~’¸»ç‹L^tˆ «d9dýØ£Òï€Î‡gÑ&†ÔŽŒ#o2E$å$ϪöXVê²j‰r‚x‘&eg'}-,¯Ù-ÿo+€~<—µÔd§#¦Ãõ7q‰¶²(á…u&õ6ÞQmŒF·mY%Xª tt Ùuúg\Éœ¹v!ñÑâ²»>¡E¢Á'q§¼hV ®ÿ¶ éqÝ}Ÿuì }€ê<ÙµVG•ŽzuìVŠua¼Š:µîõ—æI‘%ÊßX¢¯˜t\ eûs,|ut‘w8v@L/Ž(9ÜÍA»¾Òú4ËÝn•&ϦXúÇQ¶2¶Áâ~nöÆ$6–>ÅM/ù.ùÄ­ (Dœ§9lø2y•šàx6ÃÚÓÀ¿äi»Nô±„ +ÍØØÀü~àH%º—¤-Ì;“ÆET¶‰Ç%ˆ“u©ß–„õé$ +`Â,6Iw1‡¦q7;òO>”8…úÝ °ãeZ@7š6‹éQÄÍ3U‡ëÜ`°J;ˆ,´ŸU>@#ä:ŽàÞÈa'€Ô‡f±ožú¸¥rb¡Å]9j®HÕ@a”rÌàóÙ^J‹ +ð”Dž,ÕÞ&…( (öÌ‹Íü¥ñ冀V?_âçÝ,®L±ùØ p‘•U±É@§) ³örr«ö|ÞïécÜr)A]æi ‰94‹àPZå€KÌâcµ4Ó ¸–@6­sf–Ëd {—…w9L£ªÝæBôãóŸ„ÑÌUž”mMF.WG1 °X_7§õ t—‰~R⯸0=`Îܨê)–u (V>7ÀÕžY˜™—sê0ü¿¯õ÷Ú‚æÃŠgùN(¼öW‹ÅZºè¹Üžï²¡¼Tk}&%üìÉÜH°%)Èg¹JËפҒLKN>|Ћ{P°Óo†®/›ê·þåÖÑ× (“*õ­<œ«›Ï꽤5”Û©M\F°Ã3¨Î³ºÖÕûBHÎ]é6£B¿‰ê·'Æ÷˜Ã ‡oC>54 u#C™ã)]B€ÉðÂ^ü_FàJ˜ÉÝ8|Sôendstream +endobj +5468 0 obj << +/Type /Page +/Contents 5469 0 R +/Resources 5467 0 R +/MediaBox [0 0 612 792] +/Parent 5247 0 R +/Annots [ 5471 0 R 5472 0 R 5473 0 R 5474 0 R 5475 0 R 5476 0 R 5477 0 R 5478 0 R 5479 0 R 5480 0 R 5481 0 R 5482 0 R 5483 0 R 5484 0 R 5485 0 R 5486 0 R 5487 0 R 5488 0 R 5489 0 R 5490 0 R 5491 0 R 5492 0 R 5493 0 R 5494 0 R 5495 0 R 5496 0 R 5497 0 R 5498 0 R 5499 0 R 5500 0 R 5501 0 R 5502 0 R 5503 0 R 5504 0 R 5505 0 R 5506 0 R 5507 0 R 5508 0 R 5509 0 R 5510 0 R 5511 0 R 5512 0 R 5513 0 R 5514 0 R 5515 0 R 5516 0 R 5517 0 R 5518 0 R 5519 0 R 5520 0 R 5521 0 R 5522 0 R 5523 0 R 5524 0 R 5525 0 R 5526 0 R 5527 0 R 5528 0 R 5529 0 R 5530 0 R 5531 0 R 5532 0 R 5533 0 R 5534 0 R 5535 0 R 5536 0 R 5537 0 R 5538 0 R 5539 0 R 5540 0 R 5541 0 R 5542 0 R 5543 0 R 5544 0 R 5545 0 R 5546 0 R 5547 0 R 5548 0 R 5549 0 R 5550 0 R 5551 0 R 5552 0 R 5553 0 R 5554 0 R 5555 0 R 5556 0 R 5557 0 R 5558 0 R 5559 0 R 5560 0 R 5561 0 R 5562 0 R 5563 0 R 5564 0 R ] +>> endobj +5471 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.996 654.832 181.932 665.681] +/Subtype /Link +/A << /S /GoTo /D (page.148) >> +>> endobj +5472 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.073 642.877 191.009 653.615] +/Subtype /Link +/A << /S /GoTo /D (page.149) >> +>> endobj +5473 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [148.336 630.922 165.273 641.77] +/Subtype /Link +/A << /S /GoTo /D (page.148) >> +>> endobj +5474 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [175.623 618.967 192.559 629.815] +/Subtype /Link +/A << /S /GoTo /D (page.149) >> +>> endobj +5475 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [153.749 607.012 170.686 617.749] +/Subtype /Link +/A << /S /GoTo /D (page.148) >> +>> endobj +5476 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [184.921 595.057 201.858 605.905] +/Subtype /Link +/A << /S /GoTo /D (page.150) >> +>> endobj +5477 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [155.587 583.101 172.523 593.95] +/Subtype /Link +/A << /S /GoTo /D (page.149) >> +>> endobj +5478 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.073 571.146 191.009 581.884] +/Subtype /Link +/A << /S /GoTo /D (page.149) >> +>> endobj +5479 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [189.847 547.236 206.784 557.973] +/Subtype /Link +/A << /S /GoTo /D (page.151) >> +>> endobj +5480 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [177.726 535.281 194.662 546.129] +/Subtype /Link +/A << /S /GoTo /D (page.151) >> +>> endobj +5481 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [176.785 523.326 193.721 534.063] +/Subtype /Link +/A << /S /GoTo /D (page.151) >> +>> endobj +5482 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [168.261 511.37 185.198 522.108] +/Subtype /Link +/A << /S /GoTo /D (page.151) >> +>> endobj +5483 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [182.098 499.415 199.035 510.153] +/Subtype /Link +/A << /S /GoTo /D (page.151) >> +>> endobj +5484 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [203.131 499.415 220.067 510.153] +/Subtype /Link +/A << /S /GoTo /D (page.152) >> +>> endobj +5485 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [161.775 487.46 178.711 498.198] +/Subtype /Link +/A << /S /GoTo /D (page.151) >> +>> endobj +5486 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [165.494 475.505 182.43 485.855] +/Subtype /Link +/A << /S /GoTo /D (page.153) >> +>> endobj +5487 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [182.098 463.55 199.035 474.287] +/Subtype /Link +/A << /S /GoTo /D (page.152) >> +>> endobj +5488 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [148.336 451.595 165.273 462.443] +/Subtype /Link +/A << /S /GoTo /D (page.153) >> +>> endobj +5489 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [175.623 439.639 192.559 450.488] +/Subtype /Link +/A << /S /GoTo /D (page.153) >> +>> endobj +5490 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [163.861 415.729 180.798 426.577] +/Subtype /Link +/A << /S /GoTo /D (page.154) >> +>> endobj +5491 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [143.537 403.774 160.474 414.622] +/Subtype /Link +/A << /S /GoTo /D (page.154) >> +>> endobj +5492 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [171.61 391.819 188.546 402.667] +/Subtype /Link +/A << /S /GoTo /D (page.154) >> +>> endobj +5493 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [152.847 379.864 169.783 390.214] +/Subtype /Link +/A << /S /GoTo /D (page.155) >> +>> endobj +5494 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [148.391 367.908 165.328 378.258] +/Subtype /Link +/A << /S /GoTo /D (page.154) >> +>> endobj +5495 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [163.861 355.953 180.798 366.801] +/Subtype /Link +/A << /S /GoTo /D (page.154) >> +>> endobj +5496 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [150.827 343.998 167.763 354.581] +/Subtype /Link +/A << /S /GoTo /D (page.155) >> +>> endobj +5497 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [160.236 320.088 172.191 330.825] +/Subtype /Link +/A << /S /GoTo /D (page.13) >> +>> endobj +5498 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [183.136 308.133 195.091 318.981] +/Subtype /Link +/A << /S /GoTo /D (page.15) >> +>> endobj +5499 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [173.685 296.177 185.641 307.026] +/Subtype /Link +/A << /S /GoTo /D (page.16) >> +>> endobj +5500 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [165.909 284.222 177.864 295.07] +/Subtype /Link +/A << /S /GoTo /D (page.19) >> +>> endobj +5501 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [172.689 272.267 184.644 283.115] +/Subtype /Link +/A << /S /GoTo /D (page.21) >> +>> endobj +5502 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [173.658 260.312 185.613 271.16] +/Subtype /Link +/A << /S /GoTo /D (page.24) >> +>> endobj +5503 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [160.928 248.357 172.883 259.205] +/Subtype /Link +/A << /S /GoTo /D (page.26) >> +>> endobj +5504 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [170.89 236.402 182.846 247.25] +/Subtype /Link +/A << /S /GoTo /D (page.27) >> +>> endobj +5505 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [186.941 236.402 198.896 247.25] +/Subtype /Link +/A << /S /GoTo /D (page.28) >> +>> endobj +5506 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [156.085 224.446 168.04 235.184] +/Subtype /Link +/A << /S /GoTo /D (page.30) >> +>> endobj +5507 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [163.363 212.491 175.318 223.339] +/Subtype /Link +/A << /S /GoTo /D (page.32) >> +>> endobj +5508 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [167.735 200.536 179.691 211.384] +/Subtype /Link +/A << /S /GoTo /D (page.34) >> +>> endobj +5509 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [157.053 188.581 169.009 199.429] +/Subtype /Link +/A << /S /GoTo /D (page.36) >> +>> endobj +5510 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.525 176.626 176.481 187.474] +/Subtype /Link +/A << /S /GoTo /D (page.37) >> +>> endobj +5511 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [163.28 164.671 175.235 175.519] +/Subtype /Link +/A << /S /GoTo /D (page.39) >> +>> endobj +5512 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [174.267 152.715 186.222 163.453] +/Subtype /Link +/A << /S /GoTo /D (page.41) >> +>> endobj +5513 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [153.732 140.76 165.688 151.608] +/Subtype /Link +/A << /S /GoTo /D (page.43) >> +>> endobj +5514 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [171.721 128.805 183.676 139.653] +/Subtype /Link +/A << /S /GoTo /D (page.46) >> +>> endobj +5515 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [156.528 116.85 168.483 127.698] +/Subtype /Link +/A << /S /GoTo /D (page.48) >> +>> endobj +5516 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [344.683 654.832 356.638 665.681] +/Subtype /Link +/A << /S /GoTo /D (page.51) >> +>> endobj +5517 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [337.211 642.877 349.166 653.615] +/Subtype /Link +/A << /S /GoTo /D (page.53) >> +>> endobj +5518 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [364.387 630.922 376.342 641.66] +/Subtype /Link +/A << /S /GoTo /D (page.55) >> +>> endobj +5519 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [366.85 618.967 378.805 629.704] +/Subtype /Link +/A << /S /GoTo /D (page.58) >> +>> endobj +5520 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [364.193 607.012 376.148 617.86] +/Subtype /Link +/A << /S /GoTo /D (page.60) >> +>> endobj +5521 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [359.848 595.057 371.804 605.794] +/Subtype /Link +/A << /S /GoTo /D (page.63) >> +>> endobj +5522 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [350.91 583.101 362.865 593.839] +/Subtype /Link +/A << /S /GoTo /D (page.64) >> +>> endobj +5523 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [354.646 571.146 366.601 581.994] +/Subtype /Link +/A << /S /GoTo /D (page.65) >> +>> endobj +5524 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [362.81 559.191 374.765 570.039] +/Subtype /Link +/A << /S /GoTo /D (page.67) >> +>> endobj +5525 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [357.192 547.236 369.147 558.084] +/Subtype /Link +/A << /S /GoTo /D (page.70) >> +>> endobj +5526 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [349.249 535.281 361.204 546.129] +/Subtype /Link +/A << /S /GoTo /D (page.74) >> +>> endobj +5527 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [363.086 523.326 375.042 534.174] +/Subtype /Link +/A << /S /GoTo /D (page.77) >> +>> endobj +5528 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [345.928 511.37 357.884 522.108] +/Subtype /Link +/A << /S /GoTo /D (page.79) >> +>> endobj +5529 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [345.153 499.415 357.109 510.153] +/Subtype /Link +/A << /S /GoTo /D (page.81) >> +>> endobj +5530 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [346.067 487.46 358.022 498.198] +/Subtype /Link +/A << /S /GoTo /D (page.83) >> +>> endobj +5531 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [357.967 475.505 369.922 486.353] +/Subtype /Link +/A << /S /GoTo /D (page.85) >> +>> endobj +5532 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [358.686 463.55 370.641 474.287] +/Subtype /Link +/A << /S /GoTo /D (page.87) >> +>> endobj +5533 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [359.516 451.595 371.472 462.443] +/Subtype /Link +/A << /S /GoTo /D (page.88) >> +>> endobj +5534 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [355.753 439.639 367.708 450.488] +/Subtype /Link +/A << /S /GoTo /D (page.90) >> +>> endobj +5535 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [355.753 427.684 367.708 438.532] +/Subtype /Link +/A << /S /GoTo /D (page.92) >> +>> endobj +5536 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [365.162 415.729 377.117 426.577] +/Subtype /Link +/A << /S /GoTo /D (page.95) >> +>> endobj +5537 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [359.655 403.774 371.61 414.622] +/Subtype /Link +/A << /S /GoTo /D (page.97) >> +>> endobj +5538 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [359.627 391.819 371.582 402.556] +/Subtype /Link +/A << /S /GoTo /D (page.99) >> +>> endobj +5539 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [362.948 379.864 379.884 390.712] +/Subtype /Link +/A << /S /GoTo /D (page.100) >> +>> endobj +5540 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [383.98 379.864 400.917 390.712] +/Subtype /Link +/A << /S /GoTo /D (page.101) >> +>> endobj +5541 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [361.066 367.908 378.003 378.646] +/Subtype /Link +/A << /S /GoTo /D (page.103) >> +>> endobj +5542 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [352.183 355.953 369.119 366.801] +/Subtype /Link +/A << /S /GoTo /D (page.104) >> +>> endobj +5543 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [373.215 355.953 390.151 366.801] +/Subtype /Link +/A << /S /GoTo /D (page.105) >> +>> endobj +5544 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [354.922 343.998 371.859 354.846] +/Subtype /Link +/A << /S /GoTo /D (page.106) >> +>> endobj +5545 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [363.64 332.043 380.576 342.891] +/Subtype /Link +/A << /S /GoTo /D (page.110) >> +>> endobj +5546 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [357.136 320.088 374.073 330.825] +/Subtype /Link +/A << /S /GoTo /D (page.115) >> +>> endobj +5547 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [365.162 308.133 382.098 318.87] +/Subtype /Link +/A << /S /GoTo /D (page.118) >> +>> endobj +5548 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [357.026 296.177 373.962 307.026] +/Subtype /Link +/A << /S /GoTo /D (page.119) >> +>> endobj +5549 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [360.872 284.222 377.809 295.07] +/Subtype /Link +/A << /S /GoTo /D (page.122) >> +>> endobj +5550 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [354.867 272.267 371.804 283.115] +/Subtype /Link +/A << /S /GoTo /D (page.123) >> +>> endobj +5551 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [350.91 260.312 367.846 271.16] +/Subtype /Link +/A << /S /GoTo /D (page.126) >> +>> endobj +5552 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [342.635 248.357 359.572 259.094] +/Subtype /Link +/A << /S /GoTo /D (page.128) >> +>> endobj +5553 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [358.963 236.402 375.899 247.25] +/Subtype /Link +/A << /S /GoTo /D (page.138) >> +>> endobj +5554 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [361.758 224.446 378.694 235.295] +/Subtype /Link +/A << /S /GoTo /D (page.144) >> +>> endobj +5555 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [345.652 212.491 362.588 223.339] +/Subtype /Link +/A << /S /GoTo /D (page.146) >> +>> endobj +5556 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [366.684 212.491 383.62 223.339] +/Subtype /Link +/A << /S /GoTo /D (page.147) >> +>> endobj +5557 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [363.363 200.536 380.3 211.274] +/Subtype /Link +/A << /S /GoTo /D (page.148) >> +>> endobj +5558 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [371.389 188.581 388.325 199.318] +/Subtype /Link +/A << /S /GoTo /D (page.153) >> +>> endobj +5559 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [360.734 176.626 377.671 187.474] +/Subtype /Link +/A << /S /GoTo /D (page.156) >> +>> endobj +5560 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [359.35 164.671 376.287 175.519] +/Subtype /Link +/A << /S /GoTo /D (page.159) >> +>> endobj +5561 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [360.07 152.715 377.006 163.453] +/Subtype /Link +/A << /S /GoTo /D (page.162) >> +>> endobj +5562 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [352.875 140.76 369.811 151.608] +/Subtype /Link +/A << /S /GoTo /D (page.166) >> +>> endobj +5563 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [346.205 128.805 363.142 139.543] +/Subtype /Link +/A << /S /GoTo /D (page.171) >> +>> endobj +5564 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [354.231 116.85 371.167 127.587] +/Subtype /Link +/A << /S /GoTo /D (page.175) >> +>> endobj +5470 0 obj << +/D [5468 0 R /XYZ 106.869 686.127 null] +>> endobj +5467 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +5567 0 obj << +/Length 1190 +/Filter /FlateDecode +>> +stream +xÚ­XMsœ8½Ï¯à•… t\;—“-ÛkS•­Mr 3Úʆ±ãÝ?¿j ‚aj]s>^w?½n©%å˲0÷(勸¢ÀÚ<¬ÎâÕÛ5&÷8#Vü—ÆÛÏ6ÆØù°B½°úéåÕ»÷²ÿ€W«÷ñ +ÕŽ]ß#<²\âñˆ‚ßï«Ï_}k»ò­+ýîY^ûâÜzX!õ0Šêûlu·ú½u…ò¨Ï,‡ŠSC2s¬Òƒ#û~íDÄ.%¯äA(ÒX†Äå"$ùD +{ ÈêÝáQÂ2ñãÇ%„ØùÊÀ7`?=]æÜ"é òZU Ðxã¸È†ðÇ?‚î;§ÄÿäD88´Ÿ€‘ø­p\ù_Êî«^¥zº¨ëó7póFß|G/úúÆ!Ì“²~rëÕ&àTº¾×·I¶úæBm”‘>Ú^Ís“€û'ð[äuÊÔÂ}R"Á(Ô%¤KÓŸÃv±Ô9€r 5 G¾ê˃ä]ù"\ö¤Ê‹þ‹}.p“Ãÿ_4°òendstream +endobj +5566 0 obj << +/Type /Page +/Contents 5567 0 R +/Resources 5565 0 R +/MediaBox [0 0 612 792] +/Parent 5247 0 R +/Annots [ 5569 0 R 5570 0 R 5571 0 R 5572 0 R 5573 0 R 5574 0 R 5575 0 R 5576 0 R 5577 0 R 5578 0 R 5579 0 R 5580 0 R 5581 0 R 5582 0 R 5583 0 R 5584 0 R 5585 0 R 5586 0 R 5587 0 R 5588 0 R 5589 0 R 5590 0 R 5591 0 R 5592 0 R 5593 0 R 5594 0 R 5595 0 R 5596 0 R 5597 0 R 5598 0 R 5599 0 R 5600 0 R 5601 0 R 5602 0 R 5603 0 R 5604 0 R 5605 0 R 5606 0 R 5607 0 R 5608 0 R 5609 0 R 5610 0 R 5611 0 R 5612 0 R 5613 0 R 5614 0 R 5615 0 R 5616 0 R 5617 0 R 5618 0 R 5619 0 R 5620 0 R 5621 0 R 5622 0 R 5623 0 R 5624 0 R 5625 0 R 5626 0 R 5627 0 R 5628 0 R 5629 0 R 5630 0 R 5631 0 R 5632 0 R 5633 0 R 5634 0 R 5635 0 R 5636 0 R 5637 0 R 5638 0 R 5639 0 R 5640 0 R 5641 0 R 5642 0 R 5643 0 R 5644 0 R 5645 0 R 5646 0 R 5647 0 R 5648 0 R 5649 0 R 5650 0 R 5651 0 R ] +>> endobj +5569 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [228.148 642.844 245.084 653.693] +/Subtype /Link +/A << /S /GoTo /D (page.110) >> +>> endobj +5570 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [221.644 630.856 238.581 641.594] +/Subtype /Link +/A << /S /GoTo /D (page.115) >> +>> endobj +5571 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [229.67 618.868 246.606 629.606] +/Subtype /Link +/A << /S /GoTo /D (page.118) >> +>> endobj +5572 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [227.871 606.88 244.808 617.618] +/Subtype /Link +/A << /S /GoTo /D (page.149) >> +>> endobj +5573 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [235.897 594.892 252.833 605.63] +/Subtype /Link +/A << /S /GoTo /D (page.153) >> +>> endobj +5574 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [231.607 582.904 248.544 593.642] +/Subtype /Link +/A << /S /GoTo /D (page.164) >> +>> endobj +5575 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [210.713 570.916 227.65 581.654] +/Subtype /Link +/A << /S /GoTo /D (page.172) >> +>> endobj +5576 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [218.739 558.928 235.675 569.666] +/Subtype /Link +/A << /S /GoTo /D (page.175) >> +>> endobj +5577 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [232.991 534.952 249.927 545.8] +/Subtype /Link +/A << /S /GoTo /D (page.156) >> +>> endobj +5578 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [218.185 522.964 235.122 533.702] +/Subtype /Link +/A << /S /GoTo /D (page.156) >> +>> endobj +5579 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [202.134 510.976 219.071 521.824] +/Subtype /Link +/A << /S /GoTo /D (page.156) >> +>> endobj +5580 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [225.242 498.988 242.179 509.836] +/Subtype /Link +/A << /S /GoTo /D (page.156) >> +>> endobj +5581 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [204.918 487 221.855 497.848] +/Subtype /Link +/A << /S /GoTo /D (page.156) >> +>> endobj +5582 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [231.607 463.024 248.544 473.872] +/Subtype /Link +/A << /S /GoTo /D (page.158) >> +>> endobj +5583 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.59 451.036 223.526 461.884] +/Subtype /Link +/A << /S /GoTo /D (page.158) >> +>> endobj +5584 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [220.468 439.048 237.405 449.786] +/Subtype /Link +/A << /S /GoTo /D (page.159) >> +>> endobj +5585 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [218.794 427.06 235.731 437.908] +/Subtype /Link +/A << /S /GoTo /D (page.159) >> +>> endobj +5586 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [210.769 415.072 227.705 425.81] +/Subtype /Link +/A << /S /GoTo /D (page.158) >> +>> endobj +5587 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [210.769 403.084 227.705 413.822] +/Subtype /Link +/A << /S /GoTo /D (page.158) >> +>> endobj +5588 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [210.353 391.096 227.29 401.834] +/Subtype /Link +/A << /S /GoTo /D (page.158) >> +>> endobj +5589 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [202.134 379.108 219.071 389.956] +/Subtype /Link +/A << /S /GoTo /D (page.159) >> +>> endobj +5590 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [223.858 367.12 240.795 377.968] +/Subtype /Link +/A << /S /GoTo /D (page.158) >> +>> endobj +5591 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [203.535 355.132 220.471 365.98] +/Subtype /Link +/A << /S /GoTo /D (page.158) >> +>> endobj +5592 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [219.417 343.144 236.353 353.881] +/Subtype /Link +/A << /S /GoTo /D (page.159) >> +>> endobj +5593 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [243.894 331.156 260.831 341.893] +/Subtype /Link +/A << /S /GoTo /D (page.159) >> +>> endobj +5594 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [232.327 307.18 249.263 317.917] +/Subtype /Link +/A << /S /GoTo /D (page.161) >> +>> endobj +5595 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [206.59 295.192 223.526 306.04] +/Subtype /Link +/A << /S /GoTo /D (page.161) >> +>> endobj +5596 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [220.468 283.204 237.405 293.941] +/Subtype /Link +/A << /S /GoTo /D (page.161) >> +>> endobj +5597 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [218.794 271.216 235.731 282.064] +/Subtype /Link +/A << /S /GoTo /D (page.162) >> +>> endobj +5598 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [210.353 259.228 227.29 269.965] +/Subtype /Link +/A << /S /GoTo /D (page.161) >> +>> endobj +5599 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [210.353 247.24 227.29 257.977] +/Subtype /Link +/A << /S /GoTo /D (page.161) >> +>> endobj +5600 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [210.353 235.252 227.29 245.989] +/Subtype /Link +/A << /S /GoTo /D (page.161) >> +>> endobj +5601 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [202.134 223.264 219.071 234.112] +/Subtype /Link +/A << /S /GoTo /D (page.162) >> +>> endobj +5602 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [224.578 211.276 241.514 222.013] +/Subtype /Link +/A << /S /GoTo /D (page.161) >> +>> endobj +5603 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [204.254 199.288 221.191 210.025] +/Subtype /Link +/A << /S /GoTo /D (page.161) >> +>> endobj +5604 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [219.417 187.3 236.353 198.037] +/Subtype /Link +/A << /S /GoTo /D (page.162) >> +>> endobj +5605 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [224.329 175.312 241.265 186.16] +/Subtype /Link +/A << /S /GoTo /D (page.162) >> +>> endobj +5606 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [217.659 140.826 234.596 151.674] +/Subtype /Link +/A << /S /GoTo /D (page.155) >> +>> endobj +5607 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [239.356 116.85 256.292 127.587] +/Subtype /Link +/A << /S /GoTo /D (page.164) >> +>> endobj +5608 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [414.117 654.832 431.054 665.681] +/Subtype /Link +/A << /S /GoTo /D (page.164) >> +>> endobj +5609 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [418.711 642.877 435.648 653.725] +/Subtype /Link +/A << /S /GoTo /D (page.164) >> +>> endobj +5610 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [420.897 630.922 437.834 641.66] +/Subtype /Link +/A << /S /GoTo /D (page.164) >> +>> endobj +5611 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [400.574 618.967 417.51 629.704] +/Subtype /Link +/A << /S /GoTo /D (page.164) >> +>> endobj +5612 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [417.078 607.012 434.015 617.86] +/Subtype /Link +/A << /S /GoTo /D (page.165) >> +>> endobj +5613 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [442.87 595.057 459.807 605.905] +/Subtype /Link +/A << /S /GoTo /D (page.165) >> +>> endobj +5614 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [432.05 583.101 448.986 593.839] +/Subtype /Link +/A << /S /GoTo /D (page.165) >> +>> endobj +5615 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [403.324 559.191 420.261 569.929] +/Subtype /Link +/A << /S /GoTo /D (page.131) >> +>> endobj +5616 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [403.324 535.281 420.261 546.018] +/Subtype /Link +/A << /S /GoTo /D (page.131) >> +>> endobj +5617 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [403.601 511.37 420.538 522.219] +/Subtype /Link +/A << /S /GoTo /D (page.134) >> +>> endobj +5618 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [386.349 499.415 403.286 510.263] +/Subtype /Link +/A << /S /GoTo /D (page.166) >> +>> endobj +5619 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [414.422 487.46 431.358 498.308] +/Subtype /Link +/A << /S /GoTo /D (page.166) >> +>> endobj +5620 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [407.475 475.505 424.412 486.242] +/Subtype /Link +/A << /S /GoTo /D (page.166) >> +>> endobj +5621 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [432.05 463.55 448.986 474.287] +/Subtype /Link +/A << /S /GoTo /D (page.166) >> +>> endobj +5622 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [391.424 451.595 408.361 462.443] +/Subtype /Link +/A << /S /GoTo /D (page.166) >> +>> endobj +5623 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [406.673 439.639 423.609 450.488] +/Subtype /Link +/A << /S /GoTo /D (page.166) >> +>> endobj +5624 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [407.752 415.729 424.689 426.467] +/Subtype /Link +/A << /S /GoTo /D (page.168) >> +>> endobj +5625 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [414.117 403.774 431.054 414.622] +/Subtype /Link +/A << /S /GoTo /D (page.169) >> +>> endobj +5626 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [412.374 391.819 429.31 402.667] +/Subtype /Link +/A << /S /GoTo /D (page.168) >> +>> endobj +5627 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [428.563 379.864 445.5 390.712] +/Subtype /Link +/A << /S /GoTo /D (page.169) >> +>> endobj +5628 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [405.815 367.908 422.751 378.646] +/Subtype /Link +/A << /S /GoTo /D (page.168) >> +>> endobj +5629 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [419.071 355.953 436.007 366.801] +/Subtype /Link +/A << /S /GoTo /D (page.169) >> +>> endobj +5630 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [418.213 343.998 435.149 354.846] +/Subtype /Link +/A << /S /GoTo /D (page.169) >> +>> endobj +5631 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [408.084 332.043 425.021 342.891] +/Subtype /Link +/A << /S /GoTo /D (page.169) >> +>> endobj +5632 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [395.935 320.088 412.872 330.438] +/Subtype /Link +/A << /S /GoTo /D (page.168) >> +>> endobj +5633 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [400.003 308.133 416.94 318.87] +/Subtype /Link +/A << /S /GoTo /D (page.168) >> +>> endobj +5634 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [421.036 308.133 437.972 318.87] +/Subtype /Link +/A << /S /GoTo /D (page.170) >> +>> endobj +5635 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [379.68 296.177 396.616 306.915] +/Subtype /Link +/A << /S /GoTo /D (page.168) >> +>> endobj +5636 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [425.74 284.222 442.677 295.07] +/Subtype /Link +/A << /S /GoTo /D (page.171) >> +>> endobj +5637 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [417.466 272.267 434.402 283.115] +/Subtype /Link +/A << /S /GoTo /D (page.170) >> +>> endobj +5638 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [438.498 272.267 455.435 283.115] +/Subtype /Link +/A << /S /GoTo /D (page.171) >> +>> endobj +5639 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [412.595 260.312 429.532 271.16] +/Subtype /Link +/A << /S /GoTo /D (page.170) >> +>> endobj +5640 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [435.509 248.357 452.446 259.205] +/Subtype /Link +/A << /S /GoTo /D (page.171) >> +>> endobj +5641 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [408.223 236.402 425.159 247.139] +/Subtype /Link +/A << /S /GoTo /D (page.171) >> +>> endobj +5642 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [391.424 224.446 408.361 235.295] +/Subtype /Link +/A << /S /GoTo /D (page.171) >> +>> endobj +5643 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [418.711 212.491 435.648 223.339] +/Subtype /Link +/A << /S /GoTo /D (page.172) >> +>> endobj +5644 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [400.003 200.536 416.94 211.274] +/Subtype /Link +/A << /S /GoTo /D (page.170) >> +>> endobj +5645 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [415.778 176.626 432.714 187.363] +/Subtype /Link +/A << /S /GoTo /D (page.173) >> +>> endobj +5646 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [412.374 164.671 429.31 175.519] +/Subtype /Link +/A << /S /GoTo /D (page.173) >> +>> endobj +5647 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [419.873 152.715 436.81 163.453] +/Subtype /Link +/A << /S /GoTo /D (page.173) >> +>> endobj +5648 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [411.35 140.76 428.286 151.498] +/Subtype /Link +/A << /S /GoTo /D (page.173) >> +>> endobj +5649 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [408.029 128.805 424.965 139.543] +/Subtype /Link +/A << /S /GoTo /D (page.173) >> +>> endobj +5650 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [429.061 128.805 445.998 139.543] +/Subtype /Link +/A << /S /GoTo /D (page.175) >> +>> endobj +5651 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [387.705 116.85 404.642 127.587] +/Subtype /Link +/A << /S /GoTo /D (page.173) >> +>> endobj +5568 0 obj << +/D [5566 0 R /XYZ 160.667 686.127 null] +>> endobj +5565 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F14 825 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +5654 0 obj << +/Length 579 +/Filter /FlateDecode +>> +stream +xÚÝV]OÛ0}ϯð£#Ï×_q; Lƒftã¡k;Ñ­tLh~÷ÚIiÙ€¢ªÒ@•šØ¾>>çØ×¹À$þ€Ì…rž9_ˆ ë“7eòº­4+Dá4+¿…ÈrpÆŽööSàŸÓóòë„×y=¤”¦Þd¿L FΤÐEÁ2- +o ÷Grv.Ù ‘ì0¡1Ï~ỀQãÄäV(ðu{”t’ (…áʰLåRÃÑÿMqú=Å(>L3àäÚ®FÃWi¦µæÛ@\² @Ö† óªŸ*Ï/× +j§ÞðYoàï™áÂŒîõ1®þsþ l÷”P?•w­3RãYfrá<îB‹‹;G²¬uÐ^°tef´0¸µkqÍâMìv¹¾oÑ”¯y|OZ)ðî³1¸s´—.íÿn7ØM>mˆ/ §Eî`53ï'®…µÞ¹4ë"E\@¯z{÷ò¨Õ4×àÚÛà|[ÖRgå‹ÑÓdíf‚Üm[¥õKÙÕœšªÎÍ­¦ñ3‹D6ªPêZçöÒ‹E”aN¹Y¦_^`õ`´å›IŠùÅðŠÊ‰êŠº)@:>EÚ–þÞUó8TMâÌÝøò•nâà‡T;>œ¡èYÝs"âs—Àò26{BÄÆÛ5hÖ+B.jŠý­pMÐÓ0 ‹)r\RX«Q¶‚<ÈêS?*¶·ŠñPXi©t“á‹[Ç-9J˜€ERÚKkÙßJÒSªfëþãIGendstream +endobj +5653 0 obj << +/Type /Page +/Contents 5654 0 R +/Resources 5652 0 R +/MediaBox [0 0 612 792] +/Parent 5670 0 R +/Annots [ 5656 0 R 5657 0 R 5658 0 R 5659 0 R 5660 0 R 5661 0 R 5662 0 R 5663 0 R 5664 0 R 5665 0 R 5666 0 R 5667 0 R 5668 0 R 5669 0 R ] +>> endobj +5656 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [169.507 654.832 186.443 665.681] +/Subtype /Link +/A << /S /GoTo /D (page.175) >> +>> endobj +5657 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [148.336 642.877 165.273 653.725] +/Subtype /Link +/A << /S /GoTo /D (page.175) >> +>> endobj +5658 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [175.623 630.922 192.559 641.77] +/Subtype /Link +/A << /S /GoTo /D (page.175) >> +>> endobj +5659 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.94 618.967 181.877 629.704] +/Subtype /Link +/A << /S /GoTo /D (page.175) >> +>> endobj +5660 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [193.295 607.012 210.232 617.749] +/Subtype /Link +/A << /S /GoTo /D (page.176) >> +>> endobj +5661 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [198.692 595.057 215.628 605.794] +/Subtype /Link +/A << /S /GoTo /D (page.176) >> +>> endobj +5662 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [199.66 583.101 216.597 593.839] +/Subtype /Link +/A << /S /GoTo /D (page.176) >> +>> endobj +5663 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [196.339 571.146 213.276 581.884] +/Subtype /Link +/A << /S /GoTo /D (page.176) >> +>> endobj +5664 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [198.692 559.191 215.628 569.929] +/Subtype /Link +/A << /S /GoTo /D (page.176) >> +>> endobj +5665 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.94 535.281 181.877 546.018] +/Subtype /Link +/A << /S /GoTo /D (page.176) >> +>> endobj +5666 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.94 511.37 181.877 522.108] +/Subtype /Link +/A << /S /GoTo /D (page.176) >> +>> endobj +5667 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.94 487.46 181.877 498.198] +/Subtype /Link +/A << /S /GoTo /D (page.176) >> +>> endobj +5668 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.94 463.55 181.877 474.287] +/Subtype /Link +/A << /S /GoTo /D (page.176) >> +>> endobj +5669 0 obj << +/Type /Annot +/Border [0 0 1] /H /I /C [1 0 0] +/Rect [164.94 439.639 181.877 450.377] +/Subtype /Link +/A << /S /GoTo /D (page.176) >> +>> endobj +5655 0 obj << +/D [5653 0 R /XYZ 106.869 686.127 null] +>> endobj +5652 0 obj << +/Font << /F23 479 0 R /F8 483 0 R /F24 539 0 R /F25 542 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +3894 0 obj +[450 0 R /Fit] +endobj +3806 0 obj +[450 0 R /Fit] +endobj +3709 0 obj +[450 0 R /Fit] +endobj +3677 0 obj +[450 0 R /Fit] +endobj +3636 0 obj +[450 0 R /Fit] +endobj +3586 0 obj +[450 0 R /Fit] +endobj +3535 0 obj +[450 0 R /Fit] +endobj +3504 0 obj +[450 0 R /Fit] +endobj +3473 0 obj +[450 0 R /Fit] +endobj +3409 0 obj +[450 0 R /Fit] +endobj +3357 0 obj +[450 0 R /Fit] +endobj +3325 0 obj +[450 0 R /Fit] +endobj +3280 0 obj +[450 0 R /Fit] +endobj +3216 0 obj +[450 0 R /Fit] +endobj +3173 0 obj +[450 0 R /Fit] +endobj +3105 0 obj +[450 0 R /Fit] +endobj +3048 0 obj +[450 0 R /Fit] +endobj +3015 0 obj +[450 0 R /Fit] +endobj +2973 0 obj +[450 0 R /Fit] +endobj +2937 0 obj +[450 0 R /Fit] +endobj +2896 0 obj +[450 0 R /Fit] +endobj +2861 0 obj +[450 0 R /Fit] +endobj +2800 0 obj +[450 0 R /Fit] +endobj +2733 0 obj +[450 0 R /Fit] +endobj +2696 0 obj +[450 0 R /Fit] +endobj +2636 0 obj +[450 0 R /Fit] +endobj +2604 0 obj +[450 0 R /Fit] +endobj +2569 0 obj +[450 0 R /Fit] +endobj +2525 0 obj +[450 0 R /Fit] +endobj +2490 0 obj +[450 0 R /Fit] +endobj +2472 0 obj +[450 0 R /Fit] +endobj +2419 0 obj +[450 0 R /Fit] +endobj +2381 0 obj +[450 0 R /Fit] +endobj +2348 0 obj +[450 0 R /Fit] +endobj +2314 0 obj +[450 0 R /Fit] +endobj +2283 0 obj +[450 0 R /Fit] +endobj +2238 0 obj +[450 0 R /Fit] +endobj +2192 0 obj +[450 0 R /Fit] +endobj +2175 0 obj +[450 0 R /Fit] +endobj +2149 0 obj +[450 0 R /Fit] +endobj +2109 0 obj +[450 0 R /Fit] +endobj +2074 0 obj +[450 0 R /Fit] +endobj +2041 0 obj +[450 0 R /Fit] +endobj +1994 0 obj +[450 0 R /Fit] +endobj +1948 0 obj +[450 0 R /Fit] +endobj +1905 0 obj +[450 0 R /Fit] +endobj +1869 0 obj +[450 0 R /Fit] +endobj +1842 0 obj +[450 0 R /Fit] +endobj +1825 0 obj +[450 0 R /Fit] +endobj +1791 0 obj +[450 0 R /Fit] +endobj +1761 0 obj +[450 0 R /Fit] +endobj +1717 0 obj +[450 0 R /Fit] +endobj +1683 0 obj +[450 0 R /Fit] +endobj +1630 0 obj +[450 0 R /Fit] +endobj +1585 0 obj +[450 0 R /Fit] +endobj +1517 0 obj +[450 0 R /Fit] +endobj +1477 0 obj +[450 0 R /Fit] +endobj +1443 0 obj +[450 0 R /Fit] +endobj +1410 0 obj +[450 0 R /Fit] +endobj +1378 0 obj +[450 0 R /Fit] +endobj +1343 0 obj +[450 0 R /Fit] +endobj +1300 0 obj +[450 0 R /Fit] +endobj +1262 0 obj +[450 0 R /Fit] +endobj +1222 0 obj +[450 0 R /Fit] +endobj +1183 0 obj +[450 0 R /Fit] +endobj +1148 0 obj +[450 0 R /Fit] +endobj +1108 0 obj +[450 0 R /Fit] +endobj +1066 0 obj +[450 0 R /Fit] +endobj +1027 0 obj +[450 0 R /Fit] +endobj +961 0 obj +[450 0 R /Fit] +endobj +929 0 obj +[450 0 R /Fit] +endobj +884 0 obj +[450 0 R /Fit] +endobj +1010 0 obj << +/Length1 1434 +/Length2 10526 +/Length3 532 +/Length 11374 +/Filter /FlateDecode +>> +stream +xÚí”UX\Q¶  îîZ¸»»CpîPXáîN Aƒww×Á-¸‚»·¡»ïídú>Î<Í7U/õ¯³ÎZÿ^{ï¢&WÕ`·›eÀ®Ìì,ìI% M9v6; "5µ¤3ÐÔv2u +ØùùÙânVv>;¯ç[@ìèå ²²vÐIÒÿ#‰ nt™›:”L]­öo5ÌMí`sÐÕ‹ ngPÿÇ.u  ÐÙhÁ‚Èΰ™»Ì€V DÖ8É9X‚¼ÿ +[¸9þ÷#w ³Ë›€îM’ð¦hv°óX-Y•Áo½€o&ÿ7¤þ³¸Œ›²©ý?ÊÿלþG†©=ÈÎë¿rÀöŽn®@g€ØèìðŸ©ÚÀéI€íþG#9WS;¹¸ƒ•ÀÌÎÅÂÆõ¯8ÈEä ´P¹š[,Mí\€ÿŒ,þÓãmzÿ´`Õ“““SQaü÷Æþó±ª)ÈÁUÓË`û“ÿOfÿÃocryôÙXØØØßß¾ÿýËð?ÚI;˜ƒ-@Vn€©³³©âÛz#n€;ä`ô=ßœYYÀ®o¯Þ&ã°;#þc_ß¶žÕòŸ±!Ç‚þ ×?žþa.N«£›ËŸÏ[àmoÁÿñpXÅÿÐ[‚Äâ°Jþ!>«Ô¿‰— À*ó‡Þ¼dÿÐ[_¹?ôÖAá½ÕTúCo5•ÿM|o5UÿÐÛâÔÿÐ[M?ô¶RÍ?ôfýáßÄÿVEï½õ3ýCoýÌþ?€ÕüÏôØÞ^´ø ßÖü ÿ1ë¿ðÍÇê/|²þ ßÖü×¾°½IØþ…ovᛆý|;z¬á›ø/|Ópü ß4œþÂ7 ç¿ðMÃå/|›“ë_øfåö¾Y¹ÿ…oV´7+Ï¿ðÍÊë/|³òþ'þÏÛ%!öôaæà0sp¿u^®·#Áå÷¿'j9€œÜ€rRn666^Þ].s7gg ƒë?ÿÕÞnî³%èí²ž@sÄ¥y°¹`¨MJSx©¿tþT ½ qZqèXWXCš ËѺ æ¬só¤&ô# ÃTŽž|¢PÉjaÉý“ IÜwÐGƒ5lc›>7]îÌüÈÀr({ Í>3jo‰lÛ±™ñl™òzý ¦Zñ€7àä#téÂüó•¿mÀøÏ%¤T ÊdDÃìvÅ/Àûq£Dzà|ðRážAú5ÖËAïÚ´í*Jt¶„Bˆ=×~ à´‘vƒ +™·ñËûÓejH S= · ‰Ü}÷„2´({Zomú#Ô®‹qžØFœõõä«ú˜£Âƒ»cBxl_Ä2š†ÁP/8Ìw¬‹v“@£‹iÔäOƒtN¶Qô. dÏyÞÈ›wó³ß˜ƒÃT ©…Oލ<ûÛ÷1¯izê­Å`¯lZ¸>z·‚¤ó{5¥޽)Ç%g²N.ƒ•†àðË‹¯óíæ$ó²6ªñV_ ©‹™ +Qƒ¿MÅ0ò27*êÊ j4qšMâ䯅ºl¸'ˆ,¯:”>õYÓNH˜Cq„ªýˆHâ“MÃûfááœï´:‰Ÿ; ï€lž¨je}çæ³H‚M,s”q wÚ›f–Çhgy5>N»&8ý2vfN¥™t rˆYö‹ªYÙ/5¸gšL[ðQF2igöHFÑ=ïõ~ûv4¯ûMpˆãÀ’$drTN¹d«ÿ¬&O¬ìÕ.,Ì|”Ž-¿­É¾½¶(7ø]m#¶zæ× +‰•ÇŠ*J`–Dê’\" À3#®Vt2]@S©4z1àQôp&ô&÷Ðç­~o+Éýt•9$°é1Š£¿«á m’F@†¶¢‚²à™^ruIïf&Ç +¸š¼]P´ø˜ÙY7d=9y5ƨŠ_ÞºH¥À<,zyv»ÂË>—¬iO +EîFqÎçVä=ý³ÏlS¯TôWò‡uVøáÙ]éÔ¢Ì …’¼w6Yµ!:qËç-¯¯Wñnò×OUÖ—­î+"¿ô~~Nk{\gù,¹ò°“$FÞhÁ‹’ÝG‚Ð]p=øNi—eúÌt<Гì¥ÉOsÇl싈Bˆà2*ZH^ ,9XÔˆ|ä今jôÊ/~wv±|0Þá5••¨ó!•üA(Uzè,>ΞH÷Á(x˜°×gzª7(ó ðœ(>(˜±Yö eço¯:NìŽ>ûé¢Ñ?¯¸çõ»œ¿ Á¶å7&3Ö´JTÏiÛÕ*Ϫçëbtêh0^RÏœèÜ• ‘@é×ó™O``É›$R×@F^Ÿæ¸_û‡Ól˜§í^"ZLÎ5ÓÔL°àrRlò@ÜQŒ.Ht]úâ|«]Q ö›ÎI¬v­Æghö¼˜—t‚MRQÂ˱)²,Í÷ŸBBPÞ<ñ &µÍ«‡ iOVk7XA"yhÆëCb$¸½Úg<éé,Âc\’ú!Ýp .‰ +uGFHƤ¡7E'‚~$Q¸ùô$ɸuÆó +“p/U‰˜Énˆ7æCGKÐI«ä>HÒ!N|Ùì6_]Q‹¿ª7ìèX·69÷~‘£¬˜÷]Õ ËpT¨ʧ"³hçÏÖàÁA2;e0HEÅb2~«ª\HOe1òv‚YR±â„+^YV-³­ú’áLÁaXåv“ ÆùÌ“nCm‘ÿKlʪá's.5lUÁ„ºÅD ôÍÇi©¬âs'DÂk©éCYøVz¤Ÿ©ýc°;§&ýt××CŽ»øìJn 5[­Ô’G­áXd¾¦¥Eêô:™£ ïü…Xeg>@&­\TðQÇ Žúâž Zn{•C³H¥ÝÝCl©^K’o®[”ø0NùaðN?·çE¢‘Žmƒ7ÞXï]ÇŠ=<(o¿EzÝyuàa4êKûÅêð“ã.}0¬]#“¿Â|lÐK3“€M]'IŸ²šè~QâLh•uße´ôúš“#ž’ÜjPâ-b$ÚžÂPªGb:›aS?¿-M£˜²6³þ]ökÑÖÇçØ3U|'ü)yÿGw%3µ7"ÏgüãÖÉ Ehñ àƒ¬+Óa˜ë¶BA¶NŒÂ°! ˆÝ¿aœ?J0š #·ÅjEm|NY*>ò8`ud‰À?û ,Ü_ùmäXkpfÉ1ú{F‡ÝŽGb/Ÿï;8ñ³Iœ !ÒöîaOšÍOï{öæ9ý©çVPh}ðCntc×lBœLx2Ÿ;÷êÛeLږµ^8yä:6«Ðd4Qù‰“žjjÔ£ü%Œ_Ûª ¿Ï­Ü¥¤`‚É!y_=&hO‰6KÍgõ›<²aºKë^lÈ—³To"¦Èõ|ð4&,™ôT>ÿÆÁ«ÀOÄßüÐ^¸Év²wÑ}OسùáNrúNq /8Úâ›Á8®B·ý½¾Þô.ï®"vÜ¡ôŒ¡‡ª8.zþ ¬õ}AŽ™EJ ¶1õG/{ßð°È3|’&Šñ5ªénîfqÛ°b¨‡aÞ¤¦.LwW~Ó(:ÁôOè "!ü¦„kRØÝŠú÷sпˆ¤¢Ô y€ÖBda¸ào¦’W¿"W‰ Tƒ +|”È 4¸]<¯2Úðz+ÔéÚ…§;5ÚÈD"„(Nƒˆ|€¨”Y@>iˆ*¾Mò`aB%ž€lÊ"&Õˆ£é£3X.­Ìôà;Ñ'½g; L2º ?¨¯v¦w)¿;‹†ú¨¨p2vâOùÜFfH-F¿I“΀:¿j‹ýÎ&üÞ[†b¯Mx›¦¥u.2‰ÜPA‰ÜrŸ`១þ~÷P:€ÝélÈ8Å&,“-#€ÚŸð.¥ž¾:2gαU¯øÛºßÉY~®—IV¸UúïÌcA¤æ «vˆuHØš|N]ö±¡,¯};uš˜cAIyü‰ÍxU1wñ«W¢ç‰ÊwŒ±BüÊkÃá«­t[lâÁªªéü}ŠÝ~g/½|'щ[}B8ù#ÝJô¹Æâ„Ð0¦u9—8:» +£ìаG5N[,kÁ츔J9~ÊeÓ–…î~Ó-$FüŽÐ'>'AÀÏ·ÓýîÁñü +‚ùzºÅðõ(˜0û-t.î’ZåE¹Áè:UìQÑOVà1ŒÔ¡©éWõ­oË{œ‰{ÿ_ßb£«Ð¹Tœµg$[žýæ¤â£ÕÖ•8¬½¤Qp~Þ1|—M¦\”Äí¯Ûyi}2ñ…CØm*1–Ó¾£ß¤z•Í0Dû€ë€ÅoæŠ_qÆMaWÛ+:vÛ²ÕDÍjK¨ìûrC·ŒUÐ %ìŽâ©Û!Õ Ó™ˆXï:X\œ|£bt„#ÔŽ—:({Ó·q»¥rùº'¹>Yò Có8íC$ùÙëO… ²Iõ8çV”"¹ãî¤P ]¼Ä~W¥šåPCÏ"–=ä_N>”:rhŒ›Ò‰ÛɇÈgΈ\¿Ì|*(/hð^ôÑǢ&ºÎØý§°.6Í ܯ'¼ÁÿY<"ÏTAæ}œ9J@/îʈ báEîem"táX¡e)m´î àÊžˆÇãæaêW.€¾§,&ho{Û~çzÀ(ioq =\Ÿq虿E– A¡½8ä߈ÈxìoSU@n”…p§4$Ño+jõ}Í‹ûο_ ¤‚,„8Gh^ŽQRÔÝtà~ÎÂÈ í§´Ç “ʪõ%µ‰ðw©9¾~•@)Pe£õª²«ÍÒ…ª®®‘ w¹žµŒ)3o…Ù"°æ¬MD>pEX½áHmò(BËóeŒÅ“Êжsž«â + *” +ì%§¯¯Ø“iì÷Ò—HE·©Ó}íÄãBWRŠð´ößÌöó==í/ ?Þ`/®Ç‹Z¹i—‰+Ïs¦V“Bø™Œ§SÍò}˜‚;·°Ê.ŠÓ 1â'(Å'×ÜÞz4m#§Aè°Î ³˜B®š±Æ>ïJãæé)ÑÜbª…5ͬ½£ÁâS\÷ÿ~!J—„§ùÕHk'0a¨^IÐÝéÛ:»x p½·]ù^gSbMP!´=d!\!‡Uäñ}âÙÛ•` ×Aâl¼z‡Æ-´ÐŽ»l…KsöçCN={š<¦kQ¾O8J¶~öŒ -^¬?Šu°F›Ìq"&[¢F•Ô°¯#l‡Â¾i“。UÂý@†>™;øÂø áKáðïϤÌ+ˆ^=•A8ѧU³ w(üPÜ+–àD]µÃYy­1Ò‡m2©ãT‰¹VÙ¾¢I[’¸Õ‘_ÊÄqIáTm÷5b¦ §+e1ÃäPi1â!“šô‹±§aàè¾³yfðHy°“œç—ŸúnŒŽ²CWMר•.ù7º‰žüPÙ —“Ûö&=zŸŸ›ƒû,úÖë4tævð”\˜Ðˆ–iœÓ^e[0Hdu\'_›!ê»TÔîr®_2ïà»4º%v¯µ[ yf+”·†DÆØéÔ›ä Ä\î^U]=¿¸ÂúUè+$¬©·tÀµ’)óZa(>°Èqn?@,'kÀ‹ò·b=÷ã’!ÖÀ|Bk€EÂF!ñŲϯ½FëDЯYZS¾º¼Š#™.ZÉæqY«y2E’þ}R|øÚ¥˜wlî-¯z>tZZ4ÅÚ8¬1pißr²)òJ öÔ ç·Šì" È5?¢ÔüV#—D« ®)®8¦Ô †c¼¥Ï°ÓÚ[ÈBæZº6é9TÆ1…Ú&Q¼©ÖÛþÍÙÅ ½²xmî¿t¹b‡‚GFrOã<Ñ –Œ„b3í@Ïý#?ÔXo¶íÖda±|9€‹nÞVÎå‰_¶ÙçQ/sL,U;¸JbŸ½.WôÑÙV;ãÓžð~ "šÃRo¯ e¡ï­¦À?~ÖÛ1%YWÚtm±} ,†Û.ÍjzÃïu+ÔBï=Äêvi5œ9á\èÐÀmÞðÓËu¶D2`4îP(M°jzå H)Â¥k‹ ¿QNíÈ®ëZüp=JA³œÉès*”’ÅÃE(„XA @9F¢pJRüŒÙêȦr”ÓñIk¥ÎZƒÙ)ŸÝkŸÞÓ±4Û‡õTÑIHÑê~n…¿§ö Is—EâÏ5¹Ñ Nm¡5ÄüZô@œëå)‰wwÌTALVÜÎìSÖ;idñ \Ç’æJZÁA‚y¿ÐÁð|€™ÀÄN¾„‘'ÈT¯ÛÉ^ÏÌòU‡Â;—ЫܽI½—†ß¸3Ĩ Ùžî«9ý¤‹ä…6¶%!ƒË“³OaJlsêân•ž&§º®feA^ׯºÏ¯®úE7–øÑ;t^ƒ!aWfsÇïr-ŸAˆ·8“Ò¤¡¤+¹zŸ:Â}÷úwÍ;t¶"Šñ³ºïа§ûJ\°<‡ÄeDgï7·Xëq!×ÌÕvoM³Ï5î"ö»[ \¸À0 +аͤ¬|¢hÚ¶ëQíÅ‹cöõ2ñ)^nóÁĤôý;òç’´½RŒ­Ã-‘0X exf‰M§D,U’ò_i/–c ÌHª¼Æ,U„äØð>º±pªuK風¡*Ç=bµIQ .& ˆÔµª ­<¿8'£MQrÖ5.¡t¼?o~µ÷Æ9çwÈ÷0gȯUÖXZùe*ãò¸\—LxÒÿ9–§¶7 +Â2|]¸Q„ãÏȇ¡÷0}° +œ$1›×1LÚŒJ2AdÓ<$¨hÎò’èQ”3Sä/¨l¹ÇñtSÕ®:=ÿÐ;¬q¯¾d!É– |(•KÒÿn‡ˆ¨5×kp§õdšËÄ!n¯¿ü¹õÛT[?Ùg˜îﯱÇPL|·Ýö‚i¥†yiLîIJ¦|#nMé*üv™9ú”ï 0ç: +·Š¡6at*¶%ïR?É& +aŠÌ+“-”ó4¸ë£µ A?p¢(™óTG‰9Ñdb4Óuz¸Ë¢Qà¡•A•]ÞÚ^ya *sJ„žÑóÉ3H±cRÈu"ìàY5£Ž€:õ.§›(rKH¦Í´—¤²=º +žOîhéÄWQe&ÛÙ‡kš{™ÓGBß°¸°öëˆçÎe¾Jf5Ö5\îë=£òöLãaªª›¤_ïiî½—ãØ`fJ6“™£¼gÔ¡ü¾ +Nÿ1÷þù–¡ª>uÓR0vnÕ Ö×à¬Hî–C/çû'\ÿüüËd{ÎÂG½ÙVjæ¸ìõ®w¯ÒÜ8!’‰EÁ ÔÜaKu£)1\–¨=ŒÐb:‚ J¨ìœÂ2 +v=²èY‹µí;O×Ò|XßÒòX3Ê`tÓ²¯ÉmF¤iÞurÓûáI*[›*ø.ìÕmk˜%šDATĹœ¥Ö×vÁ@Ô™ê*J¨üúÞ…³t&Ðô6ØñBw›Ï±tÄ»ñðâÖX†û«f×ZêA@Ñ3CW]ÜGl2O×QŽØqD‡.ÛO$¢V´Á,aÔ²ö”ûˆîSN©ôCW³GT:¿=wžç̬]-ànÄ+¬bÕû2¾zÕÈfsÐ}þòΚzHòÈÂØ«Aë@­u¢´r`úžmAAÞ¾Øè#'嘠ˆfG'Ü#N"/vƒ˜2ÆŽŽ¨¡5ÕPƒ1!ž µhÂEBA#¶AL,dX?¤ää´šäçŠ3²T+±Ê—CÂg.!¾ yqì›YÓݸZk°—Ÿ«R“ ÐÇ›ÁfsWÄjÓr.ö<Ð~)'‹”2@¯ã,Ar[e0‰eu…%Ó5½>B/Òé’Páè ÕÕ](A^üžªÌóŠø¿Ù WÙÛVdzà{9¨OªnhzÎ<ûyGÕf5¥Ú%(|?ΪNˆú^‹‘0Z¢~PZö:žî3éA¼}xmõÓ +9½ŒTèZ?,ºâµ\½¯®súóp>„f<Òƒ‚œ¡Ë.5zÚÆ‚ô([>-›`ª!]Ö|ŽÈ=áî$>‹÷ÈÇ'~Ãõ¤§dõ“Çòý§d¤o@©+¨sb¥”_hâgËZ¾ÕÈ–wÒÒ’µK±Ó óšN(´uœù”rbaÈÖµGÝqÇÁˆ‚›qðÏ;&a}˜È,˜Ûâ&jƒ­=À+xl§"J]Èç½¹”c?¼b€Ý·VºŠGF3!èæˆÜ$@ ++¤ÛUí¢.ýÂÖé&Õïø©H`ìýˆM±µÅiƒæz›Hç&ÖòÀwDTpU"œcPî28CŒãÜmø>²ÖªTÁOÀˆ_9HÈUYù}Ó…åˆÎË5Y(ÜÓh` I0µì§È.{bòëu嚣ëj.o|–íßÅ:É%VWø­Ýi*Xéªó +\Ù~º#Qš½ô‘ùª˜ôÈ´V+ËüÍ4FP¹Îs¨i®6Ö—ºyæNèù¦íÊ*ýógÈèOèCRÉÊ5š}RI4~Ô*6(îP`”n܆ì£rBóòžI¿;-ôï™®b9U^†"Þ´TÏÐÈ;¨ »Šm+%€ò;‘å ¯Âø| rÁ›ÅWS­Ëùë ѪÖ >”²ê1I­òüŠL[,deuì#B~º?"Ô’]6½G›|&fšáÏøõ"0^@|ÇG‰OÒYYƒÁ±™Iûð›óÕO‚ß'à}äKš±rð,l(ë'=»8©½~'ÊYœKýKï ŠšÉjùfr»VBÕïÛå]î|³£•—axU«“ŒœˆÝÊ•º­(Õ5.;ØÃ“9ãóíX„åãx¿(ØuäÚcº}^šl ì°ád° 4#A“‚^·»F­kÙ¬‰ÞT_Å/ÄÀ’Éh=ýçm9Ï;Ö哉xtϤE€Úâ,’è5µ»¯È0ÊýZˆNŽ% ¢™.®“ÆBp£Ý0t¡)I<-7'~üDèÙÇO§ÀrÙ‡³œà_ñØC¼øAR…ÄQcA +ÏÒй’¹7ÒÎÕ¡õ›ñâ•Éyãš_ä+!ËŸC'ÆÁ9º°l¥ ªrJ“¡jžÛA\™xú&ô¼ŸÂFe¹‡®óZÜâp™¡ï«4FÇÏoú~&ŸÂZ’=àŠfr/ºÝCà^ÚçH¤¸0êI4O]áRc-… f9ó1c¬|4BCu[]ˆÃlZu.Îåm² ¡ðbÊQ¿TÊ`:Äm9 ]å!²È9¤ØˆAZâ ÀörêTªa(nÆ·“¼ªwU@ÕaßT}Ù.Dkê÷ÅÃHDš°mÄHåèÀâJxwµX(µÛÔ6:mØ'‰@îÏ%Còp"Êà©oz +Úßı¦P  ‚/á+9e?Ñn-xSä¿æ¤;.Ö¼”h+êJø‘ÐÓoʘà]º´`K<",p"n¾PÞè¨þšc8 è#÷Îôt™*NŒ÷K†‡(P9Öð KI³ͯiœÈò‹AþZ‡ÓnèLÐãi§qÄ”I„8FÄ£y…òÎÎWïcG™Ë±X•ŽÝR%?»'¸ŸÞ£IzÀ¯4—„­~,ËøÑ‰M¥=ÊÆ É•ø¸;dtŒSºñ^Gåa¿¹äTxõ$‹þÁç½à£ +I–Òært‡–j¢û-è+uW~2]S¿K5­ xª‘(L(°HÂÌl„­ÕPŠy7õ.Z¤©RŒlàÍÏJï“ü‡~…J#;Á¤ÍéÏFPyjŸÆ)˜È”?o&Šg_Íö¸)Ð .:ÖåVÑ]ô½Òn°‘6^)ª6‰Š%,¬yíT‹úPã +_+ªQûÛÊ?ë<ïÁ7ÊY*ª™v8´%ŠêsVeÉ~Â{(¶z H 'øÀ}Çß(£ wR[mŸˆÒe…³q·š bŸ–ǽb¶Ÿ}]nÕmDƒmý ~ký‚åü¸¦µad[9Æï¹ø#å–-8“]:ÎÁú¨  +*¡ƒ8ÉËÄ]QîÛ˜LNé­±ïý¦d÷Ã&L\kle/|Øm9™c¢6f ‚Z$q1”è<»©Ë¿\›Ø6ïO—Rô¯;M$Š#Ǩ’_Ô|8¶o,'ùŸ¿êÎóFž=å¸u™×)AÄØËá…-äA…^ùÙp~…JšN>lè:à‡ˆ»-ÀÙÜ“ñz€? 8Å[Ë5gí¥£Bôë8ÚÆzÕà”Åíä_›øÇ•é±@Ä¢N8»áÒ+ìpmSXHù¦™4L‹ƒ,óIÀºc‘š»»cæ‹ +Ðà«íü»m¼ïµ3XH¡zŒgX­Ã~7Éð?îr'éÖÕ&Wo:V%ÐŽîíh&Ön·×òT0:Ú.$•6ÌD;<›^°Êø³Øƒ£> U Ÿ'84:à삸K¾ÊðPM>‡ç/«½·4Ù}wR[@(÷…ž‚ÕIM£±çKõ¥·Õ‰â aõKyw”x±þR]©½6R­a NW—ÇÝ÷-](ú—œEߨãjVø Ê^¶ùÏ•…ò&=¤ecÚ£ÓqÐÇ«à™ŠV^ʨás3mœ÷EEÅûø¨Åëqø¬´ÀÓu‚,Î~MCé—ç ”ÎÔPŒßÑB£Ü­ÆàõU= +i¿ŠÍ`4ÙÈñjJñO`;ñº $=ޤ'ˆÃ¡„d2é{×Sœå’3æ Bê³ÆàÔD4,õ(¶æ7‡ºÙ}’)£×Ébtºd@2 œø@Òå̰.’/Çœ«hBÔÁhæ3©®edx+¯)ý  ÌÒoû16µ»¶Ød×éŠò#ET†i–FÍcè^)ÌË­ÔØ)22¨€›m­¬Çskɼhx¸C[ï 1±/S}—ú‹‚.¶žAç/7úìPÓdÚøïË~»ÕþWÌ6c5UeÌõŒ’9—z HEFº$¡ ø`úðŽLèZ=NA ÇdûGr³Ã.Y)?ôù:ͪM|“‘“=6øãð'œåi‹Hx”¦Rßsxvƒ[eÊQÇŠ‰3­ž&jܨ8¸ò„À&rcÓq"ñlˆö€­5ŸÚáâ–ýSCC¢‹x«%ÌJzÞ¹xä+g¢ÛI%qC°ÐM¨vîµ³`gÇ”3ó¥ ) *ÛÉ"ŽKž¯ú¯3³D£6``Ê€!©¡ÎQ¬Ôegîªå(ê?µå±Ql ê~œA¸PwÛ’~·[‘Ñqnò¡ë9ã8ë‰0W—Ÿ(ŒõÁ‡«—¶ŸÁîç¦Õ4iÁgO>ŒfÂdo½k?g•aÁ‡jYrÙ¹7r6¯ÎÍóß•¯^äßðº!"·jôZ·N?«ˆo=Z¦3Ø}>Ò¼!jõÂåÞâàË' wFU4%Ól¦‰N|6ÅK¢¨d@ž òb ?Zo£¸,¢&ÿZÄ>Ï3»å»x¬” ¯½§WôNwùPÈ‹¼àw6 JTÕj·Š·+—ÞLL#ÔRx„æ0J8ƒ_~g†€Ü?…™„á»=,|ÍßÚ4Þ:ÃãIy á‹TÓ ¼%’,¸ÆyZ07’»¤òbi£õé÷awPžÖGB4A&Ý8–hËòUÍÚ¨|Òî¸!ÿ>ÖZ"~ F™bŽè Y¾”·VD·Å¢G“`ÒÔn“ÙA)€X09è’æ„»,³î•V #ѽ2X§Â~pbS™dµÞÏ•Ls˜Þ–x—ÀqbÆÒR_ ;Ÿ6õØŸ£üVÚ¤šl|%¦/Œl×i“ƒ¾.¥µ£Òò až“ǧs³P–|¥aI~Ö5Roxa·„—úCHúè"V4,s#¿b& &45–|­¢0ä-žº†Ü»´é“°üxÕ~Ž4LYmK¹i‰TíäuÔ/³G™h•ßÞ ùLÛUw æþ½j˜FB›æzê +Z6XpÉÊ·2ÿ—uÖga‘ÜQîÍ%ÍÔWÓÉqøÒ&²hJVòdY¯œáÚ| ê0°‰7£ánܧ|°y¼òŽÌì“òÛ«[O:Ðâ*ìÉ[‡BàZ ¦ù˜sß‹Oö;UGɽX¯·»±ÙÆMý‰ öFöòb"²Yó¬V1öÂî¥Ô“aŠûavŸêÖð‹%F£%%°'“ü¹ûí¢×Öw¹oþçbŽþ?gÑi¦eyó§?y‡WO|OèÛ£«K‘åñŸ)¸?‚hBÄ®¥§ Êd¡¿½¢]÷¡ÞU×iɤâCÞâ4 Óû¤R!I7+ ¥Wäå0í.1Ë _}€­lßÄ’Uè¤G:‰þ)<tM"qtªåê\”·#§8s>¥ùÞƒ¦ÍOOÔä£å`ÎaTïY ë¬øÔÉœà¦ÝO«{ùÅ„èf0ÆÎ,§?uA•ÊÂì¨@ß‹°­:)ñÆ… PšŒéaårÓ’[Q$Ð\màE9Pºïbäõëskú¦•€gÞrP–D°çÂâä‰ç­Ï*•oTl¾ìãŠ<[‰O7rmìúbŸ/;`øWž›%,ò«ø„ ==Ö£œéÙˆìÝ•qP>Ÿ0«µÚÐ5¥ÇO©ÜSvÇh¤“„ûÅ%:^©Ó2ÛºWÆ’EN~Ôa/«mìÖ•Z=ÂÈ.›ŠŒªÚY9·™ üò­câ!Ô–2*C»­›%©Gð¸ßðHínu~P^D×I¼ žñùý)¶­ 8ƒÊvßD]ÉÛ4î³çgÉMÿšn¢UµéÛÕ÷ĉÔë3Tæ%ÊTùuDˆ :bÚïîoz7õTG9ÐC0–¨ýð,=Ï{1 ‚¬Ú(e:>NEÇ_à´áëy6õ,ò,Ø×·=¯ª,ö~²C]FÊãqc±¨^ŸÇšºÖïÌô^+>£¹Èq]ÒU0;§«šÐVbúá’G[4‹˜ üR†ÿ¬2v‚ éæ=ç—2·]ŸntNÍr¾ÄHz@ÞŸ˜A €\…p9÷üTŽ<> endobj +1009 0 obj << +/Ascent 694 +/CapHeight 686 +/Descent -194 +/FontName /ZIIIOO+CMBXTI10 +/ItalicAngle -14 +/StemV 107 +/XHeight 444 +/FontBBox [-29 -250 1274 754] +/Flags 4 +/CharSet (/ff/fi/ffi/plus/period/A/B/C/D/F/G/I/K/M/N/P/R/S/T/V/Z/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z) +/FontFile 1010 0 R +>> endobj +5672 0 obj +[756 674 0 1045 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 886 0 0 356 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 866 817 827 876 0 727 895 0 472 0 895 0 1073 896 0 787 0 859 650 796 0 866 0 0 0 709 0 0 0 0 0 0 591 532 532 591 532 400 532 591 356 0 532 297 944 650 591 591 532 502 487 385 621 532 768 561 562 491 ] +endobj +5671 0 obj << +/Type /Encoding +/Differences [ 0 /.notdef 11/ff/fi 13/.notdef 14/ffi 15/.notdef 43/plus 44/.notdef 46/period 47/.notdef 65/A/B/C/D 69/.notdef 70/F/G 72/.notdef 73/I 74/.notdef 75/K 76/.notdef 77/M/N 79/.notdef 80/P 81/.notdef 82/R/S/T 85/.notdef 86/V 87/.notdef 90/Z 91/.notdef 97/a/b/c/d/e/f/g/h/i 106/.notdef 107/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z 123/.notdef] +>> endobj +949 0 obj << +/Length1 2097 +/Length2 12824 +/Length3 532 +/Length 14000 +/Filter /FlateDecode +>> +stream +xÚí¸UXœÍ¶p‹»Bã܃»»; 4k€àîÁ%Hp·@pwwøûÛkïEÖþ/Ϲ:ÏƬùÖ]³Þª~ ¡PÕ`³›¤ÁŽnÌì,ìïJšš|v6 ÐÍì( t½°óó³ÄÜ­lvž÷\<ïÙ¸Qh`'o+k7½Ã?I¼1‹9Рt³9@æ0Ú4Àæ6 7o€˜½=@ýŸ'\ê W‹È‚…`acî0YÙ8¢°þ#$çh ðþ+láîô?C Wˆ€"É€(Z€í½ KVe0¤bòÿ†Ôÿž\ÚÝÞ^èðÏôÿ,Òÿ5 t°±÷þï°ƒ“»È ¶¹8þïTпܔ@6îÿ{TÎ hoc.æhe°ý+dã*mã²Pµq3·¸¹¸ƒþ+ r´øßeû/VMq i¦µó¿ÆT6ŽnšÞNÿžôŸäÿböW†,Ž‹À€…’ùýŸ¿ŒþW-)Gs°…#d?pó€..@oÈÆ€7À—`ãhò€¼ ¾¬,Ž`7È#È’ø,Á.(ÿt““À +¶:üÿWˆ ÀêìvY˜Ù¿¹¬ŽîfÿtÝÊñ5Ì`µÛÛ]^C|V ƒ$Y˜ÿ‰r±X€. G{¥Ûk”ý¿£ÿÚ%ÿs@¦p…4ÎÆÕî51u²ww} @<ÍÁÀ×DÒÚÛÉô*È„¸Ø€ÿRá°ºÚ]­_#e ø5À`;‚þÍÜ{7Ï×qnˆ·›µ è¯ ˆ²%Øýu¸!º–6e@t]!Mý7Cd]A¹BÈ +ú…à†¨:Úü-Â÷Ïg¶ÿõÿ?Ó8Øüg”"lr}],ˆ1ÈÙøÚQˆ±Õ?G èUš‡óŸÖƒ\ÿ9n^ƒQ±W‚HŠ¿DPâ• v’¯1“ú7ñBŒ¤_ R\ö• eå^ ROá• õ_ ROé• õ”_ ROåßÄ©§úJzꯩ§ñJÆh¾¤ºÖ+Aªk¿¤ºÎ+Aªëþ› §2«™ ÐÜäö[œRÙ þÏÇÏùïìÿÜúüòî—ÖÅÕìòÚwÈÉÉúºÏù!•Í^ ò¹ÍÿMìlnñþÓø¿ðŸ}úB<¬þBÈRXÿ…›¿"a÷B,ìÿBˆÆë!ÂÎÑpü !à¿¢áôþ³ïþBˆ†Ë_øÏ›òBzâöB¬ÜÿBˆ•Ç_±ò|EÈ¥ÉêõB¬¼ÿÂÿî +è?:ÈÎÁõO ÿâàþï¼×Þý߀¸8ØË—™ÀÌÁÉyù¹!ï¿ß¦i9Ú@Þ69IÈùÂÆÆÇù¯ ÁÜÝr ºý×} ¹Zþ‡-m ÷ä2GY˜› „ئ7‡•ûKWÀ3B‹[µ$(7tOu¢Ï'BÛ—+83þ©×½¯ÌÂÅØ†ß&÷|$qêø 6*}èœ1ó¼íaºåÓF¢{ž¥ä½åDy|€ÙÞ<}yÈ ­2ùg¤ú@<3ß8Ç´ºÆ`S³Ÿð|æd*ø;q„šÝµ.KI ‹Aàc‘ºû%ÉM¼ÒRÆeÁËU’´PŠœé»ÝÖ)¿é]Ý9îÈÏ€iYPÀFÄ4Ü4"ÞcªóOÓ_TC4¦#­Áúh…HÏVv²µÉ#õÝïÏü\Ê=IºfXœÌŸ¡ò‰‰É¦O c<¨“© GDY’©w}·dâŸ9k$MßãZ³íz›å³ï§¨–œyÖR.{ï÷Û +ËŠZ¹7/uÙÔ2ˆêÒ ³¬®_}­üâBl€›Lo?\šõÎO€zKI¾2\ ¾Î¡¤^à˜æÛ»@úþ_¬*QÊêhóûæîAéñàY‹e#ðû¤dY]þ}wÖYnà'•ʳ5))¬Î;(.ÙjøÆ€DW+’’£:’ß»[$ â:sH®\øšD¥êpfs)³N³kµבüdðZU–èxEaÛ“”?t˜–”¾;ºã(4î¦ÇÏÂ'lzÄŒ\3ÏG +˜upBɘËzuvW‚ ýÒÖéâ2…Ú¡\Ny‡ÅÞJœ¯ÎS+¢<‘5ü”gÿÜÍmòBKà?ÜåøÍGî“=s¦XùzµTô7ªïU^“¡£r~ðËØ¶¾ö+ç¾aEËEHt .+ÚÈ,R&>Ó„c,[ö'‡#e݋ڛ C-˜7ÓÛRL®-+3>û’Ü6ŸÚ‹~j8pÛm;wW,Á¶òua³<­.WÁèr­Jo¥T |²›¿½ïÞµpuhYK¤AÅ\æÁi$l jžš_‰­iŒzç…#%ÐÅUD6éiºL^Ò`¿ÃÂe#Çð{da3ð«+Ï4(ŒÌ²!¹ŽµbÉ®?ù®wJ•«³ìw)¤?ÝÙ[#+E “wÂÛ‡³áÈ­šƒPrGÒ+-³XúÞ±ÆkX^9ÿù.€Òg‰Í‡nºp‹(Íÿszü—yÎXŠŠº¢Üª°ò9kÈÀÒ“ 5×õ—ÏdBæËWOÓüâ6îÏkÚ­\¶¯3`Þ÷ëÅ´¾Ø_ûi]F‘£*Ýß‹·jèk¥;•½ÉÅ,5èb7¡³®ãˆ¢ÒÆÍ ÒÙQ"Z†»É¿ü±…öøóG€‘-ã†õ7¶a¶Ú”ºY²¢hpí/m«¤Oò‡ïïôµ\žt*¹+e–Ú{Ûæ0¤ˆ…ʧ)Ÿ(çemŒ4«VÉô†gN÷o-oÐ+yž ù=9ÇŽÊ÷ÊŽó=Hî¢,ÐV¶(vÂão¥žF-OÂzí&´Ào±”tKë`ˆÞ|›‡Ë1çæËbÓ +stsŠRlGㄾDw! A ¼U—Sþ¬Ê\&— ûƧúûrŠœákCœý…ðÀ³ÜÀÉIlV+²Ç9qõJˆþä€ËKz9j]Ñû‡rWT''Ä)*3KñÍÚ(>—°BÃògýÏ ¨}¬G+Dln‡dQãö$Ú{_~S¡+‰þQb LðԬ׵ÔîG=ùõì /›·c^ërßt~á¢ááNÞŒ6¾‰z°¹r1–ƒÎû¥M÷³BôJZáGL×ÜŸËåSYa×ã.¬!Å~ü:å9÷Î_­úOÒ£pãy+ØÑUF[(É…Œð²õmØ7\Ö‡º©Þd”<–¨O^ŸbÅ'.s%ÑäÚÞ¯Õlà­Æˆî"ÒPSJnF5Ÿ#òU~¹>tYÎÍÐåäÛÌÕ&dm5WOìXŒLGÜO¡µIq<ù’ùa‹‹à÷ ¬ÙIáïN>;…¨©5î-Zâ!zÿ¤#Öô +•ýiêyZ]Ñ š: égW\é]Í4žŠÂÅÊàŠ‘ÒéÄY+è¥x(§7³ A‹»é&N(Gæ:B|*FLDʺú}«% bX£Y®ÂLLJájîMº©è;¬©¨ úYÕõ-Ý‚,[‹Í‡ +ƈÎáD»ÕÖÕÚ˜ð`žBã©îe¬SÙ qÛ©(._³0ðÑV,Rh½vxëbj–Ö0T2\Rª©Æ„®ŠúÐ>céû bÁý9>”t÷qF£±ìËPá"Jw‰S:QÙÖùQw²a¼K%=Ò½GC÷«Uʱ¯:¤×\1ÓQ=œÈßYŒ<,mØGº6¾„/k‚¥Ž…(7„Ã8çß+úÀÙ˜èìåltaæiÙE†ÌN~¿Þ¬ßøAý¨\õ,äT`Ù†r¢úÒQÐd‰×AÙ~˜`úŠ?.^2à7õ>󣲃ög»—ôÇ~à¢ØQÂf]Lm¢¢‰»øãcÀ&Ók~‹—ž°á١٣A£¨ËJýª’*:sôIùÿ É¢‹rÔUüíAÎÊj;nÐgœ +WjD²¨Ý.Šõ}UZðÙ½=joXÌ×d~ œÒ8ôm 8==¹‘ìb™£‚RêËŒ!^Ùvõ—@ëÕzC‘wN•wFpñìÚýt£k!²™ß–4²¹ÞБîkGan=°uî¥WÛÙEt¤,•ø©Ùwª¦[Û\¯§'2ÙÇñ%»½*yyáUÓìçÑÈZ”RIú¸§”M¢qßÁ„7x ë«»÷.%vãÓMq”eíæîí ?7”Kò6Ç‹ôµ@»”+gÆ6Ú¸~Íkeœv M]ÎýcÉ„a‘ºÐ@Þ¥þ¼–¤Ï¯Äˆ•Ñ?«Wñˆþ¢ÁBS¸ª|$¼âªæ-ÃS?ýøPzê9:ó‡ŸÛÜJ,B—¶ü¸‘N—`Š˜º7šQÓ_™MV±Im)„#XèC~!<9ìƒç@FüS[Š[<î¢@¬œ{rç†î~¯÷å:¿ãù[§’öáŠÅÄÇ7·âðDWÀä“Z)I±â ·&þO]Náá{ß–èt\Ìø›MånÈÇÊ1ÿÜ«¬h)>Œ=‰tðs2•çY£Æ—@ád˜O˜˜K¬'ˆ YéRlD ­—Æ(]3Pfö¡àyi•+Æ©V5±J§s5±²˜¨sW9ÅÈ%ÃøT­œ—Û¶xM¾\Oè<=—*èÀóå¥N‘õR¬)Ý/ˆŒt"qm½ÇK©ØªŽ P$tø")0õg'~¸Ÿ[APHþlá­¡o…¿wDÄg±ÍŒÐ±n|L™T°¤”ƒ9Ãô±“´ûiÍ›”~˘0ßoܤI=d>“Æ®}íÇD²YÙÚ›6/qŽQz£ÓÖ8û¢„iÎNESú—z¹Ðg4%‹›ï1:E—J?\ŸN«èî«ø¾sºF¹Zm@å´F›· ¯î,Ât:gÿŽn-Úð>¤üM>1BK?€ˆXF¡ ‡ñâwP¥Í̓&z=³”C'îÁõ9MPÌTáh×îšî¼û·FnMuØ*ô¸k§…)†Ä{ó¾ÅvàumàÔIg×  e*4d ä„yUAÎøW5¥Û9x¦S—4ü»¨ëaÇŽ·vîñ™r&¦l(QLé…Š o6¿âmim\ßoð@]ŒäUè¦*&90ü[Möo4“­-›ê½¯ëêø¿®¶ïú¸£µsΰDü ìK*¹“K²Gwê¿Ò˜°æåõ¤³.ž2Ęi]ÂFGbö8n?ZzÜÉé+nØ~øúc!t‰ÿç¾ü˜„>Þù¡ü#oŶ r¥Ü{ÆÃAÄŒ~á“\+úcyïèÝ©E6óPürH\§ìÜTß! × :ÓZnúýlÍmB$çdß|¹þÞ°ö(@;býj¹?2“êV!à[ãèÓÈ«®•ÿ)Ô&^ÝòãÇòÄxsœ¨jyÛ°”øá–ás·9Ÿ-è;G\Ã~ ‘ý"d¹{uÓô‰$÷Åxë"¬æ}ý‰‘y8ºôѨy?¯‚'Å?JK`ÞÖoÎ…Ü}£Õ”·¦3”K,·ë‰Î€^&'‰PU7Ží;Ì´r… DòýD<:™=…Šb¥Õº'ë¤ÞeÓHV¨ßµÅÀôÏÉÊþ,èÛ•½½2ˆšRáýÐÆQ„Úú¹ºeX-*;’ÐÂÞö$)Â%æy<÷0!›Á„®Kx£§ííÖ …‚‹é/Î[Î Xb¾á¤s)gíàò2á•3 +Xʘ¥ ýõ{Wô {ŠœŽ5É{øQ DÕ±1Óï×Êá9Òb"öÞP5SÞ‚™ømuMÜ:ÍÛ÷òOóÅŒµÎÇH–þ†ýE|4¦n„ße+]¹N, ³)–M—¦Sj¾E’³¸M£dôËV5¢1Û™ÓD(UK@àœÊ*ö4Ü¿)X€²*šÙÔP²iv¾¶‘5 »úãÅ”’¬ùî;»Q4Sè…¨?C¿#,*:–ë{Þêûøô¢V$5Õ=X!ÇašnÆtÆj¤åiA@ñ'3§›c]£uÂNí1Mþ,5½× Ì€ÖÞP-€ÛÓh#â’èfj%6gÂ?.°u¹ëÃ~&›óL£~P”óW- Äyà¡FÈ»$”‹T¶B)<4 „nÆ“žéàµ"Oœ7 Î…O2¾™IvשohgÙAÏørr ¥«V _eT‰†7,y&Cã\­ŒÎ4f¬4Â]c,ã(ĵ–d*Q.CǸê²{ïÅmVÜàe•a–ˆ0áO]³¥‡¸Û3~ÙÔï<.澌˜•»cãþÒ™7êz7î0¹2ߺ‹˜ —y>L$G:ć‚G¿\gs£Ð+¥㪕ÔÜTCÕCýõd;p?clw†À3[_£¸MfÐtÝD£p]X’°±`òˆk{æ®*ðˆ€Cüý˜O³‹½Úh‚ºD°y’”-¢ ,[?ø0Ï+Þ”^…‹Éƒn1ŠÊ©£Õø +W‡Ùš«Úk{‚õK +µ„AYiV{ùðq;sLù;ÃÚv÷ôÙFº~gÞcSÖh<–üx9t0c’ÉF.½Ï éØÛ Ø,–Z +"áÖú+¥02]°$‘.5òØŸ‡H8ó.2¨¯bM[UPÛ@G&^OìÞj¢œÖžŸ¼CÒ±‚‘¸Å«­°¬ëìvª&àiÜ%·ƒ4­>?ƒn`YE”j"kì]ÚtÏ™Œª„³Ê[;jŠ%x ~äIºŸs×j·>ÔÓò/ôþÒÒ=½s„!»ÙËm>=¨m´'Z PÁç'nŠ'è –™–Û*åç%S 7©„„#8‰~⻬º GV›Âùdð*|R¡{YÇçou~P»d§ÿ  +82K¯*æ]ôOu¡ ¹—dÙÁ_Ä=¬œ áðý(‡a¨Œ$N=Vô‘¨7û˜©I/!XÈU™Öõl/“Àîqç{¥“íg|ãŽO;¥´„Óž®ƒ CÜæ|§ŸyHÁÌ:~ÇÌ\Å9„Ï?x¸×o³Äzpûø÷Ìš ñÌ;†y×Ö2áÅš{!0«§ÀçùïǘžÆ'Ø]NV’ɆtÄQr¬iwÅed²¬qT{ ë])¶ØâáˆÝâ¡ãJÍ&åL,xO/fnsºÐÏR²0ÞrZ«‰ë„{Ëâµ?ÍW9ÒÞ.ù4UG¿"K™–'+” ¾å‹\ æE5Lge¥úè"N•XG ׿–!Îòjß»¢ourÒ2sxì\,Ù­ö ÜÚÓŒR¼}T‘6v º›Î¥DÝá=+Ýö0DAé..^‰¦Üí[ÉjŸ–DËÁq5Ý'ÛRšõê‹èC™ã:ý`׃@ ¨7«`^GŒ"«lg .¨ô^•ì¤)ôW$|ù̙£ŒÒ§ÿã!“‘&tá‰2¦P9†øZ¢dbze§U'_]@g«z¥Ëy+VÞQammÿ[Ê`Ö»˜"@gæ]ª^ä\ƒMðXšvƒ?g2±ä…OY,9ÇX>hŠãS°«{ê÷ÑöÜÙ ïÚ>”`Ñ +'é:Ú8h +?aä‚ÕËhXW  +€9†ü‹+EXrÞ}|ƒ÷>iTrëûü6 Ãì³MÉV×üsfdÖÐh(a>(Ô=¤Ç­‘…›®+¤u“&tÊ”•åÁ6l_:6^Ô™úúœIõªÏŸ®µI|y¨?&‘üR†‘ªYŒùÞ’upßçÉöG§{CîLæÏãO‘—µ!÷éx"A°­‡ÜGþs¯¹MßHáO»ç‰4‚ocî¥&È‚†¦‘}Hž-êø»†*yìgY`c«,À5Mw_aS=\*]#Yû%¸B]ø\²Í ZU~•8øý¼G6ùSOŠÏ\W ^1ÍÈ%y£Ñ¶þ¾¯1¶1z¶þŠÎ§Ã7zlxèPžZ2È›äÉ×?&#Û6kŸµòÙWj?&—zršÐÉû«å¶d|N”õzÜ:¤Gò›ª½3âªäÄ©R}'ÿ¼N[j"·NïÑQ.œZqqªÆ÷Öþp^IªQ4üssä£mêƒx\³÷çw šÅCgu®+ú\ßMš Ö5öz«S9!Ïpß²UÌW»>–ËjŒÔýÊqÏÞÒþŽÒ6oºÖ_iÏß°–}¡¸6ý©jI²$l[Edõš¨¿ˆ3†"†”&'wRÚÊY÷Pc† g«kÌ/«ÏñM ÑÜŽOþ$~ìÞC›.™Š'b#HÙFbÄ$üYÐÕØÆlÄzUõs2§¹ÑîˆL—¥¿ÈÖë/ö…$J+ÉÛì¼!¡Æ1ÄÑ[»$G†UÉÃ>¬d‡a6]RxïQ­ W‘í¨GÕØû#œþ&ý«Ä¨ah=KIL×,\‚»înãs˜{F/šC†>ñÜX*k{ÞG' * »=Çò=íºÑÀ| ID*ÓRÔéä{X§À„¶·³»ªÀža¨©<œpáßrЇákS{E€ðáîæ ®Κ¯¯qbÎŽ©isÔvÑ[çüZ´ÅfA"yu§˜ÑQÚ G¶ç(³3~Nâ^[%FÁߺkK\; ¢geBF›{|õÊ'PS—34kêY“~- y¤Ôš¦>Eq±_=°Pz¸Ÿ“᤾½,ê÷;N…méíÒŒk¥ÞøÚŠwSVÔ‘û£–ýø®¿…Ú[H(‡Æ²>Ÿ!‹¿r~#Ž1.½0ƒ76/@$oód‡D”x¹p œfÍÙË]ê[v„‰úŸÓüÀæÅ¥ æ·~C“|ƒ+½á4‰ûK²ß>ñº6Ó×[“ü%‘aæÌˆz}À^Û‘>‹*ÓYÃB1C8^‡á0ŸT¼ T'½-°"ïÅÉåÎÌK­v“ИÂ?I+6ozüX&B%-sK\:õ5dfiºÏ\s¸_#¥|ÿ“@Íf÷…FZé›öÏü?´” +\~’»b$Àl8LúOØÃÛÎ^ßXCy´÷oÒŒÜúwìpN®ùU–Ó‰=wU˜ÃöÑÅ_¹Ür¹`psI{Ù´­·=¬ý2`Æs¼¡×Œî=NϦ¼Ü²FT¦íë—@ÿ5ë©*C³¡TGùÅúÅV[þ;-Ê-ÇK‡¬í”’Y2á<²w—ÿΣƒ's²XƒA= öç¬NÕ¶²‡–èõšè°°Î, +MD±@WÊ4Ù*˜%D9õ˜bhteø 5<Ìæ˜Æ %jö­½ôólû¹rÛâêÓ(Y”Ãçà>¸Gœ4ªö¡á¯3ãm>ï_0‰4qRªÒ$FÞIV(gqâœWµÉT qÃÛñg'"&ÆÛì÷pú|ÃîåÅb¥ØÝÞ‰èZH3m;5º +<í;¼«j’öéT +î£WR}Šƒÿ£„÷Ñ| ú#w´UÂ=‡½ ºiÕeÎ̉~ZÆHæÓQl’»|þª­¦èHêݺžDUtØ,œ4Zð½Þ×õ›{#GãÔÑLFV!tÅÕ~ô$}¸ÅCQ–,}+Ò!¼ +(|54Ün&e{}¶¥áBZøøœŠH{,ôo)•4³.úßÜT‰¼31ÄšO3ÀT¼õˆÁ²ûƒ~ÔûIUéH$#¾Dî¬îЙ2‹J¥Ó†A »{Õ+£УËôáÝÁ÷†ÙÛ6×\7uß"ÓÞx|òF‰0þj¼°aÍ +›GÒ›Æeʱý‹­"µ;KçÞjvÒ~œÛTëõ3µ&g‰ò]³ ‘Ÿ÷ÀÛÃÌ95ÒŠ, íù@ +(™ð@¢üÏšÂ/ãäÉàÆìÛ}›e7è?{ËéÆ%|‰ lG¶Lç„…°4ù4Ô,p~—`Ò(1…O}çúÎ¥\‚‚ÉSi­uüe¥ð‘-4DŤÕou¨aÈœŒÛ(Vå&‚N<‡õ¥˜l—àÝÓZi^P¨.CøÛq8Ê\"ÈMŠw}¢ «m¨ó®B ŸR茊a“qÉ›³§ÎŸ=:T3ƒëö•À¡’þ¶Å1S­%þÖ+(²hÝQÎÏUºŠÏ¥ÉÀ•fÔï8¿…KÚŸ/<5ѽ3æÌŠ)ó"Å×Vû£çKmó‹™úòæ³O^.\b%/#…£øy™‘‹êðâ[5õâoÃ,— ñIåónâÇj),Nzó3U³ÕOúž+t7y-«†žsðQNãÙÁI-¦òü–±¶=KÒÕ‘axÐZßÃl•œi.®õ–qâOaª{㻥Ö÷Ö +>Z½jËf¤šws–% D2Åv™4|ص‘ã‘îÇÙºDÑ­ӷÏFôbEË~¬bÕGÀüûE˜ŸMϱóÕ‡3åíÓ‚² ›< çZïNB<ªô(\Øé¶tH‡ØçULlíNqO§ødÛ‘þ?'©"·™®š£y^RNêÞ·8~)=À+(M®17?gS•­¤?J÷EÒZ)©JöMX[\Îåóþ2 ö™™•B0·œJý•¹s’M*‚h(î/œÚ‚±Ÿ> —Ýø°sõ­Å}²×†iéë,jBz7(ŠÓ!È7û0ã7ܽ£üÚ¤ÛÍoĉèÑök2—øåLs(d&ùßc%”‡†;# +Zö–~~è3á6–»p•”ˬùÓ µB!éèŽPV+ªªË´:eiò‘MZôg:ùñ¡GüAuuI n5¡ä"¯øw~E 6 j'lë©ÒL¯4òh–›çIæ]Î-¿>𳯾&®gÞŒ¥k´U`ó9ÈÚÌR£ÃMdŒÌqX9‡§œî ÷•Œ-@"ÝKæKŧjý(\ãvÚ?!­¸'!jxk|z)P¢s¶ R(hGîú­üeo«urgJLU+m¸S’ñ­àÅçS5áfT‹I7Ú"Jß±Àeâ]_Ïvœ¸Ÿ[N n¼51Õ‡Í n+lÀ6ßÂm’Á`ù‚¬&Œ,s벟bç4¿pi™~zï³µœnøÝu × J0sŒ‡)ÃNœ!­æþæM\ܼjDÚMÂ)%'¶Ø}YQƒ€*`–¿gvý`#½ ‘øTV6k2fÌrO"–5¬qìsrÐìÚÓØ$É•BM“Ö-›J¦Ó“ѯ0F™ƒDÍû9¹U4¶!Õ?`œí½œ†þ¾‚—Ú4¶ÂÓ@x/ßÏm'…Ój÷¡û»MBå­`í²ûÍí¨QıNÎ]œºŸ‰æs¹i ©Š÷ÖNÌ8qkKæÇò·ÖЮ<3Å<„’ßxs…pÛpíKHsuV‡+æ`‚ÈÇ튩1ïÒÚÛ"‚áCoÜ'ßîï¯A?ý¼þ¦ó¤±Âwd5- ƒydUÏ ÎÚ1¯—Q¡Q ö• úˆà,-5ýÞ«x:õ,à!åû”þ§~ª9ч¤]>)‹´«‘/§¸°¶)0óáÙäfÜçQkôÀ,¨ePlÈAS¼íŒ‘§Ò?g‚®ªÆXŒQ§P;š˜¦AË=ãQyv&ì66ö^ÄÁ™¨—ä>AO¼JYøæ!Š÷dæ2O]Е¼Ê¾Æ‚g™ûJ~ /ß>FZy'—~%Òœó!1¬¥;w¤u…Ÿ{ÛN®ÿtáJoϘÃÎòCƽf¶K.:Š­ó/pï›óÙp~¦Í ÎY ?ÙÛýÊs +òÑ£÷wn1ãÒ*g}¢h3ÎÞÕKBÖZÆÞÈãÓl`›0.sw(³Še J’vLj)\âkŽr^—X£Çàc=Oµž[ÔË(Â€Õ ž÷cp­ ’ñ·} ­9Á=®Ÿôƒ¦v +œÃ^Ñ9·GwlÉ]¨£ \¿tÄ8B`TÚ„,_`¯Õ%A}…MÈÓº{}E"£¦´1§=b]å!¬JÁ¤GK…µd§sb~r…Ôxp–#o#ºJ©6J’í­+àñºÌÒêëG"ôÜnWÍ5—‰?2b8p\Ëðó¬„óJrtµSKŠT8¹Ê‹óY$†M»r¿m²>ifN‡ôDš" ²1Ò˜£IÝý­TÅI¾ÄÈÉÚ©l¯| +ÓXPg¡Ãˆh¿¶¼@Ck}ÙUœâ³ñœÅ¤—×N 8qMÄ‚ÍOÏ{~ç2’6¹߈BbRWÏtF÷´ˆ³O¬~ÍSÜ4S»†IÍÚ¥ÂCIš¨­'zß¶î}7•J§°‰eȱEÿ»è¡íûCË^žØ9åœq6’d¡H¿Š£ZH9Þ™F’Þ_èFqòM^ùûʦ:”Î%¶/Ùc4‚ݳ¶ìèïh–þð³ØOjtTüÑ¥ts¨Û˜MÄ,+ ßwФ’I¯â½â±wo½å°C®´í[Ѱ¹•›¼à«Ì¡¸ W'®I+Šn^XU¹‚¶-êokîL2)-ÌF…h5L¸…1B‰US%j]-:ºú§Ò¹¨0W_"1zÓíÞ¸ÄëREH„n’8(ù½ˆ šï‹f ÛM>ÏzÉý}}~×Ëè ÞD DܽÂÎoÛVû¨Ñå´&=æÐ'6ºìÛq¦§5l±Dx@{ô¤±®—•ÂUÕÇ»@&¡.—¯w‹éúAïyn~¥}ÒS€F2,hëä,´¢Š¤1V#ÀÆ5öæï!êm +=¨9ÀvéÕ>böÄ9m>”/ç¸Ðp™1¢dƤ%.$ %]l8X3Ý.¤è”жÛß|ŠÎðõ=ùfê$>Ç 6^‘z²Þ›Šb–<4ˆŽ$M–Å»ùìá²Ä$µ ÍΑlÊ{­Œ JTºù×±7K7T£(J£å·2éIL½x—ä¬ñŒnŒ'&T"y#RTþ’2æh˜U7ñÛˆ…iԞϜ66ù˜EË…•z{n×ûèg܃žµT±±dVccIu=Þþa’9ØÍcÏškä¿þÁ$¿È¥©w£@Õ +•K<í5x³í6¶ðú­Ê»I:ßÔ‡üH€F|q†%¼[k*÷bDŽîŒÖ?šî×2öÌB[œïn$׫˜­á0gÁM4$!I|ý¡‚‚ü ˜†;(›“§¹ž¨LI²C£G=*¢HÎw«\ S^õùÁt;æÅAkQ[ôdä쌺4dàÁÐAÙ!™E=‰‹¥™gúP™‰9>/‚缋XÖIã'f—¡jZìJÍÛ—öÆDÜY‘sïv—yÀXOÿQªåO±É†_WtË@»4ÎÉcÜi ‹Iu÷Q¾ƒ]eÑ9Ÿ9H|¨FPÀëçìÞW¢ã®c¯]¾+,ž‚/¡gA‡ÿ›LþÄÐN«;Ë¥Kݱ\,@ÁzmÍô'1‚è¹ †D‰“Ú#ÝV‘Øó(½zû÷\fN}‘iƒnfcÒ)ù_åzq­?þé;K•­`P9XEFuC°@Ÿ YÅwâ¯Uý n°n(œß[Êß3ZX´¨jBŒ¤àhÃM³SJøU+’ä 7¹•qgìµt¥©AÀÛ^q¹RZ¯Ö‘œ9ÜËïÉ\^¤—‘ù 9lÌ5›\9Øvú-F™•ÛAºžm å¡ÃU;·yGò1šÖO .DFý»«S7Ò”KD÷7D?¾/Ð]  +2ù\!ÆÕ3¤x•P„”ß´»3ÇKûƒ„e_<,ÿºåœB»×UE“G<®¿”Ó¸ 4g²m>Cá¯\†Êʘ׌ˆ«Ç]Jp€±FDi¸÷Mš¾ÆÕ2Жçò«QÁÀÐÅØ\ó§ ØôX'ÎÞ¬Ko˜1gÏ_Ö´\ÕûŒã]Kúd:à´âŠxC+ù=å:.“ÙxÈ}ŠÌD…¡œ½Ÿ/3às1º˜{x™/;6”ÛÝuž%º7¿`8¿ó8ªÐê‘m«-Ž—`jûg±…Åf‡à͵„›²qTTÖ›4H(Is£±®÷%„5ÐõpÞÀd'H˜¤/|Ö©¸|ûöÂôM°zÕ1/Ø2[¶—»ã[9¼=($ Ö‘€%XxP;Ne6/CHà=€¶TúRQ%&ê*«³j§c/²J¬€äÄ$!¾<tO]TO^öð“>ˆf)Y; ¯ž€¸ºm4=ã¹üò¸¸Ã¨“5uHë7ª¨«¼½fùœUÖ€¹£á½´fÁYuˆáçúúÏ|qóuN:ñèxÕšd¥@ÌruðãMã85sE…{}œ}'¦Šreâ—pVÌú &ÔpÆy56’ÍØ+·djëMà” âÅïîf—™Õu2â—‘Ê;¹twYNæ ]·‡°I §i[.éÖyòãÌ÷#¼(­I3½rZ<ÞN¥yf`˜ô`©iŠ÷ÎõO5ékÔJä½Qà>P$?~$íþÔbÉ¿üƒ¸B2Ò•qî}FÞt¥;*@d–XXà–ë7Ú\¿é¡òðU1]Ô Š? Àx…)•3˜N!Ü{wMp·Ó餤Ë!ûT>Þhé’ó¥rBM7d)Šò$Ÿì +¨À’Gb‚¡äò¨„óFاöÔUØw +­™%Ó}©›uRÚ¾Ù6QÛ#ƒëk& e:ø}°(¢x3 ð—2¿8pÀ8Ü9žfG ;®Wª¥‡ì„fBËC‡{»äkk! +ãЇ»¨ÔÔ-FâᎱ€!²2âQcôi~2Çxõã·Lë"¥÷·Ÿ‡ .EñyÓ³”ëÃõð­ï§@¥m1ª¨^hŽ\p$ïÅ4`øë6Õ½~ïê¦?NÉ}ñÏþ•^¾wñí©?pû ‡Ìmcð»3öÕŽu{|íôcïcÉù=í.vnBŸ#Vzøh'•8eÕóv‡¸]$:¹=!º/ò™x!Ÿß“·Uî<Þ¥xL i%n'£û÷;ô1’ËyÙXØ\z™: Ñ®ÒØŒ4›û÷öå?ýPÏNt 8Ï18¼P±[ú”r£j³œSÑíNÂÖã×Ôþà*Œ1£HV~%eÎ<(r?ûØ[@¥á<”ÖêYý9W;X5!·üxióñ÷$6wH=Ùá´ÿóðDY(Ã!Á$]ïÔg¹[É‚kÖ“„0†'—Öowã„<ß„@#GØLJ¿4Ù”ôo¸K¬ ¾ÀZ û±€GKž©ÅÄTíòÝmd)DÈ4Ž(§åV«/ÚÑ.ÇËF’áä3çÛtMØŠCvó|y4˜aý>ñZ}+üÙ WŽzÝ>×¹ij‚Ûc•Jc^yr’£É+Eùc,ÅùcK6`ûÈ'ÂþZÆŠý£1¥ü`ƒ |*±ŽB{=“3­&ÉU}nꊄ¤¨MU»½gg³ÇÁ“œ®X¨*ì,ºíÍ­FL.ûi¹f ¶§ë%¼Ñ¦øL÷ˀ̈r©/<ü"mð:Ï´äå0§]瘳NŠp‘$Ql’¨@¨ãì!¬ç;¤‰­„`ZbjùbñäC¤"àÛÒ¬Ó>©8ÆHЏÙßù0»e„ìW‰™¯–((ê=ùV–YMLä®;Ú ê à "O"~¿¼)C:[öé3ß”nuÂw¡š¾ÙÅöžŒ·Õ°ô‡2»9ªZeújj¤L9>x$SH„Š\yè#­Ps¶MôýZÓ³c¡yßý®)…ãúB CÊSÜLüz°§¾¸ëIÿ“ˆýõ÷V+eî¶\øR6pä’ë‰Þo82/B}F„åVcêN[l É ;â1Ž­ _BßW0„žÏ…ï<(Mÿˆ`#ˆ3ö{L¸Óßd¦WI4Bö2F÷4IÀÌuò¼"Tj2Ûí ÚþûGÉoð‰$™î‹¾YÅý…ëS=¼)ߦÞÚ¾ïóØÛ\ö§¿³ÝT‹œ.„w¦s¥Ðu.˜#äo{ÛZ¶„é{Ö»Ô+½™ñO¿´ýdÅη֠Ò¢ofȶ?ÿBÞnÞ3Jôfõ9<_‰åë%î¬Æ°ìˆéü¯5?!r0›ùU†³8t‚´ ÁCGÛ¦®þÙß³ÖH#¬†ÑñÓ™\ò—$KÛâ°6ÝÇÍAFÞ!07t×ÈOÊ_ÊJB=à ôîÚ®Ew…ò4q}?ò<Á=ƒñ¿g'>_ÛÛù &qÏ<ˆM/"˜Ë$¯#L%}Ziýìf”¨¬ÑÂk `¨¼Œ›´ütnOš순q²'‡[Sú–Ô¼Qæžßø¦ ܜվuêTTü²Uyš>ßÞPÞ‘åä0ÕÀýˆ®® Fä3Rlbòó]ÌíàBTø§´ò/-ã°=W‹,ÇÒÐÊBÒzsòš5å˜Åe÷9AV:Cœü óà54 d +~è—Sï +å®sÆ$+:±{â¡3yLhÿ\”Ý?sf + |ƒ"÷ÌÚ<)<¹<·6±ïÌ*Éœ´29CýTa¨jþ(;¢xã ú©­$q*7ë‡ 1¥¥[Cx•ñÊWõôP¯x­ÐÈ(þ“Ö³ PžÄ/©Öƒ™ù´'¶J§Ó[ó3 GPÓr»OŸÿOÒŽ½¹73"'ÆÏj[K·f_/>eÑ9¼Cý,Þ˜¤f¦õàmµ0Ä?zàœ4¶ÿÅÔ;Ù;‹’í1Ý꺘Ïo'¥ó‰ÝÿÕ;â&þlÃz©òSÄÆÆz~á¹Ð–9¯Ð{óïœÅ˜Ú^¤,7E÷~ÄíH§IvéÓ6¿cKP;bqùõ:ÚŽ¶|W\#¯gð¯0ž‹•ï¸E o–½òrâVxË»©e¨©Îîõ‹tDPگ蛩éÈ”Qh 'Oý¦Ìâ‡ÐGGȺ£Έ©d¬Ÿ¢K¿ÙƒÝ Tµ$ei k”2lŸhê#8eùB4»øìÅÖoŽÞnö#n9œï&Ó<>£º0@KBýz˜[j4¬[6¦ÈgÿĹþ3çûNÇnAmò ¸åš’þÀ`CþEUæMÚŽ[wöò%ÙJ^áÌŠÄÒÇ‘~B/W•´h7·|³Ÿö¤k‡ ±Í7ica2RÈÕŽÄÊÔ+«,‹qÊcj°&h©îvxÿå±Q1U³qZãÙTGgõ-sZ3þ›ün²Žs‘Y¯pD\Ë;•4*ÇK.jó¸\ân˜¡áRÜçh£§r‡¨Ñ®Jác& +ÚäÅ¢ƒBãÏ3Iê1fÉ0néK½ ¼I~‚]9ÛE“ÅždK$"‰É>Ü4m_³öKûú´MœX¤|¾ÐLZîgWŒn}XŸ®AØGøâ~¦ŒuÛ€å}ÞC‚{øñÃwä•—Ÿ=6Öf§ÇUÓÖÓãéïÂEQÚSÎ éÚ1gž¡Ödª8ÿ¼y\ú-ºE1ÑØMt[>"F@zZø~âuǰ缹Û²ÁöÿðåÿŸàÿ˜Ûƒ€.n` ‹Êÿ] endstream +endobj +950 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 5673 0 R +/FirstChar 33 +/LastChar 125 +/Widths 5674 0 R +/BaseFont /TBCWGF+CMTT8 +/FontDescriptor 948 0 R +>> endobj +948 0 obj << +/Ascent 611 +/CapHeight 611 +/Descent -222 +/FontName /TBCWGF+CMTT8 +/ItalicAngle 0 +/StemV 76 +/XHeight 431 +/FontBBox [-5 -232 545 699] +/Flags 4 +/CharSet (/exclam/quotedbl/numbersign/dollar/ampersand/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/A/B/C/D/E/F/H/I/K/L/M/N/O/P/R/S/T/U/V/W/X/bracketleft/backslash/bracketright/underscore/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/braceleft/bar/braceright) +/FontFile 949 0 R +>> endobj +5674 0 obj +[531 531 531 531 0 531 0 531 531 531 531 531 531 531 531 531 531 531 531 531 531 531 531 531 531 531 531 531 531 531 531 0 531 531 531 531 531 531 0 531 531 0 531 531 531 531 531 531 0 531 531 531 531 531 531 531 0 0 531 531 531 0 531 0 531 531 531 531 531 531 531 531 531 0 531 531 531 531 531 531 531 531 531 531 531 531 531 531 531 0 531 531 531 ] +endobj +5673 0 obj << +/Type /Encoding +/Differences [ 0 /.notdef 33/exclam/quotedbl/numbersign/dollar 37/.notdef 38/ampersand 39/.notdef 40/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question 64/.notdef 65/A/B/C/D/E/F 71/.notdef 72/H/I 74/.notdef 75/K/L/M/N/O/P 81/.notdef 82/R/S/T/U/V/W/X 89/.notdef 91/bracketleft/backslash/bracketright 94/.notdef 95/underscore 96/.notdef 97/a/b/c/d/e/f/g/h/i 106/.notdef 107/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y 122/.notdef 123/braceleft/bar/braceright 126/.notdef] +>> endobj +880 0 obj << +/Length1 1454 +/Length2 10492 +/Length3 532 +/Length 11361 +/Filter /FlateDecode +>> +stream +xÚí´UX\ÍÖ¨‹ nÁ¥q Ö×àÜ!XÓ¸Kpw‡àÜÝ-8î×à.‡õ­ý¯ä¬}yÎÕ~vw_ÌwÔ¨ªwŽÕÔäŠ*LÂÆ6†` ˆ#È •S•²€Ì¬¬"HÔÔ¢ö`£¹ D äæyxØ`Ãׇ×/'/‰ jcëfonjæ ¥ÿW@Ølon‚ä@Žf`ë×5Œ@V#s°£3@ØÊ + ü¯e°ØÞlÌŒŒÍ†`SsË¿œ¤!&6®‡lÿgÈlïð* ûG“ð*il±rƒMXäm^w¿ºüÿ¡õß‹K8YYɃ¬ÿµü?•ú߯AÖæVnÿ+ÃÆÚÖÉl³1ÛCþ;Uüo99°±¹“õJ;‚¬Ì„!¦V`™•ýßqs sW°±¢¹£‘Àdåþ'†ÿ·Ékýþñ`Q“•—|ÿ¿ŽöŸAE9ÄQÕÍ `ý“ýÿðk‘ìÍ]ŸY_« |M|ýþÏ“îm&1²16‡˜Ø88 {{Òk½À0‡ƒ]`×WcfˆãëÀke¼&6öHÿ:××£g1ù'öod{Eó?Èþ¯Ñ?Ìþšm ²Cþ}ºÿ x [99ü pXÌÜlÍÀ?!Îל×°1þâ°8XÌþá|'ü‡^§ˆü¡×lÑ?Ä `ûC<ñÿ+€Eâ½Î“ûC¯™ +ÿ!î×LÅ?ôúòÊèõ¥TþЫ‹ú赡Y@èÕÅð½î`ô§‚¬¯[ÿ…¯ÿ…ÿª÷_øº§é_øZ~³¿ðµ: ë«’Å_øêdù¾JYý…¯VÖðµY á«•Í_øjeû¾ZÙý…¯Vöá«•Ã_øjåø¾Z9ý…¯VÎá«•Ë_Í÷jåú¾Z¹ý…¯Vîÿàÿ~ÝDDl\=˜€œLl¬ÿräðpòxý¿3Õ ævN`i1+++7÷?Q#'û׆vüçŸîõ.ÿ›˜¿^0Øl„´0kcÄ`‘ÜTì-ž7QGï@œú-`´#°.•ùp•kÚ¾ñ‡*˜ô3Ó¼#éøS9‹± Ç:Aƒ°ç€‡ +Kà<æ*}Nš +Âo£C=˜Á¬þtëŒÐݲ-ÛÆ÷¿)¯Öœ;à*e÷\¹ÇaoŠçfŸ.¼-¿Œ­/ §Sn'!éfµÊ&‚Õ÷ÖbFî$mòl +ñtÒ®°ŸzV¦,—QSy³ä`gRß²Ò»šlŒ!¿Z’-hfòH½TÕí¢“39Ï*¦ÎË£r}ûf׋Ab1e‡ÍM~Ä)Šy´>TªZç¬;ì71]6pÉR_ò&¯S†hþh#¨Û‘þ4B »÷s•vŒ÷>yÚ¤hoÍÎø‡Z-Ûý4»ŸcätΈÐÇ2=S‚÷~¸ÙóϬw§ŸOq¯êG±‘>!$À«&а´¨uìw.d¼‘Kqï›âêA¼BÆdV÷àòËûÔÃ,°‰§¶Py–)%Ú¤‡w´÷¥¨'ЗjJ«÷ë]2“ãΑd€½{rº ïÏEbŠvs7Òâ•*Å9ðžÜ˜ÜÝãdpIム«¸êlÿw$wn§þ‘Û#ó 2¡/Ý]ö-«C. ÓûhPt xo`8 Úé ¥óH}ì Êþ[šßhâ”/U‰[•k3gä>X#ÄE¥O–Ò”û2™1s¹±áøt[a$ÞzJ‘ןQ«îã o~fêKñI‹zŒE_ÍD ÷´-«R?¼C§’ë*hVÛÐ…}€$Ê?«:½¾_äø‘"·1{TÔK?“(!F¼ãJí_­Ÿ™Õ#–gz/вFvO9Z£›¨#7D²µdCªÑ‰td´¡OdS½W]¬ØA›v ö"h›ŠJ«w®:@ôµ{‚B6˜ãã׸QmC8êt"òzÏ&ž‘Ê jì«ZˆaÀ쿱‘D> µ´:VÙ4tø`ÄtjVqúìõ Á÷˜ÏS˜ß›tkÀVìóö`ƒÊÃkoËú<40åEϪ0HIÇc¿’.^Ãê^šŽ¾MÉ.™¥äGÈïûN‚Ži±‘EÝ"Ó« ˜[b]æÀ/© .ê&°”0s›Î um9Àpˆwâÿƒ°Y„xŸÎWÕåqÎÀŸÇCF°W³E‘œöh¬(€™¶xó0Uó¢‚ÞAèÒþ«˜ç¼.àè>^àN˜>ZÛö‹/#W ++lúCذ½+Žt2|‚_£ÐúúÀ"BˆÊ¼v¤îùÕz¼ÚÛ€;ºDë +|pùúöÊ9©uü÷0ê&‘ CaÄ„ÝFØ$í|Õù¨Wà‰–®JÛYóëÓÉV=b=ñ©ñ8òþÊF † ‘Û4?Ô,[Ä®ó×xKŇmfó;’²£â"l—t¯žLoɼrAÂQ1ï,F%7‚µÂ-|Ø€§‚GùšÊ·AÄ÷»N,]s6w*Øv/z1}êQÛ~äd{Q¿w ¨ÚôhФ¹Ì9ŠÊ€Ÿ«™£úœ&¤£¿¾¨V¸èiFvíÞH“ÃÂ-Á›ú~y2ýÝþDqÍÓ_çL`RÙŠ[žªë_aÿ%‘äý©¹H3EÄ"jœ9Ž +>Qü\¸¾Ç‘5iµÑâÒ?(æ³RðºêTÒH?¬àŒ)J¸Üu#­~>GÍ>XSaWFçÆ²žK` GkÎ|CîêÇŸf`nŨGŽ_=ýôÊÜ/ì;{Í®#Àô ŠÊÌúd~xi‹è¡a07÷“ó:e¹ÆV$ìO×A¯eäQÝÙs—¶Õ²þ]šD·nµm_I•³“­I«#E•npœÆé +(à§>+ ”Ù®”7Þ—²’ÐeDRšÆîW~­’%K·õjk-„¡3Bõ”ÔþÐÖO6 H ?ãÝ)±%æIH˜Âf¹‚°B`땉Í*Pæäcë$ƒ¿œ=$\‚j~GµØñ&£Øíöí}÷;¢—þûqùûÅ55ºØ¥Uk´vÕQÙy`Œ‰–%k xøt¸4£ù±~ ­syõJ}@€ÒSÄRà‡>‘˜ãB”¶5_– ^ ž<™¹c—çÚü\oˆü]äçâ~ÙŒ’/Õ¿˜¤ÀÊã FüØŸ¿Ê^y SÀ ¿®¯“Z$Oò†ˆÍHCPzS÷û1èèÜ”fÕ¥ 1î +ž›‰bzúˆýÈßws:ú«]Úõ ])ˆ|g.^;—´ŸžÒ+ÎùñS%+´ß€ÿú!,XlýB<Þw™³©Ñ€yn”$ïvWŒÓÈ©Ñædy—Âp|'º]—"q„ÈEª•M./½Í4ºnqò²“wˆݾç1´ts#¾sº{,­èVJoyO ®dP¢:§ …8iúE0ýÆS…·0yÈ&J¦:÷U!¡M‹šõ +Y=ÕÎ'Ã<…frx”éJq(šŒkr‰÷÷VK#î~Ï6.Yñ_¶ÍîO4s­›+)žØ ›äcî@-ˆÕW«y^Ë?ä•Á+by)µÔ)çô.×ü 9´ +9.ac’y\ñßeêå'¸•]C?²ðI³roâXŠ9¥jï‹Î÷„+nXôÆ-Ô}ÙÄÞçcŒ+úªû«B‰9Ïp6Ϋ{¬…r¼ÍÈCBtâeô­iÖŽÒ2žos±snVÛW³ö°yê4æÒ ŒàD{¬#u«óZFª;m ¿-³ÍÎ97ª©@¢žÒq=*gY6ßú<[0æc~t(!P HqáËòÔz|ȵõW4˜{·™#,•„‚wªÿZµº›kýóì›;ÖÃG¢]`¼Êa\Gã]Nê +¥ûäu(f $v 2GÛÝêžoEaß›Ôbøú±çF¿è`dGm)v[â yÍË܇yÂJóÀ–…­Kl«b|êò<§ £]ÙÃ7óy6LJŒçu‹Ñãú—­oÛ;{|;þi,—i¨D•ÏÎ @œÁ#Z(QÕö`%Q î—*}u«j:µñ± Œ÷ÝQü™íµ’ÅyšPªŠ” ëß9~*L·Ê(›æF›"K599Dá¡‘: œ×š×í[ ¸C²úUýLø,—̦¤¿!]k2•Í?9Óà­†¨VË’+µ>/Ï)vƒvAÔ¦bùF<¥o!îÂòÄ€)ÙÊc…EzHÀÎ@îE“ >NP*«z"{%]W +4®hµòcc¨÷ñymžfa]µg¨4”Û´D9¯ÔºKï!Bà 8ùcÃô§ž~ÝѱwhA¾l=7¾ ʾ_õ©ë7wëÅöCÏ ªepLé…3Ýé ¥µ‹.+¿YBȘ u–š´VØïW_tŸây|èMèMn­•¼0/µr†Óôp5e õGôƒç~ò̤å¶bpÜy#na8–C¹ì12 }ΰæ6GŠÜäyv÷*÷nȵ2â<0}©¦Í Ågi‰9õ¼ç¬Éxཟ¤2§ÜýaÛq }8Z¦Ú†{¦4±r(jæÕz'›_«ítZkvE@Îj19À¸\ +uê$›¾HªÔå +XmÌ#Z<'ØÜ"쉣%µ—öÇó­ÞMkq…%aÀ^âFÀv|ÊúË÷H*Õ: ìRé±×ûe~žë)¯—¢nvÀŽ(ðVÆÖ@„uÇK¬F"7åeï,·‹NÏ(ùó1ÄžçƒHÊzvWcÃ}˜H˜íz¬û«±b ŽA£sZÅ)¥êmBã¦ë¡–@5“Ϥ +GïÎ/Ë\5)æmTk=¾(ß[ceÃpI W!¸ão#-ùmŒf¼„éûÌ‚–ßñ÷2Xó·‚2ZaÈ–ieÜO9ÂM¡TBl7Cªò%•ÞÍŠëÇ!‹·…×û½áª§3±Ò¦˜‹]üðÌ|7TÔ\³båÈZ9Vké=Ðì÷¼È”Põöá¶GQ9þpÐbkØ'_z§«=Ÿuìœû ÖmsÁBk\Ÿâ´&}fò‹Ìh\×Lí5D×6znÐâ~ÃÌ™íÁËÕ–:L=èZ" hç];‰x )vá\ Xó+4cY93 •属Ï\lž™Â¯ç[HS§ø?ìÈÉ*.å‹ñ”–ê&lë2¾¹ÑùAÌKZÉX¨º 3c”¨¿Ý×ø<É©aRÏGBþ‚‹Ô°‰Ç2‰™í:ÀèŠötS“ÐN¦b\‡;›A`±Ÿ`¹Bo­*÷~¹™žÃ,Ž£âëÔŠ_³÷ëØØ$`}F +å+8Ó6Ÿ“ŸŽá†±`±“6ûЩ¤ºwlöìƒïÓ¬Ìë 8¹´1l£š>é.XŒIPžÆñJÛÏ2‡T76K:Fœê§gü$üVù\X”s¢gdn®)ä—ÛéîC÷ØÉ¦ˆ,]Úï¶i3ŒE¦M¯„fÚz¾ ýܪ‹W¾÷ˆâ];4€ñÖÖµ\铽~¿ÐiMo0¹¸šÛncsy´MÀíÐì“©÷ñ½qZi]´¥ïù¤>ˆ3GF•—¸ýÉdÒË_ú…ø€kÿiþò°eÞ¹ŒÅ™ŸB ªüoËÐò­±RæFï¾\'ñ¯ß¾Þ´Uk-6+šŠ Ï»ÇSôœmÆ|RÚÌK –¸…èŒ |xSôI¶+.5c[`á•På‘#^ ä)à‹v$´…55 +øfàR„¿  l2·’ä(%Þ^XèOí ‚FqBòîƒ@Oá§©÷€Zr@Éݳ¬Òw© ­ªŠOO®ó¿¾ mK¨½-oc!=ò$ LÙÅnÀb+²o¬E´‘‡ä,XøîÌt}»)¶j¿¯€È \P“¼ÑþU¹/ãXÛ*|Y ý0¼—ì$nþiË4ï…k%äqe—ý2ñ'Ø5ÏénÿHŠW¨þ÷š[j¯É›ê åiÖàƒÐ^ÇO/7bÿ1“»6â9ÿ˜H°{9\ʧhÍ’tgøiop^×e¶ÔÖºt°°î½Ï ~’€œœHuUaj €ü™—cð:°|«6 δsãŸySt0 yË»¹Àý¢fmáXLòPÃéà½ü˜Ð²üQþôW ¶ +~Tɰƒš1ÿ}~K%¿?ÑPÙRð~Øb6“¶I³CñŽÆò‘¼Ós]³ÿÞ•þjš¦ëætDT~|Ë>\V S%áº:é;»7zE:³,³!3©ë/6Œ’5RkLX‚^¶rÍ««d@ôv êó$"ÕôϘ4Æ“NÀ'+J›Dmƒi:ìBƒU=‘}M?‡--wí.ï¹u»ûЬíÚd1ìË7Ù}Œiô.rÅÖ;ù‹ +>ƒ©ïÆŽ‚Ö2«¨ZBžaǺy¾¬Úä¡5Hi=è¸tü8·•ѷç`­ôq~›VS-ƒayCƒD’7P‡ˆ©Ò y‚ìÉÒêßÒŇÙ;ì1S“Ik³åE·i83)nÒrÖ×M¡;ûd‚¢|Yø¼ž§Ú—åqÔSNR¥ã™·´€;Î@ž·WpÄÆT«ïz‚”ô¦Êë Ÿ{‡U?‚{ÄôóÖ„µçd£é4h:Ñ)CZÈLq7“’ÈÌÊG0™Hä·œ1L­¥ $… ”·OùrMIU’Ô Íøø®E‰t¥pT%ɪ›FÞ;Ô¼ïÝý5P—änLx÷u3CÝL'HޱµÆùD&öÓ·È:†Ü!vNݨˆ¸’˜„PÛZÞ³ÔxP! ®Fê +xË,ì c’k+FÙâ‚ìÙw¦£qrÕ7«)Lµ°"6ºjöŠ›Ý­x,Û4Ý0ÄÕp!ùb ×d£?¥cý³™,¼Aç¦ïÔጹ^R…‹®:Ñ‚߇O~žhíÊìô „àÎÁÐáú¾øl®³Åò½qÖ‚«•.E˜8Z¸Ëw´o!S *hó?ë‡;»¡ø9)’(ç‹%mÕèdx3Y´G +Ê¿'šø'Š» +/çØ ²¤š¢ßrßw”ÿr™_'–Ú/ ubQ—(Ä'=³ô ¶'W¢ƒs¿{`z8D\^Üä³ +ÜÅüÚÝaãß¶•‰3‹èX©%}qT6–ª(J§:g·€½=è÷ÌœºW B1ŠË H Úˆ¾§ãþ•-ž™é Œ˜¬x°êµ¦œ¿}"mÃÇÏ+y‘Ø=›æ'_èt¯P?z ïœïUÛÛµ9 ÜEêlÄxšÿu•í:TÁîçÍL2‡ˆõ¢ù&ß·èöP`|ø6íˆúî jµŸF}Üg)fª÷FV‰¤QARf}›ŽTšþaªQP¡mrº”˜³úö¦#Ñkè›Ð|¤`¤ÉÇ’ìö_KÍÝý3Qè)©½?F l%ü¾½í2Ïõh2åžñ&ktÖêI/&¾°0ü!ÜuÐìæxXƒÓ(}K»aËFIÔ n®CºHÞU¥ëÿÎôž• q7u¶s‹²ˆç`Ì­zAÂ}šÅ­Ç1»“´`r•Ê‘zæ;ðÅà£YA^"çe?5U¾EÕæÒ)úá¸Ð‚%_à5`'& ›'íž&¦–ÿ»LCj›ÏØÔ2lziý÷Û¨cGhùyû¨nÏäA®Cóp(¼BÀwÛ—mó¹9Œä­@J²²h½b?éðMa\qy³ä,Þ§ÈSE*+þSlƒDmu»~㵫m`ø£*ä%òô·æƒ’ vm֘Ѕö4Ùø + kBþì±v8©NÚ‹ÕJ\£}A'%bWP$pìÈ6 IÕ×)Ëùè–f¸PÞñ6½²ŒÃhã‹^ð <~çÈ´üqxqïËBž›}+¿ÿ± +/rýÎ@ö„džÎ³ý}ûUöÑß÷A È)¼›ShŽêp$nVkËOÞ~»²Ÿu¾»ÏÈ|'™Ç/~¶äŸ7}·Å©K=Y‡\‘»ËÛR¯ ­#n£šóI8ÐWŠçF´ˆß24Àî¢èw ¹´NúG˜£˜iÒRõëÏû¤ÊïŒn͆®çŠ&€¦Ñ¶=›Ë„Ô˜š]ݽ=9Qu}RÖ]a·! K^(>»XújÉî•øR8£d˜šTòY¶ªo’Š­sh¥Ðý0Æ«"ììN¥‰èj£û%’ ÎÍ»Àðú—‘˜®i5uÉM…÷0Ρh¿£jæ‹ÃŒŒýÐ5èf1ŒÁ £Ã/Vn#ƒÞ8Dê +‡NäƒÒ(¼ ¹²çB~s:´Å L+¬NùFb6±µP»¡ˆmV ž¯ãÕá¡ÊhEH +>b5{ÙÚ7LŸ¨q:þXÔË›6(·äÚ‚3Ã0/ÂÏ62*<÷%¹þš/äs¬å åü×É6ßDm½¢C TÜ€(6 ‡b–në]Ï£B^¯þz½¼zh´¾å‡ñä$‘äýüÔ//oÉu¸ð:[×G`V¹.iƒH£Äpu¨”s£øL®ªÎui/ =¬<ããí÷¶õ‘.Û,7.6Y¹éŽÀ7¿LfüÐ×_ÀÌ¢Wy"³„,´G:RŸï¶roÎg2KdÙ.sø‹œù89v¤ x n:1%…Oø^qß]„É3ú}KŒ_å a~>çA­Ì€ô›=íÀÎcâeÓc‘p|Œ¬ë~Ðxé^O 2»×º¨bèí°CR¸{‡ôÞø°[[NìgqW{ÿþÖÅޣʶ²C{˜ï\<­ÇΘlëK>JØàêÔ‚Et­¤«ÂÉÅŽBqÆE‹À<ÞsùØûYˆ‰º°ásƸûjU¬ùõ»Kí¯¸‘ñ(ÿ-Ñ÷=2ŠÄúA<¸z¹õËü—Ë(kÂÒòæòµ–z’|ûDÂqW±Ÿ6Ä ª¸;`pÐY»Ò ™ìª©ëŒûܳR ª’ê{§çŠ…[ ý€-ìû¸GÖÅö9dÕFGÄüÄÙV „¤ç_áóip‚0+·Ë_gI…©P“H­i~ï¯ÿDó˜[zöÖ•HGKÈ%H`ûEÊ#!Xäô0Úû9Ýl2¹9zt2lÿ²\´æ|TvÊ ™8á$;¨ÝßêËIóÀ¢UêÞsDyªâ}ÐŽ> ­•{¾4¿ÿâ¯9¨5YloëÝÜðÕD&»Üjonª*Hk{ÿi¤Tˆ:œP½7¡¬\÷q”«—fQºaŠŽÁBðF!f_¸G-1’Wµ©â$d¢ 1UøÒšÜÎÉà1措&\]ËY(Ìš]Žg¯Âu_F?60¼Ç<×0Ò9µK©A^ n6dIB(¿%»† ²ÖU»æ´H‘§•F CxKfbHZLkNðÆ›mH¨<~ Ú§‡¹9æ~‡-Æc$–…flÚ{çx&­*p4ê¶šAá:i^g;½‹ˆ‚b)=?hëǃ‚Ó=¾˜pe–õįdû^¨®%ÿC•iû]À0Å•.êcÁ.|@HüÖ#Ì?ÿqlÚ¡Ì@ùÂmHp‰¼tÌÒÑ[¿ óòÌàP^„:Ù/¬ÜA +ÕÑ¡Å&²Ék8ou„šÛ¯hâijõ éi~êÍ–/Áƒ¶nœüÆ‚—¹]P«>卑á·ÂÈùÎnY7‚ÿ"j÷R6a!>‘”½d*$Ã"’ç”C¶Í6{æQϾSÌ9’¦íË Âùô°vo'ÒæÇ”lß8åÞ ú•{f=‡b,æ(Ê—Ê3ídCÝÎ¥?Ÿ½³f0’µ*;ͬèz<ÒûÓÚ:ùó=¢ ×ôד_'í–; [ľ÷1E6Oe¹½Ä9tøÅµ{…Ød Ð{·»„½»Û/ÈŸ›)”âH§¯…Ë]íâÃ.fȶã¾fî4úd8˜êm HñcEI +y²š¥ ñ/úƒ-[ðì0s>þ ÀŸ¥c©˜õ>UÕ¸¤5Žfõ)»¼ *Ìo¨‡0rÞò¦QÛáƒö·ô!èo¤ 4 ö3¼®‰Ì{_Ç™-7=kf¤÷†_ó‡^žà ©$ªJ*v‹ýMHb|’1#ÀvdL~Ak'2¶‰]Ù46m™odŒ²ð»Õ?¶'QVk =yBÑ 6n»;¡Ë°_œxP21ÌêZöw.³ß3ÏQ´r¬S-¢%R8søÌÍîÉp©ˆ[~ù12µü=íxØÆÇïMkƒñšå‰yl{"X­Xº¢™ÖYXò/Õ*S–¢ Ak;zpÍ¡k)¯ƒFÊ…ƒ¸A¾sý ˜Ú,ÇÈŒñ{eÛ4ÅÆû¸#,”ó˜Q¹ßÑ„òq¹ÓD;&fVÇö·ädªaE±UÇñjÒ‚YŸx‰Ì)1ŒÕIÇqŠŠTÏ7 su"˜ _Bâ8}xñÓC¸„‰~9lÀ+zëéå="qï™—¾0.l +ˆ °*<ä®âC\^B3à£$C…¹4h +ßèëÒ>x¬&‘ü$}@´Bƒì•‘²&ÌåÒrúï0¿eXìâþÎ8™}mëÅlQí é÷;þ{¡Àð[øV‹(:c´!dîã:TÄÄþ¶ýù\,e\ÄŠvŽR­gR ì6 +Ñ[6ÑZtýŠ4ûd(K¬w†a^¸9äÂ[còC”³h½ðóÌWa‘áýß± õdZ@!&f´›–Ãzá&UúÙ¸R M +ß§L«åÏÐv÷<.5‘Èê§%&ÅM×áӔ̜Yr¥W ©í”rq™º/²ûÊ\~‡8òýàeAr¥»Sô-|dlæõU>JF/^f¶e^ñ +„OÝ~Á|ßdrÄj9¿} æ„xÀ½ÜW)έþÃCczòF ×Eƒbÿ' ÉìŒMñ¸¦ AÉW_¸–ý÷·ÖJÂNoù÷Ô üŸkf<زÍ3ÈøYÈí—è;~5%ÈÃ%ì;¾,è.¿€T柩 >O‰“ÎÉè¼ÃŠÜ‡ÚcËŸ¡sèiÈÐ ÕD¢x ¾o‘Yª~;¬‡SRJŒÒ¸…¸…)g!aïU2[hi˜àö'ÊìÖmPLÓÃpþaùì½n³øØ= SD73ß=­sÓ•¾l¸.>,ø»#­Â +Ig¤LQ +žfª¶­%&o«ãs}hßñ¥‘ÜCop‚ã,&^kÛ»¼”3ÐN½^Ã>N¹èCÉ‚~[{ßÒN[»öà {n­Xr>¬*"؇"Ƨn‹ÂŃf“*dDèâÀÏY‹èèí—ˆÜ}~þRö¾60qIØŒ`f!–Ì4ºH°œÞœÕö! ï$ˆÊ%¬j+Ím¡‚º†N6C 4M×ncNè(5˜sá‰I·vžçCØ· 0{TË›Šf×§ù]{Cvqíõª¢fÉZ™›ôéðü›ˆ²™ïèHãiäö5ÚäêŽ9ý2œŸFÖÐÃݰ +ŸO•¯8RZÓGw¬Í½uå¡~^sßeûÌì}'؈|â®$Ȧ%OFïh¨J–‹ßݳêh\zÆï«€÷ܬwFn=MtðïF7ôM±2fÑmÀ¸jºËÑœ?¹WTÏlôUöT' ¢Â +l.d2B°ŠŠwÖŽÔv‚ú=°¼z€þ8¶Ïúÿñƒôø?b#+0ÈÞÑÆdo‰ôÿ.:›÷endstream +endobj +881 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 5675 0 R +/FirstChar 11 +/LastChar 122 +/Widths 5676 0 R +/BaseFont /BULCNG+CMTI10 +/FontDescriptor 879 0 R +>> endobj +879 0 obj << +/Ascent 694 +/CapHeight 683 +/Descent -194 +/FontName /BULCNG+CMTI10 +/ItalicAngle -14 +/StemV 68 +/XHeight 431 +/FontBBox [-163 -250 1146 969] +/Flags 4 +/CharSet (/ff/fi/ffi/parenright/plus/hyphen/period/slash/A/B/C/D/E/F/M/O/P/R/S/V/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 880 0 R +>> endobj +5676 0 obj +[613 562 0 882 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 409 0 767 0 358 307 511 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 743 704 716 755 678 653 0 0 0 0 0 0 897 0 767 678 0 729 562 0 0 743 0 0 0 0 0 0 0 0 0 0 511 460 460 511 460 307 460 511 307 307 460 256 818 562 511 511 460 422 409 332 537 460 664 464 486 409 ] +endobj +5675 0 obj << +/Type /Encoding +/Differences [ 0 /.notdef 11/ff/fi 13/.notdef 14/ffi 15/.notdef 41/parenright 42/.notdef 43/plus 44/.notdef 45/hyphen/period/slash 48/.notdef 65/A/B/C/D/E/F 71/.notdef 77/M 78/.notdef 79/O/P 81/.notdef 82/R/S 84/.notdef 86/V 87/.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 +828 0 obj << +/Length1 1904 +/Length2 15511 +/Length3 532 +/Length 16585 +/Filter /FlateDecode +>> +stream +xÚí·S|åßÒÿÛ¶mÛN:¶mÛ¶íNÒq:¶mÛšüÎù?§û9s9s5¯Ùûf¿kÕ·êSUk­½7 ¼€‘­±¨­ -'¾Œ²>-= ‰ƒ±¾“¹­°¾“1'>¾€³)>;>#'=;'= ¾­»ƒ¹©™>¹Å?NløÖÆæ†ú6ø2úNfÆÖ_1 õ­ð•l ÍÜiñ¬¬ðÿyÂ_ÑØÑØÁÅØˆŠßÈÜÐ ßÀØÔÜŠîA6&¶ølÿ69ÛýÏ’‹±ƒã—(|ò/‘ø_lm¬ÜñŒM èdm¿r)ùCÔu¶²’Õ·þ'ü?Mú¿-ë[›[¹ÿ[k;g'c|[#c›ÿvU3þ·6c#sgëÿ^•pÒ·27°1µ2Ƨa`¦¥gþ·ÝÜQÔÜÍØHÞÜÉÐ ßDßÊÑø_vc£ÿVòÕ¼é SUP“Õ ú÷Pÿµ&¯onã¤ìngŒOÿÇù_Ìð‡¿Zä`EOKOÏðåøõþŸOÚÿ•KÄÆÐÖÈÜÆŸ‘…_ßÁAߊþ+# ¾'¾¹‘±¾±Û—`:Z[§¯Gð¿ãobëõÏL¿ÆNgò/Û¿‘ñ Íÿ ÓZýAæœÿ,3}±½³­“±‘Õ¿§ý?+ÌôøtvúÆ6VÆ&Yþõ¿œ¿²ØY9;þ1|Å5´µ¶ÖÿcaÁ§3s·33¶ùcbýzêkKÙý1±áÓ9Zé;šý±°ãÓy;Øþ1pàÓÙÚÿ‡Y¾„:¹þYgù’èdæ`ü—Ç?-±uvøcø§)æ.y|Éuü×øK™ñÿªåK˜ùßiÙÿ©ÐÊöO9¬_‰íõÿt›õ«f?ôTð}úC_Ñ„ÿÐW‰"ÿ!¶¯EÿÐW1â諉?ô•Oê}å“þC_ùdþÐW>Ù?ô•Oî?Äþ•Oþ}U¥ð‡¾²+þ¡¯ìJ諉ÊèK‹ÊúÒ¢ú‡¾´¨ý¡¯ìÿ¡¯’ÎÀAßÐÒØéí<¦ÿØÿ÷Þûº˜èþl3Ž¯Â þÐWhÃ?›Ÿþ«2£¿ðŸý…ÿl“¿ð+¡é_øUÙ_øUÞ_§Œþ«>‹¿ðK“å_ø%ê¯3Hÿ¥Êú2|©²ù ¿TÙþ…_ªìþÂ/Uöá—*‡¿ðK•ã_ø¥Êé/üRåü~©rù ¿T¹þu|©rû ¿T¹ÿ…_ª<þ…ÿ÷{SPÐÖÍ“†‰Ÿ†ñël~IdÿÚ˜ôÞÿÛQÅÆÜÞÙXBøëøÒÓ³3²ýËjèìðuµ8ýëëêëNþ61ÿºÆÝŒ ¡Vm ¹‚,R›BÊ}D +§+@)±ÓKƒÆ;ƒÒ¹hO7¹çš§”qo‚,Ì+¿¥œKUÑ™°lc4 x y*Ñ/# Á"Säg(_ž~×Îì…·Î?ZÁÛ·k¦º\%ºßré­‘>f`+À8)_Z|¿õ±ôØ^N3":HÒÎm“N6Vý½7ör&f[h»R<Œö=ãéc£wcÖr6#2Wx!ç ’žÂÍdgŠ!ÓoE=‡Cü³~ËóóÛHGÑåÁCDT­¢yÜ ‹ÇáìcïìePЬX}Ž)âi8D!©Žn%¿ªOˆ±8²p.n:g¥ 5ÎVÙBpÐ͆ï|WaYuN2·Õ¼)5ü=®@_9†S敉ü–´šQGû¡^†SWéCº^‰TnR“z°;«•œ@ÇÎûë¸¸È F[S +ñE0£r‚SëéÖ\ 0‘6ÖžXmbÄ­ùªsûF{hþ§°NêN¸fg2Ø/ g^a7ã9îKÇøY ×B( ?¹·s¾º¾ÚÉ\gbÜ|˜øTéUÖÓ øyëM™LF“¾_™s‘Ë,íecþYàÌ~¯©ÔÝä³èùs“X†w¯7äwˆ;6Рú$!šÈïžvô nm‘ƒíJ,}­IpØÌ¦wÏPÏž»J +ü× 1hÚ,æÓšäÁX¶ò.º§V)ÊëX÷tJÚmq=Ú´]ÎÛÕu à·½ÀN¦þ€Ñ²u1rÔd?ùJy;…®ÛÔ4«¬@ÀërP•ØXΚeF®lË.Ùú0o_Ä«b*¬˜¡”\+ë¶ŠW•ŠMÞ™{¿û‘¼{Ïë +ÓãLß#±`Äæaw8´ÅÙ +k_X¼¼€åå‰,Xm¦•\múyûßXz:Í W“H¹‚z§LÕ÷ n°¯©ÑŸÇ³rôvqŸ¾ØòHðLê ?uø±äXmýR%Ĉz¡í؉ÓÅz“ ü®éæÃ%t²"vΓR^záu»M©ÞaZáåz óÑÞPxföPÇüjIê‘V8öX¸â¾öÙog-EÁl×B|â_‘ ^¶f"U²æj>ãd`a5?~o^ü²ñq¸B§Ky *PIØ î*޲éÈqJšþ;ÏÍÏ ¹ê þæ;qŠ7g>¶ dzµüsXOd5ۣϷPâFΓ!— +ÓWС‡oÄÓ´¸<¢ +óØó¡`Ÿ5`ÊØ)IAéטÌ’Y¶YËäª9wE¡-…u‰©æ¼x-?‚¢*øDúô£ÑĹ޳\›iÖV°Må‚|xºíiqÊÅC¶3ÕÕCHÍv‘†!Gùw¨»×±ìnNÛBçŒAûÉÓdõÚqðĽâë­[)öLRðŠmæôGóYì'™‚ëË”¾hùôT<ŒN,¿¹ éd׺á ¨c*ֈȥ»yô—Ñr‰Åd.G”cRç¡¡¡Â $É@oÉEdFVµ%*êè²)Î éÈcòÃtí)Ž™7Qg0Ú%ü,`ÌQlwž¡r :ñÚIˆãøÅE@Ü_Ñz¦’Èš $à&¾÷Vof3öƒÍ±zà ôF„䥉Jâ ·¸½RsJ=ü{$Q°–'K"ZZ»_ÒÕÝÅRVcŠÖU¿ ÌObŠŽ5_öšüÄœ>+.V¥ÏŽx ô…DR£{žg!ƒ)(vƒFR8©Î¡ìã' ^uuÅ'ÖNêI{ƒ: PêS3º°¤Øák—èRÚ_ðVíÔ”Ýß›© ++zfHþBS¨_ 4ÂcV‰ÃÌÝ"öØ__º¯$ö«0”¹šÃµÉø,t½tûC,Šÿ"Ë©«/à÷ô¶˜G—,BÒO¼þóÀ(?àl+{Ї ´¤þ*O•LHbØžüóŒ4yZžÑ ϬÝ`&þÛýûpî“#{¬¸]â<“a‡1ä‘õ ¬¦Õã7öí {WE4}?:jÅ?~“Q1À›•þý_Ïê“M$¾{ÎTtÖ€Q±_zBïø9õ{èî{TÕ†NR@#¿êýÆÝR¡eÀãéÓjÛkºšŠ&öˆQ±•›Ôï¼V”¡]ÓTà!r>àU‰ôÕ9uðê’·3ú%°OF·®XãÌŠèJrÏ–ÎÕŒpÐÑðd ¤ÞŽüuÈëvÆ`Mé½mñ³ú:ï;Ø÷Ï1⽸g»N Îi«°2mR©‘þ•=ß78ºx `Y帨 +PmT² ]ó˜à… Â^ß(ûÑêf3£ã/g‘Ú2òln·ãÕNj&RûÑ­\]ÊkîQp};Ù¨ɪ ¦5%ED…"· ðÓ%V:¡óøÛ Å²íµ°è†+d½Ý¿§À]YkµªµÆ†Ò¿¸kGf X„!n?c}7¢—# ¨'c¼/r•lCjOµaÚ¤y±‘èfîòV9h·P;)áŽi‡ÍT$‰>ê·'zF¦`d#Gê"¥âun(Ïâ”<óiGE•\txÒ^±˜Ê‚›ÈæLhùŽ|Ã!þŽZï½ÕÞ!ˆKæ;Ø5½|ÀlÓz6½Ž=hÕs*¼ië¹?áj/«ëÌÍáøIBþ5É´LžJëüà”•"˜'"ÉH%K]>D»þ"ÃU´ürÑ+XÂÙÍwæ¼Âx‰XvIÊ`öªû9Ö‚\5T„õEüä¡’RÐÛ @s)ÚT ³0Ç·G[¬æ+‘uÂ-Σµ­™¡ú^ ¦UOyŽZz!p/jFˆaùÒô×ó±¢µ(ÚüϬt]:€Dßsw2€9 ¼ÛûÔ¡÷æ“ÁY^wpÕš +*Ã{òA÷ܼƒšŽå 7Ñ2exCç‘~ÍÕ¡’þOV®É~ÕçÆ8&Ù¬Æïw3óZÜ6ަo¬~SVîßz«¶ö‚ÏqJ°ë>¬¤R”}ë8ã>mªXu,¶uk S»ŠWúLbÃÔäŠ3| “8;0la×ÂÁ5£H'ºš¶}L7ÌIJÜX†¶ÅaêŠòü–„Z¶:ìhI–i[|gD×7lßù<ª&L ¾Çˆ÷bÝ÷bQÇ…$.þÆg3¼ß“ +&Òg]äãœ9²HéX¡èÒŠÏGƒi@©ÆÓ ++@¥4ÇâJŸ:‹¯Àgé~m£ÈM¯š¤¯õ¿y T¨Ï#§Pëy¿ƒÞ%×èv!B:4ÿþFJrõ³ÝRB!ú3èdy³þC§ÇüØ“mwWX|úOëçïEš£LSÝNþ +럨`0óÂP?™cÔŒ®Ê h‰Œý®bäcgY0(!ÏNù:@Ëę韉[ëUÐï³;ùŠÈ¬Ž`šQT’cÐéÖfÜ”‹©¸x×¾ Y$â%øçÇÎ1h¢=t6»8] ÿö¾[³:WñO«÷ð +‡¸Óì:ã4m]»0N(S ñ§¾pk¥ô¹Pª*‹ÆÈ4›ÉðÀäùð1ð— ˆý¬LYÍy¾)\›” &MNÖ‹.> ô}Fiè3ðûN;|yFcÞÍ9½v» §m9•9¾9’»Šøü’‡æE&ÞùÔd³XfÓ\¹‰Ôy0!d-0‡ÄÔ- +6‹2€Ä&PGÑy VÿRš(1g9èq»%Ÿðpk¬Ôu,\p’Õ*n·Ý;Uð €9[£DGI»¥1N wI>7BX&'# Üs@Í›n`ºáÝÿ +̘7reŽW’6ñ!'c„¹>íf/ìn%üÓhçÝ…ëX’$Oˑ蜠î8Ë'Õ´Ü?`Ëí­ë#&k¡›ïPã²¢.†¹Ä?{ìnW,u¶Ö(×ÿ”•îǘf†Œ-ø ª#Áȳñ¯µ»ÑÝKjú]¬.².}f‚]Ñ®-V@2m®cÒ ‚óò÷$ÕfúßïUÄ@À Ýšß)Ä?9 ¹eé61G0^sè·;[v‹ +µ¦1c…©Ð‘ÕÚ÷Ê„o¯ +ö–°…Îg(|•üÏá`…¬$“^²Ô÷À+§*,鶻שf)Î#Ž„€ñœƒqtâŽÞýÙÂ0{™d3kdzbúƒYr~ãŸÙ|OaUUhŽYÛ“l=c|=þÉÚ!±`mü\´ø,TõÛµüÍRx½‡6&2 ýQW ‡³ámc4’a«Z!si´Å´w@ÃBæCCÇêƒá8VQ¢cïFÑÉ@Ò‰V@b¨-çURÖÕQ„+{‡㔉ÎMŠf Ö·aX'ë~ imº~°X½¨ØH÷" +ë².A«<,8÷B\'Ôä©Dpák_/ù@r3Ît¸”LJ_L¥öýˆ'lë´åí „@Ý‚1©m^§Á.pY_ó4"•—‘Í%[ä©Bj¿+ñ„¬,öQà-Õ±ªjÍÃæÅ##О–Ç® þ½éš ÚQع³ªéµ5ËE@„VžÇ%ØlÊül‹ð#Xà­CéÕH6gL*´Ç}µh›pÁ ­mìêeH[CVc>•Ü)Fqdaœ*áÂu)à·pW B{½øG\„[Þ{‡ž`¿óKl?#¡ ›…ªH›Qó€±¾%9jŠS—á\'²•3h8ææ4ó[l!V–)øk¾y3ª¿ÄnªÑ4†©÷ú¯@ É;QÌÝÉå ¤è@™ÅºxAëCr{á—kSéfEÃcBDjóë­™)ÜÐâR§×$V;Åú¦úŽ+¸:‘+‰­ JM0³ÂnÈTu\f ÎÚQ ÍoRè¸d4iSFq7N(Å̇rË0¼¿Jz;rbȵ‰ze ;öÁo@SZŸ&=‚.ig§¤åœ¨`Dù•ï€Ò%Ý;üYcš9<M.Xí£z”‹¤ÁýÛ€GÃna!MÝòD*ìÉ+ß佼߬^³£mî{+o6Ž÷°3ñ7dH€P¥p;îBJÇUosº'š«õá-„ò º0>¹{LwcÐ3ˆAítþ–òÅî‰FðUMd`)ûæ(áwN1W?<„ï•'Ô8œ[mÚ¥ ÝÕ¦js§ +dSý[bâj4*©ëé5ë{Gfn[žºõ/kˆÐA@&åoiôĆƒR)[¶(‘W¹÷þòðóm¡îÕC$_Ò#j¡Ñº ²o¹×µK²q-ÌØG® L‡Ñ ©F¤|÷=8òHÜaµf×;šþX¼ÆZM1Ÿå‡È’ÛVlÂF¢)1kΔÁC,¼Ž.îÝ&0ßSk°ŠÔ®êïú›»wÝ´Ä +zª”$ú«éá—tð:}î—ùù›4Î.ôA>²EüNzÛð—ÃóséâóZßÑêTDð¸c S–ŠOŠî•q¨14„‘ç¹_XºtæK1è¢û¦‰zÕñ˜“(¤`f›mV·2éW¥È¿þÉr ‘¦}çQðŠù ¤d9;hn +gû.ÁHØ^ƒÐ¤3vk˜_*p«—ËÛÄŽ,­¤3D%[_ºÛÆA¶2 ÈL‹ƒí( 5üp:¨u“½‰ŽŸEÁFe¢QÆN¨_0u2…>å f¶-ÁŸ•6óªÂÂ]Lnl[‚cE èÈùB˜Êy¸èó;’¨ó>C¾K#K¿[uW%5«Ÿ¦î”OWÏylï™vÄ s9–´`ŽN^7L,òxKYÉ7¦ªIìuðšJmàè$܈©™ÐQ ËÅ<áz·Ç¥¢+çA’‰w„”)³ZL·Hã¡ß훫ÌJ~žLB‰àRãM“£øµTz€FõèI½ƒZûÞÆüó€ÎØ£.w÷ƒÉàÑw¡?ÝóV̲TùƒEÍ£»SüBJÂ2sý3<ÿØùíª€r‘XQ’¯ãÁ‡«d`³®PðÚ©•ª.àY‚©¥A.^‚[v'Ó2zÛ¦pÞú6ÒîSß ½R-WûÎã1¬œ§¬*l‚æÂÖ7Ãt†ÞS¡}µµaÄó`LøqK­YŸò7MìaÒçH ¨ºq§Ì*Àœ¤8•PÔ-~Fë_0m4…£7YtxQÑŸ'ŽÁ‹F•@6<ã‘ 0Ùîlpo¸ÇýU¿±Ý§„=¦”í™FÂrBÀ‹0ø¼‘æIY,bÖïÈ@û*[ÞΓ€ÑëprÖnÔRuI׃ù׊¢· voóè8i#Vuù‰,1‰<‘{¿ñų×äcfsÏ¿4Ïêø¬N¥gVIÖ!,ö¾. {Ûf¤6&¿¡ÄN¶®íˆÊÂm¸ï{²À° ++ã$¶¯}ÿ±‰Íw²âê\•[ b +à8,¬µ_„é˜ #húS*Plܺ–ä:˜±ÏM¢íª4xZk÷>=˜Ý ˜¯ó4ö³=ãDi{§dÿr½«¬zEI`šI6JÍ©ÏÓòû):Z˜6„¤¹gZg®‹ÍË •¨²Ž‰Jùf-סUÜqhU³Ra56`HyŽ‹ŠN•žcm”8X­ð:»×òKï”s2_ãTù‹šF–X ™ÞÜÄÃŽ"Ú‚¡?`iR"búÈ(–Ø»N2itGBHËùJíPZúþ¾n!2øQkOi¯iÍõ2L÷´ø,ØþŠŠÛZïS“ÒíЩ’ÙF~ '8ÍGƒ*ÏÂá¯F¨¹¸SqqKÇ«Á(—€ˆ³h¨ÙkïQe¢s{ØŸK•Ìr *lÉbª9Á½ú;Þt˜~Û?Ä&ÆŠŽ +O_ðx‹¼¿%°Õ\¤©<Ú@'Á_µz<ã(™¥¢\ޝùу’$šJÏ›4ÀS7òÔÆÃ}{@ ™š\)40)§NÈrÌeŒûα2–Íí¿¯|0­g×7êëBkßÕ§Zc6¼Oñ0®.x:#yÐÎPZbZ”ºlÛΔÂé ˜š;Sîdš¥Àä2´lÕJbμˆ1L“ ;a´•éSVÒ†`súˆ¿ä5÷Šã´’Væ–ŒšÌ ΊW˜Ñ?Õ1¬\d¡ø†)¬ùþ6 ˜1 =Ñ;“¾ì™ÌŒëñG¾³ŽÈóðÕØñ|i]¬».'=æ¢qåÜÔòþwê—ú…æöP3û=ƒÏî-ƒu @Z×÷'Ûa‚mh«„V¾¬³.7ÅäúJ€¢(éN`L#œ~z–¬^oÔAµHêš4ؽkOz§îKXyR*æ#(8wGhx¨X„1ñÒ±+FôôôÌnæßªâÜ­4a€ ìN+PJPpXå.ui [‹Ô‘çý¶ ÑþÔ]1¦±Êm)îdÒNˆxZÜÀ‚$Ÿ ùæºiü‰77ù `6jÊØ¶ßž¬íÒƒæ<úøBóá•ìϳ¨p©o«•%¤€@gžÀK~¢ )û‘ª¬™\Ô5Êͺ¼Œ¿œÇbª\ãRK}Ús) Í9 ðŒÀoâ¤CéÁ¿L5*oàl´F\tB4‰•†CÇ+Úï«3dXYY¼´Ý#TB ªâhÉók¸¶“Î8› Cfèö/cj§¦ãÖÅú†·?µArÈœÔ/L̲Jª‡¨v©šá™´˜MÄsò¨êZ…xVÚJ;=k¬Z#ä£JJñ#çz–„ާ">œ¤·dH]èÜB\Æ/¾ÝW®ßx Sˆ9·OÎÙ ~A¾ÝJ“•»@»¬Ë,c¢Öa«4Š›ÏÂRJ)Fzèü”ú4š”»ê B…s×E¦Ì+mÜö?ÞŠÓ¸p;³ñò:êè‚à"ߟz%+zzF‘+Žç7ë’m¡–„Xe¨­î²Ùꓘ‡éÐ I’Qôd¿>,ÁHÛþN$ÅÞîéé:®œü(qÃ7àa“(O„£uÁÑv@2Ãfǰ~0vØ!˜ª×9é³ +ä§ÕbÎíò i¸'g£R¤ëT Ô1ϼê@6À2j#Z/q–#=[b~QoÂfõ‚…øo½ÕWüñ@K`£Ô›(%m+%%/Žȉ€­og3°QK÷嘈Ùp¤n—6»Ll|cîo̸øyÌ7ånT,gµjWK½Ó˜nׄ­$h£ Â)hiªeš†iqlãæ©ŠC¤Fµã\Y¶ÖTóͲùª2‰ÎI÷÷Äþ†|ÎІ5ïÒdtws c †òS®¼,Fì™Ö ù¥ç{‚oí ›0vu^§IJuÂï[mT¸Ò)«ümë Ä$ÆÃ×™@¾2®ÙR÷bíÄKhHSXK]uÓ¼[HÙûªúN΃†`ö~‰KI:Êĉ*Ó À$m5çQz£¦ƒ#{Úß;–( l”}0ªB¬ÏìYÒ,¿Aovªì5fXßÉß©õå1„ äY«S©`UW½²·º´51«©¶­‡ÀcäPÏBk:~›*…;ì2yCÖNñçps3cF—›Gû…$¿âÐ¢ÆÆ 4Ÿ‡•¹ÒÎâ"flñjÑ,AH ”Åêµ ¦”‡)U+¯ÍŸ‰(¯Âˆt> ¦ÈŒÒ“cÔ÷´O]ð_ê,ùìYU‚i_zÊ7|è!YÍ^¯ +™ +S %æU7F gÔ0AÖ vu+$ûu¼JÁYq'ZÍH9`Á¹X:œ sn„úèÈ×¶½Žíd›•ƒ§¥l©ñÆ“8¯Äî x=ÍÃúUñ#À>@9$EгA¢˜Æ+±µçˆ¨ë.¬q¢)Ú\¶¼~W´ì›ßãaæh0‚Ÿ y枈 ÊYû¢½7U|è@tðå©)xÆ?3<¡XNv›«˜û{•p¯SV¥s0bgŠÎ + oˬ¢ß$wÅSA/4Í¢M ›ìvÂÁoŸ'³«è»Á‰].½ ´^YC=6ùgÓ¤À-o~µÙc]¯r´D®Ÿ÷N5<Ýz˜QmÕÎò¿çQžüA/üv¤ñH€Ã?8-äÀ (Ê[ @0òW URj8ÏåËh}&"||ŸsãáÚ©n–Åré¤[#¹CI>6(—»'VZôV›šXé´uñ cø›Kkuâ°Öy¼j³&¸0r&œcåîØ…ƒáB Q~ÏQÐI’ñI@~G% #–³Ó«ÆžÞÇ`±­˜àj™éÛ¹*›AHbüÕSQónw”*ŒÜ[ÍÒÎoI—qÉZÆ€œÁ$ufÞ¨.‰ql®zâº>ôŽÔëˆÈsÌÁN÷{CÔ×X80ÉPнTJ9ÙéÝ~dÈÅéÛw?› †ÅX„ɶsñÊÏèZÅ%\1Yg±ùv ™ ÇŒÂêž»‡=\ +‹T¸86Ü =Ï6ï¼éç¿GT]*Ì8µ:¤2ï†à%/T½xÓ¤%kÏ¢ÅÏk?i "pj˱9{×2©7ŒÑÄuX0áJV£1«ž7îòT-ÙJ¸müÚNßY0¿íz¸Ü²ÀÀJÑåÑçù(·ÞCð65ÖÂ]$þVÁ‚ÇeSÿ„ˆXв(ué)Í]A2Ði}ð +{þûÞÁ–f$01rcÏÀ[Êjä Œ'Aó‡Ÿ $e0#ŸÖ)7†K%­ì‰ò æ"YÏ÷›+ ÷Z¸÷Þ…ˆ[YëwˆÙë~XZóƒT`!©¡”Qw¢nª®roÔnÎpͧ»$«•õßݘ«ùó?5êÈ{^#Öé`Í;×HÞ&/O¸€¥8ºîuÔ(ñ×kãÝF,ˆ=xy u@²Ö’e)2bæ`¥S(”ÊŠ£JL…«5Ã$Éöêè–.¯ÁõÆêãÜÓ]îzW¬ï‚jÅ¿aÀÉšÕÉZK#kƯq7ñXS@ì]7° 1éð‚å|þÖÿ¨3š¶–¹'söÛu¥¹®S½¦ŸGÊPˆÁ.±^ð6+!¥ËJ˜±b¢n³ÚT=HÄhÔEÔ‹p .Œ‹}TFÔ´ú­QÂ"±rÄžÁ6¸ýˆXf»RvøÀs“„3±¨Áô"ñ{ª¥aÃ¤ß Ô8¬gò¾«¿baLÌZ  ÓØ½Þ¾‰UóÖçšÑñó +v¤tŸ23æÑÖÑ*t0ÅϱP?bŒH/•Ó¸yç’.M¬f’í]žCìÙBbB¥Š•38AH@¨—ÌQ‡Ôl¨ö}ŸOÊó\ÊXÁm£ö†.‡8›oæøs …ˆû–PÁ)8á[X¤ú–Ç"°E^6 È<ío§—‹RÀÉg-%D»Gîoà…ã†Â‘ÈKT¶cPÏÏÈcvØÓ«¤ÙHi‡ˆvÞèUÅé]‘p¹|e¨9ÄËxATD3ÃÞ}ÙÖZOu4àDtÂóösµK1²Ðr©Æ·pž4¶Èußg6¥dš{šC¼Tìö×ï£â—|Ÿ=›«^Ž–B¾’¸9-9FŽxòîìd²]yê‚8O”SÉ…šsôCÒ}5e¶î3Jbêá¬^9CëcŠ¿˜ëS<ÌoQï@1óäQS€êRE¡›þÜawgZ¬.=®bR’ŒákPãß›õbaüY^ûrÃ.›†çØ@D%&fóq¢žçóÍÆ\‹Ë¾YÖæÓ9Fóqª?'ƒk7´}{¾˜#×u6ÜìOÔ 02êé »~˜A’â‘FulcT“ÚVlxë×\‚’>®Cä½ò¶S‹u«v³~쎉Sʘ:DP9Õg™1výù“o­‰ýWÇŽw¢¡{¾È}Ôá=ýV˜dÞ3U]ZèÎ:íTdø¤æÍGC ú(é3†­Ë@@eÞ É,“wª·j§5Ë*ºäYD›ÀÆ™èœñ¨†ÊLbì¡í¸O×xþ¯wÖ8úúûUÔ;5Ç ò…ÞQþ@û å"þ ¢79aèC›¥âÈüWFÒ¡2v5òß,²?.É×\s‘‡C§—íR/ÆU6®èmdNÃI¼ß¡ï\¨Jû³ïrûçºÁÊ +ȧa#$eú‰h[qkG´rË×9Û& y ´y*âàTO7-.~Ôö|4µõäÕ0i1)Ê-cvb¿6ówÖaRÆöª)KþÚHô LÙqdAz¸4£…I¯ +©ÀyÕÜâÂl˜•{Ð-ƒÚOÉÚn‹%0s ÀY|9Eø¼ŒK&è¡s]`²1 ¥=~ᢧþl}ޱ,ôлúÄcÿq›s!!S rÚ’Yq +­ ‰êK8þ1«JæCXjÍ9RösÇ ØÝùä—Peø#æÇëû bÏÀ©¯âO†s©¨=¥¶ß¿¶–`â½8yÛÕ'i'íaeà ‚h‡íÓyŒ€4=a–™œ}f«î^©­ðúG˜_Ì‚å¶U{õðôÒ?à!¥¤s?žýí ]z:#Ü*ï6š¡f/ ÜŸAWCö‘ˆp}£™‹PÄ-_­ø÷r*„oË÷ëF`LŒ[)e ƒ"“Gû÷¶U÷^ëJc‹:®Nf•2íÈá>X60‹8^¤x‘2<# Ui(¬ê¦Á'nО·mšv& IG5¹ª¬~tª?f\ÑÆ%ÌŽ€ÐžÝÙ•¿Å¼rè^9eWÌå7Úü<œ–êR£­:©3²ù±!C+ʧ|r¯ø¬ŠÏŸ6 ò£>,4‚~½vˆ£&’¿IbÁ²/Ž ÏìƒNÔåÝ÷rò9\¤ÂðÉàqk'¤ÑÀ “»PùìF#ùÙŒSï +çðþÅßé/,ßñ¨«§¡¬“m¶×=2qøÎ`¡R&urøÀ¬Ðʹ_Ù±X¿ÛÍØãÂÆg¸#áí¼øJ"7#tºáu‘Î(ûe„{YŽF—ô±™Ëópé™Ì=;3:óÚ9ÔÕVZ#ÙvŠ*Ú(Ù 7I iGGJÇA·Y‹All¹£Øv¡>Â;6$»'•PÍ*<"™X¸$šûsžzÎèáµuL— Ì0ŸØâ•б4Ò°¥KªÎáÈ©ýbÆ®ÿI…±MÀ6M `H‚-ŬØtÛÚõ‚§‘¼ 9έ½ž²àxňùfûr•ˆ%†]Ñ3_w +O<„‡É÷‚üY?ƒ¡ ÛH%Ò…³F æ°£Í'zFFȽP äˆíÞæ¼ò(Þ:5Ñ¿šmÀeù}Õ½k—ëä ~°½–3e"G=öäu< +®jOpXÁÙiÞš*ÀndîM·°iW˜Ucýëu{¤E›G©„ÇÔi4Á¹PÕY5×18e(ì¡‹½×GKûë¸%"©QH5Ï)ËE$˜¶ëSG_a¬ËÉv3]ŵQï+.¡œ6Œ«ièÞ2z©>X 2-]Ëx޼cMUܳOá´ŸmÊ!‹ ¿Û`õlaÃM½ µ&¢è.Óãý×TB4k_Øó[]ÂöçãvLFÃvúôs O’”-l4ªÒSïo³X©ìïeÊp¼u¢æY€H”Â¥ã¿_¹ 6¤]6½" 2Ö»¶S­ç‚Âí*Ò:¼æ2!ÇÉb> +ÏÙ |òή…è$ëçúžbr Ðõl|¡E Ó˜è2ÑtQ¼­#}ƒ$OеL BD¨xðbÔ‘¬,;tEµ(*‹éSˆ8pñ wÛÔ\~¨Ò¶ËAmH% 7di¡É:ïÕ>¹ê”<*Žw8S@<Ž4 V‡À8½Zæ b„À +*Ìus©Ì¡k€Ûã"“¹e7²af9RaÀ”c;«(Üøü™¥ùòø¢ãù1-á¡—ʉݓ_“HD[GN’‡ØÅ•òò8Àµ8©ã½PZq,'gà:KúŽ-œ@=”æ6†S@”kß÷c`-ÿãÐ÷®öÃ×â\ +1ã4ÇUÉ;šIÔ:p÷®FׄÚBuõD³×ŠQêNYg»NÙT@’›Ê‡ÍºªW f–ܼ /‹•G«¥öÑ;»u¹š“ V£@nŒÉ,8ŒV‚^óŠ‚o|/ôó¡œÚze;”–Õ6‹Œñ<ºQ% fõ2!]£˜ˆä²’Wë‘]Ú'ÌyË"@'÷Ñ"ñ”``ð> Ì›üÞÌÁp©JììBOµe„ÐrŠ+|Co_Óú’è‘ØNË 7kWRœóΦØá$…úAd@Ï®‘ZM˜u÷Ò:sÁ$ôÚ=ÙVP´Ÿ ;BNˆcú¾Ž;mš‘ƒbíb‘ÂU€)±³g%\æ'÷õ!Þ$çòž†w‰S¨áŒ¶W’B ᯑößÛç[Fö×ïEÐrä‹þW¸0É=Ã(Gôœš¤¥È4÷„•pF‡x·á_¿yÑNí°¢‡xév‰*Fk0^oÈåó×ñG“Ë­üÌœDÆ}~NÃ¥·GÀ6e‚1àÿމ—aÀº o!€ú@î÷Xú³böX :äͰŠ*ÂÃZP"mnÕÞô ø¾sm­ÄøÚ1~Z½õ͵†ÓðgIç(Îà‚]ê¢XÍû} Û›ŽAp§ulCâ7Ôž0Ý£ì’àÖ~'Y R bHlÐZX^Э1n}P¯˜í§*ÅR»õ•§o_°Kæ5)ÙxV÷ÏÑŸâî4cðë–>Ûl¥ùŸš"˜˜£èïÜàRTB7™Ê¹õ´¹b˜6 ¨e÷ãŒêx‡te^œ Ù&™*xÓ`±6úT™ä¯eRÍúÂ]Á>œhüÁ$Î{4ˆæÄ–žœk¾èB»«¡>üQû*“5#ö‹¯å\í‚>eÍoöG8Mb²^^æÝ‹OÊn Åók†Yæô&ú¨­’d]—Yð§(0ÂòբŨ ©G~ƨeSôXM3AÆ‘›&æ‚ðÒÅ?ÆÚ€Gù O+£ûEv³ 𦓳î[¦–ãqòö*ÇϹ™D5&ãÖ3@ùzIâÖäº"(ºs,;ÙZ•» +s™—¨ÓTx´4†”†ü4ȱЙ^Ý¢rŒvmƒB37ÄÔ¶©Ê<"p2«C:›i¥ænÁtgnbí©@ÎåØž_ìµÞnâîvµ +P KÓ XS.XŽe¾-HQkMÚÝ›g#á]I’Џ¡¦³îØ)}÷%߆njqœ¥Šáïta“\m±ÑØAéE…µÕøˆ_âVX¿zW”n9¨³¤€vØÅ~™éFg› m Ê×ɳm'§lE¦–>l§ +2­ gÇÂ$@:~OîÁ )÷ÇõÊÂ× °t yöú|ˆ"4¨ðs|áS^ÞzbÛëÒÇØ)%‰)¸¤¿¾&ìÈ)Hï¼};AšsJe™–Ùo0i§ý3 ËÁ[Šîtäe<\õ âш¡›¿ŽHNÿþ.rGìõçwa¡BŠY’$GÕ°N%茷Ֆ>“Çkœ‚ª¥­ð±›ÈͦeÒ º˜dÇ×¥m$œ1•üÎ>K,¦ªüÍÃè—’¥q²vËŽ³d 5W]k*>ãæ=þ]¹ŒøN­pæÊ¾‚©c%g1°ðÏzDËÜ^k'¸ôÒÒߌwâ®Ï`.“´¢· #b£¾OUà@<…Ú÷êvÃÕ·ô¡ê¦$æqÇ<ÝŒ^ÏGm=…¢R ÔfÂˆüpߦœJAï"çBøË//\¦IÓËÏ +Û‘ŽC;ì´ŠÒnŒ¤~^òevÚ É¥n BòMÚ:ÉJ9–gI1Ó.nzmÖºÐC[Ît”` 2pä‰9ŠsÑ$›#Q÷Ó} ä‹£«&×$5ž¥d,j–d)!&®¼'Ã|ÍŸÀy&qºÄì¸f²|fÎí ,ó6ÉqIF +˜+G—ºf‰ÉÞ.Ù‚¾°U^0gÝÕQl̓m?j KݹH’Qïnô‘šF^ˆ“.©#šÉhÿEþ|GâWE)0&.ËÜóøNãmøŒê>M4ôžZª·9·lã#æÝ—å§Y¢áŠÖ[6šÚ˜^õÝŸ‰=ºÎ\Eì›N‘ð<J´Íe®€¼£åѦÊbªøˆ§J/îWÓ½ÉC_ΙF]ß;ù•&zòòKŽÈ²ùÒÐj þ1\œQI|†n’ɘEV÷±ô3¯‘)‚¹±ËSJ–bÙ†´ëŒv?Ѥ„Z)Â7’£Öðè¤ÌÍ,>¹ç˜û™Ç &QX o²”Ý2:ßêAHKž'½©Ñ}%79ô)Éõ¥q¢œ‚Ó“Ë»Ž~^ ‰þQÁ¢dvþЉVajÆîüyûB¹¸‰õû˜Æ%Î&’ù*ÀRv?ÃîCyPjN¨G“£@ýEºMcQX:¯ó©6VÝ'nõDòimƒÁ˜F8~ä2ê Ëoé»|f’Ô¸f<1ååt¶¸;vIÁz ›nÉ!ošëKÇ/¶$WÇ‘ŸÌ +jœ™ŽôzÁ›ìÀõž’™KWc @^ͲñwöžÂ„ó,Ý +˜qVd̓Ôðnƒ>º4ÇÀh@e¾5̼s=³lÁOñZ©eF1ÉdcṲ̈dÜ÷•]ÒJʰ¾2v´À+1î ‹ÁU¢,fÝ“ \‚QR ™·ÁÓËY¶K +à>;2PyJä@fwªž\«òFX›1¼±«B"¿Õ*Äê3ͳ{†h÷;y&“˜ÛõÎCˆU‡Æ®Ç—àj›ŸIìÙ¡í0‡,‡¶öuæ3‡â‹°Í~·<Û=5=¡¶lÁ„v[æ‘L‡÷ Ʋ?Û"}›ÿƆ/ëUðF„‘\‡ãÌMÍ#ÂGIø:¦ÌUˆ T0v$Òº7©Å Ò;¨]¤FÍn³7E¶…6º2¾¦_†biÜÄW7wÔ¸J,Hïì¢ ú‘jÁ—|à¦XL/„â@÷ ¯ å·J Íç"ܨƽ(f‹!Ù±J]8Ÿ/=ŒªÅøY3ù‘Êát—it?ŸAPR+wÞ4to~ô1¾JÈwêhjønÒöH¬§ÕN°*.ƒË̈W¹Ä‘™¥Œ£ŸÞm@(52„§ã4¬ûÜWËWöjà*3<ØÔ™!ßâYA±½ð˹ ©¬{7—òü k’®®ô£yA‡WêúÆìÒPöò`©ðüäóÒÒx3ðî&À±ÜK¥{‡~F™BÿèJ|W×˃Ž‚¢\"ͺ”EpG&@ÍÏŽMb&ŸEŠçÓà}²aÈDŸ jk7KÛ_Òé¾GùåãP°¥¿Ñw'LnBçú±%%¤Æ< +ͬ£pÌn(xÓBfË1 +ÆS7„±öfѧ†:¹ fÆd°`«+.¼$þ*äRjX®ë5€Ìõ@ÿÿðõÿøÿDC+c}'[k}K¨ÿ æç´endstream +endobj +829 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 5677 0 R +/FirstChar 11 +/LastChar 122 +/Widths 5678 0 R +/BaseFont /VQIWNY+CMTI9 +/FontDescriptor 827 0 R +>> endobj +827 0 obj << +/Ascent 694 +/CapHeight 683 +/Descent -194 +/FontName /VQIWNY+CMTI9 +/ItalicAngle -14 +/StemV 70 +/XHeight 431 +/FontBBox [-35 -250 1148 750] +/Flags 4 +/CharSet (/ff/fi/fl/ffi/quotedblright/parenleft/parenright/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/eight/nine/colon/equal/A/B/C/D/E/F/H/I/K/L/M/N/O/P/Q/R/S/T/U/V/W/Y/bracketleft/bracketright/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 828 0 R +>> endobj +5678 0 obj +[630 577 603 905 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 528 0 0 0 0 0 420 420 0 787 315 367 315 525 525 525 525 525 525 525 525 0 525 525 315 0 0 787 0 0 0 763 723 735 775 696 670 0 763 396 0 789 644 920 763 787 696 787 749 577 735 763 763 1025 0 763 0 315 0 315 0 0 0 525 472 472 525 472 315 472 525 315 315 472 262 840 577 525 525 472 433 420 341 551 472 682 474 498 420 ] +endobj +5677 0 obj << +/Type /Encoding +/Differences [ 0 /.notdef 11/ff/fi/fl/ffi 15/.notdef 34/quotedblright 35/.notdef 40/parenleft/parenright 42/.notdef 43/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six 55/.notdef 56/eight/nine/colon 59/.notdef 61/equal 62/.notdef 65/A/B/C/D/E/F 71/.notdef 72/H/I 74/.notdef 75/K/L/M/N/O/P/Q/R/S/T/U/V/W 88/.notdef 89/Y 90/.notdef 91/bracketleft 92/.notdef 93/bracketright 94/.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 +824 0 obj << +/Length1 903 +/Length2 1452 +/Length3 532 +/Length 2088 +/Filter /FlateDecode +>> +stream +xÚíR{ƒQ¾ k`@$&DDÀ^@ù0"¡˜Nãc8QÖ„\L@ž^«@‡„„U¨ÐŸØŠïtr'ÎŒîMXŽàÿ‚tõº%\†ßh ]‚'€8áâ‚õ¾À³wð 7$ð?×¶Ç_ȃ„³Óÿ꥙&ÚKÕ5¨&†Ä¿ !`ddþïD>Œ°,ƒa¬;k.'X @øøÌ{úsQb·"B8äÇŒ³é _ÚCç#¶e5\X@'MT]x,sggQÄqw68é¸Ú?3˜Ù]PAño\iÅÙtTA¯o·{ôW…K±§³w&í7(£µ9SÄbSå¦t6 ²*‚\Ó3¢ºULË=Ç¯Ýøxtí¾*Ù“p¿Ù®¬Òw’EË´’µ×(=>'Ó>W‘"nïkV)Ú—ö` çUÝ–Eh»¡‘»u‘÷(4ÞKöä†46ê8¾`–·ôw‡®„?ÊÛÇ•yˆ†ÕbÖDkü~Ï9[4¡²·õa  ¥)f(>s,ÌžD.S3»ßÞPqðA7=qÿöR5Õª=ßIå*»Ôå>Œ½yy/Š”jüz]r¯‚ÑŸûe”ÏF¼Ï†ü3 +SÔ,† +ʹµå %>œf}#Ýýõ™[‹$·V€ +?´<6Oœ8E²«•ŽÕµ .O-òM¢Sž¿Ô¯•4l?Ó³?`Ž¬Ò‰0GÏBr¼=d9%_þ¼ãÈýÀ-šqW§>š)—V²>E÷XG:Ù‰u-Õë7;XxãvbœcwßDmKfÉx °ê|­âÛD•ù¸t \™C#Ç­H&ÿ¸Çك‹<ûÙ!’Á¯–Ðü?az¸[L±ñžÉyu—×W.ÊísTÖ–72«ó˜O}šCfõ_,žcè/#×q-.û­ÊÖG#ëÁe©æÜÌ7m«J •ö­7v-¾Xëf±gˆ¦Ñ‚±FóGl›m¹Ø#7[)ßx*1ëËÉß·ê]~ÀÝ‹:-üž’tNéËÖ3­AÒî{ "{\ÇUá¨DR/^«hü&¼{/ÖŠˆ^£­zw;›=ßÿ\ݰû‘g‡ÑËÙ›—2ïõNš;žC„ùòK–_h.»bÀnÛæ?·:åø5yQ—²íT"Ž­«\—)ÕuðƒD÷–òÜ4¹ka³“ô$ÏCÕ|嵤uo+Ü®5ôÖÁ/ÃÁI×¥‚æ/›Z‘Köu[P×øò’á«ôäói?0ÿ¹Z˜[ïYg2pÅiŽ×Í=†wÖc·ø²Ô®#×»æ”Ô§D—ŸíºvÑ¡!)[©nÑÏù…'؃¤‡=ÚÍ“¤D¾i'£$Ϫ]3ަÖä©Äÿ-Lùh¥q?}‘[ –Óo/«Éb¦Öü#¬¬Õê¾¹ç‘Á´#øû¨ÜBjРGLõ˜~Õù°Ð¡¡Ù€dÞ›}°~¥ü¦:‹Æ’rðmÚp5¥m$Pù…rë’üKrŠa®Z¥sÏ^A–g£ôtƒ=ëüóŸŠ–5¯MJ§Æ¾õÕì?þª¹Õ{¹A!q·C5˜¤ªÙ™rxßµ_0­Ù[ó`¥³)ãî÷]ÖvgQÚ°ŸÎ]÷tîp)–N|è—çÝô:ƒ’k:…òHi·›­ÕnÖÖ7ÍÑvd+§Þ´Ð1ôóßù0wq¼y‘Êír•NO™J«†×õ£åÔ’q÷¥ùîÏtG^,_ø \~÷]Qû1ëý°îÒtë ­œOLíõ7U_†l=‘åÍxå–ÛÖ®S}4,/]Ö”+Ü¡§ L1šOÈq\Š5¢Ãú†í®Šwßmß<uÕcÜEæ÷ŒŒÌº+ ÚÙƒi»ªYŠ‹}v, \袥…Ÿï6qébwڤи“¶FKÖL¼ÞÖ"b< û$›ÒÓ¹­ç6íPì¥ß±<ãù`3 N5~Úï#mS0ê;VEw­M©ÊÚûæ3µÛ³úMÁGÉ鹿o•„ˆ)ÕÚ* +!Ñ;‡åŸÄ¹‡IR'•¬~^õÛiçù¦ëÎ’RÕôHum­â9|¹õ‘ï¬w÷aêà*åùì±’ICJã‘u"ëæRìµÑ¼Rfâ%,M÷Óí+^ý]§r&´ì>¶Ž<;¤8òªÍŒ{ Î.°ÔTãLJò€Ý¬’Õø.•Reo¥¯’UœôbHðõÇó/x¥îý{|_÷>3Y¹÷%”„ZÆøÿßࢇ‡@ €þä?!f]Jendstream +endobj +825 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 5679 0 R +/FirstChar 3 +/LastChar 110 +/Widths 5680 0 R +/BaseFont /DTITOB+CMSY10 +/FontDescriptor 823 0 R +>> endobj +823 0 obj << +/Ascent 750 +/CapHeight 683 +/Descent -194 +/FontName /DTITOB+CMSY10 +/ItalicAngle -14 +/StemV 85 +/XHeight 431 +/FontBBox [-29 -960 1116 775] +/Flags 4 +/CharSet (/asteriskmath/bullet/similar/braceleft/braceright/bar/backslash) +/FontFile 824 0 R +>> endobj +5680 0 obj +[500 0 0 0 0 0 0 0 0 0 0 0 500 0 0 0 0 0 0 0 0 778 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 0 278 0 0 0 500 ] +endobj +5679 0 obj << +/Type /Encoding +/Differences [ 0 /.notdef 3/asteriskmath 4/.notdef 15/bullet 16/.notdef 24/similar 25/.notdef 102/braceleft/braceright 104/.notdef 106/bar 107/.notdef 110/backslash 111/.notdef] +>> endobj +820 0 obj << +/Length1 793 +/Length2 1151 +/Length3 532 +/Length 1727 +/Filter /FlateDecode +>> +stream +xÚíRkPSבª¡Ly©¤jÝ F‰”¼0„„†w„X0@sNÈ)É9x8¤D|PIUÆ"6:ò¥ÂT¨”ZbZÀi¡ÀX‹T­Š€¯°N§ô罿îܽÿìõ­o¯õío/šK¤ÄCaëá %<Ø ¶ŠÅ"6 g‹B£â°Œ@04HFÀÀæó½À* +p<‹'àz +¸< + bé:IUÀ->Iâ¡Æ¹ b¡„Õd ¹L$˜ U*°fòFXgÀx& 1(l6€9ÖéJaNj¡ + ðÞÀ&ým*Æ3HQÀmJ&"! Ué+(ÌÕÙ &µü7dM/¢Q©VËÔ“å§œúW^¦FTº¿˜:]CÀ8cŒ£Ó©±ðqbB4êéY!S!r!šª‚{ƒµâ Žd„ ZŠD¹(dª x +‡QhºÒ¿)̨Q„Pêþ××N%#eJDëÒaÀú›=³ÿŽI“pD X ‹MÉýö”4­Y0*Ç M®á¸LG!‡ˆŒ¸@Ï +ÁZkIÅLŠä@:“N™üW/`ªàŒŒIô ÀÌÔÉÙ#Ý›Äþý´€L«÷ðä—lÅZá x\VÎ?‰1(²A‹‚—åÍóôæN¡r ŽÃ(15T¤mocB: ÃZXN1ßÀä>[>Ù{j[MnpUçQkzÆBãá-íç¶ž4ú0†{}®á?FÃüa¿Õþä˜]ÉHøWLHÁí£žf›ôæÖ{“­½bŸdÖùpbòŒKem­ï©l¿k^<˜Þèþà'×§w2ÏY×EÜcó*©#…3knÞxù87mcGŸÙæKÈu¨„’Tv:b,ýõNÑ•‰û¡Xf®¾4?qßSÇWfjëíî´[¶F¾¡LluÝèûb‹®UôwPØûÓ›ãJù«$‚Ù ½®IËÀâ}_cœ_sS¸ø÷Ù]tþ€‹ñÝnQ~NIX¬(ftÁÑ +yÍ•oh5Õ®o]Û¢öC/ ÖGå;¤Õwr|‹Ùé{hkRÆ_ÒþX²c擤çÏ{Ÿ½6P[Èõ.ÎÇgĺ{ï÷Ïts¦·³¨ÖW?3¹ÄË”_Ü%„þa½6+ mêüû³›ÇÄ Ž=Ï鯑Ï\ÍÊ=Á¸zoù‡âµî_7™v'k-øñÑú+þv±Å°Ÿ“˜Ð›r&ú¦û¥Ú†óUA޵3“LM!!UKšfc=ó]üú̵&FåNó…nmÑ}åÙlîÄø¢c¯Ý/|†~,‰15ŽöZ”k=´yAÚNÆýèåzï߭΅צè:½kO˜¾Ÿ·l/íµ7íXMxÍ6µîΞ£üú‡l«òì³O„Mß)Êð"Pç¾ñérzmÝåÚG„]QäóÊ殮ÅÑÁããúLΙ×q}S_uû^s°Z¿kãƒG7W,Ú¾Ž"°éïàSÓƒ?-É}½e´'TccÜÔž`Fï5Þþ¾ál>{Ð^ãê÷ÕR¿jÝù_ÆVFypìÑz–*޽в‚5WªkhÓà¥Yª›ÙÙ$vüVôÄ55§¶…´C/OT•H™¹ƒ=+Oz¹c•T²TtJµÜbÆí™cKœŸâ›\ ã5”ï„üoUD®­˜ð½Ó5¡És¼ÿ9ߺ..RPrΉ¡¢àê©wƒ{²Ÿù÷ôŽuÐè’DZgŒ…Ï•½§½Ë‹E×;…7[wÓj»TMÕ¥»ÅskÖ½jw¨ý²àªï®öâvqê2âÅ«„“˾֥±ƒº C["² ôp d»º·Ñ¡ÍŸ‘—', 躾sD™ÜÐq­,ïg4FÒ@h«Ú7‡“Çôk›…/æ[ͺ÷Á•øO¿I©æ ŒnIºÚóùhÔÞ s“žTä!#Vvsç™×?ÉŠ<”_E­ígý‡‹òÿÿä*X†˜Z†§Qþ$¾’¹endstream +endobj +821 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 5681 0 R +/FirstChar 60 +/LastChar 62 +/Widths 5682 0 R +/BaseFont /QLILAV+CMMI10 +/FontDescriptor 819 0 R +>> endobj +819 0 obj << +/Ascent 694 +/CapHeight 683 +/Descent -194 +/FontName /QLILAV+CMMI10 +/ItalicAngle -14 +/StemV 72 +/XHeight 431 +/FontBBox [-32 -250 1048 750] +/Flags 4 +/CharSet (/less/greater) +/FontFile 820 0 R +>> endobj +5682 0 obj +[778 0 778 ] +endobj +5681 0 obj << +/Type /Encoding +/Differences [ 0 /.notdef 60/less 61/.notdef 62/greater 63/.notdef] +>> endobj +817 0 obj << +/Length1 1740 +/Length2 10960 +/Length3 532 +/Length 11949 +/Filter /FlateDecode +>> +stream +xÚí—UXÝÖ qwwwwÜ Ü:HãîîîwNp‡<¸kp 2}¾þCæÌåÌÕ<ÓÝý®½j­·Víª~š†BUƒEÜdj!²waá`åH*ijr°8XÙÙ%hh$,L\€ {) A‡€'@ÜÁ ÀÉ à`äæh’ O' •µ €^’á_I|q; ' ™‰=@ÉÄÅÚÂ\ÃÌÄ 2Z¸x²Ämmêÿ: náláäfaΊÄÁ0š¹L-¬€öHlÿr’³·øþ+lîêðßKnNÎ`)ý?š °¤9ÈÞÖ`na‰Ä¦ w³»üßÐúÏâ2®¶¶Ê&vÿ*ÿϤþ·u; ­çÿÌÙ9¸ºX8”@æNöÿ™ªmñ_rJæ@W»ÿ\•s1±š‰Û[ÙZØÿ+t–zX˜«]̬.N®ÿ„-ìÍÿÓ<¹ Ø$ÞkhI¿gúŸõŸEU ½‹¦§Ã¿«þ+ûæxcðxœ€}vð|9À‰à÷ûøͤíÍ@æ@{+'/ÀÄÉÉÄ ¼}ÀÄðæíÍ-<`a6V{ øx&¾KÒ¿®(€ÍÞÕÎô_WÔÊþ_kÿ°9º‚ÀÃûgFÿæg[{:X[¼eróØÀi ó·€ÍÙÖÄÙú-Â`ó²pý;ÀÃ`sqÿ‹9Àlídañá°Y‚\ÞÜàªà¡ü›Á]ìönb²½¹ñ‚1y³çÛ‹¿X\âÀÕ$ß\JêÀÃþ7ñÕeÞ,þþÀÒ²oÄ`“{#°Œü]Þì¢øF`¥7»(¿ØEåßÄvQ}#°‹Ú]Ôßì¢ñF`Í7»h½ØåÃ]´ßì¢óow×{#pwS'3 [ Ë·© pý;þ¿n&ðó€ÍäÀ¥Mß|šfÿ&vp'ó¿ÜÊâ/ü×Vù Á ­þBð¹Zÿ…à“þ…` ›¿laû‚5ìÞ|³Ùÿ…` Ð_Öpø ÁŽ!XÃé/k8ÿ…à¡»ü…`+׿låö‚­Üßlåñ‚­<ÿÁÿý©$!òðfá°p‚ï{>.ðb÷ý_Ӵ쎮rRà[”Ÿ‹óŸ¨™«““…½Ë?¿àçݳ%üp´°ð°0CZš™ …|Jm+ó“.œ.‡e„”°j‰Snèùщ¼iûuTÁ‘q­^ç±"mvÜý‰Ø9²ÃGmBæ<Ð1.íçËž›ñ^†W±Îe†’ç®å]ð1z{óÜõ ¤ÊìÚXY’nÑ@öïÁã|Uz)Í}øU +ˆ^}·ÆÞÌ^>™ [­ðÐzZ. +uŒ4DzÏÜá¿Ü1’`~Mû} +GheZ¹u¸b="ä%¾A<˜Á} â”ÈYl™ú$žÁBÈÿË@ÊêáWÔG"DÃ×n6ÓÌêÞôê/sßì—Úï–»§75¾ÕõzBÌ=m!š2Nî)ÒÃO 8kŸÂWÈ ªÃ J·T*aØ8CWˆ²s–H_ã'‰eªœZ0ë¥Ò•6bz½’*L“5a4‡â§LwƒZ,cÂ}Ì•¿¤/¥z•OÐô|äû©îI ;$´_°j¸®»â^1§Rq”æO +ú{w®èóivxhþáõøÑódß’KØøŠ}B ùeF§‘\ ]~ˆ°9ÌŸ;ÃHqL÷Ìñ§.KzÏšVíŽh…Ø…ŠY>+Ͼd[Lê„ôGcv£2º7 pàd±°]J÷è äsà^A@‘Œßõü®òðDå9†™K¦ßUF´…Î-lè"cš6³yG>CíûigùÛ®žš_šžrìè·èáQ©@,}Ï£›G¯ì +›¼ïŸbÐ|M˜Ã1¯ +äZìèŸ _ëïyXñÚ¼“å_Š{*ièƒå:#È+΀HÛ§¡‘c””9¸¦\é#"ûK<ÎòËË^8¦½˜sò?E õµw§›že ;œ”+1O? á>|cW)õ`ÝèèÙüJæÒÿ$(‚E°@-0TŽ:ø‘Ð…¼øÕmLƒ4N'­Ð:ª—\lé”®~ª`è¹f즂kö;ç1×-ôòÊoXÏ]=¼ \SVÒÆÚŸæ’%Ò(p`*Ñdv„£p†ŽcŸ¢_lÒJ)kdâÚ_¢L’çwä +þa)a\X;|Å—Y$¨ÍÚÁÄ$bÞ8"Å}QĤ˜‡8™Âk~…®#r†z@?»Ü‚)kB7²*Ø,É&d¨F`[æ?jHü ¿0Ÿ¿;…žÎñKš_ïkõ7Þbqžf_†“Æp!©ô¥Âlî[çˆ?6§¶Å·0aRtRðÑäŽÜŒ©¦)ë|º#|§#Þáî ;¦7O+3ù Y Åú?P'Óx0r#¢ý&úMyuSUAaîdL‰ú¢@“0 ’ §øBÝ ›vm‰–ª•„Ã3mjýdBøwÊ ºV¡6±âþât¶ŸÜÜdš=Sú‡è—IPìÒZí2+Ù£@’/¶¥÷°¿æck.†‹mxT¢!~—'üq\ÁÔ4Ídyõ)¢*Ø®T#ÍŒ¾‰÷î¦ÿÅ[¡`8øsZÍ;×áŸØñ®+ÐCÎ4îO`q~LÚ¡‡nÚýbÉo +_+›pr³4¿2îîñ¢—…!͇jäJeÊ}ëfÛR^·Òl8e,ž»¦­ñº:“@(àÄC«ybÄöûýði}êgoDMý.¾ÃåêÖnÁÀ ð‰§±´Þò¹â®¸s²ßŒA¡µòøeú—Ò”Á¡&ÿÐI+<_«¼ò+¹e“Ñ·Q 4a7‘63G¾`sJcÏQCË ä•Ï™¦_ÜøŸÎ/KðÄó_+õ1K šæå4tE?ht˜z‹ZˆîäÜëäå`Í£±¡~#š€ç TEq"hAÿ¾½äÉÆo"žÝßOÙŽÇ>Rj¤­nk_Цϙ!P›ƒ,ÿÃRuΑQ岸P+ŠG£æ#aWqöü˜äýðûåi|ë¦aooóÞ.!Ý|é½@eäb ÌFïŠ%ª°’³ÐÂóóÑ#¥Š»WkÖóR3cR„#ò„È6·+³5,¹ÿZ˸(bý‚p"™K©vGLLélºŠ3ßKYe¬ÐtþKvŒÚ·P"5tªs¶™LæÀõ dEäSà-³°Â/¯‡ñÎŽ¼s¸ˆ…Ç5•a!+UÓ‡–ˆÖ˜{O›[—3•xgFÕêm,+9Z.O- ÒyRs>·I(FŠáè?½’DýÎï!M!¦]ýǤáSÙ¹·ŸL2J?uW„ Ú®¯˜O —;€ŠTJ—åð¼2BŽ)!²|[䮚?e`Ûߥäúb‰l†ìE 7lŠŸ¸ëQ÷jW‘Ãçþ\ Nþ:KéáÒÔÜØIEŽÉÁqŠKÙôú¢|'fÙà æY“-'š½=V¹ïøôJ.´ŠI²L Ãgævxe¢g)ôÂ¥] "±Ê«Èí¯Ÿ ³9µ 9K½MFÚ“éµÝr/NYlÝn—R¸séŽ ËDà`æ9™Ìê~\€QÁ‘~DxŸh­†låðƒú‘›ãŽ<›¤ys&éát´û!<òE€çƹ`dÜbùŒ}ï‚Ùvkv5e:e±«ür»dKƒ™9`u%I¥àb“"î›U¿aSõ9ãĨ$eß…&ÈŠd˜J9ÿi=;¾d¨©w|Oæ4ƒ~Ç $à½iCÂkDÄÏ™'cŸ»xˆð¯O´µ1L^%Öe&Í' +Ù…¼Þ LeÚ0. uêsg_‚‡A½æRŸu ~È+…ÉÃmo@±‰žÆiŒí40µd24P>XlË料·®¯¯äbl·MO8îkð"BJ ú‰è|ä›,¼BÞªÙ7I™]'…¥x×óà§5Wsð[ÒaCô¹eØkw"2ä: ˜ÎHËüe–ðî¾s{3E&QÃDô’S-›U Ýdþ2A<<­;½¥cJˆFöÕ¼‡ÞºM{-:ó3D6‚ˆ!ˆÔ·"°¶Úó@DutX#ëŠ(—âÊUô”Jþèå§µ)tJF#qž™×i²>H‰ÅÒÔËØm‚ÇROˆ}éd½ÜµÚ¢·–š?å“Ï+‰?;Iœê?XØö²L¯f/À'˜žç3û*Q®Œ±$'³»¹}Ù6?S8÷Žå³‘pké3e,}C´–‘(—M'ÐÁ€LðóÃÒôXvÚP²!ä ö£[CV¨Ô»E¨Å¤Ÿé{5H6¯µù“¥ +h© PnÔk¹þ—Í;d”›íëQ O–I¿°bŽÄE¸“[–DD÷Ö€à‡ÚúWÕÙ‚X—$GY¿ªž"NÀåE§rT³¬Î$·?:Ãú‡ß·#LÃG®=­©6½Å5’êé³ôf¶Å¥·þæ6ªo­ï’Òúü)DaΖ¤0Hêm’¾§'UüÆÆùíÉœw*ÍݰOé a`[6·+!¬1Ü"FÖϺäi~‘d- 1³):¦Mh–í[±Ñ÷ Â?s?>âKfŠ"@9/Y òdÑAm=‹:YYkZ®i°x¾¹‹ÈKRϵ9ìHŒÌmpsÇaiÀ&€úRþcéËIɃõé±÷èÍ’:ÿ±Îæ9’ÜÏÀ—³f™ôМæd{6Ò@;y Ü¢p蘭áûŧX/éï§Í+ôZÅ£ÔŸs Ô¸õp‡ÚsA¬ /Qûj\{Ú({°…“DžFgúUšÈˆcfIêtβ OüàAÿ^ÜÖ¶)+¿‚¦`ða¦¢–©¾m ÁëOiè´˜†É åaíacºgjNŽy‰¾ªñHn¼qëá¯ë³q~㯟è 'þ%zëä%D-x’ݹüÌù*Ê)±¤ÉzHjÆÊkS¥MGz8½|´¥_?‡Iõ¼§òÁÈ%)ԛ·´¨Ã'½|½@6àg„3C¡Šãiª‹³¥Î¼é™ÝÜIj4ÒèoZ¹Ÿ½/8àZ?ÂáØËJò ª¯CÓÚf®dijn[úz'ø¿–ž°i¹ÓWèªÕ ì4nÖb«õªÛ3="lä°;tRnÓk.ÖÕqf«9¼¾ka`lnd¦Ôè/Ûù3%bœ°;à ñ©¹Ôé|$]X¾q-CÝ>QÝð»$8`ûZÇή^ø{¾Æ~@Ò6™7¼ûÅÃì +vËšô}Fà¹x¥ô¤Â2À„6DÛOêþ‹%ÕÞ÷@4ìØ´“ÇêF9¿JÎZ“#†°È±x‘ÜDl:Û%5{(dÝngfŽöêö7¨>âHxíäDž¤ÍŒoë}AÖGºÐëæg8ó:C<"¤þL¿ƒÆ6Lª)ôTÚ7JijØ_¶/Ì×úvÝÅ0? ÈmŽ®M08«¹ ÜLn×,›ÚÁ„ sˆ)ö"h{Š@KÄ,ž–i~F›ç7È+ßÉ»ßÿÆrQR™Í») ›|˜^,lïí270–€vÎL÷/N ¨„ýɃ6JB§ ƒTZ‡,'WÖD B&úÁÐ&Æû‹¼§^³q×uº%dÓ ÷hc€@ÔÈ¡ˆãýW\ #o²kÀÆ»&+àÃñªÜXf‚^‡}hzŽ<¬L‹zÔõ K@ëmŸþˆælÃX .yf¾=#D5Ï];Y«¬¥7îµ3ñ‰¤¨Ã2M`Sð«ÌÇrç§ó>A¸K÷˜£ »ë©ÕxIc†î\¼;ôè:tÚQãà= +×£ €ý‹§Ú9ÈÚ[õê>ØbØ~…Ûד磔š ;[ª‰Ò87¡øcÍ[j‚Mr%y.Y2ÒŠuP. ºC¡?Üî_õÎ2L*§(äRÅP‚¬†Éy9Ïd†n,áç2¶†ÇTEY&ü¨ƒMbÈ„T–=3hf§çƒF¥"³™Ó«®Y6 ðåÔKÌÓ°%Óäz»X€hb«3H«|[Z•m[èÀ^ý÷{‹ÏD] ¿Òf2Ä0XŸsô}~ÐÙ¥‹ù¢oh3Ծƶ_o#¢ânFR_ãøaÔ¨ãÂh¾w¬Â¡ÑÞ½-óµ .%£ü"ùJöIF§2Ški4/¨¯™‡=”T ²h­>è¤ð‰–¥îüÙ;]^¯L-ð" ÿB¸fqCåÜ~iÛ¾õc¸‰Àn•Î_#Ͳñn[–Q0Z #zdñ¾ª§ùâ·Ú€×`I#”!º )zI>Ãêë,½…N£i4Ë× qv:b$žGAØ‹ôõݸ÷þÜa8ìÆBðšï¥'¤±Äy»•yhêøÆ&¬þþéðã^±:éE·7‡Œú±y`cu>¶;æ;SÆ×? '¤d%êÙkL‚”:Væ`%³ì4´J§¯v•¦nE&[lè{ù-’WvaKhpiø ­ 5ã`^ÎnêûŸï ÐWûSΰç3ö‚)Ñ5 ôoE‹ìóLîÕ)· vpn ê¼¹ÍÇ–ùW *¬4 Ûô wÃó’jm FÍ3ÛîÌ~ް"Ž5CŠ'eF²þ¥Ã,¦ä)?KJ’Ž5ú ÈÓúU¢þ•:|¨ßä4ÎØ-]À7‘³ýõ›ÇÞíÞ§ëåŠ÷Eå&! ¤Žöž2Cä@F†0-‘vnö¨¦g8|ºº}A—Ï‹b³ù“ëVB\tü˜ Åû/³RèD/¤‘ÅŠ—;ª°hŸÜ3ñn„ @£\ùcÆ(õ’ôAÍÝo:£ØÉY—\¤j5eîQ)d{D³txr¢ž=¤A^QcÛrìîÛ׳†øýwã:b¶Õ™r£=G("XÌž¯Û©}k¾‰¯å3w5'¤Az¥‡Ew¢ƒŠh÷ûˆÌžŒb"¸[¸ø`@5Fï'Ã'`C7éý0^Œïj?ˆ6m#8ˆ«6ÚìÕ|˜Ñâà …Ì4to?DSÕ. nŒŽ W›¯ör‚צ¯y¶¬.T¬FTÎüâK³+v@²ÃS›q#Q¥€8(²§0uoˆ:ó•E‘ÖÙI"#Óà@dq¾ÝÈÚSvRÒ+ÿƒõE”ÉŒüñÒŽÒòÒÆ;¿Cõñ þÀp÷^¶M:SÎïpx2ã|僘Û.y?D'xgÆó<~%HJð áPOõI%¡f““wHT¨þJ:>:‚f‘jĹæ`­¾Ôƒ …û‚‚Puì‚ÞO«'þ“«[b[ÑLägºy ò#àýsÂú„.÷dó“²½‹~NŠ_†‰—#ó~’©˜?êJ&ëœH•êÄ?êå~É÷,ršþ½SïEÄu²Ïæt(K›SpZ„ŸØY!´š?ÒŽC¨äElUeŽÑ$3¤ër€×ú‘èU0+‡?`EwUtëdE»¹P˸¶­s€@˜³ê,îÛu<)Ð:üS¼¤‡ïId±M‚ÍRŒçúÙ÷&U÷&^]-Å_rÙD{óâ‰Õ¼Ùãž{ ++®æmÇí¯ls.Wš‘ìÑ`ÓÐT€arßÜ]G “Š¿„e¢å)Kd͇ål¸â€™ ²¬}Þ «‚O“ ‡‘}!ÝMKôó>Ä„{¦ +啯Á‹,Ð\Ç:¦ý=ôãCøÎ¯ZôRiG—Á–ç6DŠÂÓQáê){Fš$-zßr©.3GÛˆuož’y×6¨ÒÍ*­M²¨Ú, øú'½Aª…¼³ðŽÝäpzG6 ”„ƃEÊ©š01Ç[õ2ÎòþtnÓY½ò†I3\¸ÄZÅ»#:x½@{‘ þb•CE‹(rÕ¸Ö™µ€‡±–®ª)·Ù¾ý1‰³À¾Ê¸®‰:–—ÏlSymx%„YL›Äþa"Ûõ£›bt¬×ÁìÀÃ+ ¨£ÃÀâ=N¸°ékh¼µÐfÅr¾÷£þg+E¹®_Œ…gÂAå}·ûE:›±³é@Ñõ= -Ë7üâðvÌ óƒd’™¶…6¿ü€+íéÙÄ)¥Ç‚„xEz+Ýz×/å§Úðý1áUc´~\ÛÂ’‰P•µŒnµu*÷¹!‡ÃõŒ<ú…¾NuâÉàí§•rÃØí— )·›Ÿü¯M¬BbGËŠ>¸z{+åä¿‹ÁFmþDxx°ˆó”¯u4y™I‚23„¹`6Ì¡-]OãGN1@PJ£qÝš:_JwœvO¢ú,pó=µØÉ¿y ¨€SØ®”ð;t)¶™«[Eu‚ñ™©ÿžf¢f¯úPåçFÌ þLÿG‰†å1GH(wø,‘Ü6ÖZžŒœË=)Hf¸†*VMWCë[å?¥$’9È-¨ÉÄz"iéRŠþQŸ­ðÝf„œ?<3À}ZFIn 8g"\©öü¶y®!TŸ®¯Dñ˸z𶪅Ą?±|0»=Ë8+áÓŸ0û‰"ã“uö› 6ž¯œå”ˆ&:”/ÑÇã5x§¾á˺Ó:ÖiXneˆ²8Þ©èsèð|»o©ñ_C˜’¨9øÿ×êÖˆµqŒ/ôäüø"ËÉ—Š1¿¿,óèÈlq…^`b‡ÎÆ9¢ßˆV¼¬'>©ÿPFýÖ)vÁHµPQt‡¼ ÊÀÏM8¨z.a1l"÷×J¢g2ºwf +yèUCäXûÖã æõxN«¢ä!?Ý“UÆêf‘¦ì·Ûa!XNœu’ž/†¿˜¦2Ú‡I×s;LJÉG5ØÖ%Xu Ù°iI³o%éÖNçfnKè4Õƒr™ t4ŽC¬£OS%B^5¹¸6#ãc‘޼QK°0ÕZ°©œP_öïK’;ãÔð<ÚÎhù¾x†bxÊó +‹–diÈZ=­`ÞPEĪ B”óÇëR5áÔ¨˜±›W,§«²Ô.ôïdAÙká?ŽÊ;†˜J­íê#•)\v‚†´cgÄÍ<8g½úg´æQNPÕ²ãÝFb%,Š×ܻ髩†ótK7:Ýì)¨èÎ?À®~Ûÿ$¼Â°µø']:Þ9§W ¸Oû~ÿÒeÑzl5:ÿ œ½×¼1”JwÉ@†‹Mܵ>-–©9ýÞ¦Ãj"ý'ù­Ëj©šFÃFµ–™¹@ʼn +ÒÁ@æÔA$384ÜÌ)¬é†Ùr÷ úý¦ÐhëüIyá‰5’ § +PUy/[Ëv7Af LvÎR–û ŠKO ©ûÖ¼Ü'µH"æ÷ÁNM­r #3ú'ª]"¿¤ï~Òf]Ù›Ø/–ÍåšPÚîtßsÐ䵄ŒL¤/hsh,ÓîLõQûõ@‘¿u{Ñ1r;Öáb™{ß *û%x6vFò»¶j^‰ ~öú“kG.€Ï’6É}åïEÌ‹86q]ÏÅ+VRÃ^ld@ï¡[ŠÜ’µð.)±&xn2`ß\sÝcZÛÉFà{¹’Ñw9 ‘y7‰UYè˜>îØNcN¼ ù,ÄQ¯ÆYëQÚàéûËðÅ` æg6ì¼lH¹ ¢¨L¹—·˜=ûÏõ•~Å–<«}S–Lú*jë ÍÁÜ$~o¦é#?lzZ#„~[²´Ÿï]øÝMÝoßÿ¼›fµêa)›‚÷DGöŽVäÚðWÄð¡¼Ô.øäxøÜeº°‚;|ኗ5ÙuÐli×oÿº€\’ˆ½6Å(î#!ן°†K„1wê²´I¤aO»-ág÷gÝU25Âe Å..'ëáü‘ =vaÈ¿Îüwáš7~ÉL(6¡ Z.)­‚ó;ï˜q¼;ÁÈI²ÉCÃj£mÒ²ÏÀ6bÇêO˜+×ÍöEŠ.œ£‰¬äÞJZèþˆ|f…0dÝ•€]UŽ ”$R´æ$ +~ÄüíwXáõºƒ"ªsmò:0w®éý (X·"$âŠ%pv†5„‚mÛ í5Š5%•ÙèŸ;PÉ'ÇÝý3_k-¹§KôH/G åÖKX•q‰=[ …Úf÷P«6/"Éh>:½‡ž"µù-®xöœÊˆ/;™lX|²³}Ò³Üf­¡ù)qJ>Š–Ø8LJ>II^(nígX™AƒWÈHhG¤tí ì®m—ÿÊ'›Ãœþ|·¸øE)´„wõ˜£•WÀy9ÇÄžh°/ƒ%pý®îSUŽ åhêe®vÂìåz°w¹i¤¹ÛØ!j}ÁÜŒî=ÞþºòC­ÏV·4²Uúú8,»ó×wÈ:°gÓš‹ôm¥á­ß¡kÎ +N ¸Løç†«ó(˜ ´¸(±&¬Gló2)Ø3}…ÆÖ.YÃz2Ú2ƒŒ<Éé Úbc€¹¶‚ˆ‘ Ô¢Umˆ0S°AYí¡X žk»ÏµîòN°Ì§;xe€ZE_¾ê“&ß§,.5ÚÏDzdm‡æGµâ³õß&!,mµL¡( N\ ™cOîŒÁÒ ;æBÑb0m®×@ ç=€€"é¥ýäaÃõÈ îª@Àÿ}LÆb¨{þ%ÑPA ÎÕÑCˆ²†%3yý<ºV;§à¨«5m¶¦ˆX^›Íî»qáá=r^äIGÖײaâ%C×#kóå},¼1gQ”À©Á€hÒ«‰Ùæì(í“}LRÐ’ìÙ¾(O” Ê˜çõF‡À@1±Ž=íýpU‡ÌÝ3ˆZÅ«µ&×¾ò€p`çéÇûÜA†˜Îï)ß²7«ÜcUUN_›â!?¨­ñL“Ÿ7ô WC¿¸ñÔäQlI[l%’¦Áwãçt„ý2„ÝÕ™GB!ð"1È  +švW¬TdrÇecÅ ÎÄ–â@B¢šJÈû†&>RÆ…Dy)cË6 /ë0?ÿiÌ Y3‰¼µ—8JyíÝ¢˜¦þÊË/_}¬÷V‡TÉÚ—~&T™XË®u@ŽKÅ»Ãá ²óÐv²vöï=‘y#ë}'áI—§êÚ &Ïxoj1°ýwÛò¨ošV^ýש%›L?LÓ:@. +ž >&òÒ”/H:mç^­Fñ'Ë>xØ'j$ZÚ^Éi0X‡ì0h®âƒ`?0‹’¤ŽHCé2iÖ¤i¦E¡¡Ç¾8ÃC‰ ^d*Åø¤“£\UÿR>-}Wr¢º”Íf¢6) !-ªÜü¢éä¾Fh7ŸåRÊz2€,žJb‰’Õ§·}Õ@§ßU ÌV’Öh%n%ŠŠP3¯våW÷§›bhvd,‚*ž<ˆýê{ˆMØs±/w·qÁP¬ŸùyÉï ­SÇQ+T<3TÀy¬9 +”R†nïP¼V÷û Oœd°XàÁHÿø™ +RŒñž_éôRÒeüþõr¾Q‰8ÃH¼ƒX„QøI~Xï›\Ô·[ʤ˜ƒtx'ÅÊUèx‚WsŸß3: ­fUå¢I1Ov'Nù \“ˆ<í%Ø'úº{µ üÜåNJŬ•X¦?„^ô>®Sܯ’ä"l¯¾^“tYüQó½Áïjšsp¼„4'z,tU*Ú?Sq•“Þ¹Í&ƒÜGÑw§µ]û‰˜Ä< +ÃÃwäõÓ± 7öï¢J†ÐÅ)š÷·ü:Û‰,瑉G*ý!ªy ‘=òs~^Ç ýjõ’UçÓ‘ÚµpwËc£ýØôæä{ɉM3VEÎQù %nÔ1uBý»ÇqÙî«Ë¿7Œa,ù¡™ â+-’ÓmìëÆ]èu*Ê¿¿®'œ+J>G •¤I†ÊvÎñc.õc7 +ËNPT˜1”%Âç +ê÷Ú06’WûU³0FC9Ûž±&µ¢¦'>p?ÈX^ù¢œ‘怰”ž[ÍzÆ"Z!Üñô5Ö*O\Ü´mH#FÍÜ ù€;…J´Õï¹GO"lÖ%è6ôµRg7¡˜à4Í£«nëòü’w$ÆUÄì=Š 29‡<ÂñRšõ {C ~}¿4Ðó§Eh©»ùZ¼ì >6œF,÷ê·êg8A}Ëþ|ôalÞà<Äá ¯qA<ÜÃo;ˆ%Ys$™mjvÿrOoÅ‚È@ô²0îü|¿éTë¿ð±X,Ù¾WëDFº¦¹DXl¯äewã•ð + Bín±*Ôºu¢YxZ>K6Ü&ŽAÕc”œ11,œ_¯n'´”%öÏÉ9¯¥EÑÍÓ_—îè€gTÁyÜú·•™((pm`þÜ +!¤3È™9JoÛμsZs¼UJªÊÊÑØ…O_£JGë×dqd‘Nè[’»(w$‹x»…ü +Æö,q®":§—DÄán$V0u>·VƒŠh€p¸ ýž»šÏÔ‹^&ó8Þò‘¡y ÒšýºS¾ˆb[m·ŸÀлµì¹¹”uœJ}ñj¨æäÇì}½ïp“o|ùõÛý~6o³“ v ]èâ€Ð=½Ð4”~öÒšO¦0›V~žÚ¬»íÉiúøAÂi}Vó3ÒÈR‘^qí¢_k8(4L¨;Û§%ÞMæ)“§RFðÞ»œ-8x·ÖáÏ¡Œ¤âçßÀ(‹Â££÷U(•nž!ÑÛ5µ?¥RŸÂR« 6ˆm‰ÍœÖ.¦ó¾ŒËŸî³˜úÌUm=ûײܺs–ÿ>ôtò16×ÿ¤¼Ï°Y½¬³f~œ(nâ>z<@9ž’¢ÖCòLh½¥+$ø½0t´ÒbP]Úª±7ÿgÞQzásãfÇ…QÔp<1¹w,V4Ne½Öµ ±Ÿ6´"èµ=,íõ©Ù[S†7RûÑÄÚÔàõî… ù¦Ë!vo³;ûâ ðÚW"R ;!p·–¾³É]%b+ÇG‡¹HW‡XŸ1-7&ýZ‚ç”$^]\sF;OÜ´R`þ2ýñ¦9ÂÙªÚ½í`aÓq1®á¬N}úÒL”¼iÊ^¶gDäeÏæ“M×¶ès.-´ýØUŸg Å!ö)gxy‘ïØD ‚a=õªôHæ‘Ó‡¹ R¤Ô&5ާ.5™Úº™ÅÍÆ’Ç¢L¿R6’Uèø¹¦ýtàŽˆÿB~zyQèg•¹ÀóqM*ä3“Y{B;½)m~}ùÐ +^YïxÐ ãf,•@By}:¹Ô‚Û1ºP½1+vx§£ôÃ9iBcBb}QÍî@ÁµÊ‚MoW"“l…‚¡ÊY_"³9…ü­w£é¨$ 6ñ=¢VÐa:¯ÔðûL” óƒuÅ +ÕÃEOuÐrA±Š²ˆèŒ&îwµî Ò Ø¤9º)Me#M$œ |6«Åú%ÄŠª½fC3{µ/„Oñ"xÏë[nn­FøKcEÕ +ÚŸ§oœš•KwÊBf³®WÛãð."É¡£íbeáâ&[‚6i§ìæ$ ^#Ýi“raì®ÎÙ–oÐQ¿Š6é„é—è-£î’GâÚÏg¹f¬Š%¶à6ÿ°Ìðó8BÐht‘(T±ŸdF_Í_«ÊO£pZ)»·³%%Ür´¾Nº"l ¢Y» í}DœBaÿ?|!ýÿÿO0³µ0qrÙ™8Ù ýAŸÐÏendstream +endobj +818 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 5683 0 R +/FirstChar 35 +/LastChar 121 +/Widths 5684 0 R +/BaseFont /BGSUEG+CMTT10 +/FontDescriptor 816 0 R +>> endobj +816 0 obj << +/Ascent 611 +/CapHeight 611 +/Descent -222 +/FontName /BGSUEG+CMTT10 +/ItalicAngle 0 +/StemV 69 +/XHeight 431 +/FontBBox [-4 -235 731 800] +/Flags 4 +/CharSet (/numbersign/quoteright/hyphen/period/slash/zero/two/three/four/six/nine/colon/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Z/bracketleft/bracketright/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y) +/FontFile 817 0 R +>> endobj +5684 0 obj +[525 0 0 0 525 0 0 0 0 0 525 525 525 525 0 525 525 525 0 525 0 0 525 525 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 0 525 525 0 525 0 0 0 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 ] +endobj +5683 0 obj << +/Type /Encoding +/Differences [ 0 /.notdef 35/numbersign 36/.notdef 39/quoteright 40/.notdef 45/hyphen/period/slash/zero 49/.notdef 50/two/three/four 53/.notdef 54/six 55/.notdef 57/nine/colon 59/.notdef 64/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X 89/.notdef 90/Z/bracketleft 92/.notdef 93/bracketright 94/.notdef 97/a/b/c/d/e/f/g/h/i 106/.notdef 107/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y 122/.notdef] +>> endobj +541 0 obj << +/Length1 840 +/Length2 1069 +/Length3 532 +/Length 1684 +/Filter /FlateDecode +>> +stream +xÚíUkTg  ººz ˆ±\J˜„„H¤X½¢1€Z†Ì†NfÂdBˆV« x¼á…›E±x +(ZDQ¼¬DQ·Õƒ¥BWÜõôTîþÚ³ßüùÞÛó>ïó½çŒ³STŒ‡?B&¢Á$A{pØ!ˆÅÄ +qرœ(¦1’„iT8>>\)§— 8\!g‰Ãa9ƒR©ÒÐ("H¥Äà©¥P€ jLA HÔ@’€q±˜ÐÐÉìÉJ•ŽÂÉ4p p€%Jar˜0Œ*™îr1¤Ciøã8X>Q¡ËQ5J¥¡›Åách%¢ +Œ`yNÌF$‘@ðÆhTïBi(¥fÆ.oGtÌ€Ià:†jËSB2ýP†ÍƒØûàÁ—ÀÊ øI?ˆÃJ ×½Íø³¦ï§®Bß‘ømÂhÇäþ„G‡Ç†¼øo˜:KG‘(Œ–'ƒ$W£“~”@Þ'Â8IÃÓU´4:Üýí^L£`Œ WèT(€þÈž´9ØŒF–â!Fd“È|ïnkÞkDÈI#€Ë÷0EÁ:Ä@qù|°ž0AÓšÎ0öd$Í”F˜ Ì’Q¬‰‡åxO9FÉqT>ñfôD”õá8"™¾>\àðy\ àCþœ¶’ÀR5hX àC^\Z2é•k( +%èÉ=b„zg'aŒ¸(šŽÊYwÿAÊ—f¤ì;•Y±1èÐcnf"EÝI͹[g­ô?ï4Ã\§ºuUËÆ* æþÅdaZ ý—½:ûÌ×Ñ׃6§îØgÜ”–`*XWo/*ˆÐ=T-üMß7«ñÔíçOøf‘í]×*òbË.^ê+r \ÑkÙá4¥9>­¶¹0Ã[ .ÀWfm©^ìå´|öþÔŠ­¼¬Níì¼]æýÆ”¬i§ÝÏÈ3š9c‡¦•ìÿrèDü¸êyƒ V×äíóóÎaSgéªê5ü¢µßôª‘û¶–Ⱦ[¿Ð†Ñ5ßµc'­¬“nÚØljQZ‡6g dÆœp}"9è…gaºãSªæuduÌìä õä¥ OÿF4TÝÒ7ú]4ýÂ|ñé7¿ûÝoå÷¿[Óεùø¥j<¹Q\~.Áøè÷›žˆ£vúP öq`]Žc¬Ìrÿ³ÚÇ#b»öäͱ°Ëœo4“Þ¹À+¨œ;þGHÄlå,YÌ™éÕŠ#—¼}n{obå÷†ráä]Çf^I1~ýSeöÀÑØ‘BÙzx·ÅÞ²”R¸§áÞÉnƒõ•ðÁ„º±+[·'ýH©´æ%Ú[þ2wçŠÜ0‘º†§ÿñ¾Õ¯#¥ùþ/ÜJBl…׺v}ýÔ¢ÄËvˆ3 ƒB„‘Ÿ]îõ<1c¶¶jn>S›÷Mž•(~™Œ—&à)½¶h¿p8^>ÃòÅÖ¬h¾ýC¨ü§ãSJ’‚mK®UŒ¸,(«·ÙÖàëØ1j­ÕG›Îfõ>ô“½þeï‡×——Yž³[¢îwèé^$]»=liÏXÉáù¥6m=OðÜêÇKEÚ¯É,i”pœsâ^Fhå#«¾ÂM¢í¡_Éï¶bÌ3nn,©[Sq§öâyxSì¡EÛ$Å’¢•Û‹œ®'ÕWÇŽ¶î[¹;ãHLgÀSq‘ÓìÆø GÓæ¥ô»öIu~×÷î^ýYñ·)U†º †³'U¯zM‹rˆ»çÜû–0\íoËuÌy`ÕEòeqܧ>¬¦L¡lÍp¤{Î…6ç…ýh³YvÿsÏg£Ç~ýÍû“‘Öë•ÒÏ¥íáWºníNÈÁ-o ªÌ8ØR¯暪°¸—åej6Ï«xÎÆ ½¶…c7‚>a±•KCú~ œDÝ?åØžýWýíÌÎ&vO©„ׯómÉ/œ:b#=Ñýýã=#ü”œù™f)vç—Gº Uƃe‹•ziô)»åÎ󰌤Î×l4l Ÿºø‰(Æú~Ô»²¡éü–Ñ…üL»ÒûÏ–¿W»õµ­~Ëö}ú)êz9¢ûq~ïçN¤øÀÁeSº+R«Ý,šjWß´L.ž›ÞÁ î_À7'¨ò ©¥5WOÛ«›çy‡›ÍÏÜûêKám[A ý5çuM‘©ZYÛM`]6·µBÿáaýà€ù]ÁM*aê+Ö¿ÎŽ)endstream +endobj +542 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 5685 0 R +/FirstChar 13 +/LastChar 13 +/Widths 5686 0 R +/BaseFont /AWQVQL+CMBSY7 +/FontDescriptor 540 0 R +>> endobj +540 0 obj << +/Ascent 750 +/CapHeight 686 +/Descent -194 +/FontName /AWQVQL+CMBSY7 +/ItalicAngle -14 +/StemV 142 +/XHeight 444 +/FontBBox [0 -927 1542 750] +/Flags 4 +/CharSet (/circlecopyrt) +/FontFile 541 0 R +>> endobj +5686 0 obj +[1294 ] +endobj +5685 0 obj << +/Type /Encoding +/Differences [ 0 /.notdef 13/circlecopyrt 14/.notdef] +>> endobj +538 0 obj << +/Length1 1234 +/Length2 5689 +/Length3 532 +/Length 6472 +/Filter /FlateDecode +>> +stream +xÚí”e\”m·öi¤ iº†FDéîN©``˜¡Qº»ié”nD¤KTIé”PJ`÷ý>·¾ÏóqïOû·g¾Ìë:Öq®µ®acÒÖã“#l Џ;ˆô §!k,ñ à³±É!!ÖîP\ÞÚò’d<ì‚è!‘Âøl9„‹jïàà”ãú•$q† ¡¶Öp€†µ»Ä¥ak è!l¡w~€ Ðýõ„@âAzBÀüø  µuØ@ì¡p|à/C*p;@ìï0ØÃå_Gž¤Ê€e’ €²FÀa>0Ĩ‰@Õ‚ œüO˜úwqELÓÚù—ü¯&ýDZµ3æóÿÎ.î$@† áÿžjùÛ›,öUTÜ­aP[¸= ø;uS„zCÀÚPw[€5Ì òWÿ»T×þ2ÔÐU2Ö1åù{ši[Cáîú>.ÿ¨þJþ‹A¿Õ$Ô`&À/ B%¢¾ÿúeñoµà¶0ŽZQ€5iíƒÚ ‰ž‚P8â €x£ ùáwÔ#TGüv$þ¯a + €.0·_Ñ¿ -ÂÙÙúwD•‚ü;$úBˆß ‡üÃ" »×ïsT;¨ç b úÇ¢¨€Ü?$•~“¨ö‰£´µ“ ¨û›Puô~ê.úÿjù€¿o%º‚ÍoBù·ý‡@¨à?åò¢dþ@”;èˆ*ãô¢êÀ~#¥ ÿQʈ?¥ŒüQÊn jî JÙó7 +¢¤|þ@T'P›iíö·Óÿ\PYY„÷S>Ԛ𠢦—@õä÷ÿ'À¡®yÔ@ÄDEþŠÚz ‘¸û_¨ÿb;(êU@¼!¶ø³S[ÉPÇÍáåþ +…ãØÜè²ö-‰š Ÿß„Ì$¡ÃJ†Ô\¹ë/+3Éîn`o0zý¤u‹îx¦3ªx䚘>y³áiµ‘éÛFk|œ©á³îÂ|²KüºyâtO]ëÓâpùs“¢Þœo}»ùÚœòú›¸_˜ÐºÌ<»²BEÅŒ3aaõìBLº$é®å‘ ^$Ï“±>„ø;FÜiå™?Btx^ÞÉK¹±ÄZ©¤ù}5½L9#­ ´(‹þê‘§õ0±Ëjñþyâ¶$Y£Sýé úD‚&íõÇ{6Ê!Ü!äi•uäÔÒ%j*¸0 <=ׯ;¦ôŸ™ÙÍÑ"™„Ð#Ýò ´f§I^ϾՉKϲ_P:wáßmUØmå¥|5ÝÓá\&Ö_&9:Aû^ö+Õ1F†fq‚%4ÊêAóÍ|…Ñ,Y}”Q²áæÚÜü‘'V#œGígTÉýÒ• 1À!‰»|œÀ› lõÞ‹Mbdd­æÊìµá¸Ê.ôž/R͌ש¾wäý‘‹LÊÏ;ßç˜ o¯ŽÅZ&2{ rü,¦®fJ0ˆ<˜¿°Ã67Øö¦÷¨›në*¸fÞ޼ÌvˆŠ5 yC ~­m^yñ2©ÿ®ÂR‡Z47—`çØ÷Å~hßús÷îN“âU=¸P”TbrŽ3[Xÿ„”€2f6$vÏòv­L„ˆ­£ ±ä©MÜ÷|ºÏòë~ÞOµjgºjg<ÈôÖÛ”˜°ß讎lÍš9êE5huoÐ!TóÙlàVŸCZtB„w‹¢•¦„¾tÁûÑ„bÉ"@Íi!a¶¶•cáÐL{âDU¯çŽè9£{)>$È$RÐʬ‹ÇŸá>¿¸êÑéšMžÙunµG*$öù“c3…8ÍÛcù¼ûë³&OEtzÕ?>ò¼¨‚pƉÜwñZ o{y³Eóª½W ô +j¸~<Êù ŒbÒ¶õRô2xËš¾}cñ̨£]¥Óùøºs¯Ðs7qÛ^UCºÙðÇõ€ˆµñ-/7šðs~Äl@W.ä™›`j®ã;›4µª¯‚i!â’›EçÈäSˆ÷³­OìNf}äùÌöê³W¢Ùè§Sµ‡,%8ZÎ$§·?hKW¢üTÞ­âA¿I¿«½ ÊXW¨ â*á~J""l*-1…’4ŠŽTó/~ˆ#xªuìùÆÇ•M«R?Æüp¥¡‹B^‘ëÿHiÏÍ<é]DÑD¶œ+Ù‘S$*Úªzvúñ`;àù¨ù,ã§¹ÖNAÈ•’©Tþî™·“5Ÿ2Xž¬;Ü©_‘ÊÁ6 ƒ?Œn$´"|ã-޶ã¹Cå_³ºûS n÷}×NÑH`Á !ÁWš{ïúÁ¢X…¶ˆdÏSh$æ®|î”;öy8µ«çúŠb/Ÿï(?±ÖsŸ¯Œ ˜þ¸ò£®îWZÀ8ûÓô‡÷:²ÃçààZÕäÛ†<Çެ犉H´Ùo7næ<ßñ 2ª¤û`o6 +‚F†Çyðrñ•ɶC›ÜȲc è1}ìGε¸žhôˆ.p†¢m1Ø®BNñU†ˆÎÒ·üŽÉ{=#QÁj¬65t@ÞÔ;¾µP‚R¦R|ãOÛ‰@¼†ôWxhpñš»9½Ô¯æjxcnŸL¯ºÏØe^>"ß ~”ƒÑÃpö€¯ÿ–¾vV œº™}%“&–{²(림úPž)5ë[eMz´&CݾØGgèAƒ?Ù•÷©TàºQ¾"p6·ð,t2À)jKǾ*âûÂÞØ¦j^KÔ€Ìaz+ŽS»ÝfŸxinÏ7û†ˆ·PrÊꋬG[bР™_Ú’ë#kåÀ$šº2Äö×þ³¸¾4&pP¤\Wt´‡0`Fê@a-ÕpWúÃîI‹ºRQõ §%qï{»œ3ýo·£ ȼh¿Zqha3‘ŒÍ[QÇÞ!lKÖ3@ÂÛ@IMóœü±çŒ ô!«KŽõf4"ýÅþ9¯AôÍ~`Æx«œôû¶+öIMèá³›o!ð]ÈÈC¢b&:.½å˜ÊB#„Î]A‚f3à Fú­ý´·¿ZÆ44÷Åz÷mb~á’­¤QúñÑ•ýÁü±b˜YÑ©&.NMæ ]ò —ÿ1×Ù ç:³sÏ M¤Áxdû+z½ÀöêÏ»äÂR×0¿b=—ô-;ŸP¿`séírÅüÞ9¶â¬)þXp"‘¸ üÁ÷‰'z„ ó«Á!Ç}D½|UXúF“qF¼bùdä%„jïê«]µ/êôÝ{VM s©»Kú¸¬´¿*¨ž}±oæî1ÜGýóþÚ×†Ø §F!‰XÂ"²Œ`»&nü›œ£IÎoX׆g§ÆþT—s–tŒ& K’ýaü¬v²½#Òµs'ÄÒCêšâRñ¨¬§C"kl>R5ÔÚž×øØRóé1A\ªT[ºH“îlS“î˜à¿v^á1 îQ%•G7šÛŒ~'ÛôøZoV:ojØå /Aëõu$eÊäÑä~Ðôä‘´– Ë·fnÀ½¡rR“ö’G«Úh©a9§K°\k‰m^Ŧ©S¡Ù‹Íƒcæ-Ü÷»[*9™µj;vèXí7¥—ýD' _%Åšçy@ôOì­¥=çÈ‚›"Â}ÚâÉhÎï¹5ÑÎ=ØœQ®Î¾i.mp¾í`/¨ÏVɲ›íÿd¾< rþîË*Uô…«I]>:ži^§Cø€O»=`àêkºC°l×·;µ ±Î–¤¬±ù¬ìZªNVÇýúÉ/9 "ÕWŒÒ½$Pœ[~6Šž[ÎPÁÏý¬…%•Ôï'M :F˜-í?@+íh/UôõYàÙ<Û#ývdüßwB_”¦Ç/DÌxiŸ»^¶à[b!ØAî¹T8©ö(¤p»Êü¯.Mf«€Ÿ3×L´=ðþòw¢{ëèÎÃ*ÔÏsI© ¢žß ‘&x•‹ODAP(`|îÚÓé¶#g»Ä¸QË[š3 UÊ-„(*òÀ˜ÃrïŠâzyeš®K$œŽ6•T‡cuMà‹vÔ¥¨{Ý{a¡dœ$lOäñ9Ï‹—¹1=<›’q¾Ëü)¡Ÿ˜‹+@ŠTÂë¼ÏáðÆoãx„ýÎÿ r{‚LÁQ:í岸'ä¼A5þÒ«u‚fšq~ÂßüM†ðIRöjz—Ñ>²Z2]Ýdíْì‘J¼‘'ˆ¾ÅxS'zyíæˆLçбt¦uJz±‹â4Ž×û>\_Öw€Ù~hœÔÎéòÊÃÙbz(­l´ò ÿqÚ¬+¡]šü^ݤ—‰Ö'½…êi~p~Õwc¦’©ÅÊ/ºþÄçT{i9¼E!]f¼D´­¸Ïûú×.´H‚ Âò!øÚÇÇ Û_Ɉw³3-Ë• +¡7¼¿^ÁX^”ÂF«µê25½•R뿜~ÿ9ÛfyÀ þlëv©¬YÚBÍpO,¬±!“蔸{\¾åE«g¯ÿl““‰àŠváj+Öø³÷ì–L³é£”·ó@†ÜžÅ"CÏ8Ü£ÏÓ>žle>MŒ¹¿wœD”ðR0äM©X˜ßæà»¢už,"BÌbI½éžNŽô€gJ4\bB–Xú´ogz}už¡s)½ ‰1^CèÉpüÉ }Sw¿&v«Gö²FnÌ~sâÒ¨$̵̼÷Õìfg®}>=(ÑF õÔîZy\TrºäýÈséÂã˜:8œ-ÈåŠ(â¶Í*‹lwn—þ\+ï H¬6èÕœâÌ›(ê‹p 1Ú Xùf +«Œ§T‰èbóIzÎÖÚ iICq|—pÿ ÈG›yŠX¯çTyôm4šœW·>y7–ßX¤$ óóCºk¼kEé–,˜`¯ú\Ž•4o.Qùƒ';?K,Ï/Ùäy¸¯SŒ138øj\񾁢2.«‘¹GQØyYæ)$S¥i®/|ªÖÿ [“ÛŠz52× }XÉH—¯bÿ›z +1 ß¼˜ËË_ò`ÊF×ï1Ñý¶—tª½O +”\¦™V¤ÞŸ9«¦>}®­È¡¿ n­SÜÑDCÙÁ`âÍ¿sÖ8£`¬=@aO)y"åÞƒà}ñŠ`°æ8PRwtÍ»?ØòØ#T1¸}ü£ÁAN~SâÞÂyTÂÑíùãbÀfœeè‡>Vüò€ø2å^¼S7ìv +ìU1 é£/×I*JLuôlI›Wø® ,ä°‡y•º;ÇÂIÛÎw +[ÜÂ’üu­Ç G×J2Ô¦‚ YhaŽ4–QMj±šü¾Rî) +C£Áî¶ÁG°37Λ°Ï¼.¥î2w”;|‡ü3[ýïæÄ¥†©'5,]Íìc5~7“ÐÌÁ¥=ÛŒ‚­h~ÑÄ·_x!¦t¡šÙ¯]Y\g½ýRÑ~j©ÓšXÿöclꛈ’6aµƒ¶°¦—¶i¬EÏì,aýQjEsḑœ/ç¶ùÞœˆµhwÔ~óF†Í÷Œ;hgVåi¡QñWFËtM4'±ÜYZ2ÜDt.gçr7ºy&˼¥šx°ÃõX«šéθ¥E6_‘=õ݃UP£îðë,­74XöÛÎL…&#“î*ŽÑ\ô}Q³¹¬ïÚõq*‚ëÕúr–Ù¼…­‚êT¯ Dó%ß)CðÅð¾úöêýÕ9£Â,"à.‰À.ƒÜní§=vtª×z™”r[ö´ï×ÖyÈõÇY.Š~<¬ÍWeU˜aÖUHäüð¢ÜÌxççÕž™®7>Kq@ËVs›…c{Œ•Öb {¼ ë…;¶¥eîÙÙÀ þ %3‘~·«y¬Fæ=û)¦È$,¿’mà&ž‘]q£h]„–;Ë¿:¶lÔ6ñÜÞˆÎò:Ip¸EO9ËEÚ$õF'N}¦<–69úG‰«-îud­f€ºÿl ®û3°çÝžå ´l6F¨4›Íeí qU÷FXS: óY=±ÑÍF+f¹&ˆàØ>þÌÕûJÿÞw—‘0ËŠ¯@¼ ¬•bÚ‡È4rÇ6œ’­ÛÕYBõ‰¢ ó;GJ‰×¸”ogÜë†êº „H{;«—½ ïYæ2kOR;‹bë>4#£†±lWp©úv”ÓŒ Í–s½Íà×Í’Ri¾V‡ \8ø÷f)PI€# Nnø uë·øpvî”Úï…Ç”¸KB°de.v%²Õˆ¬¬îÓTÅàÂÌUaòS3­ºº+¥¸É¦õÙŸV Ê+ûÓNÑ¢9zxwÝ<˜ED|½Ã<Z?IS³ÅH¹ A§Jˆ©¼û)ðßüàÿŸÀÿ +[ÄéŽp¶F:áÿWÉþ endstream +endobj +539 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 5687 0 R +/FirstChar 43 +/LastChar 123 +/Widths 5688 0 R +/BaseFont /MRGXQZ+CMBX7 +/FontDescriptor 537 0 R +>> endobj +537 0 obj << +/Ascent 694 +/CapHeight 686 +/Descent -194 +/FontName /MRGXQZ+CMBX7 +/ItalicAngle 0 +/StemV 127 +/XHeight 444 +/FontBBox [-55 -250 1289 751] +/Flags 4 +/CharSet (/plus/comma/period/zero/one/two/five/nine/C/G/K/P/R/S/T/a/b/c/d/e/h/i/k/l/n/o/r/s/t/v/y/endash) +/FontFile 538 0 R +>> endobj +5688 0 obj +[1002 363 0 363 0 647 647 647 0 0 647 0 0 0 647 0 0 0 0 0 0 0 0 0 931 0 0 0 1011 0 0 0 1003 0 0 0 0 879 0 960 718 897 0 0 0 0 0 0 0 0 0 0 0 0 629 718 576 718 592 0 0 718 363 0 683 363 0 718 647 0 0 535 512 505 0 683 0 0 683 0 647 ] +endobj +5687 0 obj << +/Type /Encoding +/Differences [ 0 /.notdef 43/plus/comma 45/.notdef 46/period 47/.notdef 48/zero/one/two 51/.notdef 53/five 54/.notdef 57/nine 58/.notdef 67/C 68/.notdef 71/G 72/.notdef 75/K 76/.notdef 80/P 81/.notdef 82/R/S/T 85/.notdef 97/a/b/c/d/e 102/.notdef 104/h/i 106/.notdef 107/k/l 109/.notdef 110/n/o 112/.notdef 114/r/s/t 117/.notdef 118/v 119/.notdef 121/y 122/.notdef 123/endash 124/.notdef] +>> endobj +482 0 obj << +/Length1 2108 +/Length2 15575 +/Length3 532 +/Length 16733 +/Filter /FlateDecode +>> +stream +xÚí¶eT]Ͷh ÜÝ]‚»»»»ÃÂÝ%¸»{pww‡àîîÜÝ/ßÞçìäœûó½_¯= ­¶ú¨1kô9ªfMHä©ùl "6ÖŽÔô4ôø‚Ò +ôtøô4tt$$‚ö}G3k!}G>=;;¾ÀàóËç33$ ¾ ­›½™‰©#>¹ Å?I¬øüV{3C}k|i}GS€Õç†ú–øŠ6†fG7|~KK|…®pÀW8ìF4ôôøFf†Žø3kHڔĭmðYÿ6r²ýï!g€½Ã§>ù¿4)ð?%l¬-ÝðÆ´26ŸÕŸ.ÿohýïÉEœ,-eô­þ™þŸFý_ÃúVf–nÿ•`ceëä°Ç—¶1Ø[ÿïTUÀ¿Ý¤FfNVÿ{TÜQßÒÌßÚÄ€O÷ˆ™+ÀHÎÌÑÐßXßÒð¯8ÀÚèK|vî_ +´bÂJâÒ +ßÿ½¦ÿ“Ó7³vTr³ýϬÿ$ÿ‹éÿðgwìÍ\ñ5é>ÛKÿ™øùûßß´ÿW-akC#3k|f|}{{}7ÈÏÝóIÌøôøfÖFW|€ë§0-µãç%øŸ=ñÄ7¶±‡ügA?×œÖø_±#Ã'šýAÆO´üƒLÿ$ÿfüþœÛRßêOè3ÅÎÉÆ`d`ùïµÿÏ3>­µ“•Á?[ÇÄúO˜ ŸVßÊö3ªÿÙÇÿDÙÿkšÿ9>­­¾=ÀÚ`üW”þ¿¢ÿ+ùÓÎÖÒÉáOàÓÍÐÆÊJÿOäÓÉÔÍÖðLJ‰åóªÏ²6d˜Xñi,õLÿD>¥Ýö6Ÿ¾6Ö€ÿ0󧨣˟qæOEGS{À_ÿtÚÆÉþOàŸ^›9ÿ•ñ©ëð¹ þß²ç¿\?Wœð?î™ùSÕÚìo¶îÙÒæ¯‹Øÿ™ÆÊìFY>vNú›…ñŸ%8üsúü ~:ðÿ¡Ïúè³¶àú,,ô‡>‹ +ÿ‡X?»#ò‡>K‹þ¡Ï¾ˆý¡O ñ?ôÙ‰?ôé"ù‡>]¤þЧ‹ôút‘ùCŸ.²ÿ!¶O¹?ôé"ÿ‡>]þЧ‹âútQúCŸ.ÊèÓEå}º¨þ¡Oµ?ôé¢þbÿtÑøCŸ.öú†Çÿ±ÝÙÿÿŸþó|¥ý³·Ù? ü¡ÏB†dºÏJFá?«ÿþ³7ÿÂÏ‚&áç›þ…Ÿ·þ׉A÷yïæá§“Å_ø)õ×yB÷iõçì ÿ<#i­ÿÂO+›¿ðÓÊö/ügþ…ŸVöá?Ë_øiåø~Z9ý…ŸVÎá§•Ë_Gâ§•ë_øiåö~Z¹ÿ ÿïw€€€«5ÃçÃÿùA÷O×ÙñÙYØ=ÿg¦²µÙçs&.ôyhÐѱ~®î?QC'ûÏÍñ_/ÞÏ̳±ÙçëpB./Ør˜'7•x çM•‚R ˜4ÅÈÔuÏv@ù/Å[ŽHÚQnÔª=—¥!ÁþýçòŠåÖþC~\äÂ×.&eþý·³Þï4÷,µë4i·}[Âÿ¸¶Æ¹ÛSf`ٙђõüþŒË“9r!¥ð5 MçúžôV5‘4KåàÀZRFø»’¦àuø„8õI/óàoÍßW¯lÚŸó¾eÇ¿k= D#¶ã1*ìP"+ðžçÃÃÕ|üªâKÇ7Q´Çÿ ºòMaDÜ?)¨*ÃSXwúmB8DÚù‚ª¥]à„E{£pO—ñ»®i¾ÄRÝe\žMy$ÙÓ7÷÷cü¤GöÜvÉxoâ-Ÿ‹pñŽ9‘*Z 0-æDhýiéSÈîô°·?•1ù½ my><œøÒ´ù=  ÍváŸÍ(^½d  à~ pÉe¢e6àJIþR@³§Åâ»Úˆr£©ÚÒÒ›P@~‘Vúò£‹qÁÄpƒO¡¨B±‘?×ËwÏ7Á5`‚ÙK…7'’2ÚC_9ÈŽŽûw%X1¬Œ0,˜³óï¶zÊ4âòvžêwÎ÷bÙ3ö±+%ÍÚö_™:¨ÉFàe Ê–s—߈/TÓM×8ª xüÈíY¢8×ÁFXª¢ Ez°íLji9 ¨$#írФÒ΀â ^ª·[Nð¢U‹ø)§yÀÍ•¦p)¬Iû¾W`Èâò›šN ¹toy Nl É”e=D`Ù˜©¯èvÍ«·‰r­Ç?¯Z~t Ž%‰GŇc¢Á7Ú<ˆ +ÕWƒU‘=!ÅÀÈvŸú<ÑCjb…¡·ÚQÎö"Æ Cn^9/––kàh­¾ªÖ|@š-2 æø[jÑu[œ ’9ØR췪ѵ†ñ÷1˜ÏÜÈŠ6ˆ²×‡T§>L£KIœ +ñuY•¥n¼10'i¹ø…_›¹Çލ°tmÜׯOîü>8ÂP¯Èçt/Žu¤>}Ï,Âcg’©à-+lã"Iùø~³4ÀIžúçÐ*T7‰Rˆ$Š›7˜3îÊÍS'1±ï”n.%d¼³û0dQ¶¿ Â43þê7|2·C³éŒÖWY>úcˆ>Ì¥Ôªi‹J>&:ÉÌ¥#"ü­ãvJMHÆÓ3Ö5ò8õG'¨p †¤GÞ8Ô­Òk!T>E-xg¨)lµ‚nâªökKQД[[7*„RƒéR_¥zÄøGF Í@Áª£y7ÒR›>M¼>rJïøH³'Ì–ÀBó›»›Ù´;w‹oìÏÒBÕZÜ)ß$S9R®Nì®eÆl¯¨aÏè_·üúºƒ¢B1ç6¹ úm¿Ä‚¤Ã¡èÐS7iŸNqréK¾»(èZˆÃ:8·;ƒ½¶üeyü$uÛJÔ?#~)OȳºÐ{¶ŠÝŸÈì;T:xƹj®.Ê?Ëõ ÖaÐBÞk…3Å€¸¾(í€a”âË»ñ¸<ðu}œ¶À(ù­NËOìyû2ðñôаîcæ\jyw&£dº=wc³–µË⦾›%'1K ý45»†RkÖÚe¨TPó{º[¥˜¡…œ£ÂÏK½ÕŽ[Ib‚lÅÒ[ Œ± ”Sý ”ÛàšdæîP”tq£bñªŠ]§Hõ ÖTÉl‚B‰‡‡ׇ¬LnÞWfwØŠW»þÈlÎÌ¢mäëç؈[¬ÜÕë">‹½çØ€å>â™5›úyäpªtžbãð.î®ø 4!yjã<ž&ý¬ÖcQ `¹ƒpbÆêÃ> ðŒ)Ö¯@}X•^I›U±j?MÑ”º ã¢ –.Ý™ª¥ ‹OøQ(Ñx#ðܧ®ýU!–W^ÎøìÌÕʆÀÞÇ´Cï2Ž˜ÜËD’µ ýWšß5dd®¬¤dΚ|2éãLð +©n§”HWQÍl}Ñmu¬åØÇq¿Ø0•Xú$·‡Ø +pMøÉu`îäk9’´úSM(ûßtëºQغÞ! /üVLÝîs ÂÉÔEàÐØÄoc8(¾!f¨¢äê‘>G{q禩^sõ‘N»7^ó6sM]ªé£ öVk4:ÊŽ§Íû¨Ù‡ÚÅrr—ñ]oR*éO`±…ÿ¾øÓ, Ê{wuD}FÈñ«AbX$ÁõÙ¾­¸TýÆsÎf#äXRÅW0eP¢|ø›t–%gÒÀ®äƼêÇ•ÕùX ¦âšhpɧó˜V6“h ŠÛòw9¯õ³3ˆ#ë9€o™ Íã¶9L +Ê‹å+¯‡ví/f[4ÉW¤¿¾KÎE ^K3XÒã>A/Ö +fð¶¾jÄ»gjû•Ým҇ʔ°º9eÐq—Ô©Ø>•-‚ñ˜‰OêçûÕ¸—@HÒ6VÝ|]…»3j×yÛX!úÁp1öƒ4ÃM¿sÀGîu·h“»]vQ–‘FªX|å…šýbV¯O^;"µ †tEb§üggšX¹ ÌqÂžÈøÅˆCµ±rªbvÆGïºÇÑ¢p"QÝ©t_¯‘†KÛÕò’†­ •èêy÷œÄÂÀFwì⸮.· ÷L51LÄA‘l}V”l8[¦fºÙ h¹œPh‘Ⱥzy`ëyÃÙ¨›—¨ +Õ° Ï!‰”çq-Âø—R9p:’#^];h V?´OÒÆ6L1¤T£[`PÒ†š*{ã-æ-â£Ý¶8Š×”y•qèŸÓykj›^Lº_¸d¨¦ìLI>¥À(ƒ'. ¶ÇpÂfÎ'óV}9ª‰ÁS—Bdì/ÕWz3ñP²6¸ÑÖKlâ‹8æþùÅ›€£þöõ›ñ/-Eê(¼:¾Û¯­š^…dÞ<üAU©ÒQ-ÂC},b'óTŽeZ¢ÇãA§wÃÙ¥uGGid_à¤)üuO%«Ý~)+ÈQzy•™ +p%|ìLo2XJ q]𕍠‘‹Ùµé¿l¥Í©-Äã]¿™.•Pß/©ù€‰F*±ÚtõmvR!Æ=ÔØ‘1ÍâÜ.¢™èíUT©÷ÿ´+ï9ˆœˆ^jºuÊ´#åü¡XWúcã>éÌ‚±]3;Fº/Iz8š>Xòˆ”ÿÄ”qs¸¿¢WÑ-±iȪ +®à—ÒVù¶'ø­ßzKÖvÐ/Ápº6ú{Ñvxh’ÆH†™ãÜœ2bÏ@ô´¹›&…ŽŒ¤£ Ѱ[is{È» ~¨¾ßô²)’æTZ= ‘ß…š›7; ùùá_¦¥úéK×»îº÷óWŸ-É!öÌQJÆ22WH8X½æ€Ä®{+#Ü>üµÔts–k÷Óo&ÆUU53_}Í|žjé6ÞÆ.±•Hªå#MgžØsgêà` MCÀ©MÔ;BOl½¹%4ºxaœ[}‰ + ‹¢[Ç?¢?@z>Fa^Ìҹ‘6üΓ_Lº"wsqnNŽ6uÉ´ ªóü欂cCi9÷°<Œ9Àí"C7¯þ¿^Á¸=N†õ®?ˆö€GÒ³¸Jü£†ZîÏ!CÝÙuèà™MMÔ’5áõ`ïmG÷ybà­I*òzs=z¹ü$Þ•'Ë43N„ƒ÷”ŠÚrY¤ì,;¤ë«]ŸMc^Ïi°Ñz"Fdg<ó ÙX/{– A«ƒÁ2Fa-ôKQêÑ^õ®¾;\};ÙÉž)©´µàð£™*j£­¡ÐÊ„]€–]*gÏŠ ß4Ÿ/•ÿ>Z58m9 +d}7…’iD›?©ˆu0© +Á°ßgwïµáüA7wÏßáÅôáf ir'Ùšºôaè»ê ¹ëæX~rCÌ08½“ˆ= ee áþ²¶êçÚ³¥|&#Fbd˜ûJx1LäX­–- ·bIÁ–ˆ—,²ÝJÄXK)Íßï>ÍŽ¤ÃÚ9M5ÕÁràÙ(–ÅÊ‘KZ›{h#8¡ÞŽÜaç|ÃÑŠàX† Z†Ó;ò] iæ(¼`ôšî…ÙÁ3cñtmCOJ¡bY¯Kïs”K„ÕlÕsÁB"†>T®'Û üšÝPH8hs`”©£e‹½™¿ÁX½Ö-8…lñ¬˜QÅa£‹ë0y'¹Z…˜t†œ¨®}1\ Ik8DC“M!HUkæõ +O•¿Ç?4óK=NO/qŸwß›m˜µ8—Õ7{çHvÎô¦…ê(CœÖSXt¤idn…ß4¦)©4Jª¶úÔB½ª)~¼[]Byå®hÑ-…ŠléÆ÷Ü8斮ߙî•V€ê€'§x£ÇˆTFô¬ˆ¿ØEÀ_Þ9ÆÙkjQ°»=6¾yÎT½YþW¹éfìãïŽÇoæFÒ›ÎÈ|—Ì‹åÈ +á-’< fÓ§¥m{³¡…¨I1Ed„ft×çZHá§¾Ååó±z´Ã`»‘Ac*?ݹ=‹^rË£<Œ-Pa3°«‹›9,Ôj؇ÁŠÎãxS§˜×ÍðÍO.„!!áic;¬ú Q«ê·ù£œn ·²#„È©ÃÜ…m"†øõÈ«äá.2Ú*Úk¶ÖÖuãØ$žð ~ ÉÖžØwO¹p~èÒÏçß"(ì›FäÅjßì+Ý2<Á‚˜vŠ»ã³íEvåC;ywDwrèQ×wä·ìùò°0#¼ {&Û¹$ËÍ132`yžjâZ™ƒïvüa»émÅ­»Q×$ÿå ¶œP𭬀«âÒäèÁñ¸~Y”’>–ÄQü^l,Ò÷Ëå]÷4sƒɽ P…ÊRMt‚Àˆ]N€àé=ÃŒŒJ}p±uZ¡iúêÑW_ƒÇÚˆŽYåÀÝÆgØ8F"!`,Ý€ÝéÎûÙì󦟮SýKÞÂAò¨:‘µŽ2søjOÌë¢(3:äbÔhG–ììŽÝ‰'ŽðèôØ…œ>Í/µä QynÆ5y7.!âÐ5Ás[`_vì=z Ì:‹Ço\óCμÅk­®ßÁý9ja‘q„cáS÷8A¶ùö¦ý‘ZÈb>4»Aä,.œ§IM—ÑwŒïÖ0:JæcÌoyœ’—Ú(d{û‡“DìG· ¸ßõðß\xjµ¸‰ñ‘¬îÈËäþUÛøÐâzP¦(zâ!)-VÁûjü_.ÿ-¤gë^®}Øuw«PUiå;ÃU&=v“ÅÕ©¬ ÀYˆˆƒ#¢œ6–xbNܸqÛÜ÷²³Ço®@¢`£€Mæ(’ž^c)µòÇ!N=û½ºKÂu­ºÇ{”h‹HÌQ“2 r)zçækL#û"/ô2þ`z*ÅdþB°´•–ÆùI‹;¤0|íÄ“#@Î(i1e&ª3Pån´‰:|slξÜõ(8nÑåhnß}+ýùšÈuB=V0JÑJa‹›±›½ë«—~ÊëòIë=䯉×ífاáh×I =7'Iþ=}gXJ)šœ‘ÑC0½áTÈ4 ÔZRïf?EÚJó´`´,o£ê®Ä}u4ci:ã„áìQ¶^Ù\…H Ós¢0f0óîhTkžò8ïÐê†^–¼£’Ù«{=Q’1¬Ë ò¥òªß¿Çô÷6«[ìø=ý[?V€º6º‰F¾F¯£4»)æ0Å3·%~™mÑ+-o9y' +–ÊÓÜ‚. ²š×í”/…(G[,B}øí¥7Òqðò=nVp’Cé[Ô·1ªHŽè  —æ7® öò;“s0€e*ñ½÷®ÃIb°¦2Ò¢É&'±ÿäòÒ£@`W’MŽÐSkcµfæƒoE¾õ냜0Y#ºŒ¡øw&‡ú¯ö8™—õ^ÁÎí— R$ð ÆFšøEž¿/ïwÛÚÞã“aЦÒ>Œç‹áäç~lž8¢Ar¨']V»š©~™ÔY&’Ñ}¾œGå…aØ#÷âý›¾ÿv¦/.㣽­…3ŒZEe^ã&ÆHÛ*’<=+‡,­”0ù]Ò̰ÄÕÞÉŠ‚('e‰ +]cmq´Ñ;Õ +Jè—$Ø¡ŸwaóN<µ—³}ª¬£n¢ÀÁŠ-ßrðÿÈJ4ùLõåfí5oÜbº¶¨‚÷–¤•Œ˜•p"þ+yÆ7‡ÖÙH* ÌháÔK¼:Û÷ac9½ª„CS1a‹*ª—^KRûy¡t¥Ÿ”×-²¨OüjeîÏ S&W¨ßŽ[ä˜xeã>Ìb_H…Ÿ•1ÆH—Ú+©”ÞCØŒC£Pñ¯ÛÒ˜^sm^¶9q¬ÏT…æ2ýÝêŸÊ¯«­Ôë¡Ä÷“H*V°™t‘Jâ qG‚ò‚ 3Êãw±- Ê °·¦³{€n’.ÌÄ ÑMb¾ ˆ®qD¨·¦§ù| ;Q6E¼ ÑQõÖúO|Ò„ >oÂÛŸc`4áAƒw„Ã)ä}&Û+œ3ªvC5 6!pU0jQtéµO­t‘µïÝ-I?`”'ÔÉ Ú3èá°³bX¾ëTL {‘»Êï¨{P;º©Å‡Ÿ¯ÅÓ;´^Š5@\B«3%= %wZ¤ÓìÀ…Õ¿EiI‚is-ÆåŽ«V¯ìE8:Í8_î/Õ㇅S?ƒPgš ½E >Q<§ñT(aòp¥ÎpjË3çE”RóÀjGÜï4¤NÖ‰½r¯ €— Èj9v»tC ö)‡;÷ùÛ®-ê1¹)¼ º2ñ”ѱh7oNƒòû½‹¥îFEàö}™’¿2NÀ5µÃï)ÊŽV”§‡4w/)¥g"‹B”qaå†ÂlÅ5å¨MœÃ_)cRó¸ß{£cpç 6JÐ_âU@©µwá0¾@×ÖîüX$ßÒ\¡d)DŠj‹§Å£BAô|P׈¿×oR6¬eÃkG²jnQˆõ6|ûð}pºCãà3d›hñŠÃ¬}/:0bÙ‚>2 Ôû@&“Õüm¤Lû@Å0¬>ùcÙL7¥` „¼4æâ9KFLüŠ­gqõŠOxÍZÆ•$ä.4]¿c?¿:ŸHw¾ã¡‰%õ ¥ÛyZîn 0÷’ú#ÿ[4È>|ôª¡›¢Aîw)ß°H+›Tµùˆ‰Ž%¸ +$çG‹ìÌË5‰ãƪ<6úÒøHž]gà<¨4 Y£ï¼ék~OmÊ~Y 155|Òµ.Ú«½FÒú”¹¸¼Ï + ¢›½k9ô +ß…¶¯®ÒP³ «/ ™NU¢S-‡-†;iýüKS4~µÌ®Š{…³‡Ç6Ì­¼ß'0ë÷Èg¼åœu³…× X9¦‚ûƳ&eÃë1U€ðOV;^ ²sÀ×o%^ï6âÖnVó%ئ”ø™ô—Gc…'å;n¦½D͸<"Ä5êSDºi¦`“Ä +P0ʪîûU{%{ „tª'–ÝÀµ×`W±º%g–‘Õíî¾±¿»å u{<]éﯚ%³)”Ì—Žƒø©t{ƒæj€™¼ðmÞV•+>%GgΕA&ƒ:ªäõÿ‘áã íâa‰ìj¹$ââRG ¦Ã9Šyø2ù²h-Ÿe<É>9„ ª‚‰Ç­N¤ô»Ý<äx»»ë׺qÝ`øž.—ƒîqØæ’âñÃê0(9sèpq_4*a¾›f‚:º”È=7œ„±Ö;ϰ•º¹3{(¢„5çDnUû„«êÜíœÎíâa\Q¤Š›¬-ŒÎ”Þnc’ºJvȶŠ×²JzhDð:/9`¬z+Â;âM ²›J¨4°:¿˜vµ[-mùëb½—AAG¨ÙSDú÷‰ä-º—7Yã~ŽQ ØXû]áòb´&ùØTJÈX?ÖŒ¶RÛ¡Yøgô ËêS;Y둆Õ8ž,ŒN”<³÷.<Ê[Vß¼¾›°“ÆÌ±h&wKËå„iƒ‹aÓÞÛüM5o}ó8¯˜ôÐh¬à yTšŸ›®êƒõÆñÏL¶•›!eˆW¶¦ËZ`,{µ±²Ëƒ.d0 +F¬“ša=°ÎÖC5á¢\Ük|èU**±¢ë€qÓ¨¯Ú˹„j6ÖÕ1ú +ɪ}½T‹–[׬»ý{ὡ(à '}ÔÇÓùXš¹ýíëÅR“„¬L«…æß*TP‰$Š/ðÜX®†êqgnš$R=\ø²­Ö‹Bö<©)ë´’2ºÄiLÀEû«N¾Wäc !dþÂMéªÎ5.f„ºú–3RÑÕÃZü*Í$¶o…Ž´À—5öTÓØ9°Ì,å±nðE† I†£C%LéwEfq¿õﳞ€=+á雄Ÿ5‹1ÔOS€Ií¬71™Î!¡õÙˆÚÛE]çWƒ#ÆJ.®†‚ Î6¡ÄVçÜo»Õå PÕ8Íî—ΙpgØí{%CìÑYÑJ µµqæÕKð;”èæåíöÏ9r!6žžÉÖßD˜1H¾¿½öeç÷\;­h)Ž|M˜0N· +«ÿö +•ØVŒÏŽ»úYÎPl´æÂn™º¿AÛØ=¹$§Ã ®†Ï»øÞW› 6ò3ò𢠨V%Úæ2;,|dþ›!DÆRÀðÐOä¬ ìÙ.°Hh_–=*ö1+®Ö¤+Â7R¿4m›gUT9UUqþ¡ìʺ¥êtî_ÀŠ÷ñµÞx˜hG„-‚#œÛHTÀÝWä5£ð¥m´Á6ž‡r™Q$2ü_¶WîmƒåàØýy±¦h# ?9¸;(›xsŽ»ì-Éj báóǘ€”X߀ì߇/ðì&o¦ðAF˜ÌËYwŒ÷)ÐëÍ›éµ*à[ÍJp Q²GgAR[“ä æ¹Æé5ûÑ> gÈá*ýx(¥6÷r \bIGbzÿ|‚nùù–—Ú¶.ŸuVe7uvô)]W7¨1€>Ѧذ» m°…^$©T–}=UMØ–NèÃk\‹<­Á嘰ø'?WP+eJâSb‡“FØ\:ï›Û™¬°—‚BW!-3j¼0á¨xÿš‚••»÷ÌáE ã¥<ÛFsŒ…IÔqÆ•oµ^±vBH©æðp9K +ÇÔ£‰2\©oÉ3ÚFcŽ«¦&êÉ ‘iñ œš3 ? H´7a¨$Øû— ¼Ô&í[B`@øu=ÌwLРAq+¥ŸµÄWhMÙ™o·%ô×»¦ïvAÕzvŦߒBlÐm "‡Ñm|˜yÂÔêÇõÇ…R.ÜîLk¹h´{ïŽfÚÖ~)íK#'Ä'js;å»®¾_‘pæ PÞ ØÈ–É¢zãʄϾ¯>’=ß ÄÂmÅLVôë+`œ´=£§HÓ3͜ú#®Ózr‚ž(ú¹seþzrÌ?9Žt[üuðÆ&›“Zåø5'ˆS1#¼÷û®]–‚’¼Kñ¯»œ‹°åq)ãa.±Ë©3¤Z$²ñ>­ÞúN É”ô#Ý'Æ…‰x²¤ôÑ÷Ã;ƒ>•žJÏ`EtÅöõÃ’ð^ÃŒû›Ö>I6DÍšïÇõ|0,o@mÛiÐ]†ÜÎÈõwa½3õa·¼_úOæÔ½…5—×)-,s"ÂÙÐÔÅZÛÖÒú¨AÒ=™ #ïÞ+¬ónÈl•i‰5ÜÍñ¨ðãSÁŠ¿»FñãÀg_ÐûI1†Hj?ánR7û˜(ÇM”ž£ã×þdZõý)ÉLТU? +â¯fÃ. ™")Ù’Ši·J«ò„6y˜¥à…aM–£JÎãǬC¶ÿˆ²ñL·7 »€™&‰µ¤-aÝ»ÑØ¾³DKÉËmîÉkýmjß>­Œ7z+öÚmw~œáû(cï•…ñ@ä^RâŒ]$Š/c ƱQ ×Ý_m“:§=Û‰š {#©-Œ*Û¼zy빚ióÒa!5Y@Ãk6d!SA¸,g`ghVÇÝÏT>Í;ëbÆQ*ëp$ªߤ ê'$R=clFa§KGÏTJ9 +ÇEÈÀhÎùm²Œb¼¦÷=•' ”–òÑýŒ44BAø1™A†2õë0-E2>!mûdzkñ¡¥°;7 5D>¹c;zfýot +“Üç¾é¶JK´¶I.¸‹ˆÕ‡ÕŸßµÑë¥Þ|ÙL©ýϳK6†rFùר\¯5žˆ=†Å¨@4ÕÀ ·ËûøÔàD[×'ÄÔOò’'£·}x¿mÍûF}w/çÙ¦ÚmK> ÔÙ¥¨ +;2D?ã¹(¬2ÌÈbLŸÞÞ…öïÿþÍ[H¬Wõ‹¦zƒîXÄA{„U#%ßùå^ô¥*)²¦£w˜ú&õ|7AœãhªBkkKÔ³|æÜá·æ>î¡K¨;ßa‘˜ÍuÁØàIÙ"¸æ¦­d§†%m%¬˜Ü͇EaÒsŒ•Õü ÃDÒ·ÐP +¨Òž¼ïî‹Î_ã}`šB_èº1§¥–úíÓ ¾çš§&qÇ&9¾dÅIñ¶ÿ¤ò(Ó„µ®Ïø¶ð‡-JÒž¢f?º|ÛvöU´"ÏÕ‚AZ±önä „•ô¸»˜ˆLBÙvª–vø@µÚv omJ~ÌÞª².ÇÔbÇ1¯ÀræséÄÅ­.ï1½UXnœ™¼ 7»ÅÔǪ¿Þe)“Š"?³¿w?S+ˆ–È)Â.NØéç£1O÷íÓ[ÙCÇ|Ñ ‹È+ÇH¢ÀTGËJLÛ99‰Å=Z%¨ÖT5­?OÌÖá=$rÍ7[æMQ‹péIÞáºü=hoÔÖãt•Ÿ`¥ÒHâ#qƒ°ÑnªèɃ'$fIj<öŒã"åwÖd™Ijxy?äÚ’±‘öÖÏá‡Û`írŸö‘,¤@{Ê_}Mô÷±'Èÿ;s7V Mf +ðÍ9˜Íl“YÄ\3Û{pi4HYÓVûªª`O¼UèZ\°¨6›‰úÚöìHwCÍÖkô5׋AÅé±úgvÓÃ÷9«€«XÃı\§yÑx²ÍÑhÃsl[5¾Ï>+=ÜÀK¬eïtÁ°Óµ©N +¼5÷çÁ÷ÔÛí*2[†Ýaj£š6I¡È«QÔÚ=¸èøÙ …¯·Ó½/ëÃÉ]†©(ÊP…X[+ò¨™xØnªn´ÈPf:0íÝú&({ŸøjºRl¯n´þîcrSÑýµÁ˜šq|lÖ±¸gqù\è7ƒ¸¾ªç[â_ƒpò?Ж R5ãrÑŠ:œÌÉ‹ys}V ¨#'WZûn#wyz{¶øE9äl!ÏÑcÔ`]‡H©•FéðnS£:ýé‚/=Ë~!©.s¶-‹e¸}dÞØ5·[sCÜ„ŠÙvì‰à0@ FÉiMî7øu>qR-ÑE­ªõfT@Ñ㤘IåhÝéà¶Å¦ãÒ2lõ×G oôò‘¶V¶½{®QBtﺇø€R½œ´€Ö¹Ÿ€±z[qÊùøÖ åc°OC£›-A®ˆÚ…õš—ÓÚAïš;±ý¤‹’µÅù7‹Ž|hBq×|IµõÝkD+a?žÜ±tLDP,[{`ÿT냂?È *“'m{P0$?ÎÎê%¹é¡l\5pš×ì+›{snÝpK ôýâX±'é`L‹ƒá¶jÈ©Ûe¹ê `5‡¡P-n1 áU“çyŠ™Ý,»½S—I@¹{§‡Òa)“trEár|ÊŽÁBý·ÔNúSŠ©sYºÅ¬=¦XŽl‘Ž<Çup6ú,Ñ7'Iǽ&ŠR…(az.EPåí.9ÁG~9ïpàoôÏÕ$/cÙCÙ%kT<1Od¯,Šì¦‘À~ú€5 ÈÐÒÞ9Û*„JM®•ŽXo6‡Ê"§ dÇ—kÈ÷ÛÃìIõ[2«Ú =ûÙ#’›©É/Çöq  E˜S\Ü(‘b’ËÄeûÀó[ð|h0J0,‡ØjÔgWø%ñßifÀ ™“ ɚѦ8ÖŠõûsL*'…çí7h+” RãXV„o`eL3üEˆ{"¸/KŠØ/í>äËïÜrZ¦¡xöp9½°æŠ$Ïl“¢sËŽ´i WßmÅ[•£¦(_¾q³tÞª"S6*þœRüä;‚UbW™¬ïCÿ4¦ÉÈñ‰²~öl/.IÞê@Û·º¼è’¼£^ ¥ö„>#`Qì^Ÿ/ó„ëÞ >H²M*>åc:Ò.ÁÇlöÐL:D‚!ùÆ?’m¾½¾jŒ‡DÄalàreù œµ2§%ò¤røù.Ìfí(¯23wdé‚׌i`ƆN?,©RÛÅX ö +T±È‚÷ÇŽ÷ †Ã³Ó9±‘±šg§¹?`ˆ› +"á«t§±£¤‰GŠ<ƒ\€[@+íæŽóœóäl—ëíøAžýL )²pQs­`ó‘cÀaÞ«K>9Ì”ͦtÏ*ŒLÖÌ9AHefRµŠè®·“ÏÕ '@==yañ[}+•Ÿø]@/客ÇbØ?‚qbÊ•¸›‹ß3<ئíþA.†KbûðK¨0hŒL¯ÕeàW mg¡%%L@“Ôƒý–\ǰٗZÜæF¤'c¬G"Yž8UæŽéfÉnòOÝ=Z%®f æ7’R½P¹.¤J– ªY#ï´ôpˆÂ-Ãg*ÀöÓ/IrÕfYß–hˆÇù<}OšKå ˆ ®fV¥>ú +Í÷×8R‚9ܱÔZ5}ÔŒ9w&£Þ‘s=¾¤~÷²ÔÚ|÷уê3+ÇaX&ÙuXšhe¼x1¤áâ:«¶õhŠ)Êü°UÆÙ:»Å&ÕlCÕ7µÍ9Î`E!8 „Í"+´~9ÙÜ}Ãîœj,õntº\KS†*d¦þä{'¥W+.ƒé¨“7žÐÞéÊ8k#!‹®ìbÅó-éF c$…Eå§ý²ŽZYâ’¡Š_𧓨„øi;T–7ÚÒ»z]BÙjT—²SÛ1›qãÎê:µ¾&Df^9ÅÓ* eË)Àï1¢âÛ?8‘\•凯!öÈÉ”Ù@ª!´MŠ#Ó)¬N }Õä|AOijÿSÖÚ2ޱîªåQƒMAº.A©Æ?½ïiÏd‹?µ¯È{£K&ƺÂ)ª³Ì‰€^œqŦ ›‘·3¬øv¿§e“1­3Já êmðÛ$VR³4g8SÚùNKSjœ3Q¹Œ½n.R2OÏ/`»¯L¬1«ß«Ëg™‘õ^€éÑâX›ˆÆˆO-¯í2Ïe÷®)¢ àà{PÖ ^iÜŸ®0›¼ƃ6ø{{W@蕸ÌfÖ;®Ç.³;à ïFìq¯Š]@6®¡Ú M¨¬Säç_†C%å§N[Ûö¦Ö|UG*Ï2§l-,E*=õü¯Ê è©n…“‚·¡¤:aÄË(…7±^Ås(rG¿ï|7Þú ÁÇâq~‹œ +f;“+Ð/@<°1¼Ž•NHPµG‹QJÌ‚Â"Š!_9àwù‘T3`v~O@‚ÄŠMD³”•zú61¿ê\Û*G’Úñf祙·TxÏèlr߃Þàìã±T»O´Gê{[QF¤Ê¢Ë¥_XeêZRŒÖ½ëa¿Å¼Ú¤M§»¥«/ûA;›ÕìöµÑέ.Þ°ñä=Y£ë ök/=çW¡”>6n·µ©o[B=®3á75Noó×öNì‹íF„ÈÄאַ‹¯(m‰ÂnU= 7®è._*DT Ç#¤Z‘^zñ£pyk>\ÄG<`Tó,™òɨSPï5¼8KÀ†ÐúNéªüËzË‘»¼Ùö°ÜF g#ŠÜÑ3rôÅôîI÷näÆ8Ï‹lÐ#¬ýŒ±§o·åEû¦vê0^y¯Âu0¸R|™÷#ñ=«.Šq€qáÔ…Ý ©*‘£¦ÑeëÍiÌ\¿ M©Ô#ÎGÙy…긅ë¶ïYÐVèR`zu³Gû¼ ÕÕäz~¿r*z¤=<üZ‘A„·Xnù œéO Âö„NÕê¹â´âL sn÷ˆÅ4X»pÄÛvr¿^bpM÷ȶtúPöêrÍ\ +È©ñ€®<äAYÀFőߡ×2y‹Æ›\CGÜ\¾:&`”nÙú<Ÿ¾Öj • "¨´V:vð'BiRxi¶bêª_y[å@C׫‰òwyš%>¸êšõŽüÀñE8÷/—.OÝ1¡<#B&TqæŸ S¼L%ÂAá¿ñJ´UK/Þº”DŽpu³ƒÏE¯©Òaqj)~+Ý$ž;xJ;÷íBYª¤äÝ·Òf1tëðòR®’¢‘j¤[¾Cex– ‰sÝx/b‡ÙŒvu­Ýê™ yèfà1g2?Ÿþ@²c…a\Y(N˜C¥;‡£ Äóu’3WÉ*VˆTcÅ8áó!a+Åp:Ï ³B€à€\µòøªuãnÀ>>Š%'@±±*ƒê¯t²U•X +q£½—›Ìš-ŠÉ9­×ƒÝ9[{ÛTäOÆañ¹Ž,ùˆâ0!«[31äâ*^ØÍóΧt¹65,T=À?좃B8€ŠOÊÊ‘o_2Cת"þA6ÇÕ83xS‰DQWWÓ¾ùq'Ç¥š|©2Ê>»‡×Sª/ß›òCƒ„#ƒ³ÑT¨ËÀpÝÃö‘ËÁ(.£²œ ‰ëÂ<7™b½‹ß ˆtÂFŽJ!XÞÅ^„îqÓQ¼~Ýžª£* ÍoÙuI îº7ó­ O#œ$JH´O&4 +ñ–“n¸®Øü€j»ÇåãÒ®rÎlif…óÍйÅ´B áNÄfSõ¬œ[_†BÚJ s÷$ØÓU\Lj»û:C&Þ±ûçÔA‡ˆ¤’i†LPˆ³µâÃ[(åû@žX·»(îůöÏñ•Óc°J¯¢ŒÜý ·¡øX¾<Ñ_ÜÇïú{ÎÄÙFˆXº®¯^¯ŸàzÐBÇÂqøÚ”<_˜ uï%2ÞåAHV’[£"¢‚àÈ»:,/Ÿ†¤] ¢Z`ƒeΪxÞJÛǯ±ñåù´¹â `jø#·ª<¦"ÞæùŒòàùï îÄ2oquÃ:~M·‡'”ÈkH”ÉŽ–7ÇÇ(Oüï… È’^Žlã°Á>Yö™ƒ¨®ç'OÁ’¥ñé]4µÜ‹ÄašÔéç: +­Ð)‡©\GA¬L.cÓ5Jf½nGŠÀÃ3è3±=Œxy=H g1~ôÖœCÆv÷÷ª³¯É„»¾ÄÍ ¸ZiByÍæ(t®ü;#âÝ™ƒ Єæ‰sh¶Fá2Ö4˜ý…‹Ëì4LÊOpÐnÊf`5 Lüâßõ,h.냻u!ΩŠ  ¾tH³=3‡u¤²ûãqžPÒ…T7 ùOÚ'ïž°n;Ïz}ϯ¨»yŸÉÀɉúç +û^J +üÌ*™¸€qxNÎþMU¤»>ØaŠü…üB²ÐV´4 £Å;|°Ú‰1Ã&Wƒõw+‰¿Í(ô˜×©ÁÐ =¦r(Õ"Ç]Lš^G£:~øw—pH•Ý ûA¼RÙ›–B߬IÖ3hn÷&DZé&pcD€¾Òý?üüÿ'øÿĆ–}{G+}{ Èÿ¾[K5endstream +endobj +483 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 5689 0 R +/FirstChar 11 +/LastChar 122 +/Widths 5690 0 R +/BaseFont /HETIMR+CMR10 +/FontDescriptor 481 0 R +>> endobj +481 0 obj << +/Ascent 694 +/CapHeight 683 +/Descent -194 +/FontName /HETIMR+CMR10 +/ItalicAngle 0 +/StemV 69 +/XHeight 431 +/FontBBox [-251 -250 1009 969] +/Flags 4 +/CharSet (/ff/fi/fl/ffi/exclam/quotedblright/numbersign/ampersand/quoteright/parenleft/parenright/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/equal/question/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/bracketleft/bracketright/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 482 0 R +>> endobj +5690 0 obj +[583 556 556 833 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 278 500 833 0 0 778 278 389 389 0 778 278 333 278 500 500 500 500 500 500 500 500 500 500 500 278 278 0 778 0 472 0 750 708 722 764 681 653 785 750 361 514 778 625 917 750 778 681 778 736 556 722 750 750 1028 750 750 611 278 0 278 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 +5689 0 obj << +/Type /Encoding +/Differences [ 0 /.notdef 11/ff/fi/fl/ffi 15/.notdef 33/exclam/quotedblright/numbersign 36/.notdef 38/ampersand/quoteright/parenleft/parenright 42/.notdef 43/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon 60/.notdef 61/equal 62/.notdef 63/question 64/.notdef 65/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/bracketleft 92/.notdef 93/bracketright 94/.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 +478 0 obj << +/Length1 1939 +/Length2 13905 +/Length3 532 +/Length 14975 +/Filter /FlateDecode +>> +stream +xÚí·UX›Ýº°‹»{Bpww-î.ЇàîîÖâîîî—âZ¼ÅÝZ\þ|s®5ۭýöµ“ä~†Ýãò&Td*êLbf  ÈÞ…‰™ ¡(®ÃÆ +`cfeG¢¢’p»Xì%]€ü6>>v€ÐüüáçâägåF¢H€<¬,,]´tÿTâˆÙ¬LíŠÆ.–@;p¦Æ¶u©ÐÅ“ fk Pû§…3@ è trš1#±±̬L]&@ +{$–œdíÍAž‡Í\þ»È èä –ÐþK“–4ÙÛzÌ€æH,J ðh@°ËÿZÿ³s)W[[%c»ºÿW¦þW¹±•­çÕÙ9¸ºŠ 3 “ýÿ¬ª ü·œ8Èö #ëblke*foa °þ;då,eå4S±r1µ˜Û:ÿÚ›ýOpâþ%À¢.öALV•á¿Öô_…*ÆVö.žÿéöŸÚÿb¶? ÎŽ“•@Ÿœ^6pEðû¿¿üÁ>Ø›‚̬ì-ì\Üc''cO$ðîÀ› `eoô=ÀÆ,Ìö p8%¾sÒ? +^sóÅþì`´úƒœÿ”þa0;º‚\€f&¶ÿ^Ùÿ.ád°8;ímæEÙþ+ú?*ƒ»1ÙÙÿ‰pX,=,öBÜà¶àÝ2ûâ°8Û;[þ‰ðX¼€N ?> Èøæ{¹¸ÿ)ç¹X:ÿªñÏ”A®NÿäÀí¯`]gðrü‡Á²Î@·¿\Á©gþ_Sä«Ú[ý-ÂûÏœmAqƒU€Ž®àýÿŸÇ?é:ÿsàÿÁ£‰ý!ðHâ<ŠÄ!ù‡À™øðâçAꇖþCà Èü!°„ìÏ]î]äÿØEá]ÿØEé]”ÿC¼`•?vQýC`µ?vQÿC`?vÑüC`­?vÑþC`?vÑýñ]ôþ¸ÝŸMÉngò‡ÀíLÿœ VpC³¿ðŸÅü ÿÙT!x!x"–!x&9VðT¬ÿB°“Í_–²ý ÁVv|˰Øÿ…`+Ð_¶rø ÿÙn!ØÊé/üg—ÿ…`+—¿låú‚­ÜþB°•û_— +ØÊã/[yþ…`+¯¿l¾Sÿû”ÿï«U\äáÍÄÎ8;øxƒÍ8|œÜ¾ÿwMM{+ðQ’•߬¬<à£ñOÔÔÕ |¹üëqã¿ÙÜ +|Ë@S¤ïK SëÔ–°r¿…3°ôâ­ J}óÝÈÁ+‰¶%ãòŽô› :•Øhû°û¤îÏDÎQ]>ª“RŽ i‹¯ûnŸö3¼Ú‰t®3=÷Èï‚OÐ;[~rA*ÏmN”Ñ-ʾ>ÉW¡•Ô8€_'ƒøªïÖô53„›GG*ÃV3<´šƒL #ͱ<‚3|ÃãKÌÆt°Ÿu8BÃÚ¨Ëë±!ïó«ă)\t´3aIJ 2êê‘HoûVWØNÎAUnKyó”"K QßžÞ6󔄇{ûíGŠŽ&’ÇɱJ"Á‰>ã „¡­‡Åž× ¦ºôÔk³„nx°ÍïËØhlHFÃvº¯j2ñMM®ÚɤZu­c&¾iRsnÇêö{”QîÇވȦHáøœÓ°m¯D h·Í·öí s4-,eW€ØÕ¾Ò”¨ú`.Ò©U†k snr]ã­G|h&DGTd …ÌmÚ¼„™ÿÆ.q4&|³NpÿÛ–r‹j::Zج â™»¥ûDèVƒUaŸW‰9Ì»nt´›!¡¶èü0¤F%ÚŽáC¦5b‰=ÿØV’;b<³xß]7ôðwd“ì#wVJý¸¸Hèvr•4ø,ÍB?%ÝúîÎÜ‚¾Ìúß¿$„•.F EÒXO ý@=ÔæUz|1L×´pôÓ¹ãZZ|H¸Á>ré§<¢+ÎÓ̔ђãØRŸKƒtg¬{Iñ'OK’Ñ$_zî`00 ºÔµõ¯iØî=9«õ ¸=[CÆD¥ö'‘VÐfoµ¨ë•8¦Wí‚ %Mõûß`»ŸÇå1£Ú,¿„ñ=ÎPêK ó®©GËÎé0\ÝR®Ø$W޵d­«ËeJ)*›CÓa?_#qMÚø¡çU‡ªNí’')XKÉaä×+p<>Á„1³Û iíà¿ Ä êÚcäü¬¯hò¼{,Tó¬n²,¡ì¡^¤éý}¶m¡GíA_Ôõ„¬jÅ_×Óù„˜ÚÄósˆ(ÜÆ¸Ø´À‚½F‡ã±Ð ~ ƒ‚kÞæ|l±nû›ª±¬q]T' &æ‘–ºª5½~ÈèöM$­TÇNTÔâ†)™Sá=1aæN\q³ìæUÛ—ÁïÞóÉåyá‡Ë?Û0!!§¥P'³ "D[R¬k±&ù€Æìí]±£Ýر†[ëË[3J@]Žk»4´üéý>‘ +Ù?õIÏRùB-9""À‹Œn+F|¡ÞŠö¨>-H˜&S'ºyÜ×ÃÕ´œÊ‚ذóI)nÇ®ž¿-«C/je=u>SIêæÇ Îjn}|ÿsœ¼ +ú«[D3 &™([ìdÕ»w‚6ús‰’].Œ¥©ȳs¾Ò;È;,}œ¨?ëõEök]¬ÑõoúZ#yåYµ¨‘[ªÐö~û’¾sÊ+?Áº›‘‡›ášëÁ’ߡơM,]`DËq?f%*¨ü ›("\&/JûS™•Å"ùÕÚÓ1ÞòH6‰ÞŒ¯SºvDçrØŽ^•Ÿï„4šéT}ÄÁud[0^¼ÍîµsS¦Ëið2f¶¿§g‚bu?Î‚ÄØ€ÄyúRŒ9àœgoõ!“0Z|üH»ö€ýÅ$§ ¹Œ­iÞ¿±5žÀI%"NᦸÿŒ …ûSûV1ôxy¢ñaÎ+öUŸý8í©#¶Í±ÔÖãðZgêF[^V ˆëƒ¹Ñ +ök¥î³\/Tæ›ûµ*t–xïÐWhµûÊ×ü£¼­OØÝ9Õ£»0ñåz,4˜;GÉÒs¦¤ .É·­R ¥(6pò¨Dý:Ò6å‚4ò¦b›iǬŽ:>5IÇù«þ¸£emW^gß;ËBöðrÉ 2¨ÚDÕŒs#³– Rx6øè‰Ó£k2ùn»)mÄè.:ÿk<Ù‹b®Ì÷/eŒŽ—PßÞóz›B®÷ìq¬ €‘ÑZ +tJôË + éÑñrJÑõ®‘ Lt‹Ï±Y’v!µVÙst]A®œøhþ-Zï³Ñª?x ù¦ÉóûÜÏAkyUëU,žÁ´¼ }LØ}-hU4¡Ì¯bìZC€þV>bQ7éz1„pE%q•Ì;ÂëV"¨3K(ðõ+2PHQ›_ÈöQµÜðRê¹LQ¹|†G_]ŒMŠÚÀaŠ­Ü?vY'c¼,eÿ±sR(Õ6£õU17&f6g?s‡%.¥2™ ošƒeúBÝÎî­³fTâÞkÄÔ!ùEf6uL¯ ~®úÕU +£_ðyS¡Úh[}‘çW¡Rþª` eK¹YÿZÅ‹³R,"×ûÙu´°šá(ÃË¢êŽ#n3;šZ(,Á*Ÿ3:›¶©+TÚ_ÂZÙZæ# I Öqj[&ÆìVû ™W¤©ˆ»©Ó~O2¬È4DyµÛ gŸLüGW\¯ ©¤xv³êîFÌ2aÛ àÙ6À"ãfÛ»V”ÿ×éL\„«Èµ!Øù~í@/Aƒ]F¯Õ¹é}ï›nKš·Àƒ9Út/“Od>!¦îw¶E‚üÇ}=“mn©ÁÜ–ˆêݲ©ƒÐ\*tÛO·gn»ïö”W0¼#·úâä/Sš‚_pA<§ïmÃÁÐv›8ä·žšÈ¨ÛbØúµQpYÅïÚrâÑæ +Íøûò¨ß&>Å8Û»»!“«^‰qT‰ênÎO_åå3é:$bÓ¹Iu£_B@šâÅ› wWs˜I®z~HžŠv­uW…qµ¿U6 aP…“Ã"VF>[.fmÆlÏGB[Ã4 LIw¨j=…¬Õ;›Cãd² iÁ°IèS„Š$'’œ¡¤'ø +#1ÄQÍZ96Íš’ÞsËVâ‡P×ÂáLÙ:6[„¼–8¢˜4¡Pû_Óíx5¿©43$³:ŒãûjÛÊ–±fã}Ñï¦AæsÌ*Lþ™;qSö,RR£GbÚ§·pr²+`ÉÔNè®aŒ1ã—"²Ôh«­† PÞÙ®·¬ñ”çA¬DåxôÀ™k>½.ÙẀɃX£«W}mmN⩟Âú‘ND{ùZÈû21UŒÏD‚;‘:$ÒoŽiñQ²e–ñURêIÙž?¼·™iKd&6¶w¯Ôæ›/S}„tóªsh_"Í>Ìtÿ¹ô>áCŒî}ˆmtô#÷;éøü@·y„¯Ÿ‚‡ ;~Χ|éo9öØ|¿Hu< z]»Š8¬ž<ÜG¤(À +‘ßi“WŒ´Ê}çAÉLöœr³ïRR‘¸0Î#PÔm¶’Ä Ý?š[¼W_­ËxÎU•7½¯è)•Llµq()óD¤,'D)Æ¡j[˜²âÿõžJ˜¹0ò€Qˆ:Y“–ŸÁÊÂzO‘+§µ"•!C4„ /ZƒõšÓk‚3»°žtD;ÞUޝy.®®ƒÒÿ²¶‚¸çì—ì¥rسN@ûä)çŸë¡ÎǡÙÀ*3Öd]þPþ¼ +mnc™îG¶ÙI!Pô>ÔåÂqË‚ÀÎäUEÏvâ ¤×Þ¨Ó% ›åú Îá‹d´Äyë¥gæEˆóqè̯ãÎ÷CÛ„qe»Qáí&»s?ý4¡‚’B=×`ïV!Ô~ÑJ1#»í4ôèÇÊ£ØD3)¿ßš +ÏĤ–|Dm†Ö¸p§#úŸêòž–Àó QôëN¬Á~¥ÿUs«°øý\Ç“·´ö辎6†oäa¡‹*§.]@ÔŽûaÏî3S“>¥”“ù´5^òQAÆ8Ætf‚¹!ìcö™éVóº?›yfBs?“àT;¯áˆ£%p¸î·0G +é¬È€ +Çár]5%YåEjÔbÁO앇ýçÅ÷Ú>¿F˜ bó8ñ*gg +us~[.‰™ò”› Ðküä`v1)ÑŒàîÞÎ~ÕS+´|rïÔûÔÿ¼±ê‡©úû|GcÐq¼è8šåÜ›\;{ L÷›W™¬jQ=ŸTJÜÌG/F¹H]ã„?W{^nu¨ÆLhH!{ž_þÚ?4~Q´æú3gD±E÷EPª)Ùì¤öW¢ôNöÞ%Ôì¥îkØù×DA{—ÙÍœQ +ê@vmMÄ(’ôŽ1Ë  !w˜»6ki[Ÿ–)“øC¢X¾üÉ}#>Hе]aLç4›Ñ­A--?ÈQ«BÍé(ܯˆ±ú!Èÿ!gÓ™ ›#+¨¼]ÜÁÓêý$3ÊÈ4jÍF Ñ0|ü‘ž><(\¸=3„¤å{ò׺þS^ØÏâ=äÅÛK»¨ñ‚ü^´_¹<84Ô;W&É>ùîˆí„•ßšîÂüX:‰EŽÒ ×Q ¨“A3†Ü«î +õØXL’¦èÌñ3(K^ÿ4áðÍ8g<6û5Ú~ÚÀ§åîJ{NŠr°ë[ç赸øÔ›¹ð|½ª`Ïùt±¦¨)ʺ2ŸmÓ£ÜÒâ±iqŒÍoíU{›>éÝYÔ^elu¿Œ‘ŒßâµèÔNDmÛ¥‘•6(@ ÖÒx_÷2˜úÒ³43ÐЋ¾ +ñû; "ö›–S1Ù piîR°Èûá2„¼M¬·k¬à'éL±dðü4Êeȵþ¸ß–_ úàNÃ) «ö·‚8sûÓ]v¦X±  +C-_#‰Hb‚ˆÝ™³ÝÑu•7]7›e|EezL&^˜¤q 9Ð5¦±lОI(‘ªãW—°nÑ@°,Z…³Š”‘ŽÇªŽšp…Šê®y¼ , ‰£BþŽy`)>¦+A‹ã±l§HX ÇØ>jR8ƒ_œJš¡<øJ(ù%# q…Ϧé:þ¨Gг<5æakp"HÒd ·%²ÊîêžÎ×ÕpwÄ õÍ48ˆ}5Š¡.¦“ªâ &UŸleBõäï’àÒê'\ÛïàÿöKÈTudaþÙqФ±È”HåãG_CI«-®Ë«©0eL ·Þp½Il««]Pn-’z=µyVzÕ٠+$Æ8hʉϷ;ç~ñÕÓ[¡XPj]GÝȶúþC4»}bÓJŸ9‘ªRüûEöÝÅÑJПKIòDôWš©X.—yÔvÏ>¥V7“P÷¥1ª¸ÝJ\zînèOƒŽAy[oeQOWü+ÉÐéÇ/=Ù¬•¢%bDëÜQlAþ*cé'è.SzŠÄÜÈb>ê÷%ãÕÒ~ ÍÒ•AÑ|×¶ßW4\äL(¹ÖéûÕ&,ßÔ[¨cŸ­—éOhXçÉÍQ§9Ç­u_÷,¤&qÿ¦Ø¢¯•«ƒbXé 2^x¯•Þ”ñ”Ÿ¾?·]¹%-’$éIs:¥êgt5G—v–Ä]rhò†eÚ+ìçiˆ87òz™Wè%kù[¥†­‡ä{(Ås³ÝÏÐ|C^5u˜¼«ÐÊ;¬Jq-›&=Oõ~•í÷·kÇús,BÛ£/9;5ŽÀœÎ’K‘ŸG»ÍÁ[lf¥ÊV”§çgÝ{•óYÇCë£t¬ü3.KáÜèùD)†9ÈêÜ&v½nñ¿-Ìš¬:0å‡D‚DÒ¢Dê»Å&Þ­„õe\Ñ&Rè3.(*¸ôKˆxŽù´ä÷DÓÑr»RµŸPä¬ ^Ó3FëÐ8º;®ëdìö?ñË7Y—ì`FHóéSAHU¥ñ~JóÂ:'`­M…N¯všïò¶k?ÞïeöýyÃîÎ@1¾ ¸GæÌ Ü¶^«£Oy*ÅÐ|É.=í5Úz×Ç‹Ô^‘ëÅ_cÕ«_ß³V•…£•t0i4P_X¦>EчEø€¾zô.q_T™ä"·ZJ2°Õ˜ô•iÀ6ÁBŽ}kkÿœ‚MòC²?Ïq¦XKêbm§ñ¬ >b¶Eqß¾a1(Ke´—ÜôÕå,7ÈJq&€%gg£Ô“E3LýÓýôÇÈ¥ÈûJ*÷·ƒ¦Ø©¾ZºtÒ:“ñÝxB¨Ç»Åóh›ŠÀèÉöè4ÝÕÈÓuKßu]—->Ú[¶£×À.Q§>ЉsÁ™·LaøŸÅ3¤×™ýðÆ·²û¾æô ÃÃcDÛêÕù›2¾ ,#ûP‚©eÁ¸êÇ·Òèíµ£.ß+Ïã¤*qÛ˜Žüd†)lUý䀶"±ã µ +»=Zarz¨m*2E?¯.!F§°EÑ3;³øW³§fÑwPò|a:2Æô¢ÒÛ’\á.M|η>þôì +M72ߊ_ßÜ!ˆˆ‚"±·zuž'š|Dµ2jûH] ›KIÕ¡lU˜ŒZÔתÒÜ‹DeÃ*ó\ñ^n{/òvû¤qX(-`UÇ8‹‘öö‹<ÑähìH]¼b_¬Ï3’Rë‘€ƒ?‘«%¡Mxê«õ"…m%€ +B»3CæeéG¿àúhx˜rNV¨‰àhÚ>âgy_9s¡N¬Äżœ}pÅ“]þ½sŒ)¨“áwžœ±[øJHñžr©Ù$ÒœÉ ]º18»2tG–ø>éçXî5Ku3>ä¿›Åïã´q"0› OœòÁÀè+lÍüAHýóéþÝ* ÆÇD°Ïþ†ÎSùsXííé…Ž—Uq |.ZÛ§Z5_‡r ù·¾_¢ò›ÇF/óððôw:?î~y@wdD ÐŒ!³]ü0žãç+ù|E{8Tß:°Vvì&½€ñyj©ÒZ\îx}×|SÊ“0åD Ü*ç7˜éùÙWþѧbµq„t¾ôuËy|MøÔ‡N>@°³ò#-2ø…©xÆÇÒõ'”j/uR=}Þð9ÞÈŒßËÑHΧ‡¨ø¯YÛ›µ˜Ì+u/;ì.û͕ԭu¹óq^Â8¯ºnÈySì—ƒØu{z舦šE½¾u‰ÐS¯¶ÜJ§2J;…8°å»úSÊÃxémT£iÍÔÀŒ>Ïš|°³ ±J‚ª»½že\±Nó´ =9üûY³~³‰jÅ^R¦æ;ç–‰ÅØëÓÈHƒÜOC(éϬÞÕå¿°[¸äÅ·Ø/_>åmœuý¢Šù ]ÿ1ÿ´êRœ˜¿âëâz2O¡¥åµ¦ÿ+Žƒ‹éàTzÓ!n%rËèàcÚý ävaéÚÚä ’ +=1'̨ú“†4‰×Uû5|e¢ý­.wpð)ü‹¨ÌÚ7“NE ܃{wmî­ß[i 3¶f{Ìg ×zyq çã´(X1×7¤O>¶{¶špNZ#XÅ×E×ÄUTwÒ×Ç2úIÞ'<ý^š[ÎûÃEgc!QýÚ6‡Ú›£h¥U… ñˆk“Teµ´¶24¦ ÞŸÊÍûm«ËaˆaÊ~È“Eë“ sê{¬ËÌ.OÏÍ^ Ý3•ûZÒ–ö?‹š?ú“T0Ö0Éol~?ÍE˜Â‡ÿ¢qøüãRÍ+Ëhˆ[Ÿ û,/f“Mï×§(—ï˜íOŸœtp­ÉÍ{vìwó?ûa³-DWe”y`N?õ&n²˜ï§¹uàB +*Þ™9^Z7[r޽áŽ2I<‹IKD gdˆqí ¦¦w˜l\9g½ÙGÃ#aQÜ t·¬MŠ2¡[ðÂiâ|…+ã.(ªh\°sÏ*—ÝlÙ‹£1Y+½â?xfòëdzah™ÛÁ…‹Ù¡DÔt¢XÔä&÷~¾]«¾á3³fÅB»åî"é½MÈZ{Ïle ˜¡TÚÍ•¼-\÷jíÛ_Áx´Œ|`oHÓã»ÕC8ñ쇓õA Ûâ  o&pE…¼|úŠaD/[ìArÞAÎ8!&iëY££Íœ}‘¢%[¾/åW;+«oúxÑ,Çm›Ò뻺~ˆŽvˆ=CÚ׬‘ëúä9úS¶;`_ 86-G—èƒJmºÅ²Â`j½×‹ÿ`KÌ@ƒS`¹é½x†ÛR‰WÖô©>ËMaOÉý/œUÖ6Ãl±G©¹~)…áÌú«X@ÊM'.äj‰HðŠØæÃ© ³ëEõ>ÏÍ6l²Òn\#qõfÊ&’lZ«´Ú¢¶1Ì×4bªšZÝÖžÐ{æZ;UN¤ß›/‡VYÑq¼_Ãm±*RhvdÚêc7×dO§$ŠàR¾R©†Çsß²­So¦‚ÈõPÛ§~|¢w®V_†jón`ƒÆúmÚ´ô´ÛX¥¯ýµ˜DÜgaæ‘,ëð;95¬¸mù™Êñ9 ø0}ú² ‡T½|“j«À;@[†œv+Aäù +)¿«>Ìk™¹<Éq1ÿµU«³û£¼‚h(tßuYzå7CåõΉà3¹ý·Ûõá QX)YY7ÛѱD—ʧZÓS¯N?óRì‚Ø¹ j#Rö¡õ1ã®É̈³Ž¥¥úõNÉí<6[ˆu>ªÈß5S˜ëf㪾é]§¢Åx\q“+­Üß·:Ñš\DDtÂøà˪֋;v:’ "èàÃQÌ;f²£ªÚfÅÈ_ŽW¤ Þ¼ïqaºŽa"ï`žV£D¦qmÎ{î&âk2¤0ŒdŠçØk¬ðÔ°tA{±6'0áoOŽÄ$Ï£¦šr–,T2,êw:v {¢^ùcÖ\AR²[SxÞÆ\ˆ«÷Øúã¨Thµ ]«rå·?vðQp¢ûbw,౶пݖv†Îiwï±%š@šNíl^c¿5j¼ +­bâx=‘ÙÀ€Ö."«†f¶iÜ£í6°t^©îÉö£‰W`žœUo×€…w¡€Y¼«à·A&nìÎædmbÚ’±5¢õ´|.Àƒ{FÚÆGR˜¡lº3mª +šÝ?žÑéÓŸ¸Ü´_6$.̆¾_ÂH‡KâÉÀOVð´FO}£æÛ+#[!ûMM˃ë¿"H¶]c½wº¬p– â!:yØmŒ¯EhµJVѤrÝÒÄ~˜ÝL»;Œ1§:ª’[cÒö[HöÃ…pW6þ£«½ಛúÞÍ"Ö Æà“8 +DL/ñ‘š¾è(dýëÕ™þ²»™X¼Õ)*×lN`¨(Q|þX‡Ky°—‘ÊÞìU’ºßÞþ»„fZ[]ÂPnÀO35:“†Y— +”X¥JØDoâ˜Þ.í›41rÒôïÏ-SâZp׿•ÙñôrÐ?•p— »,ÙJ7C И-êÌà/’–ÞM oòöI}ˆ¨[·]Q½.Ãï¯ÎçÇü@zhÛ9m°cpém¨¦Ô[Lsð‰E@Óm¤­ºòQ¬#‘ùÕµ9t,ãmЗaIó^}zd91ðæ/»u¹F|ꢽõЮÍùl[MÕ9ùnÖæXÞØÃº‹7Äí?d9LJ£ÎÈÙÿ¢œ1¿É£A«ÖP¾èËı)TJÿÑ´Q a—õêi ç-òp„‹Ür»QÄa~œ^ÄAšõóT3ŸõU¿ðø»™OÞloÈ–hZ}è…ÏáZ’Mž;Ž8õûˆá6ÿaï™4;×l+Êoæ…XSTŽÊÒÂÙêdü­")…ÓjÒó§Ÿ’RÜåõ Øz:™ñ"ÀÏ][N+1,é ·:š(¹åí1}•…?ÃÝ\ñae'ñTP†YÙ(™ŸÜŠ:XY°=y|ôt 1Â]eàT\Ïdú•UT¹]0 …aÊFfšïeXörvÔTûjY ,.>Z|4då1ö‹µ*ÉüºÂÞï+Ø7pKùÄA3T6’!­d hâ&/!ž¥õ‡=ëÎÎ56¸=¬3Š9'Ë*ËÁé+šPÔÞU`_i¾nO _µåd¶c'8õVû“ì|µ¦ŸSÌÁûb§K~Vu×çU¦&þf#Åk«Iv»#ìKÐW®™GƒÏÍ})]±îÜx %t Dö¿l(2™ó|Lx:RÆzMü}S°Oz‰ž»tàÏÃi×@ãPÛ½v#¿@À+5$ +[×·ˆnÿh7Ú«”t™žú4€›ôš¤úîËcÍûx i—d¢ŸK޻߆‘ž:›ÍlÔÔ·|äÌ ø +ÿ¡j&†_{fd³*>ÁÍúAæ„q§7lSßß—<„I¿'µòF–qÏeÃùröäÜbx…FûYªu}â·™sRv…/`C ˜ W´Ñè$zb7¶Ê9h–'ë³S„Úßß“·¨:ÏŒ?ù"£|l”urä¥üÔè]4¡1bÝilö²h{›LˆÒæ$œyÊ2(mñeF}È{™lçÁ SÐ#Ïö®KŒf?c’v˜žÁµÈYça¶6,2½(Û–â[Ý‚+¾_¢†Éô‘ÈTÊTÅV”—½´Z3ÒT³™ý¼iáÝ ïD™µhêI”_¯÷ù¢"ƒÂpÎ6×.´7¾IãŒY¡ùaŸó¾á ƒŽ ’Ï¥*w‘ÖÇS!»;­|IJµ³} +î"+ô‡YBÊ©¼%ìI³Ý ÑÛ㇈(3:ÒÑMS">Ïžj»1?ºd/¤k<$HqØ4‡0‰Ù}&Mö¶|™Am÷ ƒÉõSn¢»#ýñƺö¶ñ«[Áíd‹§˜uë©”Pß¾s¥Ô®^Óì"N +Qã0::²š(>"ž0 +!ôY,žÉáTZ¯È-¾.m–æÇqt Z¬ÝJÖ§¼6ix£¿iÛ ì»%kaí5†ê_ÞÊ./¬§³.yŽªež¢p÷v'\ÏÛùÀA£^±™Àe®éæˆ ¨bè—ve¹K‘çs×E^ÒsºÑ‰seëãj´érrQù%^¶~öE}žù~¤ÜŒ¾ùÂÝ"¨GàÖq–0Ä_2sBH R|È’@GòY a%‰íŽ£ È2ºAçBLt«€‹õ÷JG¢ôdêtTDÖ±º¾ááÚp».éPÆšE°Bƒ®yA€‘ÐZ“EؿŒ95VÜOžÂ«¶ó@›Ò`¶róC–ù›$ø|vPÓÞžÄó“š ´Ç­c·sKKæ!¯ÏÁzïÎ +ü(‡¹¡W¹4åû•Òvn¶·Y(_©`ïRˆÿÂ<{KL˜N¼=êÒ(—QL'ôeEëU×Jêlàç{k6uɯG©†¢}%Œ›I(Ðü+Ä èSá[ê2›µ*¶AVª·#îB¬é#&SAÞ¼úŽ´ +õ,'™Ä¹è4“Y,Ii”˰è vq +eއ˜÷dSO âÅûy…û•Ûü“~o•#Ìk¾·¼NÅâ–c_þöÖå+<[Þ $\\a8ªFzÖÃb^‘YÁ¢çÇÛsnÐ<2éàz¢M<ʰŒ£®Á¢ºwþ2”i—Ë·ê4]¸mI¿Á÷k„ÈGZ•žÓ…2žEës~œ˜¤r"ì¤Áä:­‘¦*,öö&ŽÌáA]úa0|Š9šZí¡ùl4èä=”…Ïr¬&b†(ÎŒ5ÁOB›X4(CÇ +ø9y–;¿±t±øÕr&ß—Îï+×±=ÚÔÝšÅ²Þ ¼¸)Æ)!ªîCÀÒÈçQØ&-APµŽYí ú‡‡·ö…Ki8ÂÃJ¯¤n$‡ƒÕ7wÜðg¶ÁóJÁ«“ËÆÖûkiñêžC‰tU¸•­H¾E#”Gß¿¤9vÅé÷]“S8ŸNŽaº>XàPC7Vx”á]P¨°:Õ·Ìо¢á³ yOˆnÅ2è tõè³çÜab² +Á-ŒÑX~±Ló¯Õ+]0w=]òÁió9ç½¹â%·ð¹~ö9~e×´¹àzãø$ÛÐËõeÔ`¼ûÇâàéï×L 4§©˜¦Ý Æ·–ëà&ÚŠ÷ÙNlEÎã*39IbÅgŸ¡<ÏSå•Uk Ãͭã㢉Y'¿pêô2=[?É2m Ø5%X­^«e?B¯ Ëû­Ò…\vE~.ç%”{\xš‘Š=3oF6Þ’¤Vx‘˜x,U0'!¦Q+çW }ꦒñ{𯚯|áX˜?$èúÀƒ¯Š°u}5¯úóŬY¡a¦ +ت|Tf;³›Ä f·][Ø šÌRkÓ,€?ôú•GŸ«ïæ«Þ=á9ö•ϵ‹ºxÜÞ<ÜoÊËEÉwu¥§˜ð§Q’…ªÎÙ"-ü§wòjGŒb’.øè¬¢÷¿‚ –l*DÔ:ƒO“.ð Ò &Ÿñ½æ¨óÊ»0¯|^,Ê·DÄR(€ô”ü9²@yDAÀW/‰²O Ð€¹IÑYóîúédQÆypD?¾ RÕƒ¬ÊãY¸º< +îRÔ5Á°‡5rkrŒñɵߞ‡H@Ë6s|¦ðsÞ!9TÑ>¥Ý–²+[ý6Œýƒøð³b!·«F»Œ¶aÀ=D»œt!C®:¯³¬£‘GÄ쩜E›6 @3ëC~ó–OÜ|ù˜L‰Sã£c™”ÒGeË ¾¾±Èˆxn´ÔqÍ”k¸ÑÐ˾ +"Ωy„>m0UA߬WÐGZn3©ðëì + Ú™pØã¤%?&%†Ü1ÛKX¾ÙŽšöØNAÏŠÁЩÀÛ ƒ|ö;‰1:^ÖUàêȨg¦7—'æÂ;Þ†z€f*È„;ÑN¦¿ ™ÊÑç@g«\^žyC…ú¶Ü§ù9»$z¡LËÞ âEšoÓ ++áqt)‡[Kp††|©ê!e’Æ‹h‚öp?êì·õêªFëÈ9=<”¥c÷?¢:B±&[Ú©Ö¦DMp«˜×ѳ]¦ÄùVÌ¥J‰Tþº(D.¨~ß+–)XY ¹(#¨PñÕ(ŸÞXçæ0¸*1Â7Ÿž3 ÷pÉlß釿²Qk゜ëÎñ·,5½Ýž¥ÍŒä¶j;Ó:vVñ²ÒìfHoÁ±ÕÏ¢ßÖ·‚úU•¾…uPöë]šp7ýøxk\-‹LÙµËaY¤Ô}¾–Èù u¯ê¸Ø¨«­œy +JÄ•¤¼DXeˆ„ÉhI® µÌ}í¬¯{¥ðršQEŒ>‘‘‰;OÑÉ |rõ +ÊÀMWê¼GÜN?eAlËìðrP‹ëpôÛDµ3ÄvÄ¢4t:<]7qäª{:Ò—Ñ#£ HT ²Ñ¯ +ÄBnáñu“€ï‡—:>©ž bX¹ />Å#Qëµ_CvüEŽZª«TzåÇßzOlR­?£á·à®¾Ô†½pB ðÆ;àKø¨Ø—Ø~R‰Òª0C" +mJ—dðÅIE ÃÈôÜ-'Úý°‹ õ UÿЖµ·t¶d"Q¦ #x´}0]ä’>$ä·jà/s˜Šç?Jš­5¯ãÉ3ý¹ÔëÎíó™om0Gk˜úîpé@}ê€ù&\›¯üð‰¦0Nf2Žp³‘ŠŠ™Ä(‰J|xîLÂTÎRHÈ#?iÑ+©¶ª §§Wa±ð8ÏÙ² wdòÙìúÈÙác"#ÕÖ]èLvötì] ‘ò‡•v7LÌë™e¬ûÏ¿6g»DÖ4ú° ²„܉ÖkÞKÞðˆÍÊÍ ņß}t4í¼‹ŸB¸9XPF™DÃs›Õ1¿²²"'Àü!`Z§¦+)±8¦µú±ÒF°¿”ŠˆŸ„Uf#XÑÁP‹™ì×kE  yàΧ¦’3kñç’z‘—]^ŠƒÑ_¡ÏC‚>w×Åf¹TèonÖ¹8z.30´‰F ºÃ8Ðk+}+_S±ºFëÃPE±Í“~žª-R„É,ëˆç&éó%¼* §5gœ#öµeIPÆ +É ™9†„îð% ¨[­€Å~ç"cpà£e¾a$$9¦5à±0‚”EìëU†…7ݳçÏ™9”Ü5l7úÒ§´P[›p4^ÉIÕæ>ØÕÄ·GRâ¸V#9àñýЄ”\µpð®ßñ©'ï— RyÞ<‹S÷KúUÄ‹DÛÀ…4ã÷iA6Í'H­ ÅÒŽys8LJ߫³ Æ–Ó}#_†Í³2÷C(vñú}\‘(7PêÔ#¹öX"³³_6h$©öB_e:ˆ•à>ôû0eÊàò³Jùo‰íl^ŒúP)WëO„(˜÷HxàX±Órk`0eÖ¬5ǸœÃ˜î˜Ð‡ƒ~q»óØi*nÒ9r)ºìhÚ<À èúT(M;ÔØä–˜Y'-x™´qD@7Ch²&Ëaˆ{¸~ûf\ñ½ÞWJ<C™8i~ïX9ÛÙ¥v˜t2R¨¦ãcDœ+Tír<Ï-G—Ñy@ÃòVW!sºdv Ñ2CŸ,ÆÎ™«Å e­“4dâÔ ~² 7àr„*+卵xвÜ ÿNÈ)ú;NqÖí3ÑÏÍ2e$ŸFd[ŽÜDõÞüa2¤xsôØ] Q\‰Øv¯M>êT¯¼Ñ»sfݘÅâÜǦÈ[J&nP³‹"ý.òF–ìªéC[*¯…ÔÄ7‰÷PoèmÑBpœ@¤ñ­ÄÂÂÇR¥hµe»4w·SµQ·yôJtN”w“Ïíá8„BË&ÑR¨ˆ9‚ÃQ(ÌxL@ßB›%'>™’×”'Å Ô,ÆYš#þ¼Ð<Æ j[DQT +6šVéikzt ÜéÄÊž’ß´º ¶®P¦Û¬ÿLuQJ^ÝLg‰LïÓQ›÷ýú©õƒ¢v2M´¹ ùuñ!yÌã9eáG¾u +(!ä>°š’éÁB\wtˆ›œ¨ýoTÑtí01'ù„œó¦óW’žuiŽ©EŒ§Þ¤r½JÍJúI%—ºw +¸¸ #ˆø\¶£¸"ŸkXs%mhѶ6Ô{¡Ž_ÏÐ…ÔbÓÃ1Ý*üÙÖ=ht/|õ :m>WÆ‘h:GF\oÚ;t ~âû¹×èëSg³Ê[&±Áˆ˼+ÌÙTN+Lù&7 +mèP”¸¢5cŒ·njÏ—[zdRÁZþ så‘ЯÍô Ñ5eÒCuEÉ{E™‹oKà96Àÿ[ŽþwRÈ‘XWÐ%Mrùš„WãÂ×&÷;—{†óqË…[t;e¹‚wO\D¡ˆ¤±›m®Q¨T¯ V}º'â<âe‰`ožcr3‹)¦õ¥ì·æôp-ĦeBÁ›ñ°j£#ýZX=œ_xs.qyš¯ùÒû¥q i×GiVæÜ˜@_©ÛÓìH §«ÅÏêèÜPñ–#3ïæË9}¶ÕO9~Í‚ùy}Ÿßã·p ®Ô/¦¾¢'P"š/&ŸÂÚ¥"Ï:7ö“õ†"kˆ˜ïÑ3qëcÔj¸æ¬æ‘íŒøûÙ¢m¤´eš‚b¿©úئíxe_{òHºr†|}}*Jܪͻz\UÓ}¯d}ñኬiÊëG×Ð$óî½V`+×lê&;‰Ø”©ùÇû«1",6“–&§Bsäùý +Ö´æ:ÁE™¾ï±>Ÿ‹¡ ¢&¾'Ò1fö‹Û)\.‰ÂÚS|Â9:%ymÒΛèÜç»À¹Ñø +¾Vã7“"fŒ·âÝ:#G»¤Fh@* +ÖŽwÅœ´øìO¤¹jUFýoÜmV5»³÷iø]ÉùÀ^2ý{ê¥PL’“Úwßô²eshA[½Ÿ) *1TiQÎï¦q…kÔX°,ß»WÜ KO¤…á*v¤¸béb¾—Ë ­J¨Mì°þ?|!ýÿü¢S[ ±“ ÈÎØÉéÿæÈoendstream +endobj +479 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 5691 0 R +/FirstChar 11 +/LastChar 123 +/Widths 5692 0 R +/BaseFont /SAEAIQ+CMBX10 +/FontDescriptor 477 0 R +>> endobj +477 0 obj << +/Ascent 694 +/CapHeight 686 +/Descent -194 +/FontName /SAEAIQ+CMBX10 +/ItalicAngle 0 +/StemV 114 +/XHeight 444 +/FontBBox [-301 -250 1164 946] +/Flags 4 +/CharSet (/ff/fi/ffi/quotedblright/parenleft/parenright/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/equal/question/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/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/endash) +/FontFile 478 0 R +>> endobj +5692 0 obj +[671 639 0 958 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 603 0 0 0 0 0 447 447 0 0 319 383 319 575 575 575 575 575 575 575 575 575 575 575 319 0 0 894 0 543 0 869 818 831 882 756 724 904 900 436 594 901 692 1092 900 864 786 864 862 639 800 885 869 1189 869 869 703 0 0 0 0 0 0 559 639 511 639 527 351 575 639 319 351 607 319 958 639 575 639 607 474 454 447 639 607 831 607 607 511 575 ] +endobj +5691 0 obj << +/Type /Encoding +/Differences [ 0 /.notdef 11/ff/fi 13/.notdef 14/ffi 15/.notdef 34/quotedblright 35/.notdef 40/parenleft/parenright 42/.notdef 44/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon 59/.notdef 61/equal 62/.notdef 63/question 64/.notdef 65/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 91/.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/endash 124/.notdef] +>> endobj +473 0 obj << +/Length1 1796 +/Length2 11127 +/Length3 532 +/Length 12146 +/Filter /FlateDecode +>> +stream +xÚí¶U\\O—¨ ÁÝ5·à ¸»4h54îîÁÝÝ-Hð4¸wBpwpúÿÎÌ›ÌÌå÷]ßé¾égÕÚ«žª½j殮TÕ`3›¥ÁöÎ,¬ %qN+;*-­hâ ÛKš8üü1K';€ƒW€‹[€‡• vð€€,­œ Œÿ$ñÄ쀙‰=@ÉÄÙ +h­afb Л€Î¬1[[€ú?W8ÔN@ˆ+М•ƒ`2s˜-Aö¨lÿÉÙ[€|ÿ6wqø¯!W Ä *`€J2 Šæ`{[€9ЕM 5ùÿCê—v±µU6±û§ü¿v雨l=þ3lçàâ „”Àæ@ˆýÿLýü9q°íÿšFÎÙÄd&foi °ÿGä$ rš«‚œÍ¬&¶NÀÅöæÿSºmÿ`“ÑQ’ÓgþÏûù¯AU½³¦‡Ã¿Ëþ“ý/æøÃÐÝ€Üúì¬ììÐDè÷¿~þɤìÍÀæ {hCððL Thg@‰àÅÙ›Ý@w¨1«=Øz º%> 0õŸÛÉÅ `st;ÍMmÿã^A‡ÿcä€ÍÄÎzŸM +ü¯(7;€ÍÁ´·ZüÉåæøÏè/ÁÍ`³òp°Úÿ ñB3¡=þ«$€ÍÉÖÄÉêO:µ'þà°íÿf¨…³ÛŸqèüÎVà_œ6 ° äO€ ¹þ•]¹t“ÿÍPY' ë_®Ð eþ·ñ@UíA‹@MÍÀ¶à?ñrý³¡@§ŽìŸ ´¶Ø‚ÖÿCКZPòA×-õo⃮ZúA×,ó‡ ë•ýCP ¹?]©ü‚º(ü!¨‹â‚º(ý!¨‹ò‚º¨ü›ÞA]TÿÔEíA]ÔÿÔEãA]4ÿÔEëA]´ÿÔåÿ‰:ŸÞ‚Ž™ü!¨§é‚zšý›8Ø¡šÿ…PSà_øO›ü…PWË¿*kõBmA!TÂæ/„ZØþ…P »?ÈÕ°ÿ ¡à¿ªáðþÓC!TòþÓ¨!tלÿB¨•Ë_µrý ¡Vnúasÿ ¡VÿÂÿý@»{±@O 'ô´Aù¡ÄîóßµìAÐÞ—“„Pvv>h÷þ5s@Ÿ Îÿzƒ@–ÿÅ è£tš¡.Î̓­S›BË}¥ +'+˜`Å-›ã”º¦¿¢-ÄÃÚ– +82­Õë{¿iŒ"…iÓÕP!•ˆ­ }Y|ÿ$/s‡2ï«xáÅpÓtY%#Åûúþ'E­ýõæ¨{°¥‚0#XŽóµ–!·Ȉ]‹ÂþyцÊ:ú qt»ûaByŠgË´¥<ÎEk¬*,†Ê1hˆš~ܤ¯—…éܺ“\•«uúC®rΑ%ž_aå®/ÂD[`l£eΔAÒ;8r,æ°_·jo"Jäg&¦ø’n9æ²£=ëXœÍ-}ìÿHDJ3ÝŒtZH;ã'Ãg¾Ÿ9X‡`pQUý`+m¶Çbhù~?²9Ö(0ׯ€®òÙ—°²÷&ætó!;O?~tÙâ·,7þSÙæJŽ­LŽðINž¦ß²Q‘é¬}ÞŸº1©¿Òv{­‰ÙSHM7KFŠ ™§#‡ +~ô¯|'f^zìœ"éNÌö_»cg˜¬&G<ž?rj.o—]FòÄÙÎ.3ô?åd×Ê=Ñö°Ã{ßÄ`‚4L§`‘ï&Ù?‰eì^3o㳄´Ææ~4Ÿªn Ø‘at V+Z½© ¤Ý¯Š‘fÿüÂ9çqD_Uò_¹ä›ºÉø$\(ÊÒŠoÿ°h‹¹ì(!‡õ¦·ül/’ŽýÍЪsŒÞøôòYÏ#!š1dU' ü€_gá#é« ûo™2'¿Zí­Ýï`Hçz:Z !0¾Öºvwb²SM‡¿’’|©ƒOšf%.,]£ +õ9Ù†DH޽¿¯ýÉqÍiwIi¤2õ¨óGDXÜÙÄ{º^­jî™ØSiI>:`Ë)Ò‡ò,YP™ÚFJ,Åx/4ó:¼SLBÌùÊ%ðÜ+3®¶ª?¶UUs(´ÊÇ4€˜¾FÀûO‘äÖ«NÇ,ËØp¾E@C\ÍYèïOgÖìn³¤÷“JÁŸ„'G$¿Ç™ ™É_S д½š>Mã«<ÙÍc&ÍVÁ^qÊÈUsIÚ8z˜ÊŸñ—À&BÈ3G¿.´Ë7@ `ôž£Œ]F²ïÄ+ {-þ,3»ºÅÐA᪜Ä(è™g`ï“–È”Gûà;ðÝ6//H‹Ód(нkDbzY]1¢ŸèÃ]Ñg{€ËžæÂ–„&‹1Újü½so"Z&þÜâð/f¸¨…ÞdÕtç RÚâ÷ 6ˆêÅP¦ëìŽå€ËúžnÄ{w¬bý·=ÄÍ p´qPï]L'Ú†éGi™á³HD=bþ‡‚#Šg +ÆâÞ Äçìs¾L¾içX:Ç ¢»ÖÃsˆSx2՚Į¦ +o±#ßH¢äÊÌ~â¹PõÅíÅ/ŸiãVs@ãñb§I]MOÜv>Ý!²(zñ×Þ##Šë÷7ÖÓTÅoŸ³>ãY^nÛ6QÊ8½Í¿îŒ•èÇd–YÞFÐóÿ%ùÎ…« |÷ò® #ŽM”ÅÀÏÀ9`Ϧ4JÙúÈè±¾?YÀõ6:ñ!=“w/þ@h “ÑÌ“œëKT³$‹“µE°»q1³Ù÷p\s›Ü=›¯Å—Ô>è’¡3 +Y½©Ä»aü ab¤8j†–n× ¶N`Ž£ÝÕ= RvÙ†To¯†¤^©ŠqX ìŽe|Uw⿱¹ºóÃTÁ’¤/óS·Ý÷øŠ•Ì‚WM•»‹FW.Q£Û•S¹~áÞ23`gLñÓbþg—Kö#=uVy?JÃÍÛ|"ÁV†JwŸfow ë_œì¦‚GVaúVóޝÃi…,?—tCÔü¹É QaßëOç m%nÉi}Ù-ê†LŵÂ%<Éo_–L`‡³Êy¶t¢üwÇíÂNgè!Æ–¢¿bqÒ0–b…ë·Ýak›¦Å‘¨JÏz)Ëä…?ë_Rì»Z7/sˆÇ…¬EiËÖ‹z±“§î¶œ“ÑÓ5RãFÝB¶®’EÊFÉGu^eCLnR œÌæÞ–»‰¶/ ¤AŒîäÆˆtD|k+Õ¥ò»6h¥3…ŠÝ;%,¶W„óÕŒHÔ»Ôóœ‡tëÆ¸·‡´Cl·Z#r´¼çà§mýÖ\¾Ø Ôd¦¥¨Ô4‰²Ç'Ÿ½™oï´Œ?íñPÇÛÕø¸1ôߪð6»›ŒÆöê7¥ Oáwpû霄ŒèﮫŽšîÿª‰0 Y­n|òP·Åñ®#¸×/;-áDfÉœï—h zðTvu»:M)ìZXƶÙJíNc6(­ÑGör1­Ì¤ysê‰[Œ¬t7!7wAšg¦à»~úE}ÿhÃKzô”HrygÛV¯[Ä^–|Ѧ„w|«±¨·cŸ’‡7g36]BU®¶ã'ضh*ºÑí$+Cn?ó´ÏM̼Tõ žæ<ºaÒx&T"·¯mj^µ –=«[)JàÅW6}§öÔ¡ÁLäQFÕ½iÐ#Åß`v¯L´yãÞ-»ôÛÞÈ1MHî®W+éöc¯úS–ßC©ëòþãu/Í/Mt= Ÿ[¡Îò½·÷Ý#õ U!òK/ùÕPŠ7>¢ÝzŠOaÖ«‚t;û$Ó|Óž„_ƒ$=£TPÐE™ø…³f÷ÆåÄt‹ºôòF4`i‘aZðî˜åG¹;̓Ն˜Vã ¿êÿ‹hÝ!XP–¯Ÿœ"‹ÐN%`1,½j'K iÏ_We/(ìù2åfsªáhŸð)c§\úåY­ÿ]@:a¼3 +<Ó·h +YŠOm ¯-Èæ(,¤îž_Iv8ô—¶Ì¸”‘ñˆÖI?k6ÀÏø.Ð(™º?_š;Ô‘¤Üž¸W%ÓÕ~Ü×%R¡ÍD–z,Ç Þ©…ý,âÃAÌyÞc¸?åÕ@F•|ŸT*f´ÏR¿úº¨¥& DÊC “žöàNksjÑ)qkƒÏs]½þ’ý-9ýzìËc¬FtÌ2Œ$kŽ”ð› g tš³ øuie®Ò{¦}Ò49ÜYkp°ý!½Oð]ªÆdc•±vxÏ,å4 óÑ/¢´º'Žjd—q@Ò°Я¢7ó +FŒðn*/UL¶—wµ·jlË~O¹Èxù°vÈÙ[.}qŒïi¯} +ŽJÇs¿jf)ƒok¾W ÀmœVÕ‹‹O^t”RgÂí+†r–Iù~ »É,&Aàô¸‰~·J!v!Cn’¼^¬}OÀ¹÷ à\ÒVy\ÓkÔÀ´F2õfW“<ÃŽ¦ÛE8À•vÈO–nAþk–Qlñ{\ÂÚ¤¢Îö‡9>ué€1Mò´úné /lu-½ }ԮƦñ~Ó.&7¸Ó›÷”#,Õ¼ò÷Â'‰¬åö5ŽÖ% žxÞÊI¶ÐOaE§Ø'Çûë +6G<ÎÂãÆ ~”ÞRÞ ãÕ)¦`§àšªÝz¦@ïÑÎý)¿/°Ž*2cZšÊË|@ÍMl‰·á2ÑÙµÖÇÕHÝŒIEàGKëœ"AÐy̧pV‹{6'3¬Xr¼‡uKМ¯å"¿ËQT‡3®‰F¡«+Œçc›7±j'"äk<šÇŒW6ŠX°È†…ýÁö3\·íÍñþºWùíGã÷¤ÃØNùßç¦$ÍõÑí³U'Y'\³ß!RІöûª=Bj•Æ›&ý·¸@&/qÚ[ѪÛ8dÕ #_EïЋ'ˆ?Çü@Ø)ˆ§™œY¦S6”sÜRliäô¡ßî%Š1ïÅ™G;LbŽÿ²e)©A•JœiÄ;>Î`òâ:„ ei2l´wÖÌŽÁ*!¾ª{'£àV7EI„ÄuÀdcdÄ€\mpô3#ˆÞÞdŠnÆû V3–$æ6ÏQÖªj°9̯/%5a”JÙk? ëlÊï;~÷}ŠÆ«Þô eÔ_y/ìþ#À-Ɇچ՛ÞÈl…¢åå *ÿcØ +ÄÆBüÞœC¼@kUgøŠÚ†»ŽŸK"‚H^z`‚‡}v¹eÕo +2Þî¸rò ~÷eîsÇóùóUòJ%ØäÚú«Îã]F~JÄI}.4±9Æ‚#XWȃ/hÞL{ÁØjfḣ¹XJÁ •ýö;…ØÜ¦z9Üb¡P™;U‚ÿ“©r+%\×ã]ìÆÀŠ©Ìýœ˜`l’Ì[¶ ÿÊéÅd\Y¹1ýö9s½ú>/™"®ûùñ§BÔSÔgÚ•æ|…‹L'äÏeþtxnV ™‚4åªÖÎdÔã…»,³çû«ý‹T1˜15öF9 –‡17ÔŠg‰ú˜½H(†“×9§Ì^⽬Ζ·(h /ŸqÂ4yžè5GËÉ¿½Y§êª©4Ãò`{3n­x½˜tÀB¡:F¸­ÐYgGyµ¶Õ ¸„æiïá¼1M(ù®í]R­éÏä›|™ÁçíÚ{ù ƺKú8.ÒÜ‚‰à›7¬ù›Ç‹¶§„·ÑÂV*¹U¿%¿Ø¼Òý¼GÏ‡Ò ’§Q:ê'HÞ‰…¨Ý¯F]O¤h§&Rt“9Aw 8fJm!u•Û?羚ª¥$<ê]¡•øÃ£abS'þJ±ádL¤[_í :?6mÆ%dBÿ*Á¡†§ÀÒD=öqôw¿nö)€ž92ßR:TUr»žg„™NFV”ÝĬWRÂY¤ŸM¬@ñ±ø¢׿™Y¹k‹-FóÍâà:ؤãÜ<1‹.Ñ9£r.;fë¥Óã&CNÁÁ¯ïA€‘PáJç·Ägµä·““ _¸½Ô²ÏÖqÔ.óË¢>ˆ´bÀEÃ`¿ÿ1õ*:¨¡súÜ8–-)= @xH|ô†º¨Áà\q1Ev_‹™E^—4‘i-¾#„%¹€ÐuœÝc-Yýëô.íX͆j +mÒ/ê>æÓð¹ñò¥9áöŒß*ßl<__I쮡M`–ÚwM¢r(…xZÁS´+ð†©„µò8&½,tž˜3))wËã² <'· V›¼Y 5&õayLàŽ;ñm˜,cÙÅs¬$¢h×þTnÂö9¾3ÈFV:'J½µ—4È=‡½¿ažºb‹ª½’’qš+I'`%áίPbÀ‘×ãOÙÈOHL=ÌÂþ Ga.Um´#ø*½l8Q¼wÆ­‘Pvþ8îœYsØÜw„ÜüÕ6ÒÁSý‹?Ø¡ƒEYNÞ98F1î/¾T(:Ì bÐŒñ_`H}^x=JgªÜ1LÀ΃´Ò溵/ãt÷ÅÂ4›ãWéÒµ¡ú*ЙéὺY»\ËÍAµH¡&dŸ•Vê½ú+ùã‰=M蟺Åôø6,‡®Tzp6¥|ƒªU¥hNl¢n4óçó#ÓžÞÉba¸F‚#ä‘FâÚäòeîe¸|…e‹CB;ɨ艸ºÛ¾¦¹“Çw‹p„öF\[źÌ>Ï2ÚJ7*õðác¬ªiÚ×¢‰‘àOB•·dd#>+°ð!Ësþr Ÿ9Êéóåê?“èð“ÊŠ76Èà0®u°ÖÕU>æ÷!ØÒHâ†)}7ÓQIsèÊÕHzCûˆhIû«„Áˆ|À«µ°|­ýë÷†Ø/ÖÒÁs,2òwùÇe’é• wF‘¸÷q&ÛŽÍ›¼†‚«£™81¹†6{¡? +p‚1d,_9œÇiϤJ|%SPoƒxZSÊî˜tžø× +Ü< ¢ —h„W}?åÏÒvI_Ø¢fiˆ‹?ëõbë­°¶–ö`–™9àžö}Ha¼È¤ß+˜\±%®pÐÕÔG)݈A¥µ&ÜÉ#û÷Çñ@ø³9Õ j"Ó vzB<Í[eª¦ËNÏ ‚ ÖM-•©•ÄÉ^»-6(XüMÎx´㫚Co Ï&4ß!L ü>sØ–Œ %Fµ1®÷šªÞëÅʆ'ì=ÉÏ—gZÚÃ(©ëeqfúoNÔ({IÞ‰é®I:‰å6åó”!s/̉üNŠžïÙ>Q´üÙwy¤¾ +‹ƒ·åⰘݞ«8íªÐ8HØ„¬û/’8FB/Òœ~hŸÄ.¬›2¿o¸0Ç’Swj¦í•ýŸQæ£ìšQÔX©Ó[- Á 4‹Ž&Òi|«x×a¥°ÔM¼:|hHáÏ8ud¸Ï®Q—Ý$¨zËV_ Ÿ¡|1ø<‰:18Â7þ¨‰=>ͼֶE‘æš¹s°ù-½w´ÜÏ9C{Öûd'„|t]^UŸSË,¯[¥å+zú£„ÃíX;üPÝ<‰ÿZš$.G@ýø&3D?€«MùÔ‹=ßòLž9¥fŸØù–€£¿vËšÓ(ÑŸª9 ÜX5WKã1 ‡5ºj&´‡Ç¢¿©sl|³ ¬„…¦r…¡Af¹Ü¸þ¬.ß($×7™|„ªI¢Ó±ù°Ï?Š^¥T°UÙ6Î~'/VØú±z¯e­aFHð&GVÃÉ S^σDRû'ëwgžšÐrlŸ_Ú|Ì@Ï®¦c›Ìœ¤*Û°ë +EÕÃnjo:lbcÛ– ƒ%µYä&©hmbƒäN%ÝÌ( &£ÜÉyÂC̱-žÇ*)­•LËRx+ÉžªX”Ê!_¤Åù~Ö„ç{.<Ï ±ÁÔý[{n4t§ ÍÔ#Š©•X/Q!Ú†$ts­±“‚šT«KË2#æwxi>ŠG—çÝc-M-4œBÒõú5û2µQO+)µNâöš›kaó*Ù* + oJÙ`šnËI‚d.BBte©…õPóm¾£ÓD•· ú¼/»“=ö%•cßz‹móêlŠ+„#y« 8;ácÅiÃ丠廙€Ýð G$°ø¢nˆþKOÝì à›’0uÑãЧšO\¯4hÀÄá™Ê‚Ã%?úÑ6R1Í.ú@É£%Êæ¡Ê¥ïî ïÅ;¶UT^ÜCy‡PÃ`®Û]g¨fh¹®FX¿*¾Ùí9¥é‘mS¥·¿ûµFYSÌ4õÖ¸§£“–*sèŒëmRù;‡®kšNÄ_E|mÊm|Ÿ(1…Ë ½ï¹RÇ‚w•Øg!x7«ñà´¬ƒHøÍÛ=”$ðV+nÛcKŒÿü„Ó"<,-Ú%@ï“ÿNEô×z +¼®ª¦ª'Z‘J`NÊ£}tËõ–ŠwGÌ +žcù4`Ἃ•$p;î÷þú÷ù¶gši6£;XÖˆ€Õ›š¹Ûè(\Yï a®:-ýݦÝÂ,´øŸ½ãÆöqbµŸF×@=y¦4\…Õ‡ÑÞœNÕn¾|oý|­ çKÏòÛR”¨ÇŸŒëå?,£cLJ°Ðûp0xš~¥cŽÏß\„„ebà´k«éqIá©^,ú×'ÑÑ:΄₠¦mYÉ¿ôDë’ ×R”FÍFÁï»v§^g™§éâÖoðg>šÛv²¯·Ä›] ”gH¡áÜ0¸i={/dmÅÀîy˜—íG±GÂsãó Æ..kog³Â•>lA!ýý£äw,8 İž"ÈÚ×–‡¯‚iǺ¡Þ¥bú]Æàʵsî,  ¦­•ùÕ»‰Bd†¸Îã¶ô^$ýâue'•ÍGL +>ú¹±*ýElmsµ˜œŸêi3%ê_!š¾t|¢ÎåìŸh߬©?´uaŠ'¼)ûú¡Ù$›u¼\7 ÄŸ£wb”NÇM 0tx÷Dÿáiu1¤A•QŠëÔ˜iÝ®2éDÖ£ÞTè'NùD«­—|eº¨;«Éˆ–HVòX±µ~z£ìGî%ÖxJHNÉWrõüŽ«tæ«^ ºád¼ áÕà’&^æX>o‘büU!“¬´Lt]½çՑù®ÒsDŠZHöuÓ™Oÿ¼–xI¬q¡û¼ã’€ù0‚Ê5&IhçMmÀÌäþ‚j¢*ø `f5ÆÑ¨Šp›Jè*â˜û&gõnP )é.J7XŠ§Óƒ–ò“]“-µ3{Ôa~õ—1íÐy,G~V)Òt¸†¡†Ÿûá«Üûõe9.0%¹¿è^gæÆO·‡ÃײpǤèQ2ç)á¤÷=4ãÔp^3¯ômn_uq Àêý¬,–†Gå3Žkó{£á²JÖy‰ÇÔ{£ÖÌç_çI{cÎá©nÿlµ·÷Á5xV<ÐÉ)”FvšT„^cÒ—ï JAù¨·'"NÜ]×ñõú´ 'boÚ²aNÄÑ[6Ä[‹ë_ÑHIµ)Þ•Âã3þï å·;«yé<:Ei”ö0¥Dó±ÞâXUóHqðPy©h÷p”•Ø4¡ê|ðæCŒ7l©¯Q†S¤ñÁ)ÜÛX|­ÌÖîñÜØ'œÙW¦©’[p˜r÷Þ…Æâ½Á¹vàÝ_[}´ØŠmÂ/ÿ±>Tîvé„ýéÔK•:bi.×}u︇¡TƒÖ ·hCbæžNÁààa@‹ÖcVO¾þj¢¹‡º¬)ÿiÁ]îñ&‰/ÏþtÇi%Ö"Ÿš lÐö;}ÎkDâ*«áÒC{iÅ-vo ûýò,¢äiÁü0´ßLÁßÇ9{ÛÏè`—É|>¥³ã9jÝ÷7ô_¿“ +¯\ªZO–·G²¸Ð’oG<Ƀ©Ð=™ø(öøUîGqew1]laÈäÀªåÜ܆ ¡Þ$&Öéïr_žÂ]àzo–hŽõºÍa“F“pßž +Tz©ƒï7iâ†øçù‘Û°»r‡ÕKÃddÎa!tgýc›#.7ÍÙ/=?ÓЬö¶"Ðb}ùlM'+ÛñM†yùžêürüâx3W‰$B•åe'¬‚·,æð¬SC/¹ÔoÌÉ pâõåªNßÉO.ç#Œë¯¦' 3H¢õiÈô:ê]݈fÅœlfìªÜƒ.¾rCðO™RB—(¼Ô⦌¤Û?y«\¥}ÿÊbf‹ÒÞx «Ÿ€¬Jì2bù »he‹ »¹Ò¦vîa[+Wº †=MS„º !aëÓ¹ÐTzåkýí¿‘ÆéÒSù%)þˆjâ|²Ù› +ûV£ gÜ)3QIÔm°†M£è\ZïÙå9Q±N1bKZ^‹YtzVÄš!ù&Œ>,Aâ5õTMþ6p—+a:}<á·-LÙ§ÍŸ‹t½8ˌޮˆ"Â}/ËÀëÍóßL榮 è©ëôƒœ’}d@ ‡6këáÇXé'’ä¾@†„šÕî¯^'v#Eï—ذ=g^?´Ø\1)ºï!sm6evW 1Â9>m…5Ä !ß‚‘X5œ–B¥ÆÆÞ‹fº ‘Òd£<:Èa|/zsï«¢úYìv@eEuw½ +KÜ&¼¸c‹é +¾D)þ·œ€)ôÍÞÒ>íEÆâÚ·Š$ˆƒMßÉàL):eÍqšíÕATVyiKÝwnõø»Éê)üúànÆ2Q{6^­Ç[JšèåŸU‡U…‰YĨØójyiŠ> `Ÿ™§í4Yágmþ.Ÿ¿ÿ¾xÀ}U{œ4=ÕS;G_vˆZ ›_±ärÐ6ÿ1åA42:_θªZÀ‘i·wÙã⮷кa(<œ8’±ä>{Hë׿x"VÜöˆ¹6¿2/·ºZgé3ã¦VUcâðÊ(@–ï°^›RÉ@žßé­Eu~9êbŒ´ Ïõ¬s6áI¤Á)£P[ìTÇTDq¯dBçvé éÙðÎ"²7îV,Öl„WÓÁO—maÈÎÛãöþ„ò.óÏ/®ç(I) ƒ]z +_˜·ßÜcQßш¹S¥üÊ!០ôf–t =Ô¶»CÇÜNQ›Ä ÑÌÕ½5VÅ&šutrð"ªâ- 敨x›+×Â$b Çfú-Òì¼QuEK^…µã˜=ÀÔÎvòš¾dûHÊðbÕÓØjkNîìšÌ©›»êúS3>ü†}áø»@®~Üa½ÓñÓ!³²ºî¶\¹K4p?]I@2Ó†œ$Ÿ÷ü2çÞx-$YÙbÅëˆÒÖ–-ÒPÖ´PµÅZøâ’„AØàJâ<»·Ó kÇ…CUClaœG÷š†Oé´ü¬¶¶Ž$,{Ÿ+EžY™ësGî_d‡Òþ——qš^ov æo9®átg•‰ñ˜·žVK¸É!×¢=Üiã¼јH¬–¿#³ýœTÜ!q¯øŽi'I·Ø³(ôvL +†…L|vg-$µ!§#º«ñè–äö{ßË A=ø9KÕ"Ì6obåj1öò3^ýfW 8§O­Kú •·yå†tl|ixýmÙ¡à@ÁëFÜ@#VŸ÷²þm½g˜„_¹Ô–ÇÃ*ZJ“³°4îÅã±®Ú2>úÞåÆh‚]ã**&á>o'ZC{Çg¹®Á4à¶ &1©¹Ÿ$rÖË—TÌ1 ……ñ¡Ö†µÚÆn+ÌPåF…úcâ‹7‡L|J{2ÜOŠÍ·]Ëo¯a’»%9òØoïVf‹­Í$͆]”³‹Ìã™±z®Í¨žç›½lÆÏaç·^Ó©ÒSk²©Åùd™!´8æÄÔ?[ÁI¢öš1߽ʒíÌéô%Þf´ #)àoˆ’G~F?å¥" ° ¨SpøLÆ+s¼]Ï5cŽonæ2ûBGßé~ýHa\~·’è­ù¡`fð\d0Œ5›æÈ²u™¾ ¯!Ö‹‘ïËRÀÔ¯À…{)mM ž>qD ×añl6£î¤Y¸¢gïÖîã·±šEPnIpt%Í<ét´ÊcÛff|¢½àæ/ã`u?»å20ð›Íóf±àt¨ã”Ò-æýdˆýž—ºòÀ×%_ +žP êTó3ð0%¸ö\Ì\ØûHì;Ô=œÖÑS + ­ùƒ‚Ê-K™×—Õ¸ÏT·ÀÕÍÊú³# ÿ£ÝalóCH5М¾DjM× #±ÐT³­øUãB².¿æ€r I5±|”äê1[Ñ{òl×âH¹wQá^IŽxÑèƒX¸îÉ`ˆ‚Þ +Ò«®‹ ÔO +`U›¬]U¶µi{¬Â€O­\;±†_ô¥p¶á"üb¢žÙD˜@íQ…³ŠúOmJ°6Çu»î߉2ø¬}7ËZrmñ?ïaþÁ¡ò΄oKßÕ2'[ ÕÌÎà¤mxÀ›nÔM`'³ÅÌ^=”ˆQí’lÏ­‚€ê8'%[!˜£—qìSo Óåü‹‡~Ê‹tÎRŠ¿î€‰ ¬ç€Iå2™¾;ÞÆùâœaiïw’&Kw!¿#Ò;ÏÝ4ñ ­c5ä*g*‹Dó˜j—e¸ó“W",ƒÄ>à#|¬Šu^ŠôJ“¼vù&æKñi)t¥{YËž6Ýô@-w6¥²;+c¢¦Uû›ÆF_C)jDóü“tj"÷ + +™å­Pâ‡}Æ„E/ü_v!n q”ÅÆÝHvk1Ô3IÎU!Ö¾^3—,ðCnÑrK9kváÉ'Þ€Ê4sm“1iˆBÜAlž„gsf73*®é™£ú‘(³Íhéø7tùÎ +±µVúÇ£s–†òï ýµHWQ…AF½³~†ø¿ÐáZ_ìå¾Qšøó·"Ã/õéÁAX‚.{Z6~.³}‚K€y³ôtÒ÷€ø^ä*±2è~àž+§òwwÑóÈ“µpwª£½5ëIjw³Ïa\“ÆóWп^· âós×o Üd[Fª*¿•ÈèÒdñœóö›Ö^,Äbö˜ÚÄÍOŒ>ïrnÈ0ù‘V—Œ,ìk³3TFÉÞ>¯¿ApÐ|„{~É}÷îÖÕ\6þ½>©H¢U­yA^¹W»uðGõ£wýIS$ìÕvOðˆ¨.fÅ ð÷´¶AÉYð“ôÄãå)k[7 àŽ)g œÞ ïÐ4yàh7}Rú⑎çIKÊ©Co¢Å§mÓ~muCºþÈp );`*ÓœÌÉjÙüˆû¦QQ}5 鉈âÞ¶"*Æ´hM”±£–¨Û2r¡Ù1ÂÕ‚É‘Œn8"´Ê†]¤ƒS7-4æ½JºÂÀð{zƒ—™$ [ù(7…‡Ï6û×etaö«‚mÃÌ´/‚XþÈ QIù¶N/jÉD½ÊJHàŒi„t>‚}ÕÏ4±Zü?üÞïÞŸ¥n ÷ñPMm›OU™]áºT^èÇŽVOgÚ%×Ë›ÙIú×ÌyÅå|ŽFç¶GîKõŒ=AÍÙG8µl }½S³ÖèŒ,[¨ï)Ý0ªv¿¼æY;0¤™ófŒ""Œ1WPûêûçm|cèiøþ5L~¯ç6.c_]`:·O‹4³µ˜õ›ypkƒX ‘ÎP`ýaQð´‘T¾.”Û¯Ë3KÂxó¥x¯(‘êÁ®Ã8.Ϩs†!ÆŸãÐT¯6¾Á’cî|Ãïn¹Ø“[ZÀ:ïA Fj|òôž¶•(¾ª€—Wÿˆü‡Ü›©7¦ZÙíé‡ê ÛÆÂ¥y#L‘Eð ¼ü\‡í§ÁxgÀ}a@®÷gJˆw·’ÌOd$ÅÔ=QöLPÏ «@*mˆP¨SUº¶‡“K¸Ûf‰aرP˜ ¶éøœ8,aøv&³&ÙŽµçUý“ii-9V÷0Ó`BNüÝó|Óê4æ¡GNÊ~û/ŸDC0)^Ç{óC-ÙYcK.ÿ› ŽK¯¹§‡c÷ÂŒN/»5¥Û£~Šï©8e»Ÿ¿èyåßµËí} ñ׈Ôú6SÈúÍLòö&ÀÈbìî«)«¼@±ÐäT¥ZÙæàî•m—¼›s¥PáùÑþŽ­î¸`vÏ“ÜúÞöúÕm¯H/¶Á®NçÃ×PºyYW£ê5×ï-ßâ.jWI4§n©E´¶3`ºHHASVg.WǃÎC8¶ÙEy¨ßæäëÔ¥¨’D +ß䦇t¢Ç#¹$F#šsµB¾*ˆ;8{<¤Ø^¨uM¯T¶@V® ¸¾tLA¦F;PÎé7-üeZr +çÞº.)ÉlÈùüpÅf:qË|_\º«eɃæÔ|ÙS%Z¯*¯ñú°›óÑó–F~tw Ä +LÔ\•§Œ:X8;õ²‰F R‚}×Íúƒ÷`oðÂ+¯x~ghìh.é~ÅyðüÀœd3Ž˜gy•[UϽRsƒãtÊw b§Šõ'qÜ!ˆà‹èQeá›äc:‰Â0’\òv”(3‡¿IE²cÿÿøAýþ¯(`f 48ƒíL 6¨ÿ5ÙSLendstream +endobj +474 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 5693 0 R +/FirstChar 34 +/LastChar 121 +/Widths 5694 0 R +/BaseFont /GXMIUB+CMBX12 +/FontDescriptor 472 0 R +>> endobj +472 0 obj << +/Ascent 694 +/CapHeight 686 +/Descent -194 +/FontName /GXMIUB+CMBX12 +/ItalicAngle 0 +/StemV 109 +/XHeight 444 +/FontBBox [-53 -251 1139 750] +/Flags 4 +/CharSet (/quotedblright/ampersand/parenleft/parenright/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/question/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/Z/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y) +/FontFile 473 0 R +>> endobj +5694 0 obj +[581 0 0 0 875 0 438 438 0 0 0 375 313 563 563 563 563 563 563 563 563 563 563 563 313 0 0 0 0 531 0 850 800 813 862 738 707 884 880 419 581 881 676 1067 880 845 769 845 839 625 782 865 850 1162 0 0 688 0 0 0 0 0 0 547 625 500 625 513 344 563 625 313 0 594 313 938 625 563 625 594 459 444 438 625 594 813 594 594 ] +endobj +5693 0 obj << +/Type /Encoding +/Differences [ 0 /.notdef 34/quotedblright 35/.notdef 38/ampersand 39/.notdef 40/parenleft/parenright 42/.notdef 45/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/J/K/L/M/N/O/P/Q/R/S/T/U/V/W 88/.notdef 90/Z 91/.notdef 97/a/b/c/d/e/f/g/h/i 106/.notdef 107/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y 122/.notdef] +>> endobj +462 0 obj << +/Length1 798 +/Length2 746 +/Length3 532 +/Length 1315 +/Filter /FlateDecode +>> +stream +xÚíTkPg­£F-*jxûQÍ ’]0Æ€ZÃÓ `$ŠŠE»ì~•ÍnØl0Q(•¢¢Ôêà«‚U ØŽNuPÔ`¡RF#S-µ€ ÖÖ÷ƒúê¨Ý@§ø³ýÕé÷œ{¾³çî¬ÈG­ TL +Œbh.• ! L‘47߬‡yKî«Ñ·5ŸKšÀD‚ (Oäï7OÉΊ¤q† éT$› +0–ÅÌ„— +’ÉÀ*4MšxÃR Ípüà“±-à +ìKEƒ'Yœ‚¸}gœíPHS0<Ý@a†´¾ö»/ƘV# P!›ÆL™ +är¹åïÄ4™a„ª CdÚŸndYHs}à›ZKò¡Ch‚¸ ýƒ‡æ/ßv¬ðËìÈŠ •ÒaÏ›ýÖîxjQMö’°hd»çù¤rûníí9ºÑ*L·¹Æà¡[]ØoÜ6Ä/í-w©>ZôùþE%¹²É¡9¯è³‘¯Ä¾·TÖŒÄí; zT¹×Io¬¼Ã=kyÉ3äüà ã«gD3]Ê+Ö—œ ËZµAY +Oy?ËfU'ŽdÜÇ5E » KË'¢ÚǦæ ; #ós²î_íùº‹MsÕ¡C=E…Ý#”LAbUôLá&ïÒs¶¼ÐŽMÄìÅ_Q«.oEþá%ø_à?!Àÿ„1–ct›.øº Îendstream +endobj +463 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 5695 0 R +/FirstChar 13 +/LastChar 110 +/Widths 5696 0 R +/BaseFont /RAZCRC+CMSY9 +/FontDescriptor 461 0 R +>> endobj +461 0 obj << +/Ascent 750 +/CapHeight 683 +/Descent -194 +/FontName /RAZCRC+CMSY9 +/ItalicAngle -14 +/StemV 87 +/XHeight 431 +/FontBBox [-30 -958 1146 777] +/Flags 4 +/CharSet (/circlecopyrt/backslash) +/FontFile 462 0 R +>> endobj +5696 0 obj +[1028 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 514 ] +endobj +5695 0 obj << +/Type /Encoding +/Differences [ 0 /.notdef 13/circlecopyrt 14/.notdef 110/backslash 111/.notdef] +>> endobj +459 0 obj << +/Length1 1455 +/Length2 8571 +/Length3 532 +/Length 9429 +/Filter /FlateDecode +>> +stream +xÚí–UXÚ² ƒ 4î¤Ñàîw÷àN£ ;ÁÝÝ5h‚»,¸…àNp‡Mp¹½÷™{’9÷qæi¾é~鿪V­¿k­jru&Qsˆ)H +bïÂÄÆÌÆWTã²1³¢PS‹;L\¬!ö&. ~ PÔÕÈÎ +dãæçàãçâC¡ŠC<¬-­\€´âtñEí@NÖf&ö@E+´‡™ ¨1³¹x2EÁ` Úß+œj g“Èœ… hnmæ4YZÛ£°üí#koòü+lîêðß)7“3T +H •¤BÍ!ö`O 9È…E Ý 5ù¿!õŸÍ¥\Á`%»¿ÛCgô?²&vÖ`Ïÿ•‡Ø9¸º€œ€Šs“ý–jþ¥¦2·vµûϬ¬‹ ØÚLÔÞ ²þ+dí,eí2W±v1³Z˜€AÿÄAöæÿ)Û? +,Úbš2* ÿœæ?)k{ O‡7ý»öfûÍÐÙ8Y{õX™YYÙ …Ðç¿2ø­$íÍ æÖöÐëÀÅ 4qr2ñDÞ (q½Ù€Ööæ  ÈêËÂlq.BGâ ´€8¡ü}˜Ðóf±ø'ö/d‡¢õoäü;û›99€,`Wçß. ‹•§ƒÈþwˆÈâr‚üðY ö 3+ÅÅýwž‹ãï=Ýþ(à²Ø[ÿ¹ÚÒ †üÞ„º¯èo‚.ÿMÐj‰ßÝ]òßÄ]'ÿ›¸, +¿ ºNéßÄ „Úo‚:ªÿ&èX4~´Ë‡ôг˜ü&hOÓßu1û=\Vè Ìÿ@èQ€þÀ¿â„XþP«?ú¾þ86V¨„íµÿP »ßÈÕ°ÿ¡?ªáðB5ÿ@¨†ÓÕpþ¡“qù¡V® ÔÊí›Õðø¡ž TÃë„j@?v&ÎÿšÁÿüô‰‰A<¼™8ø€LìÐû7ôìY}ÿ÷BM{kGW¬ôJ²²òð±ÿ5surÙ»üóuÝâ¿ÙÂú=y€ÌPç fÁ6iM¡å%?M}F ‡³lŽWªÿ:Ó‰´.‘w¤_«Ó¾ÿ’‰¾‹°ûÖý‘Ø9²ÃGu\ê,À1>}öy×Íx7Ó«•Xû2SÑsÇâ&製éÇÕ1Œò÷µÑòd¢œóoG*´{ˆ+ä¯zôÜz²‚¹y´¥2Áša!u4äj€tÇòpΰUw@r"üêdÐG›0¤†å H‡+Öý'¤ü¤gýÜ8L³Ž·j[ô8j{ÂÇeEaŒÚ—þ¡j‘, ¥ºpa ImD6(;´:Ç‹HÒhúB2\Ñ팱µC›ü‰šÛ`­dÛˆƒÁȪHn¡˜õ<ñ¤²ÉsR»íif‡ôi§•ÈXwžîØOð¤„Äõ>‡[ç+\‡ÝŒÚ9Ed4Þ[|&jÕqËqTbòµYv8xHõ]-V‚e"风ùÝêúÆw++×ND£!¶rÑKôñxxdfÍ<;Rô¬f|ÝC㤻P¯ÔרôÔãy¥¢Ï¤³rì]ãšeV«f˜™â·ìŒ£ÇáY½¥”£"¸rå(û·8kؼŒå“ob@ç_Nž2ÍÛ…ɘI2ñ#(â®Dñ(Qúø†RÝ`éë‰õ³µ3å‘ê•R<=Žo’öW1½•¼¥ƒ“ZÉJX!ËÂ%ó¼Ÿkeêˆ^UÐgd“KüÄ÷#_hú\Ïk=h"TÒxüAÚö'Ùè¹Àó²Ö¹çᄇ2„W~=Ç¡ªS‡1v’œ'J£¬qùf41pÓ¦SF<>‰¯qo@.ê¯vYap9’^£Ü¸V¬Ñ-¶ŒÊF!-žwÄŸ`ÔÀ}&Þ)8so1“PIÓz<ð†ôˆŸ²Òø ‰9Æøp+¤hBEë~È”‰\`Åd±dŸû""?{ÚR–q‹zß4Ö2YÞH¨±QßÔ#ÂÌ]ÿ¸Z1}ön®äáxþý42û£ „ä½U³Áa¤y”ç/GÒš}ñaœ­f½>ïeפž^ò…ÕJŽtFÛK§¶º«X+r¸ç<0o*nœ²æŠïROE=îL(§»~žEÌ6¼kSÆ*`‹ÔºˆÚYçÅ¥ÁO°ß*ùI—¾2é´ßÓ±Ê ¶é¥ƒ$øÂ9ÑÜú°8¥dõÍ}'5Ï+rÆ5k+ØM–ÂèŠÕƿӦ3æ"Öç{T\7nÆ4ûJ!Þ½iOT`•4Ç´íóBmüsJ®hlsrJ„é “RÄH˜êpíGdÿÒ&nüw;À#akUÙ +ËS1¶pÒ +qÝ£™Ã˜q·&ûˆ)»Æ}è¼%qÏ™|Ŧ™GÏ4ê[“àSÖá¢àRGÊ’äbNFø¸fRýˆ¶ïw¼ŠªÐiÒ§¦Õ’àºS\xœœ*â&–)ŸB웦(¤vOž2F!í „˜‚³¯¶¬Ù€w²d´>0,ãS¡Y§¦6L¦Ó}[=˜Ñ9(ƒüӫϾ\ÈcŸë|A×`üØU4FGa}@æd¾*eíV…m;“3˜DÁý(ð±PÇÿ;½Dæ$ô†ÝmßêdŸ Ñ]3wvd DÏ­·¤’1îÕ`ø–(hç&tá#õ—Ñ‘IÀ ç\QVh®3 "ê}çþH:G•4-,I¡líê¯Üd¯r!¯;ðXB¯`™ +ˆË”Hùn-ƒKôØØqªðq§ñ`“Œ.ã«×â<¼–ìߔà [ÆÕÀã´ÊšÊ袘E)YoO Çüž7^_, +ª-‡8[Ûí`EÁ1¾P=Q£¢‰‘&˳Ë/m>ÝDÐUx µÓ ƒæ“%h¯À¯›g¦`÷C»ÖÇ WH—y©/—œc ~Ví¾-™ÚW±[îú“Õf¬ H*À§©Þ¿š‡Û¥Ì±‹…<êÓHÓ¹¬ô³ë œä²à:'LJ‰É¹ËkÅýÒèÑ´m–*ß=Q(PÌoHS;˜×RNNS‘œÐb‹‰âàßµÓ镵wRˆe…B:2÷šæ§R j9*Ž#’KÜJ’/©º^ž“fø"±t/.çüÊò ÁƒFì©yawÎÑRQGœªLÄÙ2",«WÛòfþ*ÿùaâ kÈTù™Y‘~g¿ÉB¸«Ã/[<6¦ò×5`ø1šÊâ‘—°vÑ\0Á;ãTŠêfM»ieˆ$F’¢‡-´SÕWï§â¡fÂY\å™Û%„¯8.joÄu$ «·ÊDx+!¾Z:ÉàÉò”$ÎRxî´D¹R¿Çlr_ö¼†&¨j%t¤¯}C_0MŸúbPGð ÛyÙ#d/+vfÅ“׌صõ«¶¨—'ˆ¿évÌsˠƧÒu:÷½òXÔ†Æê%ÇíòÏenŒ[s…„nFï«“\—¬ ¹ï-zF}Osz +²Ìrk?õù+»>>ŒŒ + HÌá +ÆñºÛ^ágX«>+Ó3ˆO¥êœô©#>â—ð œ߫ë¬ò´¶Ýn)‘ïÂ.Ra÷i}zFŠðžbŠ¡´ +=gÇTEÆú{Ïž¿$w¡{z‹RJ7òbFF¸-O Îþúµ[h¤>ô—ÆóÏæ9UWH\¹–Ä6!@hì8¥Øk‹¬7ޤ•Xæ¦ó9ý¨8ãöj @S©!2Ç£J"Èm°3ËIÕ4H7+).¹õ$(XË!QÑø‚½šba¹Ÿ"0¼;ˆøšÏ¾7]©¶­dUË'ASÖÐ=TÝûò!Qìí9h¶‹ÿ¶ƒw]nƒ]Ì^7É|ç^ŒA±½G¤]æižÃßþ8¼Ç·Ä¥)¢ªkÏQ'’ѹN#QÕt1dzÊ&Áœ=]nàX¬=Ú?AÉæ c£ß™2¦·»9ÊÊ :ýÉ)8y2Μ®Óæ©bþ˜S”[7ð¥XMãmN8Ш}Þ““Œb¢Ï€]]]6ÞI‡b]Áð1#Ÿ@2±ÔƒÄšËyŠÃdz—°ä ’©^4Æföâe²ÉׯÅG¢Í7€º‰£N¿îF%ñOÈA~xw7Ö]²˜ïð°‰l}ŽœŽÉûð”Q0 ç‹ÉgܲŠÊTd¨VîþAß×4¬¡dû‹è¡'×W1ÿ®y'Ò•¼ïaw‰Éà]²ñ`ñzÓ§5¼tõœ· "é°øG +Æåލ)ðg¥Xß'¥ôƆ÷¬zËŒø2N¥‡M­¬9øÛ¹–¦³0³*| Ѧí8um»‰ŸaaàéÀeXÈúx ­¯ +LX ÂÚÕ]}AOY\Ñ(øt«5¨ƒ;GºqC:ëÔùAyäqØ\¸0uHEF+Þk8GåSí8~íÎ!¡G†[’±1ÖW‡‚ŒãB:«, ;Ÿ¤‚Ùl‘0î1#µË×Äcp”Íoß,Ë%ÛœÔ?}Uï$DͬK~Z(ëU{ôõ2m©€(l±¶ûäXØ%¾ñ·ÆefIñe¡õºê0Ù—iÄvD`ï„99w§`k%E¬­c%å»ÂÌ…ëŒÎùï¶63–Z°\Mjטax"5´í«÷ó +‹s`YöâF1["K‘~úh +é´ MPê0ø¿ãü½Z„w–ò…éÀÆ|-öjcJv)ÇÓž•¤Î + +kÞTt:Ú±ŒôçµU<×Dx«'ÈÞîýÇ>þ£¹y·œ¥·ƒÁÞõb[¢VBõfRÅœ““ـ͓TÄq-ÛF¬ÑC=Œ¬´ô&‡/ß5Ü.#p2ôuÝ•SÔÎPä¯±Ï +¨¯«T )"¶ŽØò"³|?ÿÄÂ}ÆÃñ§‰ƒXÃv1ô³–:ÿ°†½aÓ×”¢TÖ¤…ÇÚ´1gžøtï‰á¾Q1Ûyñ6Èk¥W¡xÚl8"›ŠmË•V„½æàÉþÕë@ùê ©««•¹ÖT@Ì!N $ì´ÌBÙ—¦Rb­øžµŠÖnªÁ13äM¥>òy0«ŒòEbTžÎç”ç*ëfX… Æèºk‚ó’ŽÐ;§ÈÁ¢ü*Bð[=2ÿ¨ä7(ܼ×þª½&{û5V]M•—Ôá(aÝ»jõód÷NßæùG]~Ä/ýÕ¾[®ˆþšÉ>žAÞT‚\™crØ®”žÝXÜM² ¢€¯¬Å"hc?€>ØB—°¿›ÞtG Õ¡²n”ÀèV +Qãà1i˜YçÍ¡ô³ZïR›&Çͱ’Þâ^òH’Õ,™ +ò]1o5¯F;ŒnùùÀê ÄøSj‹-ñ R¹k¦ÍÚÑ/R!d ó±ß‰âüÄÆ_ÌÍg¶˜[!òµ!6¯ÙÞø–î×±Œb ÛørÍr(z4ÎÆÄ:5ÁË’ìAü°¶Æ¦Ê…¸|@w?~˜5†q€†×¬b•Ñî^f•.Y9ˆTCiàXh…5/ª£¸=Ø :ÚÏ5p餜ªrpH®d†éª×½éÉÀ‚ÇTI´”—|õùh:LJã:)Uî4ÿ(î5;üO³Ô +Ž…' ôü4‚i‰øWÉØü/6¹† VGyZ;b¡+LÓq¹ø„uºJº3VõàÕz=Jì7Ó9£™¿^Ö-ߺf§m+ÖN_ÞgÛÌÚµwXn,’÷=£åó¤|%…4*eÃÏÛØZf—ÔÃ\zW*8Ý#µú[¾±J[¶ÍûX±ˆÝȘÖÈüBY]ÕÈ|Í/3'æ{¬ŒöÕ°µlÚ³qç¿ Ðëâ-ëo*ùfíý5ý~ À±uü,æZÊVqÁ¢ƒIjŠr“ðkXBÇ‹f +MÓ8ÖI¸ûÙÎêp-ÏÖ4A+ô7«<à·ÖÝž¹¶þ[Ìx¢0?C}E¸ÖtøÁažŽÔ„ùNÈî»Éj$KJ1ÝV ÿ cNÞ;82~W«³¯»sÚA×árÞl<Á¯éX”ÈÜåB*ûÀü–)"Cqfºæ¨q‹µ™_˜ˆôðG¨Âb£¹‹»R0‚¤œ±“5?ºBia¯^ìaYšœ6îÈ`Žÿ’æwa?ytü‘ïÀ¡&†_ý­Å£vÕ±‚ÛF«Ö7¤A؆jvbÖeb„ïITTºj!Œ²ÀÐŽÚ Äy¢Þo°·Ó‡ÈV‚œ3³±«î²t'£þ—†c¯IG‹_[›õ| ºE½sÓ'Ågš\1ùc™å¦ÁÌýW¬„—³íȆ9ßÅb"šÏ—Å{l·_oW6ïY" £–V X×ïW~AQhtAU²æ[¯FTŽV I‹å—‰5ì¬Z¹¤an°&„¿º&dÖÞ¶[àS!G»%EõBVæó ³†FMûÁ%þ£¹ö=ï[ TÑÑcUóÚ_«ZïkÐoütå¦ë“siñ3#ƒn}ZȨÀýo +Ë[PöÔ½ŠrA»6„a5ÝÀÏpuÔ]˜–5èl yþIËúr¤Ÿ=‰1L°hÒ«Iv°° Ë…"žª_ÛmÜ-uÎÖ©èOÏ2>ÆotmŒMH›•»ÞÂîÆóOÖÒ¬¿Ð4­a­’ySÖ8¾þ«àbo(ïÏžGbÂòì\ê¥Xˆ…ψí®6À,þ¸ï‚’YíU(ú…sMÛùpÆ×#Q À¸8'C•ýök?!Àê‰VÍ‚q•¸ÏlfB¥wÓ²¦ Ñè*Ókó%w¶5,ȾoÂÏ 7µ;ÛEkUFÅW³>üe°ȺÔÚó[$¡é“äŽ8+·‡û€è–=€ÿÂV?J³3.àL@ST}ï¸ Ž«îvx£~™%®†5^û‰Š<Ügˆ—\Èh 0ì¹-öèº+¢ñ$ÇÆ£Ò·]yzu‘ïÀ32ý©øb‰í±â¡~†Êyc·ÙŽAJ'ò&™ÙŒµzf(;µË#ögòoŸ¾§¿¡¢cÀ·OÀÄîý»r[>õ¿œ%Ýa¾w_ð½á~äÏ4ªã|½~–Ò.±¾áÖµã…Üuãù£_O* ùý¶Èxzú`¸-»1åPÖ&|çò]¬'üîP‡—üœÑ+>¬ ü\Ù)X¥×¬°¨:,Ì´ƒ¿B‘³&Ι<†Yï5Œ“”å{~XZÎæg8wÝ4ž–„µñ‘eéX(¨û…6³ÁÉ4Çr¤8H Ù± +—»å’â„Aºérµî“Ê÷:´7Rßón…‡µUôîÑpÝ¢AT¤Ä0Æ¥^¥ö„-o°£H&2ûu– 3¨ @mÖ«Íi;“Ú~-2Hò =!@*å4PˆJigD¸³÷`$‡$šÂî7°r¨œ¤&P !æÜõ¿ìпp:…ãK÷ñ·RHÊJåG$ˆÝJW?žÕ¿Eì\ë¼®ÁÞâFú,«*>º!#)Ö-à!ž“ÆK@'Ú>|ÿ9;ÄYAöù†Q®Ÿ®­‚›o 7ƒk„j4?P|t¨âIëpµIµÖþÔ3Š5T˜–%ðˆ´j´¶%¨˜®ÒN½[ÿ>A-7ÒÙŒ{äø®À­rE2þƒ™d†Û“‡uÑÊþ¡3˜­âña{fSŸQjkžgºÜë—¥+-–ã•gQT[é¤,]»JÛ!|è¤QmÚ ƒpà·¨*VE|„@–nœ¿Óä1Õá”4aô±z™ØÈᮜi¬¬`@õãîëDmŒÚŸdÈ ¬¸ËQuÔëdsE›´sWßÄm ÃC2îr$÷ÑøéïÉ/ÜÏ]ÆŠ$§TÜ»ü´/UZG\8à_œ§hb›&’$¶€°G„>äÃ# +‡kôØþÌ4´—¢³ ¯è†øä‹ +wsKeÚÁ +ÛøÅü¥ò’Ûý pr(§:WÚëy–òÅŒOÛÏâ³ ¶…ûÝj9Ûza­|¸Œ.¿ˆ…\.bÏ Òœ©• •ðàåw¨×öªRǼ)Ž)d楩Ê2tŸÍ9“Ú³ãgá…äzǘ£yøhòíŸöÚ­ˆ„6!YKØD…ÁAŠ.áû™l%1"›Öì~¢$ªm´–XȦIš€’Ѿ F›7¬•+iËÆ[Æ€ +’¹ùÄ Uº +o%{iÚ\Ó¶ÒÖ^Nô¢ŠiciÍ–ã ¡ár©ÆðŽtñŸ ïªùÑ+MO)YeÞÖË®©·‡±u!ºe¥0d!¤ £=b×~|ŽÍ"ülKeŸµ(uÛ uïÓVÍÈgñèd`^ódF,þÅó‘—ï{Ò‡+f‘ZŽÚ4!DWÞu‰n=¨¶dÌŒë%I¥ºh Ÿ¨^ ]íÕ—¢8º±Qpˆfô×{ŸDnNð§*}½7Ezà‚˜‹àÐE£‰ˆ(J]îÀ…æÝxqò/“V³²›¶@Ø_íÁ\4LúØnÀêÒ_Í¥I„ ª~´åñÇ©†¸/db±i†dÝ.ú‹F¸ ¡UÛh„©Ëûk9®ͨI’iavM^¼wJl`ŽxL¹æÝ‡Þî ·j{­øÍÀØ‚ +Ö àØJŠÉ“&] ­š3¬ç7ïÚªœ~Òa[3ü™¡h˜ ]Ü8.>çkêÇüÀ»ç¦KÇYnÈÐц7Y8í#»—{âNThfKm)½û¯_âó¼Â®†=É6#aÔᧇ<_‡ +¸Ÿß¬ÒEÛ Ô,φ»bu\Í\ÈС¾³w +}·Óë[㢎4üÂdöøŽAø/®…cøú ÇvÇ2'2:CLfÅ0";Ö-qCMîFuÁpÛ#fO_Ž®¤u¾'b|U¢qÖ ÞþÒW=>¹ù^è&ZÑ‘¤;µíK¼ªÜÂ[ýî·z-lvœaUËGÈ +´Ò«çRY.bt$†kpּ͔£94tDðÓ¯k¾›Ïb±F“z%‚@Ôð#µ¨&®Ò{VÜøßF ~H> 7äÇi¹/£ë#ÜÊ£9¸×W1×<?`I¨0êÊXSĶü‚_5\ì.[G˜ÄR~Ÿ O Cñ^¼û#JÙ«Ëùègp\&[}ºŽñG—…É obù‹aÉt:fu>¹z‚ׯ­L +õÃ%ÏíIÏf6’ÌrpLTvØ7ä‹/XjeÂÁ +po{Wßw1䪧rÛ#)áðZ&¤Ÿ†OÚ{eoЩŒ×É¡ôq*@ò{n®â•ñ¨æÝ‰ÄÛWFgi8É)$5‚.…ÍN¿#»bÓN|*H>V¶5ƒ­]–"¬á2"¡–—ÃüõPÒ˜Öݨa¶)ç+®x‡?x6õ™ÔF¦M{o¬·[9¹üç‘ÒK6wFÜàî¹/ ½sqú†ô¯[QŠâfoÝÌ «Œ º ÑÅk\à%,IJ‘ˆÍçºÓÁGÅ6ú†;žGq%ªHõްÉèFå–›¾˜à©|5 ›¦Üeö0gû:`qdÒ«VK÷|ã Wµ +µqôO(F:ìLö\é)dìèFŽJop&S­f½7THÙT{g‡9ɸåç}_ Në\®í¤r<}1Y€¤ ¨4¯U‹ü+Ý2%,3úìûÉÝÜéú²ôÄÇý²£ì«gîáµøìáÃh1RØÑHµïŸ,~=Ù"×CR¾Ow‹~L¶‹{à À4¾¨_ÒÖšEDÇã\ŽYçÕ#„½Vl_¾ðlíOk3CUeõ¥kqtÔ}Tb,¯jV +ç"И™ê}Ê Í0´sh)S¡rÃÕMü²¿°À]I}ô­Ø?Œ}H€€³Ò­#í£÷^¦Ã-NH;Yhâ¹Ù­ŸP‚k^lÍÌØ è±þÙ>ç I;zâƒÈG  cÄH êú*¡¦´ñn„?2Ö‘F&øÓ5 £Áãw`÷1IÎ;J—ÒSÞ4ÿ‚÷IˆÌ*ßæ‡&J—cpû𥫃KG€‹ï?”KÂQawñ kÊu%kÐ æMåKhɈ?t úeã½êHè–’:¶\Jˈ²÷¼¯¼bgPþƒÿ'˜A&N.;'[”ÿ*{«Çendstream +endobj +460 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 5697 0 R +/FirstChar 11 +/LastChar 123 +/Widths 5698 0 R +/BaseFont /XBUHDP+CMR9 +/FontDescriptor 458 0 R +>> endobj +458 0 obj << +/Ascent 694 +/CapHeight 683 +/Descent -194 +/FontName /XBUHDP+CMR9 +/ItalicAngle 0 +/StemV 74 +/XHeight 431 +/FontBBox [-39 -250 1036 750] +/Flags 4 +/CharSet (/ff/fi/ffi/plus/hyphen/zero/one/two/five/nine/colon/A/C/D/E/K/L/N/R/S/T/V/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/q/r/s/t/u/v/x/y/z/endash) +/FontFile 459 0 R +>> endobj +5698 0 obj +[600 571 0 857 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 799 0 343 0 0 514 514 514 0 0 514 0 0 0 514 286 0 0 0 0 0 0 771 0 742 785 699 0 0 0 0 0 799 642 0 771 0 0 0 757 571 742 0 771 0 0 0 0 0 0 0 0 0 0 514 571 457 571 457 314 514 571 286 0 542 286 857 571 514 571 542 402 405 400 571 542 0 542 542 457 514 ] +endobj +5697 0 obj << +/Type /Encoding +/Differences [ 0 /.notdef 11/ff/fi 13/.notdef 14/ffi 15/.notdef 43/plus 44/.notdef 45/hyphen 46/.notdef 48/zero/one/two 51/.notdef 53/five 54/.notdef 57/nine/colon 59/.notdef 65/A 66/.notdef 67/C/D/E 70/.notdef 75/K/L 77/.notdef 78/N 79/.notdef 82/R/S/T 85/.notdef 86/V 87/.notdef 97/a/b/c/d/e/f/g/h/i 106/.notdef 107/k/l/m/n/o/p/q/r/s/t/u/v 119/.notdef 120/x/y/z/endash 124/.notdef] +>> endobj +456 0 obj << +/Length1 1157 +/Length2 5361 +/Length3 532 +/Length 6109 +/Filter /FlateDecode +>> +stream +xÚí“eX”í»î ‘‘TRzšé) 醆†”î’i¤$¤SBBBiéP$ÄA@P$Öø¾ûÿê~×ǽ?­cÍóe~×}=çy×}=\lz‚Šv([˜ +‰ Àem}$$LÆÅ¥Œ†A0pR‚ ii@Ñà " I€E¥ÀÂâd\e”«îàˆð(óþj’(ºÀÐp( І`a.8 (0@Aá0Œ@èÿzàs‡¡=avBd ÀÅlap$ðW {H{@òﲇëŽd¸ÍÀ‘8àGÚÁ¼0o\` …Á½ÀÍÄ`B“ýºN1QÐááþ«úwAWÀ]Ê„$¨üI‚@õß$ÞÿM¸NíHJÔûM" þoÂùü&1Ðð7á4þ!ÜÖ!¿I +´ýMÒ ô ã íþ@\R؈3qüq.ð?gãüâ|¿„SFþ8eÔˆSFÿ8e÷?7Q̈3òøqFž¿Q§ìóþ÷•RRBy?Šˆƒp“ÂM_Øÿÿî3BÂÝ<`÷TâÂÂÂ’ÒbU¡h4 ‰ùëÆmëØŽÛmÌ%›ŸAAeœž4G”¨Wñá+9´$ê4tO½¼:—„x6tßo¥ÞäôyÖ ÊM¢MV¯3f÷˜¿#j{Án‰Ó›ž6›Y¾­Ì&YÚ>®ì'¡ÛTíÍ￈ãëN® —§š÷ç~Ø.ÐãQ1üD¼Ä†×cîÙØ“&!i¢–…0Š ¯çeÓ§Îp+‹\ö¢NM¾²<àIò‚qÕáAsZDò4åÂâðó¤‚9]δ„%rtzÖqÆá‰Óàc+ŠÏnm;;­ÊÊ‹6s'f ßÝÍIH¨¾àHžZeòkÌ  +Yz>üTËKD¨~³4×}‰QÇ´P¸Ðž}"$pðpÙ¤ó¥Í$ÿù¼h“ßVÑÓ gž³÷tÝI]Žd–ìÛ¿§7E¾OWù[CÈçI2îÑ 8–?ŸÔ{-gYÄ^Ï©ÎɼÓ·ª7r&`¿“¼Ýø–”¯‚8nÕV½@ÔlJd¡\o’0­TJKô-b2öDB­Uûº«¶¤ƒkýZµy/IýM/3!iåks~ –ä´¶HsÅŒ_ºW½Þ×Ì:ÊFí’F3õ’£é†'TyTáÞÖ‡‰Ž©9o}¾WOŸd·öYíXf·¦ûg§Œ¹OÏXŸ˜¶Û»+0´}´3EÞäO¸ûp{j¦Œ{7nSòÒÇE&ÌPï.×1VGõŒíÝw[§%K»½$îX¦5ÈáVMÀD fsÕ;öå$QÞaòÆmr?uÍDƒdNÔ¦\¤-²T"[‹Ÿý]ûfi_‹¯ðNªPýõZŠ®£Ž×€Ãž½¢Ù fl{­·2¥i»¤¿0¤ðKkdú ›€/ðTUl™}o<Ꮏ®Üâ#7ßq1«CÍX—„ð òéu­‘ŒwèÉ««áÚ{j”ü¢>Qûz­ By^zýÌew¿y†kÈGLb¼£äåîz>.©ˆÞÚ‡d-k&“®ÄèòÛw#ËL¡ÙÉoG†Ž²oñ¿˜ŽòЦ1î:q6ÈÐ>LqM©ØóÁË)ÌÒ¢û !÷w¸¡! 1ûcK‘œ +¯ +é@@ý°™ÐHìS>Ñ„ÎNäzìLL`ÝÌKgÍåÿ¨ðùz@ìmƒGº¨âs/ß5ͤŠñÂ+¨1ô) ü¾*ïu0²Üú¾§‡<>xàZë\â,ƒ}ÑG@ž^WëÀãÑÑ~(Ôs˻ϾâæËÍÚNºL´Ùæ–Ê3Ç#)n +†…´áȳEõ7à–.›ý¯ú†zšP•´š ‘ZJ‘uìë«ÍÎ4E›Æª’?Br¾—¦˜‹;QÎÅôd¼o$¼Š_²<)D^sò#‹ª%Ð@Ðã»GlÛø%:Ѳ£$›>ÆûÄæÞˆg¶ä âsŒ)Ä?{¸¥¡›°­’=Yƾú2Eû¬Š—þ""áÙXýs®=f?iÛ;VÉ·1Éá'Êö1w4±†[°Pº½¹™ñØ@û ÕT¿èÕ—™y-‡ñí*»ÊfŸµ© âŽÜïQxØ +fÞÊ•†ôGw©èŸPpé˜sUK/Í–¨ ˆ6Ä,† +µ‰{6¦73 ŠËVùKë}6á¼¾|ÇmÚéñŽiÎã ý¸/¾Ñ÷<^ÌCeæe¡YŠqÉ9ÛçŸB*HINJj>/…‹ßÄ<œÚö—ùÈ£X²,ó!BÛJÅ]~þ|ûx²OÃÓ;\ÝÈr¯ƒÃÐc*U÷+‹h!Š3.¸‹(B:J}9HNcÃn&È€ ªöFö×ä&8r9G _‡Íqhj¶‰Þ#,VhäûHŵËûVÿÙ/›íð«[lÚ€úëýö™ðÆùÊëÉ|Lí¡’Ú•`~¯™Ó>-­¿­IC‚Œ›f‰²ÑOéŸø#â]õ5¨Ö…cxK‡ÝBmôÏçÕß]ËBt›r•`' ›Z(@Àî™LIP`é“ú}ïÆDî¶{"™Cš—yN{Â6òýÕ¬7ŒÖ™ ]Àf¢7×'µu[ÈñÊòuÐô9ÑÈÿòòÁÏ]”ÛÔÒu}A®]jý¥íb¹ïñMä‡a¤nÇ· £\Cò_Ðí¼P†pp¨Ë[ ·ñø¾~æïɃ.Îkd7€]4Ç™¿Õ Cn U× IÑðUÆŒKwæèÅ®îÑçd'ÇjL÷ÓÑ·ß¼–QK¨Ë^ÜUó…+×]ŸqÏw–@ßo³Ûò$oÏëP–qçdr¯RnæE¹ZÛBdë{Ç•”C.›šo¯¾Ü‚O;çW?Ñî*MYIÄ`«b-‡ïT›A7ì:Vî”&bÕ.P3hËG‚\kr*î|:ï&8¨”Ĥȉ»ÉÖ½gHZÔû  ãlÕ—¸ +ð5#çcáóÜ_s:&¼4P\K{÷ˆ><Žo׿:yŸÜ•ƒNjX)â«£ºvå=Ò±*èÒQPoäéR¶¡¯îˆЪ$KŸoª‡°tS–Îä•ý^Åþû³L}7ü ò¢Hp[m +¡Wý¼Úå“ըǺ6þ~rý5òÅN?n…O3`®òÅäéóƒ¶HSS¬–Vä>MoÞn4haú©P¦Ân³tñLgÿÉŸ·à%rS;øie*GÃËGIÙ«•ŠneW®Hft\ð3€ŒõMÍÕýÉ&.béHx´;s˜Ì/™ýûNN¿1C–úö¤‚ª˜Ì&3د¡~ÞIK¹Ó*¥Nîß!Ë>W6eRu(áü™,Àu¬QwS>ŸsŽô¾9·Ó”„Ø~ý³ÒÚÃ3]ÙG­ÉAýÆÁ‘JUEç[[«†Ë~ýâ øe‹M6‹Tìì/|­žßê즬WfS:Ú”ÖK¥*,ïÉõÚí¶¹ ^Ü8P¸‘•ëcUÕÔÔ‡gYòºŽÐÒ7ˆ¾“Oxà=øÒžsz;FËð¬¾Á4”J{©(¬"×¼ø=_(ÓþÏøŒ©'f[íÁDGàðGwЕ“ oÆyŸh+§ŸÓ<#© ™¢28ÅÎÉÙQÀü±“"îC´ø×{»lv*œ´IèX1 ËÎ[)¥¡?¹Z£4€n©Ÿí, ¯ÎÝ„Æ5³ vdûØiPE}XÌÖIO” žg8¨äß¡‚ å(¶ñzDsZp<Ç8‰Å«ž’1G&ë¼P´0%²jkî[—‚Pý´a±2•ž‘D¯Ójl§'>k.ïôK½d²üVeÙŸ9tÚŒvSi89aþJ`‡òᨒž¶¡Ã…)KhQ`ô)oÇ€Gæ õl…ý—ükÇ7©¤øßø¯x4Åø}[ žP®“)¼ó6åÇ4ÙýFÖÄ®~ØÚ¶ªòÇù veÖÊßnC€ä®&q¥Wèv;ùÂ4P¡dê_¿®] ž]ÛlyûŽF(=à:ßð…{¡&‡VµÁ×eÛ°Å:*Øzüa.!°RôþG)=mLŸírLqÜ|°¯ëé%à­9«3‡q£Tº'ÕFÒz;s´,À¥·HC¢k™RTÄ.=ÚŽ‚LÎ÷§áY¼¢u:*ƒe ËËáˆo±IˆàÅ pÍ&懋ēŸ;b¨>›|¡ÍÜ7¢NJSDÎ; +V!€kü·öÙvê–Z«œö®ŒT&Åìúlà—} #y±+xoÝ +ú‚¸a=–òºÃXˆh|t9¶]¢ž +ûiuµ‚ò¦@é@@}ç û¥¤mˆçω@úµJ£ÄÅèÉäkbn:Š g¹ˆÖ$ÑŒyKO0Ê&‚#çÇDqÛ°²{Qù§ç@…F—„ꋊ£aÃ0%Õ±k Èe,ÂŽ²ë½ëJÌN±¬ö6¦âô7kÎ(s +Hº\[®ýhöœƒ.ùh(é¾)ÿ:׫»îW;c¦óøÔø!aÞ' ¾ô»ç¤ÉV¥Œž”›Ûr¸-m]‚VA¥Ùàû%’æ6É¢‚~ ÚÃí`ާøà{Í,X`=šhíµ‰ŸçílÜìTÅ7Aì)ÑLV3’[-ºž –Aÿ¨0{|;} À"ž-Ý [uŒ´ &4Ý¥ ã%|4³0åK 'Ìo:zvé}0ê ›ä8O„ߠΖÐ2ß¾YûÝ(EHž¿eŸtKplÊ™¸ÖcVUg¹Ö9É0 SžõJ¯;OÙšÑâlg%ªØ?nðÙ.À†¦Jö=5v…œççžRÐØÌûIíï +={.aò8¿¿[ŽÚ´¨w³+üðnFÞ˜ŒÉFÅBÉiÆ9f¹‹qb)ÿ¡®&õ½¹—›D•Ô‚”6WÎ7âˆæ£~‚7C¬ ½e 7Â8u¨c²\p«6°ŒˆRçNrjª­g|Ûôöv,Ò"4S`à5·"ýÌ›\Ö ç dè†7ãD¥ä;W݃OðϤóv×sR#’·ÎÍBõô«ãýkš‘4DçyèÌræÝ±´à¤CÚú.¶-fWÃ9ŸÄ_|%}‚up®g|÷î\=kÉüÛiá™5õÛÅz&‚ OeêÕê‚Á+¦ûÜSú¬ZÅû•ósÊ›[ÎãW±÷j™”ÛYðñ¸0(*‚öá‘}‹RëJ>ÈÏ`öºæ‘ÊŠNPgh.æCÖë=cªÉ;y9GjaùŽKðàz¯V¬A½í&y¥\GFŽ|ÃÔ¹otɘ¶‘¬m| ‡Q¼f©»f¹ÝBáà·ëÈŸ§½òôò#S¦ò ß ² +D¶>wc$]]kI§3S"×,HPŸBfb„ãÓI=•d°6$à‘Ó§>Úþ¨² Ó³RJ]ƒ_ð¾ (Yå¿£:FÿlƒÑö›wËFJÁ€of±3Mí‡7à +fÃkò|™ +è‹™‚â;oC³Ÿ&T-óKv¨«]ò¿}=55Âð¥:Ê~HÐõrR…'3MQÆ /ŽÒªFÞ&M[àCEÝSdU‡Ð~Ìé÷FøU‰g:ÁÃKã¬Xpm&pg¯°7îÂÅ(´ÌwþäƒpD6è“ûC!s~eâ„:çOoЮC} Úi’ò»•}—3Ÿ3[ûÆ=ÂOFOî«C7¯†&eÍœµÓÉ@>ÛsñŸÜ7 ¶ÿø)`UÈsè´Ì ]™ýa?"ðU¿”Pâû7ʨ±Û«º4MžG;'¼öC.zunNöÏÅR¬\G¾«»‰oo.ÄÒTØ•`ÛÐÌb‹Ú.áwUO¢:è|+u’¤>ÏW0}ˆ–n‹§g¼BØ|ßàn^ÿ¦­®WýQ•Á¬›a°xÛt—â›O(iG¯ã+-Ž>ŸŸv¬ÿxåéýÀ/{wÁ赫“?ê›‚éˆ¤ÎøO«f²Š–Pºìq–Ä»ÖÀ«4ꦛ˜…ÞÔdŠyPú-²'có€sûðìþ­GÈÞaiõØi™º;ÔGñY‰pwÛ¯5´Ó\u‘RÂr¸I‘9Ú´ìÖšMuì§Gõ@ö«G5¯£XcÙwÒ hÃd–cWU¦È@ÑÝÒÌwµøb2ªŠoBIÆ"o˜cQA3Õ»³Ÿ ŒŠöÜofr£XWW^ó¾W}L)¸/Ò)Ïí¼Öì0ÝæžL%Šï—_,{{i#‹]÷€XôÎÀé +Q÷õõ Ž5q +]ëþK¾=+…—»ÈÙ-VΘ›%ÖVÁsScK‰SæÅoí,®Â4e2ŽtŠvÕ¦Tç\-kôâxp×hIoä=|>ÕDš6ïw ?p=ö”Ðë[çÈû¢µõ„$MŒH_$Ý}ðR/$]¡áå½â” +’Á¢aýKÛñ5FÄ•”‚×ÒêìhnM=…¤ÌY8MÒËFï*×fù™®ÛVd?®çwzN:œfœß°§À¸ÎÃ-Vp¡§íJ@ÖѽNΙHÑeµ;âr¼D#·®Úç­ X­Ê‡¶…íâΤ§Ü íÙoœ}}vDL®}÷ŸU íí;‘0°Ìv%›‹•ý$˜£hW°ão<ôÁÃÆ„ínÏ¢aP”0Ç ©J"2íÝóÍÈ jŒò°lCqg%,sáQ­×i)Û´¯ÕfAŠãf«Ã#•¤ŸÃ‡øÍÃîléø|ð%aÿÙÇ>AeÆËjÇ:?˜µìDiº¦>ý iN¼Î¯ë½(ˆãã$¶çs¾~~¾§´Ìäe3-! [ø"8è퇒çÜ}³¥}"šŸ¸‡Hfirdž‡Ž.` …^™pO¯+úˆ‡A¯DWw;t^é¹\K¯Û#änuzUaâ¥SA“¹ßsQRtËvÇNxLV›çs/Y.éqü­¶~ªdb «ƒElR m+kᨘ ÅEkrû²Ú\Sö é×s/±ëC·¢¤‚÷úv²u•÷½aî~厳IÏ7[³f‰ÝßUÏÒLš‘“dH}ç9C?d‡éçOŒÐ +ç]Õ37,–·®1š¼oBûHS÷U` Ã.‹WKj»Œ×Þ§®$Þ…R'ë´Æ¦Ó‰¢:eÓtDßìçÓô^¦^‰\´o/SõÞýøcvŒs=qëÄ¡÷MÄÖËòµª ­k· g5?¯Ÿñ(>)5O$·2&ë6¿á*<ýº¹™8v’®^ºJ&UI²"Áæžëÿ"UB]î¡ÀhÜSJÃrìð7æ‘kseß7ª„‚9’¯õç190dâ);X¹W5ܦ]?בqØÆíª[w\n°ltHÏÜ"¶=¸Gy§£w!íéN–˜Û®9U:ÏBæp£Ü—R¢c×°Šèá2T÷fiÛÜ[é1…@ºxëâ 7 ŸìÄ ì}Úe`(µWØw¨–A.EÜÿå%²žoîØW¥iÆ4b|s™x¨zJÓe§¥ŠìZÒ^+Rm-´9)²¥û¡³žh*öJ,»ÔæL¿Ó½t‘ùͪÙÙm£¡1‘óÀÞÜ‘³ƒ3òôd R©_QˆTÕ˜ÜÇtÚ<¼˜f ã~· )Ì(˜œ+{‹º4ó¯b¶Ù*$ãpµÞ÷P_M×íSKˆ·¬Á›÷¾„aŒbjm’#Ï¢CoŽn«äDbî¦þ,øº|8É7òs$zöAÁ„‰ª½ 17ô™å|Â@ ª—FOzïr©'“7ºj»gîó^f–_øÿñGö¿ÿ# A¹@ÐÎdÿˆ|gBendstream +endobj +457 0 obj << +/Type /Font +/Subtype /Type1 +/Encoding 5699 0 R +/FirstChar 43 +/LastChar 121 +/Widths 5700 0 R +/BaseFont /BJJJXH+CMR12 +/FontDescriptor 455 0 R +>> endobj +455 0 obj << +/Ascent 694 +/CapHeight 683 +/Descent -194 +/FontName /BJJJXH+CMR12 +/ItalicAngle 0 +/StemV 65 +/XHeight 431 +/FontBBox [-34 -251 988 750] +/Flags 4 +/CharSet (/plus/period/C/G/K/M/P/R/S/T/U/a/b/c/d/e/h/i/k/l/n/o/r/s/t/u/v/y) +/FontFile 456 0 R +>> endobj +5700 0 obj +[762 0 0 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 707 0 0 0 768 0 0 0 761 0 897 0 0 666 0 721 544 707 734 0 0 0 0 0 0 0 0 0 0 0 490 544 435 544 435 0 0 544 272 0 517 272 0 544 490 0 0 381 386 381 544 517 0 0 517 ] +endobj +5699 0 obj << +/Type /Encoding +/Differences [ 0 /.notdef 43/plus 44/.notdef 46/period 47/.notdef 67/C 68/.notdef 71/G 72/.notdef 75/K 76/.notdef 77/M 78/.notdef 80/P 81/.notdef 82/R/S/T/U 86/.notdef 97/a/b/c/d/e 102/.notdef 104/h/i 106/.notdef 107/k/l 109/.notdef 110/n/o 112/.notdef 114/r/s/t/u/v 119/.notdef 121/y 122/.notdef] +>> endobj +464 0 obj << +/Type /Pages +/Count 6 +/Parent 5701 0 R +/Kids [450 0 R 466 0 R 470 0 R 504 0 R 544 0 R 578 0 R] +>> endobj +638 0 obj << +/Type /Pages +/Count 6 +/Parent 5701 0 R +/Kids [611 0 R 640 0 R 688 0 R 694 0 R 697 0 R 729 0 R] +>> endobj +789 0 obj << +/Type /Pages +/Count 6 +/Parent 5701 0 R +/Kids [781 0 R 791 0 R 795 0 R 807 0 R 812 0 R 838 0 R] +>> endobj +883 0 obj << +/Type /Pages +/Count 6 +/Parent 5701 0 R +/Kids [870 0 R 887 0 R 912 0 R 932 0 R 955 0 R 964 0 R] +>> endobj +1012 0 obj << +/Type /Pages +/Count 6 +/Parent 5701 0 R +/Kids [989 0 R 1018 0 R 1030 0 R 1057 0 R 1069 0 R 1094 0 R] +>> endobj +1132 0 obj << +/Type /Pages +/Count 6 +/Parent 5701 0 R +/Kids [1111 0 R 1137 0 R 1151 0 R 1175 0 R 1186 0 R 1211 0 R] +>> endobj +1248 0 obj << +/Type /Pages +/Count 6 +/Parent 5702 0 R +/Kids [1225 0 R 1253 0 R 1265 0 R 1290 0 R 1303 0 R 1326 0 R] +>> endobj +1364 0 obj << +/Type /Pages +/Count 6 +/Parent 5702 0 R +/Kids [1346 0 R 1370 0 R 1381 0 R 1402 0 R 1413 0 R 1435 0 R] +>> endobj +1467 0 obj << +/Type /Pages +/Count 6 +/Parent 5702 0 R +/Kids [1446 0 R 1472 0 R 1480 0 R 1506 0 R 1520 0 R 1543 0 R] +>> endobj +1579 0 obj << +/Type /Pages +/Count 6 +/Parent 5702 0 R +/Kids [1560 0 R 1588 0 R 1613 0 R 1633 0 R 1657 0 R 1679 0 R] +>> endobj +1706 0 obj << +/Type /Pages +/Count 6 +/Parent 5702 0 R +/Kids [1686 0 R 1711 0 R 1720 0 R 1743 0 R 1757 0 R 1764 0 R] +>> endobj +1790 0 obj << +/Type /Pages +/Count 6 +/Parent 5702 0 R +/Kids [1784 0 R 1794 0 R 1807 0 R 1828 0 R 1845 0 R 1865 0 R] +>> endobj +1891 0 obj << +/Type /Pages +/Count 6 +/Parent 5703 0 R +/Kids [1872 0 R 1896 0 R 1908 0 R 1935 0 R 1951 0 R 1978 0 R] +>> endobj +2018 0 obj << +/Type /Pages +/Count 6 +/Parent 5703 0 R +/Kids [1997 0 R 2023 0 R 2044 0 R 2067 0 R 2077 0 R 2104 0 R] +>> endobj +2133 0 obj << +/Type /Pages +/Count 6 +/Parent 5703 0 R +/Kids [2112 0 R 2138 0 R 2152 0 R 2171 0 R 2178 0 R 2195 0 R] +>> endobj +2237 0 obj << +/Type /Pages +/Count 6 +/Parent 5703 0 R +/Kids [2221 0 R 2241 0 R 2267 0 R 2286 0 R 2308 0 R 2317 0 R] +>> endobj +2347 0 obj << +/Type /Pages +/Count 6 +/Parent 5703 0 R +/Kids [2342 0 R 2351 0 R 2376 0 R 2384 0 R 2408 0 R 2422 0 R] +>> endobj +2464 0 obj << +/Type /Pages +/Count 6 +/Parent 5703 0 R +/Kids [2448 0 R 2466 0 R 2475 0 R 2493 0 R 2517 0 R 2528 0 R] +>> endobj +2568 0 obj << +/Type /Pages +/Count 6 +/Parent 5704 0 R +/Kids [2555 0 R 2572 0 R 2597 0 R 2607 0 R 2630 0 R 2639 0 R] +>> endobj +2679 0 obj << +/Type /Pages +/Count 6 +/Parent 5704 0 R +/Kids [2664 0 R 2684 0 R 2699 0 R 2725 0 R 2736 0 R 2760 0 R] +>> endobj +2795 0 obj << +/Type /Pages +/Count 6 +/Parent 5704 0 R +/Kids [2777 0 R 2803 0 R 2827 0 R 2844 0 R 2864 0 R 2888 0 R] +>> endobj +2920 0 obj << +/Type /Pages +/Count 6 +/Parent 5704 0 R +/Kids [2899 0 R 2925 0 R 2940 0 R 2962 0 R 2966 0 R 2976 0 R] +>> endobj +3014 0 obj << +/Type /Pages +/Count 6 +/Parent 5704 0 R +/Kids [3003 0 R 3018 0 R 3043 0 R 3051 0 R 3077 0 R 3098 0 R] +>> endobj +3125 0 obj << +/Type /Pages +/Count 6 +/Parent 5704 0 R +/Kids [3108 0 R 3134 0 R 3154 0 R 3169 0 R 3176 0 R 3203 0 R] +>> endobj +3226 0 obj << +/Type /Pages +/Count 6 +/Parent 5705 0 R +/Kids [3219 0 R 3232 0 R 3263 0 R 3276 0 R 3282 0 R 3300 0 R] +>> endobj +3324 0 obj << +/Type /Pages +/Count 6 +/Parent 5705 0 R +/Kids [3320 0 R 3328 0 R 3350 0 R 3360 0 R 3386 0 R 3403 0 R] +>> endobj +3431 0 obj << +/Type /Pages +/Count 6 +/Parent 5705 0 R +/Kids [3412 0 R 3438 0 R 3456 0 R 3476 0 R 3497 0 R 3507 0 R] +>> endobj +3534 0 obj << +/Type /Pages +/Count 6 +/Parent 5705 0 R +/Kids [3528 0 R 3538 0 R 3562 0 R 3580 0 R 3589 0 R 3615 0 R] +>> endobj +3635 0 obj << +/Type /Pages +/Count 6 +/Parent 5705 0 R +/Kids [3631 0 R 3639 0 R 3662 0 R 3680 0 R 3703 0 R 3712 0 R] +>> endobj +3758 0 obj << +/Type /Pages +/Count 6 +/Parent 5705 0 R +/Kids [3738 0 R 3763 0 R 3776 0 R 3789 0 R 3809 0 R 3836 0 R] +>> endobj +3879 0 obj << +/Type /Pages +/Count 6 +/Parent 5706 0 R +/Kids [3857 0 R 3881 0 R 3896 0 R 3907 0 R 3919 0 R 3932 0 R] +>> endobj +3970 0 obj << +/Type /Pages +/Count 6 +/Parent 5706 0 R +/Kids [3941 0 R 3972 0 R 3988 0 R 3999 0 R 4011 0 R 4036 0 R] +>> endobj +4074 0 obj << +/Type /Pages +/Count 6 +/Parent 5706 0 R +/Kids [4052 0 R 4076 0 R 4114 0 R 4125 0 R 4135 0 R 4147 0 R] +>> endobj +4170 0 obj << +/Type /Pages +/Count 6 +/Parent 5706 0 R +/Kids [4158 0 R 4174 0 R 4185 0 R 4191 0 R 4211 0 R 4225 0 R] +>> endobj +4254 0 obj << +/Type /Pages +/Count 6 +/Parent 5706 0 R +/Kids [4238 0 R 4256 0 R 4272 0 R 4281 0 R 4287 0 R 4295 0 R] +>> endobj +4307 0 obj << +/Type /Pages +/Count 6 +/Parent 5706 0 R +/Kids [4303 0 R 4309 0 R 4349 0 R 4406 0 R 4495 0 R 4585 0 R] +>> endobj +4748 0 obj << +/Type /Pages +/Count 6 +/Parent 5707 0 R +/Kids [4674 0 R 4750 0 R 4828 0 R 4918 0 R 5004 0 R 5091 0 R] +>> endobj +5247 0 obj << +/Type /Pages +/Count 6 +/Parent 5707 0 R +/Kids [5176 0 R 5249 0 R 5307 0 R 5390 0 R 5468 0 R 5566 0 R] +>> endobj +5670 0 obj << +/Type /Pages +/Count 1 +/Parent 5707 0 R +/Kids [5653 0 R] +>> endobj +5701 0 obj << +/Type /Pages +/Count 36 +/Parent 5708 0 R +/Kids [464 0 R 638 0 R 789 0 R 883 0 R 1012 0 R 1132 0 R] +>> endobj +5702 0 obj << +/Type /Pages +/Count 36 +/Parent 5708 0 R +/Kids [1248 0 R 1364 0 R 1467 0 R 1579 0 R 1706 0 R 1790 0 R] +>> endobj +5703 0 obj << +/Type /Pages +/Count 36 +/Parent 5708 0 R +/Kids [1891 0 R 2018 0 R 2133 0 R 2237 0 R 2347 0 R 2464 0 R] +>> endobj +5704 0 obj << +/Type /Pages +/Count 36 +/Parent 5708 0 R +/Kids [2568 0 R 2679 0 R 2795 0 R 2920 0 R 3014 0 R 3125 0 R] +>> endobj +5705 0 obj << +/Type /Pages +/Count 36 +/Parent 5708 0 R +/Kids [3226 0 R 3324 0 R 3431 0 R 3534 0 R 3635 0 R 3758 0 R] +>> endobj +5706 0 obj << +/Type /Pages +/Count 36 +/Parent 5708 0 R +/Kids [3879 0 R 3970 0 R 4074 0 R 4170 0 R 4254 0 R 4307 0 R] +>> endobj +5707 0 obj << +/Type /Pages +/Count 13 +/Parent 5709 0 R +/Kids [4748 0 R 5247 0 R 5670 0 R] +>> endobj +5708 0 obj << +/Type /Pages +/Count 216 +/Parent 5710 0 R +/Kids [5701 0 R 5702 0 R 5703 0 R 5704 0 R 5705 0 R 5706 0 R] +>> endobj +5709 0 obj << +/Type /Pages +/Count 13 +/Parent 5710 0 R +/Kids [5707 0 R] +>> endobj +5710 0 obj << +/Type /Pages +/Count 229 +/Kids [5708 0 R 5709 0 R] +>> endobj +5711 0 obj << +/Type /Outlines +/First 7 0 R +/Last 327 0 R +/Count 5 +>> endobj +447 0 obj << +/Title 448 0 R +/A 445 0 R +/Parent 327 0 R +/Prev 443 0 R +>> endobj +443 0 obj << +/Title 444 0 R +/A 441 0 R +/Parent 327 0 R +/Prev 439 0 R +/Next 447 0 R +>> endobj +439 0 obj << +/Title 440 0 R +/A 437 0 R +/Parent 327 0 R +/Prev 435 0 R +/Next 443 0 R +>> endobj +435 0 obj << +/Title 436 0 R +/A 433 0 R +/Parent 327 0 R +/Prev 431 0 R +/Next 439 0 R +>> endobj +431 0 obj << +/Title 432 0 R +/A 429 0 R +/Parent 327 0 R +/Prev 427 0 R +/Next 435 0 R +>> endobj +427 0 obj << +/Title 428 0 R +/A 425 0 R +/Parent 327 0 R +/Prev 423 0 R +/Next 431 0 R +>> endobj +423 0 obj << +/Title 424 0 R +/A 421 0 R +/Parent 327 0 R +/Prev 419 0 R +/Next 427 0 R +>> endobj +419 0 obj << +/Title 420 0 R +/A 417 0 R +/Parent 327 0 R +/Prev 415 0 R +/Next 423 0 R +>> endobj +415 0 obj << +/Title 416 0 R +/A 413 0 R +/Parent 327 0 R +/Prev 411 0 R +/Next 419 0 R +>> endobj +411 0 obj << +/Title 412 0 R +/A 409 0 R +/Parent 327 0 R +/Prev 407 0 R +/Next 415 0 R +>> endobj +407 0 obj << +/Title 408 0 R +/A 405 0 R +/Parent 327 0 R +/Prev 403 0 R +/Next 411 0 R +>> endobj +403 0 obj << +/Title 404 0 R +/A 401 0 R +/Parent 327 0 R +/Prev 399 0 R +/Next 407 0 R +>> endobj +399 0 obj << +/Title 400 0 R +/A 397 0 R +/Parent 327 0 R +/Prev 395 0 R +/Next 403 0 R +>> endobj +395 0 obj << +/Title 396 0 R +/A 393 0 R +/Parent 327 0 R +/Prev 391 0 R +/Next 399 0 R +>> endobj +391 0 obj << +/Title 392 0 R +/A 389 0 R +/Parent 327 0 R +/Prev 387 0 R +/Next 395 0 R +>> endobj +387 0 obj << +/Title 388 0 R +/A 385 0 R +/Parent 327 0 R +/Prev 383 0 R +/Next 391 0 R +>> endobj +383 0 obj << +/Title 384 0 R +/A 381 0 R +/Parent 327 0 R +/Prev 379 0 R +/Next 387 0 R +>> endobj +379 0 obj << +/Title 380 0 R +/A 377 0 R +/Parent 327 0 R +/Prev 375 0 R +/Next 383 0 R +>> endobj +375 0 obj << +/Title 376 0 R +/A 373 0 R +/Parent 327 0 R +/Prev 371 0 R +/Next 379 0 R +>> endobj +371 0 obj << +/Title 372 0 R +/A 369 0 R +/Parent 327 0 R +/Prev 367 0 R +/Next 375 0 R +>> endobj +367 0 obj << +/Title 368 0 R +/A 365 0 R +/Parent 327 0 R +/Prev 363 0 R +/Next 371 0 R +>> endobj +363 0 obj << +/Title 364 0 R +/A 361 0 R +/Parent 327 0 R +/Prev 359 0 R +/Next 367 0 R +>> endobj +359 0 obj << +/Title 360 0 R +/A 357 0 R +/Parent 327 0 R +/Prev 355 0 R +/Next 363 0 R +>> endobj +355 0 obj << +/Title 356 0 R +/A 353 0 R +/Parent 327 0 R +/Prev 351 0 R +/Next 359 0 R +>> endobj +351 0 obj << +/Title 352 0 R +/A 349 0 R +/Parent 327 0 R +/Prev 347 0 R +/Next 355 0 R +>> endobj +347 0 obj << +/Title 348 0 R +/A 345 0 R +/Parent 327 0 R +/Prev 343 0 R +/Next 351 0 R +>> endobj +343 0 obj << +/Title 344 0 R +/A 341 0 R +/Parent 327 0 R +/Prev 339 0 R +/Next 347 0 R +>> endobj +339 0 obj << +/Title 340 0 R +/A 337 0 R +/Parent 327 0 R +/Prev 335 0 R +/Next 343 0 R +>> endobj +335 0 obj << +/Title 336 0 R +/A 333 0 R +/Parent 327 0 R +/Prev 331 0 R +/Next 339 0 R +>> endobj +331 0 obj << +/Title 332 0 R +/A 329 0 R +/Parent 327 0 R +/Next 335 0 R +>> endobj +327 0 obj << +/Title 328 0 R +/A 325 0 R +/Parent 5711 0 R +/Prev 31 0 R +/First 331 0 R +/Last 447 0 R +/Count -30 +>> endobj +323 0 obj << +/Title 324 0 R +/A 321 0 R +/Parent 31 0 R +/Prev 319 0 R +>> endobj +319 0 obj << +/Title 320 0 R +/A 317 0 R +/Parent 31 0 R +/Prev 315 0 R +/Next 323 0 R +>> endobj +315 0 obj << +/Title 316 0 R +/A 313 0 R +/Parent 31 0 R +/Prev 311 0 R +/Next 319 0 R +>> endobj +311 0 obj << +/Title 312 0 R +/A 309 0 R +/Parent 31 0 R +/Prev 307 0 R +/Next 315 0 R +>> endobj +307 0 obj << +/Title 308 0 R +/A 305 0 R +/Parent 31 0 R +/Prev 303 0 R +/Next 311 0 R +>> endobj +303 0 obj << +/Title 304 0 R +/A 301 0 R +/Parent 31 0 R +/Prev 299 0 R +/Next 307 0 R +>> endobj +299 0 obj << +/Title 300 0 R +/A 297 0 R +/Parent 31 0 R +/Prev 295 0 R +/Next 303 0 R +>> endobj +295 0 obj << +/Title 296 0 R +/A 293 0 R +/Parent 31 0 R +/Prev 291 0 R +/Next 299 0 R +>> endobj +291 0 obj << +/Title 292 0 R +/A 289 0 R +/Parent 31 0 R +/Prev 287 0 R +/Next 295 0 R +>> endobj +287 0 obj << +/Title 288 0 R +/A 285 0 R +/Parent 31 0 R +/Prev 283 0 R +/Next 291 0 R +>> endobj +283 0 obj << +/Title 284 0 R +/A 281 0 R +/Parent 31 0 R +/Prev 279 0 R +/Next 287 0 R +>> endobj +279 0 obj << +/Title 280 0 R +/A 277 0 R +/Parent 31 0 R +/Prev 275 0 R +/Next 283 0 R +>> endobj +275 0 obj << +/Title 276 0 R +/A 273 0 R +/Parent 31 0 R +/Prev 271 0 R +/Next 279 0 R +>> endobj +271 0 obj << +/Title 272 0 R +/A 269 0 R +/Parent 31 0 R +/Prev 267 0 R +/Next 275 0 R +>> endobj +267 0 obj << +/Title 268 0 R +/A 265 0 R +/Parent 31 0 R +/Prev 263 0 R +/Next 271 0 R +>> endobj +263 0 obj << +/Title 264 0 R +/A 261 0 R +/Parent 31 0 R +/Prev 259 0 R +/Next 267 0 R +>> endobj +259 0 obj << +/Title 260 0 R +/A 257 0 R +/Parent 31 0 R +/Prev 255 0 R +/Next 263 0 R +>> endobj +255 0 obj << +/Title 256 0 R +/A 253 0 R +/Parent 31 0 R +/Prev 251 0 R +/Next 259 0 R +>> endobj +251 0 obj << +/Title 252 0 R +/A 249 0 R +/Parent 31 0 R +/Prev 247 0 R +/Next 255 0 R +>> endobj +247 0 obj << +/Title 248 0 R +/A 245 0 R +/Parent 31 0 R +/Prev 243 0 R +/Next 251 0 R +>> endobj +243 0 obj << +/Title 244 0 R +/A 241 0 R +/Parent 31 0 R +/Prev 239 0 R +/Next 247 0 R +>> endobj +239 0 obj << +/Title 240 0 R +/A 237 0 R +/Parent 31 0 R +/Prev 235 0 R +/Next 243 0 R +>> endobj +235 0 obj << +/Title 236 0 R +/A 233 0 R +/Parent 31 0 R +/Prev 231 0 R +/Next 239 0 R +>> endobj +231 0 obj << +/Title 232 0 R +/A 229 0 R +/Parent 31 0 R +/Prev 227 0 R +/Next 235 0 R +>> endobj +227 0 obj << +/Title 228 0 R +/A 225 0 R +/Parent 31 0 R +/Prev 223 0 R +/Next 231 0 R +>> endobj +223 0 obj << +/Title 224 0 R +/A 221 0 R +/Parent 31 0 R +/Prev 219 0 R +/Next 227 0 R +>> endobj +219 0 obj << +/Title 220 0 R +/A 217 0 R +/Parent 31 0 R +/Prev 215 0 R +/Next 223 0 R +>> endobj +215 0 obj << +/Title 216 0 R +/A 213 0 R +/Parent 31 0 R +/Prev 211 0 R +/Next 219 0 R +>> endobj +211 0 obj << +/Title 212 0 R +/A 209 0 R +/Parent 31 0 R +/Prev 207 0 R +/Next 215 0 R +>> endobj +207 0 obj << +/Title 208 0 R +/A 205 0 R +/Parent 31 0 R +/Prev 203 0 R +/Next 211 0 R +>> endobj +203 0 obj << +/Title 204 0 R +/A 201 0 R +/Parent 31 0 R +/Prev 199 0 R +/Next 207 0 R +>> endobj +199 0 obj << +/Title 200 0 R +/A 197 0 R +/Parent 31 0 R +/Prev 195 0 R +/Next 203 0 R +>> endobj +195 0 obj << +/Title 196 0 R +/A 193 0 R +/Parent 31 0 R +/Prev 191 0 R +/Next 199 0 R +>> endobj +191 0 obj << +/Title 192 0 R +/A 189 0 R +/Parent 31 0 R +/Prev 187 0 R +/Next 195 0 R +>> endobj +187 0 obj << +/Title 188 0 R +/A 185 0 R +/Parent 31 0 R +/Prev 183 0 R +/Next 191 0 R +>> endobj +183 0 obj << +/Title 184 0 R +/A 181 0 R +/Parent 31 0 R +/Prev 179 0 R +/Next 187 0 R +>> endobj +179 0 obj << +/Title 180 0 R +/A 177 0 R +/Parent 31 0 R +/Prev 175 0 R +/Next 183 0 R +>> endobj +175 0 obj << +/Title 176 0 R +/A 173 0 R +/Parent 31 0 R +/Prev 171 0 R +/Next 179 0 R +>> endobj +171 0 obj << +/Title 172 0 R +/A 169 0 R +/Parent 31 0 R +/Prev 167 0 R +/Next 175 0 R +>> endobj +167 0 obj << +/Title 168 0 R +/A 165 0 R +/Parent 31 0 R +/Prev 163 0 R +/Next 171 0 R +>> endobj +163 0 obj << +/Title 164 0 R +/A 161 0 R +/Parent 31 0 R +/Prev 159 0 R +/Next 167 0 R +>> endobj +159 0 obj << +/Title 160 0 R +/A 157 0 R +/Parent 31 0 R +/Prev 155 0 R +/Next 163 0 R +>> endobj +155 0 obj << +/Title 156 0 R +/A 153 0 R +/Parent 31 0 R +/Prev 151 0 R +/Next 159 0 R +>> endobj +151 0 obj << +/Title 152 0 R +/A 149 0 R +/Parent 31 0 R +/Prev 147 0 R +/Next 155 0 R +>> endobj +147 0 obj << +/Title 148 0 R +/A 145 0 R +/Parent 31 0 R +/Prev 143 0 R +/Next 151 0 R +>> endobj +143 0 obj << +/Title 144 0 R +/A 141 0 R +/Parent 31 0 R +/Prev 139 0 R +/Next 147 0 R +>> endobj +139 0 obj << +/Title 140 0 R +/A 137 0 R +/Parent 31 0 R +/Prev 135 0 R +/Next 143 0 R +>> endobj +135 0 obj << +/Title 136 0 R +/A 133 0 R +/Parent 31 0 R +/Prev 131 0 R +/Next 139 0 R +>> endobj +131 0 obj << +/Title 132 0 R +/A 129 0 R +/Parent 31 0 R +/Prev 127 0 R +/Next 135 0 R +>> endobj +127 0 obj << +/Title 128 0 R +/A 125 0 R +/Parent 31 0 R +/Prev 123 0 R +/Next 131 0 R +>> endobj +123 0 obj << +/Title 124 0 R +/A 121 0 R +/Parent 31 0 R +/Prev 119 0 R +/Next 127 0 R +>> endobj +119 0 obj << +/Title 120 0 R +/A 117 0 R +/Parent 31 0 R +/Prev 115 0 R +/Next 123 0 R +>> endobj +115 0 obj << +/Title 116 0 R +/A 113 0 R +/Parent 31 0 R +/Prev 111 0 R +/Next 119 0 R +>> endobj +111 0 obj << +/Title 112 0 R +/A 109 0 R +/Parent 31 0 R +/Prev 107 0 R +/Next 115 0 R +>> endobj +107 0 obj << +/Title 108 0 R +/A 105 0 R +/Parent 31 0 R +/Prev 103 0 R +/Next 111 0 R +>> endobj +103 0 obj << +/Title 104 0 R +/A 101 0 R +/Parent 31 0 R +/Prev 99 0 R +/Next 107 0 R +>> endobj +99 0 obj << +/Title 100 0 R +/A 97 0 R +/Parent 31 0 R +/Prev 95 0 R +/Next 103 0 R +>> endobj +95 0 obj << +/Title 96 0 R +/A 93 0 R +/Parent 31 0 R +/Prev 91 0 R +/Next 99 0 R +>> endobj +91 0 obj << +/Title 92 0 R +/A 89 0 R +/Parent 31 0 R +/Prev 87 0 R +/Next 95 0 R +>> endobj +87 0 obj << +/Title 88 0 R +/A 85 0 R +/Parent 31 0 R +/Prev 83 0 R +/Next 91 0 R +>> endobj +83 0 obj << +/Title 84 0 R +/A 81 0 R +/Parent 31 0 R +/Prev 79 0 R +/Next 87 0 R +>> endobj +79 0 obj << +/Title 80 0 R +/A 77 0 R +/Parent 31 0 R +/Prev 75 0 R +/Next 83 0 R +>> endobj +75 0 obj << +/Title 76 0 R +/A 73 0 R +/Parent 31 0 R +/Prev 71 0 R +/Next 79 0 R +>> endobj +71 0 obj << +/Title 72 0 R +/A 69 0 R +/Parent 31 0 R +/Prev 67 0 R +/Next 75 0 R +>> endobj +67 0 obj << +/Title 68 0 R +/A 65 0 R +/Parent 31 0 R +/Prev 63 0 R +/Next 71 0 R +>> endobj +63 0 obj << +/Title 64 0 R +/A 61 0 R +/Parent 31 0 R +/Prev 59 0 R +/Next 67 0 R +>> endobj +59 0 obj << +/Title 60 0 R +/A 57 0 R +/Parent 31 0 R +/Prev 55 0 R +/Next 63 0 R +>> endobj +55 0 obj << +/Title 56 0 R +/A 53 0 R +/Parent 31 0 R +/Prev 51 0 R +/Next 59 0 R +>> endobj +51 0 obj << +/Title 52 0 R +/A 49 0 R +/Parent 31 0 R +/Prev 47 0 R +/Next 55 0 R +>> endobj +47 0 obj << +/Title 48 0 R +/A 45 0 R +/Parent 31 0 R +/Prev 43 0 R +/Next 51 0 R +>> endobj +43 0 obj << +/Title 44 0 R +/A 41 0 R +/Parent 31 0 R +/Prev 39 0 R +/Next 47 0 R +>> endobj +39 0 obj << +/Title 40 0 R +/A 37 0 R +/Parent 31 0 R +/Prev 35 0 R +/Next 43 0 R +>> endobj +35 0 obj << +/Title 36 0 R +/A 33 0 R +/Parent 31 0 R +/Next 39 0 R +>> endobj +31 0 obj << +/Title 32 0 R +/A 29 0 R +/Parent 5711 0 R +/Prev 23 0 R +/Next 327 0 R +/First 35 0 R +/Last 323 0 R +/Count -73 +>> endobj +27 0 obj << +/Title 28 0 R +/A 25 0 R +/Parent 23 0 R +>> endobj +23 0 obj << +/Title 24 0 R +/A 21 0 R +/Parent 5711 0 R +/Prev 15 0 R +/Next 31 0 R +/First 27 0 R +/Last 27 0 R +/Count -1 +>> endobj +19 0 obj << +/Title 20 0 R +/A 17 0 R +/Parent 15 0 R +>> endobj +15 0 obj << +/Title 16 0 R +/A 13 0 R +/Parent 5711 0 R +/Prev 7 0 R +/Next 23 0 R +/First 19 0 R +/Last 19 0 R +/Count -1 +>> endobj +11 0 obj << +/Title 12 0 R +/A 9 0 R +/Parent 7 0 R +>> endobj +7 0 obj << +/Title 8 0 R +/A 5 0 R +/Parent 5711 0 R +/Next 15 0 R +/First 11 0 R +/Last 11 0 R +/Count -1 +>> endobj +5712 0 obj << +/Names [(ADSR_8h-source) 884 0 R (BandedWG_8h-source) 929 0 R (BeeThree_8h-source) 961 0 R (BiQuad_8h-source) 1027 0 R (BlowBotl_8h-source) 1066 0 R (BlowHole_8h-source) 1108 0 R (BowTabl_8h-source) 1183 0 R (Bowed_8h-source) 1148 0 R (Brass_8h-source) 1222 0 R (Chorus_8h-source) 1262 0 R (Clarinet_8h-source) 1300 0 R (DelayA_8h-source) 1378 0 R (DelayL_8h-source) 1410 0 R (Delay_8h-source) 1343 0 R (Doc-Start) 454 0 R (Drummer_8h-source) 1443 0 R (Echo_8h-source) 1477 0 R (Envelope_8h-source) 1517 0 R (FMVoices_8h-source) 1717 0 R (FM_8h-source) 1683 0 R (Filter_8h-source) 1585 0 R (Flute_8h-source) 1630 0 R (FormSwep_8h-source) 1761 0 R (HevyMetl_8h-source) 1791 0 R (Instrmnt_8h-source) 1825 0 R (Item.1) 4024 0 R (Item.10) 4130 0 R (Item.11) 4131 0 R (Item.2) 4025 0 R (Item.3) 4026 0 R (Item.4) 4027 0 R (Item.5) 4058 0 R (Item.6) 4060 0 R (Item.7) 4062 0 R (Item.8) 4065 0 R (Item.9) 4128 0 R (JCRev_8h-source) 1842 0 R (JetTabl_8h-source) 1869 0 R (Mandolin_8h-source) 1905 0 R (Mesh2D_8h-source) 1948 0 R (Messager_8h-source) 1994 0 R (ModalBar_8h-source) 2074 0 R (Modal_8h-source) 2041 0 R (Modulate_8h-source) 2109 0 R (Moog_8h-source) 2149 0 R (NRev_8h-source) 2192 0 R (Noise_8h-source) 2175 0 R (OnePole_8h-source) 2238 0 R (OneZero_8h-source) 2283 0 R (PRCRev_8h-source) 2490 0 R (PercFlut_8h-source) 2314 0 R (PitShift_8h-source) 2348 0 R (PluckTwo_8h-source) 2419 0 R (Plucked_8h-source) 2381 0 R (PoleZero_8h-source) 2472 0 R (ReedTabl_8h-source) 2525 0 R (Resonate_8h-source) 2569 0 R (Reverb_8h-source) 2604 0 R (Rhodey_8h-source) 2636 0 R (RtDuplex_8h-source) 2696 0 R (RtMidi_8h-source) 2733 0 R (RtWvIn_8h-source) 2800 0 R (RtWvOut_8h-source) 2861 0 R (SKINI_8h-source) 3105 0 R (Sampler_8h-source) 2896 0 R (Saxofony_8h-source) 2937 0 R (Shakers_8h-source) 2973 0 R (Simple_8h-source) 3015 0 R (Sitar_8h-source) 3048 0 R (Socket_8h-source) 3173 0 R (StifKarp_8h-source) 3216 0 R (Stk_8h-source) 3280 0 R (SubNoise_8h-source) 3325 0 R (Table_8h-source) 3357 0 R (TcpWvIn_8h-source) 3409 0 R (TcpWvOut_8h-source) 3473 0 R (Thread_8h-source) 3504 0 R (TubeBell_8h-source) 3535 0 R (TwoPole_8h-source) 3586 0 R (TwoZero_8h-source) 3636 0 R (WaveLoop_8h-source) 3677 0 R (Wurley_8h-source) 3709 0 R (WvIn_8h-source) 3806 0 R (WvOut_8h-source) 3894 0 R (cfiles) 4260 0 R (chapter*.1) 475 0 R (chapter.1) 6 0 R (chapter.2) 14 0 R (chapter.3) 22 0 R (chapter.4) 30 0 R (chapter.5) 326 0 R (classADSR) 815 0 R (classADSR_a0) 831 0 R (classADSR_a1) 841 0 R (classADSR_a10) 859 0 R (classADSR_a11) 861 0 R (classADSR_a12) 863 0 R (classADSR_a13) 865 0 R (classADSR_a14) 867 0 R (classADSR_a15) 873 0 R (classADSR_a16) 875 0 R (classADSR_a2) 843 0 R (classADSR_a3) 845 0 R (classADSR_a4) 847 0 R (classADSR_a5) 849 0 R (classADSR_a6) 851 0 R (classADSR_a7) 853 0 R (classADSR_a8) 855 0 R (classADSR_a9) 857 0 R (classBandedWG) 890 0 R (classBandedWG_a0) 892 0 R (classBandedWG_a1) 894 0 R (classBandedWG_a10) 919 0 R (classBandedWG_a11) 921 0 R (classBandedWG_a12) 923 0 R (classBandedWG_a2) 896 0 R (classBandedWG_a3) 898 0 R (classBandedWG_a4) 900 0 R (classBandedWG_a5) 902 0 R (classBandedWG_a6) 904 0 R (classBandedWG_a7) 906 0 R (classBandedWG_a8) 915 0 R (classBandedWG_a9) 917 0 R (classBeeThree) 935 0 R (classBeeThree_a0) 938 0 R (classBeeThree_a1) 940 0 R (classBeeThree_a2) 942 0 R (classBeeThree_a3) 944 0 R (classBiQuad) 967 0 R (classBiQuad_a0) 969 0 R (classBiQuad_a1) 971 0 R (classBiQuad_a10) 1014 0 R (classBiQuad_a11) 1015 0 R (classBiQuad_a12) 996 0 R (classBiQuad_a13) 998 0 R (classBiQuad_a14) 1000 0 R (classBiQuad_a15) 1002 0 R (classBiQuad_a2) 973 0 R (classBiQuad_a3) 975 0 R (classBiQuad_a4) 977 0 R (classBiQuad_a5) 979 0 R (classBiQuad_a6) 981 0 R (classBiQuad_a7) 983 0 R (classBiQuad_a8) 1007 0 R (classBiQuad_a9) 1013 0 R (classBlowBotl) 1033 0 R (classBlowBotl_a0) 1035 0 R (classBlowBotl_a1) 1037 0 R (classBlowBotl_a2) 1039 0 R (classBlowBotl_a3) 1041 0 R (classBlowBotl_a4) 1043 0 R (classBlowBotl_a5) 1045 0 R (classBlowBotl_a6) 1047 0 R (classBlowBotl_a7) 1049 0 R (classBlowBotl_a8) 1051 0 R (classBlowBotl_a9) 1060 0 R (classBlowHole) 1072 0 R (classBlowHole_a0) 1074 0 R (classBlowHole_a1) 1076 0 R (classBlowHole_a10) 1101 0 R (classBlowHole_a11) 1103 0 R (classBlowHole_a2) 1078 0 R (classBlowHole_a3) 1080 0 R (classBlowHole_a4) 1082 0 R (classBlowHole_a5) 1084 0 R (classBlowHole_a6) 1086 0 R (classBlowHole_a7) 1088 0 R (classBlowHole_a8) 1097 0 R (classBlowHole_a9) 1099 0 R (classBowTabl) 1154 0 R (classBowTabl_a0) 1156 0 R (classBowTabl_a1) 1158 0 R (classBowTabl_a2) 1171 0 R (classBowTabl_a3) 1172 0 R (classBowTabl_a4) 1162 0 R (classBowTabl_a5) 1173 0 R (classBowTabl_a6) 1165 0 R (classBowed) 1114 0 R (classBowed_a0) 1116 0 R (classBowed_a1) 1118 0 R (classBowed_a10) 1144 0 R (classBowed_a2) 1120 0 R (classBowed_a3) 1122 0 R (classBowed_a4) 1124 0 R (classBowed_a5) 1126 0 R (classBowed_a6) 1128 0 R (classBowed_a7) 1130 0 R (classBowed_a8) 1140 0 R (classBowed_a9) 1142 0 R (classBrass) 1189 0 R (classBrass_a0) 1191 0 R (classBrass_a1) 1193 0 R (classBrass_a10) 1218 0 R (classBrass_a2) 1195 0 R (classBrass_a3) 1197 0 R (classBrass_a4) 1199 0 R (classBrass_a5) 1201 0 R (classBrass_a6) 1203 0 R (classBrass_a7) 1205 0 R (classBrass_a8) 1214 0 R (classBrass_a9) 1216 0 R (classChorus) 1228 0 R (classChorus_a0) 1230 0 R (classChorus_a1) 1232 0 R (classChorus_a10) 1258 0 R (classChorus_a2) 1234 0 R (classChorus_a3) 1236 0 R (classChorus_a4) 1238 0 R (classChorus_a5) 1240 0 R (classChorus_a6) 1242 0 R (classChorus_a7) 1244 0 R (classChorus_a8) 1246 0 R (classChorus_a9) 1256 0 R (classClarinet) 1268 0 R (classClarinet_a0) 1270 0 R (classClarinet_a1) 1272 0 R (classClarinet_a2) 1274 0 R (classClarinet_a3) 1276 0 R (classClarinet_a4) 1278 0 R (classClarinet_a5) 1280 0 R (classClarinet_a6) 1282 0 R (classClarinet_a7) 1284 0 R (classClarinet_a8) 1293 0 R (classClarinet_a9) 1295 0 R (classDelay) 1306 0 R (classDelayA) 1349 0 R (classDelayA_a0) 1351 0 R (classDelayA_a1) 1353 0 R (classDelayA_a2) 1355 0 R (classDelayA_a3) 1357 0 R (classDelayA_a4) 1368 0 R (classDelayA_a5) 1360 0 R (classDelayA_a6) 1362 0 R (classDelayL) 1384 0 R (classDelayL_a0) 1386 0 R (classDelayL_a1) 1388 0 R (classDelayL_a2) 1390 0 R (classDelayL_a3) 1400 0 R (classDelayL_a4) 1393 0 R (classDelayL_a5) 1395 0 R (classDelay_a0) 1308 0 R (classDelay_a1) 1310 0 R (classDelay_a10) 1334 0 R (classDelay_a2) 1312 0 R (classDelay_a3) 1314 0 R (classDelay_a4) 1324 0 R (classDelay_a5) 1317 0 R (classDelay_a6) 1319 0 R (classDelay_a7) 1340 0 R (classDelay_a8) 1330 0 R (classDelay_a9) 1332 0 R (classDrummer) 1416 0 R (classDrummer_a0) 1418 0 R (classDrummer_a1) 1420 0 R (classDrummer_a2) 1432 0 R (classDrummer_a3) 1423 0 R (classDrummer_a4) 1425 0 R (classEcho) 1449 0 R (classEcho_a0) 1451 0 R (classEcho_a1) 1453 0 R (classEcho_a2) 1455 0 R (classEcho_a3) 1457 0 R (classEcho_a4) 1459 0 R (classEcho_a5) 1461 0 R (classEcho_a6) 1463 0 R (classEcho_a7) 1465 0 R (classEnvelope) 836 0 R (classEnvelope_a0) 1484 0 R (classEnvelope_a1) 1486 0 R (classEnvelope_a10) 1511 0 R (classEnvelope_a11) 1513 0 R (classEnvelope_a2) 1488 0 R (classEnvelope_a3) 1490 0 R (classEnvelope_a4) 1492 0 R (classEnvelope_a5) 1494 0 R (classEnvelope_a6) 1496 0 R (classEnvelope_a7) 1498 0 R (classEnvelope_a8) 1500 0 R (classEnvelope_a9) 1509 0 R (classFM) 727 0 R (classFMVoices) 1689 0 R (classFMVoices_a0) 1692 0 R (classFMVoices_a1) 1694 0 R (classFMVoices_a2) 1696 0 R (classFMVoices_a3) 1698 0 R (classFMVoices_a4) 1700 0 R (classFMVoices_a5) 1702 0 R (classFM_a0) 1637 0 R (classFM_a1) 1639 0 R (classFM_a10) 1664 0 R (classFM_a11) 1666 0 R (classFM_a12) 1668 0 R (classFM_a13) 1670 0 R (classFM_a14) 1672 0 R (classFM_a15) 1674 0 R (classFM_a2) 1641 0 R (classFM_a3) 1643 0 R (classFM_a4) 1645 0 R (classFM_a5) 1647 0 R (classFM_a6) 1649 0 R (classFM_a7) 1651 0 R (classFM_a8) 1660 0 R (classFM_a9) 1662 0 R (classFilter) 1016 0 R (classFilter_a0) 1524 0 R (classFilter_a1) 1538 0 R (classFilter_a10) 1550 0 R (classFilter_a11) 1552 0 R (classFilter_a2) 1527 0 R (classFilter_a3) 1529 0 R (classFilter_a4) 1539 0 R (classFilter_a5) 1540 0 R (classFilter_a6) 1541 0 R (classFilter_a7) 1026 0 R (classFilter_a8) 1546 0 R (classFilter_a9) 1548 0 R (classFlute) 1591 0 R (classFlute_a0) 1593 0 R (classFlute_a1) 1595 0 R (classFlute_a10) 1620 0 R (classFlute_a11) 1622 0 R (classFlute_a12) 1624 0 R (classFlute_a2) 1597 0 R (classFlute_a3) 1599 0 R (classFlute_a4) 1601 0 R (classFlute_a5) 1603 0 R (classFlute_a6) 1605 0 R (classFlute_a7) 1607 0 R (classFlute_a8) 1616 0 R (classFlute_a9) 1618 0 R (classFormSwep) 1723 0 R (classFormSwep_a0) 1725 0 R (classFormSwep_a1) 1727 0 R (classFormSwep_a2) 1739 0 R (classFormSwep_a3) 1730 0 R (classFormSwep_a4) 1732 0 R (classFormSwep_a5) 1740 0 R (classFormSwep_a6) 1741 0 R (classFormSwep_a7) 1746 0 R (classFormSwep_a8) 1748 0 R (classHevyMetl) 1767 0 R (classHevyMetl_a0) 1770 0 R (classHevyMetl_a1) 1772 0 R (classHevyMetl_a2) 1774 0 R (classHevyMetl_a3) 1776 0 R (classInstrmnt) 1797 0 R (classInstrmnt_a0) 1799 0 R (classInstrmnt_a1) 1801 0 R (classInstrmnt_a2) 1442 0 R (classInstrmnt_a3) 1811 0 R (classInstrmnt_a4) 1813 0 R (classInstrmnt_a5) 1815 0 R (classInstrmnt_a6) 1817 0 R (classInstrmnt_a7) 1819 0 R (classInstrmnt_a8) 1821 0 R (classJCRev) 1831 0 R (classJCRev_a2) 1833 0 R (classJCRev_a3) 1835 0 R (classJetTabl) 1848 0 R (classJetTabl_a0) 1850 0 R (classJetTabl_a1) 1852 0 R (classJetTabl_a2) 1854 0 R (classJetTabl_a3) 1856 0 R (classJetTabl_a4) 1858 0 R (classMandolin) 1875 0 R (classMandolin_a0) 1877 0 R (classMandolin_a1) 1879 0 R (classMandolin_a2) 1881 0 R (classMandolin_a3) 1883 0 R (classMandolin_a4) 1885 0 R (classMandolin_a5) 1887 0 R (classMandolin_a6) 1889 0 R (classMandolin_a7) 1899 0 R (classMesh2D) 1911 0 R (classMesh2D_a0) 1913 0 R (classMesh2D_a1) 1915 0 R (classMesh2D_a10) 1940 0 R (classMesh2D_a11) 1942 0 R (classMesh2D_a12) 1944 0 R (classMesh2D_a2) 1917 0 R (classMesh2D_a3) 1919 0 R (classMesh2D_a4) 1921 0 R (classMesh2D_a5) 1923 0 R (classMesh2D_a6) 1925 0 R (classMesh2D_a7) 1927 0 R (classMesh2D_a8) 1929 0 R (classMesh2D_a9) 1938 0 R (classMessager) 1954 0 R (classMessager_a0) 1975 0 R (classMessager_a1) 1957 0 R (classMessager_a2) 1976 0 R (classMessager_a3) 1960 0 R (classMessager_a4) 1962 0 R (classMessager_a5) 1964 0 R (classMessager_a6) 1966 0 R (classMessager_a7) 1968 0 R (classMessager_a8) 1970 0 R (classModal) 2000 0 R (classModalBar) 2047 0 R (classModalBar_a0) 2049 0 R (classModalBar_a1) 2051 0 R (classModalBar_a2) 2053 0 R (classModalBar_a3) 2055 0 R (classModalBar_a4) 2057 0 R (classModalBar_a5) 2059 0 R (classModalBar_a6) 2061 0 R (classModal_a0) 2002 0 R (classModal_a1) 2004 0 R (classModal_a10) 2030 0 R (classModal_a11) 2032 0 R (classModal_a12) 2034 0 R (classModal_a13) 2036 0 R (classModal_a2) 2006 0 R (classModal_a3) 2008 0 R (classModal_a4) 2010 0 R (classModal_a5) 2012 0 R (classModal_a6) 2014 0 R (classModal_a7) 2016 0 R (classModal_a8) 2026 0 R (classModal_a9) 2028 0 R (classModulate) 2080 0 R (classModulate_a0) 2082 0 R (classModulate_a1) 2084 0 R (classModulate_a2) 2086 0 R (classModulate_a3) 2088 0 R (classModulate_a4) 2090 0 R (classModulate_a5) 2092 0 R (classModulate_a6) 2094 0 R (classModulate_a7) 2096 0 R (classModulate_a8) 2098 0 R (classMoog) 2115 0 R (classMoog_a0) 2117 0 R (classMoog_a1) 2119 0 R (classMoog_a2) 2121 0 R (classMoog_a3) 2123 0 R (classMoog_a4) 2125 0 R (classMoog_a5) 2127 0 R (classMoog_a6) 2129 0 R (classMoog_a7) 2131 0 R (classNRev) 2181 0 R (classNRev_a2) 2183 0 R (classNRev_a3) 2185 0 R (classNoise) 1065 0 R (classNoise_a0) 2156 0 R (classNoise_a1) 2158 0 R (classNoise_a2) 2160 0 R (classNoise_a3) 2162 0 R (classNoise_a4) 2164 0 R (classOnePole) 2198 0 R (classOnePole_a0) 2200 0 R (classOnePole_a1) 2202 0 R (classOnePole_a10) 2226 0 R (classOnePole_a11) 2228 0 R (classOnePole_a2) 2204 0 R (classOnePole_a3) 2206 0 R (classOnePole_a4) 2208 0 R (classOnePole_a5) 2210 0 R (classOnePole_a6) 2219 0 R (classOnePole_a7) 1580 0 R (classOnePole_a8) 2214 0 R (classOnePole_a9) 2224 0 R (classOneZero) 2244 0 R (classOneZero_a0) 2246 0 R (classOneZero_a1) 2248 0 R (classOneZero_a10) 2272 0 R (classOneZero_a11) 2274 0 R (classOneZero_a2) 2250 0 R (classOneZero_a3) 2252 0 R (classOneZero_a4) 2254 0 R (classOneZero_a5) 2256 0 R (classOneZero_a6) 2265 0 R (classOneZero_a7) 1581 0 R (classOneZero_a8) 2260 0 R (classOneZero_a9) 2270 0 R (classPRCRev) 2478 0 R (classPRCRev_a2) 2480 0 R (classPRCRev_a3) 2482 0 R (classPercFlut) 2289 0 R (classPercFlut_a0) 2292 0 R (classPercFlut_a1) 2294 0 R (classPercFlut_a2) 2296 0 R (classPercFlut_a3) 2298 0 R (classPercFlut_a4) 2300 0 R (classPitShift) 2320 0 R (classPitShift_a0) 2322 0 R (classPitShift_a1) 2324 0 R (classPitShift_a2) 2326 0 R (classPitShift_a3) 2328 0 R (classPitShift_a4) 2330 0 R (classPitShift_a5) 2332 0 R (classPitShift_a6) 2334 0 R (classPitShift_a7) 2336 0 R (classPluckTwo) 1904 0 R (classPluckTwo_a0) 2388 0 R (classPluckTwo_a1) 2390 0 R (classPluckTwo_a2) 2392 0 R (classPluckTwo_a3) 2394 0 R (classPluckTwo_a4) 2396 0 R (classPluckTwo_a5) 2398 0 R (classPluckTwo_a6) 2400 0 R (classPluckTwo_a7) 2406 0 R (classPluckTwo_a8) 2411 0 R (classPluckTwo_a9) 2413 0 R (classPlucked) 2354 0 R (classPlucked_a0) 2356 0 R (classPlucked_a1) 2358 0 R (classPlucked_a2) 2360 0 R (classPlucked_a3) 2362 0 R (classPlucked_a4) 2364 0 R (classPlucked_a5) 2366 0 R (classPlucked_a6) 2368 0 R (classPlucked_a7) 2370 0 R (classPoleZero) 2425 0 R (classPoleZero_a0) 2427 0 R (classPoleZero_a1) 2429 0 R (classPoleZero_a10) 2453 0 R (classPoleZero_a11) 2455 0 R (classPoleZero_a12) 2457 0 R (classPoleZero_a2) 2431 0 R (classPoleZero_a3) 2433 0 R (classPoleZero_a4) 2435 0 R (classPoleZero_a5) 2437 0 R (classPoleZero_a6) 2445 0 R (classPoleZero_a7) 2446 0 R (classPoleZero_a8) 1582 0 R (classPoleZero_a9) 2451 0 R (classReedTabl) 2496 0 R (classReedTabl_a0) 2498 0 R (classReedTabl_a1) 2500 0 R (classReedTabl_a2) 2513 0 R (classReedTabl_a3) 2514 0 R (classReedTabl_a4) 2504 0 R (classReedTabl_a5) 2515 0 R (classReedTabl_a6) 2507 0 R (classResonate) 2531 0 R (classResonate_a0) 2533 0 R (classResonate_a1) 2535 0 R (classResonate_a10) 2560 0 R (classResonate_a11) 2562 0 R (classResonate_a2) 2537 0 R (classResonate_a3) 2539 0 R (classResonate_a4) 2541 0 R (classResonate_a5) 2543 0 R (classResonate_a6) 2545 0 R (classResonate_a7) 2547 0 R (classResonate_a8) 2549 0 R (classResonate_a9) 2558 0 R (classReverb) 2575 0 R (classReverb_a0) 2577 0 R (classReverb_a1) 2579 0 R (classReverb_a2) 2581 0 R (classReverb_a3) 2583 0 R (classReverb_a4) 2585 0 R (classReverb_a5) 2587 0 R (classReverb_a6) 2589 0 R (classReverb_a7) 2591 0 R (classReverb_a8) 2600 0 R (classRhodey) 2610 0 R (classRhodey_a0) 2613 0 R (classRhodey_a1) 2615 0 R (classRhodey_a2) 2617 0 R (classRhodey_a3) 2619 0 R (classRhodey_a4) 2621 0 R (classRtDuplex) 2642 0 R (classRtDuplex_a0) 2658 0 R (classRtDuplex_a1) 2645 0 R (classRtDuplex_a2) 2659 0 R (classRtDuplex_a3) 2660 0 R (classRtDuplex_a4) 2649 0 R (classRtDuplex_a5) 2661 0 R (classRtDuplex_a6) 2662 0 R (classRtDuplex_a7) 2653 0 R (classRtDuplex_a8) 2680 0 R (classRtMidi) 1992 0 R (classRtMidi_a0) 2703 0 R (classRtMidi_a1) 2705 0 R (classRtMidi_a2) 2707 0 R (classRtMidi_a3) 2723 0 R (classRtMidi_a4) 2710 0 R (classRtMidi_a5) 2712 0 R (classRtMidi_a6) 2714 0 R (classRtMidi_a7) 2716 0 R (classRtMidi_a8) 2718 0 R (classRtWvIn) 2681 0 R (classRtWvIn_a0) 2754 0 R (classRtWvIn_a1) 2741 0 R (classRtWvIn_a2) 2755 0 R (classRtWvIn_a3) 2756 0 R (classRtWvIn_a4) 2745 0 R (classRtWvIn_a5) 2757 0 R (classRtWvIn_a6) 2758 0 R (classRtWvIn_a7) 2749 0 R (classRtWvIn_a8) 2774 0 R (classRtWvIn_a9) 2775 0 R (classRtWvOut) 2682 0 R (classRtWvOut_a0) 2821 0 R (classRtWvOut_a1) 2808 0 R (classRtWvOut_a2) 2822 0 R (classRtWvOut_a3) 2823 0 R (classRtWvOut_a4) 2812 0 R (classRtWvOut_a5) 2814 0 R (classRtWvOut_a6) 2824 0 R (classRtWvOut_a7) 2825 0 R (classRtWvOut_a8) 2841 0 R (classSKINI) 1993 0 R (classSKINI_a0) 3055 0 R (classSKINI_a1) 3057 0 R (classSKINI_a10) 3082 0 R (classSKINI_a11) 3084 0 R (classSKINI_a12) 3086 0 R (classSKINI_a13) 3088 0 R (classSKINI_a14) 3090 0 R (classSKINI_a15) 3092 0 R (classSKINI_a2) 3059 0 R (classSKINI_a3) 3074 0 R (classSKINI_a4) 3075 0 R (classSKINI_a5) 3063 0 R (classSKINI_a6) 3065 0 R (classSKINI_a7) 3067 0 R (classSKINI_a8) 3069 0 R (classSKINI_a9) 3080 0 R (classSampler) 2148 0 R (classSampler_a0) 2868 0 R (classSampler_a1) 2870 0 R (classSampler_a2) 2872 0 R (classSampler_a3) 2874 0 R (classSampler_a4) 2876 0 R (classSampler_a5) 2878 0 R (classSampler_a6) 2880 0 R (classSampler_a7) 2882 0 R (classSampler_a8) 2891 0 R (classSaxofony) 2902 0 R (classSaxofony_a0) 2904 0 R (classSaxofony_a1) 2906 0 R (classSaxofony_a10) 2932 0 R (classSaxofony_a2) 2908 0 R (classSaxofony_a3) 2910 0 R (classSaxofony_a4) 2912 0 R (classSaxofony_a5) 2914 0 R (classSaxofony_a6) 2916 0 R (classSaxofony_a7) 2918 0 R (classSaxofony_a8) 2928 0 R (classSaxofony_a9) 2930 0 R (classShakers) 2943 0 R (classShakers_a0) 2945 0 R (classShakers_a1) 2947 0 R (classShakers_a2) 2960 0 R (classShakers_a3) 2950 0 R (classShakers_a4) 2952 0 R (classShakers_a5) 2954 0 R (classSimple) 2979 0 R (classSimple_a0) 2981 0 R (classSimple_a1) 2983 0 R (classSimple_a2) 2985 0 R (classSimple_a3) 2987 0 R (classSimple_a4) 2989 0 R (classSimple_a5) 2991 0 R (classSimple_a6) 2993 0 R (classSimple_a7) 2995 0 R (classSimple_a8) 2997 0 R (classSimple_a9) 3006 0 R (classSitar) 3021 0 R (classSitar_a0) 3023 0 R (classSitar_a1) 3025 0 R (classSitar_a2) 3027 0 R (classSitar_a3) 3029 0 R (classSitar_a4) 3031 0 R (classSitar_a5) 3033 0 R (classSitar_a6) 3035 0 R (classSitar_a7) 3037 0 R (classSocket) 3111 0 R (classSocket_a0) 3129 0 R (classSocket_a1) 3130 0 R (classSocket_a2) 3115 0 R (classSocket_a3) 3131 0 R (classSocket_a4) 3118 0 R (classSocket_a5) 3120 0 R (classSocket_a6) 3122 0 R (classSocket_a7) 3132 0 R (classSocket_a8) 3137 0 R (classSocket_a9) 3139 0 R (classSocket_d0) 3142 0 R (classSocket_d1) 3144 0 R (classSocket_d2) 3146 0 R (classSocket_d3) 3148 0 R (classSocket_d4) 3150 0 R (classStifKarp) 3179 0 R (classStifKarp_a0) 3181 0 R (classStifKarp_a1) 3183 0 R (classStifKarp_a10) 3208 0 R (classStifKarp_a11) 3210 0 R (classStifKarp_a2) 3185 0 R (classStifKarp_a3) 3187 0 R (classStifKarp_a4) 3189 0 R (classStifKarp_a5) 3191 0 R (classStifKarp_a6) 3201 0 R (classStifKarp_a7) 3194 0 R (classStifKarp_a8) 3196 0 R (classStifKarp_a9) 3206 0 R (classStk) 928 0 R (classStkError) 1558 0 R (classStkError_a0) 3286 0 R (classStkError_a1) 3288 0 R (classStkError_a2) 3290 0 R (classStkError_a3) 3292 0 R (classStkError_a4) 3294 0 R (classStk_b0) 3250 0 R (classStk_b1) 3252 0 R (classStk_d0) 3223 0 R (classStk_d1) 3230 0 R (classStk_d2) 3235 0 R (classStk_d3) 3237 0 R (classStk_d4) 3239 0 R (classStk_d5) 3241 0 R (classStk_e0) 3255 0 R (classStk_p0) 3257 0 R (classStk_p1) 3258 0 R (classStk_p2) 3259 0 R (classStk_p3) 3260 0 R (classStk_p4) 3261 0 R (classSubNoise) 3303 0 R (classSubNoise_a0) 3305 0 R (classSubNoise_a1) 3307 0 R (classSubNoise_a2) 3309 0 R (classSubNoise_a3) 3311 0 R (classSubNoise_a4) 3313 0 R (classTable) 3331 0 R (classTable_a0) 3333 0 R (classTable_a1) 3335 0 R (classTable_a2) 3337 0 R (classTable_a3) 3339 0 R (classTable_a4) 3348 0 R (classTable_a5) 3342 0 R (classTcpWvIn) 3363 0 R (classTcpWvIn_a0) 3382 0 R (classTcpWvIn_a1) 3366 0 R (classTcpWvIn_a2) 3383 0 R (classTcpWvIn_a3) 3384 0 R (classTcpWvIn_a4) 3371 0 R (classTcpWvIn_a5) 3373 0 R (classTcpWvIn_a6) 3375 0 R (classTcpWvIn_a7) 3377 0 R (classTcpWvIn_a8) 3389 0 R (classTcpWvIn_a9) 3391 0 R (classTcpWvOut) 3415 0 R (classTcpWvOut_a0) 3417 0 R (classTcpWvOut_a1) 3435 0 R (classTcpWvOut_a2) 3421 0 R (classTcpWvOut_a3) 3436 0 R (classTcpWvOut_a4) 3425 0 R (classTcpWvOut_a5) 3427 0 R (classTcpWvOut_a6) 3429 0 R (classTcpWvOut_a7) 3452 0 R (classTcpWvOut_a8) 3453 0 R (classTcpWvOut_a9) 3454 0 R (classThread) 3479 0 R (classThread_a0) 3481 0 R (classThread_a1) 3483 0 R (classThread_a2) 3494 0 R (classThread_a3) 3495 0 R (classThread_d0) 3488 0 R (classTubeBell) 3510 0 R (classTubeBell_a0) 3513 0 R (classTubeBell_a1) 3515 0 R (classTubeBell_a2) 3517 0 R (classTubeBell_a3) 3519 0 R (classTwoPole) 3541 0 R (classTwoPole_a0) 3543 0 R (classTwoPole_a1) 3545 0 R (classTwoPole_a10) 3569 0 R (classTwoPole_a11) 3571 0 R (classTwoPole_a2) 3547 0 R (classTwoPole_a3) 3549 0 R (classTwoPole_a4) 3551 0 R (classTwoPole_a5) 3553 0 R (classTwoPole_a6) 3560 0 R (classTwoPole_a7) 1583 0 R (classTwoPole_a8) 3565 0 R (classTwoPole_a9) 3567 0 R (classTwoZero) 3592 0 R (classTwoZero_a0) 3594 0 R (classTwoZero_a1) 3596 0 R (classTwoZero_a10) 3620 0 R (classTwoZero_a11) 3622 0 R (classTwoZero_a2) 3598 0 R (classTwoZero_a3) 3600 0 R (classTwoZero_a4) 3602 0 R (classTwoZero_a5) 3604 0 R (classTwoZero_a6) 3613 0 R (classTwoZero_a7) 1584 0 R (classTwoZero_a8) 3608 0 R (classTwoZero_a9) 3618 0 R (classWaveLoop) 3642 0 R (classWaveLoop_a0) 3644 0 R (classWaveLoop_a1) 3646 0 R (classWaveLoop_a2) 3658 0 R (classWaveLoop_a3) 3649 0 R (classWaveLoop_a4) 3659 0 R (classWaveLoop_a5) 3660 0 R (classWaveLoop_a6) 3653 0 R (classWurley) 3683 0 R (classWurley_a0) 3686 0 R (classWurley_a1) 3688 0 R (classWurley_a2) 3690 0 R (classWurley_a3) 3692 0 R (classWurley_a4) 3694 0 R (classWvIn) 1433 0 R (classWvIn_a0) 3716 0 R (classWvIn_a1) 3733 0 R (classWvIn_a10) 3759 0 R (classWvIn_a11) 3744 0 R (classWvIn_a12) 3760 0 R (classWvIn_a13) 3747 0 R (classWvIn_a14) 3761 0 R (classWvIn_a15) 3750 0 R (classWvIn_a16) 2796 0 R (classWvIn_a17) 2797 0 R (classWvIn_a18) 3754 0 R (classWvIn_a19) 2798 0 R (classWvIn_a2) 3719 0 R (classWvIn_a20) 2799 0 R (classWvIn_a3) 3734 0 R (classWvIn_a4) 3722 0 R (classWvIn_a5) 3724 0 R (classWvIn_a6) 3735 0 R (classWvIn_a7) 3736 0 R (classWvIn_a8) 3728 0 R (classWvIn_a9) 3741 0 R (classWvOut) 2842 0 R (classWvOut_a0) 3813 0 R (classWvOut_a1) 3832 0 R (classWvOut_a2) 3818 0 R (classWvOut_a3) 3834 0 R (classWvOut_a4) 3823 0 R (classWvOut_a5) 3825 0 R (classWvOut_a6) 3827 0 R (classWvOut_a7) 2858 0 R (classWvOut_a8) 2859 0 R (classWvOut_a9) 2860 0 R (classWvOut_p0) 3852 0 R (classWvOut_p1) 3833 0 R (classWvOut_p2) 3853 0 R (classWvOut_p3) 3854 0 R (classWvOut_p4) 3855 0 R (classes) 3935 0 R (compatibility) 4229 0 R (compile) 4171 0 R (compileIrix) 4201 0 R (compileLinux) 4194 0 R (compileWin) 4203 0 R (compiling) 4028 0 R (continued) 4223 0 R (control) 4029 0 R (directory) 4023 0 R (download) 3944 0 R (file) 4279 0 R (information) 3899 0 R (instruments) 4030 0 R (intro) 4166 0 R (maillist) 4138 0 R (messages) 4249 0 R (midi) 4034 0 R (nort) 4031 0 R (notes) 3948 0 R (page.1) 453 0 R (page.10) 809 0 R (page.100) 2495 0 R (page.101) 2519 0 R (page.102) 2530 0 R (page.103) 2557 0 R (page.104) 2574 0 R (page.105) 2599 0 R (page.106) 2609 0 R (page.107) 2632 0 R (page.108) 2641 0 R (page.109) 2666 0 R (page.11) 814 0 R (page.110) 2686 0 R (page.111) 2701 0 R (page.112) 2727 0 R (page.113) 2738 0 R (page.114) 2762 0 R (page.115) 2779 0 R (page.116) 2805 0 R (page.117) 2829 0 R (page.118) 2846 0 R (page.119) 2866 0 R (page.12) 840 0 R (page.120) 2890 0 R (page.121) 2901 0 R (page.122) 2927 0 R (page.123) 2942 0 R (page.124) 2964 0 R (page.125) 2968 0 R (page.126) 2978 0 R (page.127) 3005 0 R (page.128) 3020 0 R (page.129) 3045 0 R (page.13) 872 0 R (page.130) 3053 0 R (page.131) 3079 0 R (page.132) 3100 0 R (page.133) 3110 0 R (page.134) 3136 0 R (page.135) 3156 0 R (page.136) 3171 0 R (page.137) 3178 0 R (page.138) 3205 0 R (page.139) 3221 0 R (page.14) 889 0 R (page.140) 3234 0 R (page.141) 3265 0 R (page.142) 3278 0 R (page.143) 3284 0 R (page.144) 3302 0 R (page.145) 3322 0 R (page.146) 3330 0 R (page.147) 3352 0 R (page.148) 3362 0 R (page.149) 3388 0 R (page.15) 914 0 R (page.150) 3405 0 R (page.151) 3414 0 R (page.152) 3440 0 R (page.153) 3458 0 R (page.154) 3478 0 R (page.155) 3499 0 R (page.156) 3509 0 R (page.157) 3530 0 R (page.158) 3540 0 R (page.159) 3564 0 R (page.16) 934 0 R (page.160) 3582 0 R (page.161) 3591 0 R (page.162) 3617 0 R (page.163) 3633 0 R (page.164) 3641 0 R (page.165) 3664 0 R (page.166) 3682 0 R (page.167) 3705 0 R (page.168) 3714 0 R (page.169) 3740 0 R (page.17) 957 0 R (page.170) 3765 0 R (page.171) 3778 0 R (page.172) 3791 0 R (page.173) 3811 0 R (page.174) 3838 0 R (page.175) 3859 0 R (page.176) 3883 0 R (page.177) 3898 0 R (page.178) 3909 0 R (page.179) 3922 0 R (page.18) 966 0 R (page.180) 3934 0 R (page.181) 3943 0 R (page.182) 3974 0 R (page.183) 3990 0 R (page.184) 4001 0 R (page.185) 4013 0 R (page.186) 4038 0 R (page.187) 4054 0 R (page.188) 4078 0 R (page.189) 4116 0 R (page.19) 991 0 R (page.190) 4127 0 R (page.191) 4137 0 R (page.192) 4149 0 R (page.193) 4160 0 R (page.194) 4176 0 R (page.195) 4187 0 R (page.196) 4193 0 R (page.197) 4213 0 R (page.198) 4227 0 R (page.199) 4240 0 R (page.2) 468 0 R (page.20) 1020 0 R (page.200) 4258 0 R (page.201) 4274 0 R (page.202) 4283 0 R (page.203) 4289 0 R (page.204) 4297 0 R (page.205) 4305 0 R (page.206) 4311 0 R (page.207) 4351 0 R (page.208) 4408 0 R (page.209) 4497 0 R (page.21) 1032 0 R (page.210) 4587 0 R (page.211) 4676 0 R (page.212) 4752 0 R (page.213) 4830 0 R (page.214) 4920 0 R (page.215) 5006 0 R (page.216) 5093 0 R (page.217) 5178 0 R (page.218) 5251 0 R (page.219) 5309 0 R (page.22) 1059 0 R (page.220) 5392 0 R (page.221) 5470 0 R (page.222) 5568 0 R (page.223) 5655 0 R (page.23) 1071 0 R (page.24) 1096 0 R (page.25) 1113 0 R (page.26) 1139 0 R (page.27) 1153 0 R (page.28) 1177 0 R (page.29) 1188 0 R (page.3) 546 0 R (page.30) 1213 0 R (page.31) 1227 0 R (page.32) 1255 0 R (page.33) 1267 0 R (page.34) 1292 0 R (page.35) 1305 0 R (page.36) 1328 0 R (page.37) 1348 0 R (page.38) 1372 0 R (page.39) 1383 0 R (page.4) 580 0 R (page.40) 1404 0 R (page.41) 1415 0 R (page.42) 1437 0 R (page.43) 1448 0 R (page.44) 1474 0 R (page.45) 1482 0 R (page.46) 1508 0 R (page.47) 1522 0 R (page.48) 1545 0 R (page.49) 1562 0 R (page.5) 699 0 R (page.50) 1590 0 R (page.51) 1615 0 R (page.52) 1635 0 R (page.53) 1659 0 R (page.54) 1681 0 R (page.55) 1688 0 R (page.56) 1713 0 R (page.57) 1722 0 R (page.58) 1745 0 R (page.59) 1759 0 R (page.6) 731 0 R (page.60) 1766 0 R (page.61) 1786 0 R (page.62) 1796 0 R (page.63) 1809 0 R (page.64) 1830 0 R (page.65) 1847 0 R (page.66) 1867 0 R (page.67) 1874 0 R (page.68) 1898 0 R (page.69) 1910 0 R (page.7) 783 0 R (page.70) 1937 0 R (page.71) 1953 0 R (page.72) 1980 0 R (page.73) 1999 0 R (page.74) 2025 0 R (page.75) 2046 0 R (page.76) 2069 0 R (page.77) 2079 0 R (page.78) 2106 0 R (page.79) 2114 0 R (page.8) 793 0 R (page.80) 2140 0 R (page.81) 2154 0 R (page.82) 2173 0 R (page.83) 2180 0 R (page.84) 2197 0 R (page.85) 2223 0 R (page.86) 2243 0 R (page.87) 2269 0 R (page.88) 2288 0 R (page.89) 2310 0 R (page.9) 797 0 R (page.90) 2319 0 R (page.91) 2344 0 R (page.92) 2353 0 R (page.93) 2378 0 R (page.94) 2386 0 R (page.95) 2410 0 R (page.96) 2424 0 R (page.97) 2450 0 R (page.98) 2468 0 R (page.99) 2477 0 R (parser) 4267 0 R (rt) 4032 0 R (rtvsnonrt) 4172 0 R (section*.10) 1155 0 R (section*.11) 1190 0 R (section*.12) 1229 0 R (section*.13) 1269 0 R (section*.14) 1307 0 R (section*.15) 1350 0 R (section*.16) 1385 0 R (section*.17) 1417 0 R (section*.18) 1450 0 R (section*.19) 1483 0 R (section*.2) 822 0 R (section*.20) 1523 0 R (section*.21) 1592 0 R (section*.22) 1636 0 R (section*.23) 1691 0 R (section*.24) 1724 0 R (section*.25) 1769 0 R (section*.26) 1798 0 R (section*.27) 1832 0 R (section*.28) 1849 0 R (section*.29) 1876 0 R (section*.3) 830 0 R (section*.30) 1912 0 R (section*.31) 1955 0 R (section*.32) 2001 0 R (section*.33) 2048 0 R (section*.34) 2081 0 R (section*.35) 2116 0 R (section*.36) 2155 0 R (section*.37) 2182 0 R (section*.38) 2199 0 R (section*.39) 2245 0 R (section*.4) 891 0 R (section*.40) 2291 0 R (section*.41) 2321 0 R (section*.42) 2355 0 R (section*.43) 2387 0 R (section*.44) 2426 0 R (section*.45) 2479 0 R (section*.46) 2497 0 R (section*.47) 2532 0 R (section*.48) 2576 0 R (section*.49) 2612 0 R (section*.5) 937 0 R (section*.50) 2643 0 R (section*.51) 2702 0 R (section*.52) 2739 0 R (section*.53) 2806 0 R (section*.54) 2867 0 R (section*.55) 2903 0 R (section*.56) 2944 0 R (section*.57) 2980 0 R (section*.58) 3022 0 R (section*.59) 3054 0 R (section*.6) 968 0 R (section*.60) 3112 0 R (section*.61) 3141 0 R (section*.62) 3180 0 R (section*.63) 3222 0 R (section*.64) 3243 0 R (section*.65) 3249 0 R (section*.66) 3254 0 R (section*.67) 3285 0 R (section*.68) 3304 0 R (section*.69) 3332 0 R (section*.7) 1034 0 R (section*.70) 3364 0 R (section*.71) 3416 0 R (section*.72) 3480 0 R (section*.73) 3487 0 R (section*.74) 3512 0 R (section*.75) 3542 0 R (section*.76) 3593 0 R (section*.77) 3643 0 R (section*.78) 3685 0 R (section*.79) 3715 0 R (section*.8) 1073 0 R (section*.80) 3812 0 R (section*.81) 3842 0 R (section*.82) 3900 0 R (section*.83) 3905 0 R (section*.84) 3912 0 R (section*.85) 3915 0 R (section*.86) 3929 0 R (section*.87) 3930 0 R (section*.9) 1115 0 R (section.1.1) 10 0 R (section.2.1) 18 0 R (section.3.1) 26 0 R (section.4.1) 34 0 R (section.4.10) 70 0 R (section.4.11) 74 0 R (section.4.12) 78 0 R (section.4.13) 82 0 R (section.4.14) 86 0 R (section.4.15) 90 0 R (section.4.16) 94 0 R (section.4.17) 98 0 R (section.4.18) 102 0 R (section.4.19) 106 0 R (section.4.2) 38 0 R (section.4.20) 110 0 R (section.4.21) 114 0 R (section.4.22) 118 0 R (section.4.23) 122 0 R (section.4.24) 126 0 R (section.4.25) 130 0 R (section.4.26) 134 0 R (section.4.27) 138 0 R (section.4.28) 142 0 R (section.4.29) 146 0 R (section.4.3) 42 0 R (section.4.30) 150 0 R (section.4.31) 154 0 R (section.4.32) 158 0 R (section.4.33) 162 0 R (section.4.34) 166 0 R (section.4.35) 170 0 R (section.4.36) 174 0 R (section.4.37) 178 0 R (section.4.38) 182 0 R (section.4.39) 186 0 R (section.4.4) 46 0 R (section.4.40) 190 0 R (section.4.41) 194 0 R (section.4.42) 198 0 R (section.4.43) 202 0 R (section.4.44) 206 0 R (section.4.45) 210 0 R (section.4.46) 214 0 R (section.4.47) 218 0 R (section.4.48) 222 0 R (section.4.49) 226 0 R (section.4.5) 50 0 R (section.4.50) 230 0 R (section.4.51) 234 0 R (section.4.52) 238 0 R (section.4.53) 242 0 R (section.4.54) 246 0 R (section.4.55) 250 0 R (section.4.56) 254 0 R (section.4.57) 258 0 R (section.4.58) 262 0 R (section.4.59) 266 0 R (section.4.6) 54 0 R (section.4.60) 270 0 R (section.4.61) 274 0 R (section.4.62) 278 0 R (section.4.63) 282 0 R (section.4.64) 286 0 R (section.4.65) 290 0 R (section.4.66) 294 0 R (section.4.67) 298 0 R (section.4.68) 302 0 R (section.4.69) 306 0 R (section.4.7) 58 0 R (section.4.70) 310 0 R (section.4.71) 314 0 R (section.4.72) 318 0 R (section.4.73) 322 0 R (section.4.8) 62 0 R (section.4.9) 66 0 R (section.5.1) 330 0 R (section.5.10) 366 0 R (section.5.11) 370 0 R (section.5.12) 374 0 R (section.5.13) 378 0 R (section.5.14) 382 0 R (section.5.15) 386 0 R (section.5.16) 390 0 R (section.5.17) 394 0 R (section.5.18) 398 0 R (section.5.19) 402 0 R (section.5.2) 334 0 R (section.5.20) 406 0 R (section.5.21) 410 0 R (section.5.22) 414 0 R (section.5.23) 418 0 R (section.5.24) 422 0 R (section.5.25) 426 0 R (section.5.26) 430 0 R (section.5.27) 434 0 R (section.5.28) 438 0 R (section.5.29) 442 0 R (section.5.3) 338 0 R (section.5.30) 446 0 R (section.5.4) 342 0 R (section.5.5) 346 0 R (section.5.6) 350 0 R (section.5.7) 354 0 R (section.5.8) 358 0 R (section.5.9) 362 0 R (skini) 3096 0 R (start) 4167 0 R (subsection.4.1.1) 877 0 R (subsection.4.10.1) 1260 0 R (subsection.4.11.1) 1297 0 R (subsection.4.12.1) 1336 0 R (subsection.4.12.2) 1338 0 R (subsection.4.13.1) 1373 0 R (subsection.4.13.2) 1375 0 R (subsection.4.14.1) 1405 0 R (subsection.4.14.2) 1407 0 R (subsection.4.15.1) 1427 0 R (subsection.4.15.2) 1438 0 R (subsection.4.16.1) 1475 0 R (subsection.4.17.1) 1515 0 R (subsection.4.18.1) 1554 0 R (subsection.4.18.2) 1555 0 R (subsection.4.18.3) 1563 0 R (subsection.4.19.1) 1626 0 R (subsection.4.2.1) 925 0 R (subsection.4.20.1) 1676 0 R (subsection.4.21.1) 1704 0 R (subsection.4.22.1) 1750 0 R (subsection.4.22.2) 1752 0 R (subsection.4.23.1) 1778 0 R (subsection.4.24.1) 1823 0 R (subsection.4.25.1) 1837 0 R (subsection.4.26.1) 1860 0 R (subsection.4.27.1) 1901 0 R (subsection.4.28.1) 1946 0 R (subsection.4.29.1) 1981 0 R (subsection.4.29.2) 1985 0 R (subsection.4.29.3) 1989 0 R (subsection.4.3.1) 946 0 R (subsection.4.30.1) 2038 0 R (subsection.4.31.1) 2070 0 R (subsection.4.32.1) 2107 0 R (subsection.4.33.1) 2141 0 R (subsection.4.34.1) 2166 0 R (subsection.4.35.1) 2187 0 R (subsection.4.36.1) 2230 0 R (subsection.4.36.2) 2232 0 R (subsection.4.37.1) 2276 0 R (subsection.4.37.2) 2278 0 R (subsection.4.38.1) 2302 0 R (subsection.4.39.1) 2345 0 R (subsection.4.4.1) 1004 0 R (subsection.4.4.2) 1006 0 R (subsection.4.40.1) 2379 0 R (subsection.4.41.1) 2415 0 R (subsection.4.41.2) 2416 0 R (subsection.4.42.1) 2459 0 R (subsection.4.42.2) 2461 0 R (subsection.4.43.1) 2484 0 R (subsection.4.44.1) 2509 0 R (subsection.4.44.2) 2520 0 R (subsection.4.45.1) 2564 0 R (subsection.4.46.1) 2602 0 R (subsection.4.47.1) 2623 0 R (subsection.4.48.1) 2668 0 R (subsection.4.48.2) 2674 0 R (subsection.4.48.3) 2677 0 R (subsection.4.49.1) 2728 0 R (subsection.4.49.2) 2730 0 R (subsection.4.5.1) 1062 0 R (subsection.4.50.1) 2765 0 R (subsection.4.50.2) 2769 0 R (subsection.4.50.3) 2772 0 R (subsection.4.51.1) 2831 0 R (subsection.4.51.2) 2835 0 R (subsection.4.51.3) 2838 0 R (subsection.4.52.1) 2893 0 R (subsection.4.53.1) 2934 0 R (subsection.4.54.1) 2956 0 R (subsection.4.54.2) 2969 0 R (subsection.4.55.1) 3008 0 R (subsection.4.56.1) 3046 0 R (subsection.4.57.1) 3094 0 R (subsection.4.57.2) 3101 0 R (subsection.4.58.1) 3152 0 R (subsection.4.58.2) 3157 0 R (subsection.4.58.3) 3162 0 R (subsection.4.59.1) 3212 0 R (subsection.4.59.2) 3213 0 R (subsection.4.6.1) 1105 0 R (subsection.4.60.1) 3266 0 R (subsection.4.60.2) 3267 0 R (subsection.4.60.3) 3269 0 R (subsection.4.61.1) 3296 0 R (subsection.4.62.1) 3315 0 R (subsection.4.63.1) 3344 0 R (subsection.4.63.2) 3354 0 R (subsection.4.64.1) 3393 0 R (subsection.4.64.2) 3396 0 R (subsection.4.64.3) 3399 0 R (subsection.4.65.1) 3444 0 R (subsection.4.65.2) 3448 0 R (subsection.4.65.3) 3459 0 R (subsection.4.66.1) 3490 0 R (subsection.4.66.2) 3500 0 R (subsection.4.67.1) 3521 0 R (subsection.4.68.1) 3573 0 R (subsection.4.68.2) 3575 0 R (subsection.4.69.1) 3624 0 R (subsection.4.69.2) 3626 0 R (subsection.4.7.1) 1146 0 R (subsection.4.70.1) 3665 0 R (subsection.4.70.2) 3669 0 R (subsection.4.71.1) 3696 0 R (subsection.4.72.1) 3766 0 R (subsection.4.72.2) 3769 0 R (subsection.4.72.3) 3772 0 R (subsection.4.73.1) 3848 0 R (subsection.4.73.2) 3860 0 R (subsection.4.73.3) 3865 0 R (subsection.4.73.4) 3887 0 R (subsection.4.8.1) 1167 0 R (subsection.4.8.2) 1178 0 R (subsection.4.9.1) 1220 0 R (subsection.5.19.1) 4195 0 R (subsection.5.19.2) 4202 0 R (subsection.5.19.3) 4204 0 R (subsection.5.4.1) 3950 0 R (subsection.5.4.2) 3964 0 R (subsection.5.4.3) 3976 0 R (subsection.5.4.4) 3983 0 R (subsection.5.4.5) 3996 0 R (subsection.5.4.6) 4002 0 R (subsubsection.4.12.2.1) 1339 0 R (subsubsection.4.12.2.2) 1341 0 R (subsubsection.4.13.2.1) 1376 0 R (subsubsection.4.14.2.1) 1408 0 R (subsubsection.4.15.2.1) 1439 0 R (subsubsection.4.18.2.1) 1556 0 R (subsubsection.4.18.3.1) 1564 0 R (subsubsection.4.18.3.2) 1566 0 R (subsubsection.4.18.3.3) 1568 0 R (subsubsection.4.18.3.4) 1570 0 R (subsubsection.4.22.2.1) 1753 0 R (subsubsection.4.22.2.2) 1754 0 R (subsubsection.4.22.2.3) 1755 0 R (subsubsection.4.29.2.1) 1986 0 R (subsubsection.4.29.3.1) 1990 0 R (subsubsection.4.36.2.1) 2233 0 R (subsubsection.4.36.2.2) 2234 0 R (subsubsection.4.37.2.1) 2279 0 R (subsubsection.4.37.2.2) 2280 0 R (subsubsection.4.4.2.1) 1008 0 R (subsubsection.4.4.2.2) 1021 0 R (subsubsection.4.4.2.3) 1022 0 R (subsubsection.4.4.2.4) 1023 0 R (subsubsection.4.41.2.1) 2417 0 R (subsubsection.4.42.2.1) 2462 0 R (subsubsection.4.42.2.2) 2463 0 R (subsubsection.4.42.2.3) 2469 0 R (subsubsection.4.44.2.1) 2521 0 R (subsubsection.4.44.2.2) 2522 0 R (subsubsection.4.44.2.3) 2523 0 R (subsubsection.4.48.2.1) 2675 0 R (subsubsection.4.48.3.1) 2678 0 R (subsubsection.4.48.3.2) 2688 0 R (subsubsection.4.48.3.3) 2689 0 R (subsubsection.4.48.3.4) 2691 0 R (subsubsection.4.48.3.5) 2693 0 R (subsubsection.4.49.2.1) 2731 0 R (subsubsection.4.50.2.1) 2770 0 R (subsubsection.4.50.3.1) 2773 0 R (subsubsection.4.50.3.2) 2781 0 R (subsubsection.4.50.3.3) 2782 0 R (subsubsection.4.50.3.4) 2785 0 R (subsubsection.4.50.3.5) 2788 0 R (subsubsection.4.50.3.6) 2791 0 R (subsubsection.4.51.2.1) 2836 0 R (subsubsection.4.51.3.1) 2839 0 R (subsubsection.4.51.3.2) 2847 0 R (subsubsection.4.51.3.3) 2848 0 R (subsubsection.4.51.3.4) 2851 0 R (subsubsection.4.51.3.5) 2854 0 R (subsubsection.4.54.2.1) 2970 0 R (subsubsection.4.57.2.1) 3102 0 R (subsubsection.4.57.2.2) 3103 0 R (subsubsection.4.58.2.1) 3158 0 R (subsubsection.4.58.2.2) 3160 0 R (subsubsection.4.58.3.1) 3163 0 R (subsubsection.4.58.3.2) 3167 0 R (subsubsection.4.59.2.1) 3214 0 R (subsubsection.4.60.2.1) 3268 0 R (subsubsection.4.60.3.1) 3270 0 R (subsubsection.4.60.3.2) 3271 0 R (subsubsection.4.60.3.3) 3272 0 R (subsubsection.4.60.3.4) 3273 0 R (subsubsection.4.60.3.5) 3274 0 R (subsubsection.4.63.2.1) 3355 0 R (subsubsection.4.64.2.1) 3397 0 R (subsubsection.4.64.3.1) 3400 0 R (subsubsection.4.64.3.2) 3407 0 R (subsubsection.4.65.2.1) 3449 0 R (subsubsection.4.65.3.1) 3460 0 R (subsubsection.4.65.3.2) 3463 0 R (subsubsection.4.65.3.3) 3466 0 R (subsubsection.4.65.3.4) 3469 0 R (subsubsection.4.66.2.1) 3501 0 R (subsubsection.4.66.2.2) 3502 0 R (subsubsection.4.68.2.1) 3576 0 R (subsubsection.4.68.2.2) 3583 0 R (subsubsection.4.69.2.1) 3627 0 R (subsubsection.4.69.2.2) 3628 0 R (subsubsection.4.70.2.1) 3670 0 R (subsubsection.4.70.2.2) 3672 0 R (subsubsection.4.70.2.3) 3674 0 R (subsubsection.4.72.2.1) 3770 0 R (subsubsection.4.72.3.1) 3773 0 R (subsubsection.4.72.3.10) 3801 0 R (subsubsection.4.72.3.2) 3779 0 R (subsubsection.4.72.3.3) 3780 0 R (subsubsection.4.72.3.4) 3781 0 R (subsubsection.4.72.3.5) 3782 0 R (subsubsection.4.72.3.6) 3783 0 R (subsubsection.4.72.3.7) 3784 0 R (subsubsection.4.72.3.8) 3792 0 R (subsubsection.4.72.3.9) 3796 0 R (subsubsection.4.73.2.1) 3861 0 R (subsubsection.4.73.3.1) 3866 0 R (subsubsection.4.73.3.2) 3870 0 R (subsubsection.4.73.3.3) 3874 0 R (subsubsection.4.73.3.4) 3878 0 R (subsubsection.4.73.4.1) 3888 0 R (subsubsection.4.73.4.2) 3889 0 R (subsubsection.4.73.4.3) 3890 0 R (subsubsection.4.73.4.4) 3891 0 R (subsubsection.4.73.4.5) 3892 0 R (subsubsection.4.8.2.1) 1179 0 R (subsubsection.4.8.2.2) 1180 0 R (subsubsection.4.8.2.3) 1181 0 R (system) 4150 0 R (table) 4284 0 R (tcl) 4033 0 R (tutorial) 4161 0 R (usage) 4014 0 R (using) 4299 0 R (v2) 3997 0 R (v2dot02) 3995 0 R (v3) 3982 0 R (v3dot1) 3975 0 R (v3dot2) 3963 0 R (v4) 3949 0 R (why) 4242 0 R] +/Limits [(ADSR_8h-source) (why)] +>> endobj +5713 0 obj << +/Kids [5712 0 R] +>> endobj +5714 0 obj << +/Dests 5713 0 R +>> endobj +5715 0 obj << +/Type /Catalog +/Pages 5710 0 R +/Outlines 5711 0 R +/Names 5714 0 R + /PageMode /UseOutlines /URI << /Base () >> /ViewerPreferences << >> +/OpenAction 449 0 R +>> endobj +5716 0 obj << +/Producer (pdfTeX-0.14h) +/Author () /Title () /Subject () /Creator (LaTeX with hyperref package) /Producer (pdfTeX14.h) /Keywords () +/Creator (TeX) +/CreationDate (D:20020430142000) +>> endobj +xref +0 5717 +0000000001 65535 f +0000000002 00000 f +0000000003 00000 f +0000000004 00000 f +0000000000 00000 f +0000000009 00000 n +0000040735 00000 n +0001219181 00000 n +0000000054 00000 n +0000000094 00000 n +0000040795 00000 n +0001219122 00000 n +0000000141 00000 n +0000000179 00000 n +0000058355 00000 n +0001218997 00000 n +0000000225 00000 n +0000000262 00000 n +0000058416 00000 n +0001218936 00000 n +0000000310 00000 n +0000000346 00000 n +0000074413 00000 n +0001218810 00000 n +0000000392 00000 n +0000000425 00000 n +0000074474 00000 n +0001218749 00000 n +0000000473 00000 n +0000000509 00000 n +0000077354 00000 n +0001218620 00000 n +0000000555 00000 n +0000000597 00000 n +0000077477 00000 n +0001218546 00000 n +0000000645 00000 n +0000000684 00000 n +0000089450 00000 n +0001218459 00000 n +0000000732 00000 n +0000000775 00000 n +0000097534 00000 n +0001218372 00000 n +0000000823 00000 n +0000000866 00000 n +0000103617 00000 n +0001218285 00000 n +0000000914 00000 n +0000000955 00000 n +0000116187 00000 n +0001218198 00000 n +0000001003 00000 n +0000001046 00000 n +0000123258 00000 n +0001218111 00000 n +0000001094 00000 n +0000001137 00000 n +0000131809 00000 n +0001218024 00000 n +0000001185 00000 n +0000001225 00000 n +0000139106 00000 n +0001217937 00000 n +0000001273 00000 n +0000001315 00000 n +0000146167 00000 n +0001217850 00000 n +0000001363 00000 n +0000001403 00000 n +0000153722 00000 n +0001217763 00000 n +0000001452 00000 n +0000001493 00000 n +0000160765 00000 n +0001217676 00000 n +0000001542 00000 n +0000001585 00000 n +0000167941 00000 n +0001217589 00000 n +0000001634 00000 n +0000001674 00000 n +0000176419 00000 n +0001217502 00000 n +0000001723 00000 n +0000001764 00000 n +0000183121 00000 n +0001217415 00000 n +0000001813 00000 n +0000001854 00000 n +0000189936 00000 n +0001217328 00000 n +0000001903 00000 n +0000001945 00000 n +0000196471 00000 n +0001217241 00000 n +0000001994 00000 n +0000002033 00000 n +0000202476 00000 n +0001217152 00000 n +0000002082 00000 n +0000002126 00000 n +0000210315 00000 n +0001217061 00000 n +0000002176 00000 n +0000002218 00000 n +0000223877 00000 n +0001216969 00000 n +0000002268 00000 n +0000002309 00000 n +0000232828 00000 n +0001216877 00000 n +0000002359 00000 n +0000002397 00000 n +0000242793 00000 n +0001216785 00000 n +0000002447 00000 n +0000002491 00000 n +0000249417 00000 n +0001216693 00000 n +0000002541 00000 n +0000002585 00000 n +0000258871 00000 n +0001216601 00000 n +0000002635 00000 n +0000002679 00000 n +0000264848 00000 n +0001216509 00000 n +0000002729 00000 n +0000002773 00000 n +0000272176 00000 n +0001216417 00000 n +0000002823 00000 n +0000002864 00000 n +0000276143 00000 n +0001216325 00000 n +0000002914 00000 n +0000002957 00000 n +0000281706 00000 n +0001216233 00000 n +0000003007 00000 n +0000003051 00000 n +0000289156 00000 n +0001216141 00000 n +0000003101 00000 n +0000003143 00000 n +0000297371 00000 n +0001216049 00000 n +0000003193 00000 n +0000003237 00000 n +0000306315 00000 n +0001215957 00000 n +0000003287 00000 n +0000003328 00000 n +0000314522 00000 n +0001215865 00000 n +0000003378 00000 n +0000003422 00000 n +0000321233 00000 n +0001215773 00000 n +0000003472 00000 n +0000003516 00000 n +0000327525 00000 n +0001215681 00000 n +0000003566 00000 n +0000003606 00000 n +0000334302 00000 n +0001215589 00000 n +0000003656 00000 n +0000003697 00000 n +0000338978 00000 n +0001215497 00000 n +0000003747 00000 n +0000003787 00000 n +0000343430 00000 n +0001215405 00000 n +0000003837 00000 n +0000003880 00000 n +0000352121 00000 n +0001215313 00000 n +0000003930 00000 n +0000003973 00000 n +0000360631 00000 n +0001215221 00000 n +0000004023 00000 n +0000004067 00000 n +0000367109 00000 n +0001215129 00000 n +0000004117 00000 n +0000004161 00000 n +0000373108 00000 n +0001215037 00000 n +0000004211 00000 n +0000004254 00000 n +0000379660 00000 n +0001214945 00000 n +0000004304 00000 n +0000004348 00000 n +0000387430 00000 n +0001214853 00000 n +0000004398 00000 n +0000004442 00000 n +0000397116 00000 n +0001214761 00000 n +0000004492 00000 n +0000004534 00000 n +0000401216 00000 n +0001214669 00000 n +0000004584 00000 n +0000004628 00000 n +0000408520 00000 n +0001214577 00000 n +0000004678 00000 n +0000004722 00000 n +0000416498 00000 n +0001214485 00000 n +0000004772 00000 n +0000004814 00000 n +0000423003 00000 n +0001214393 00000 n +0000004864 00000 n +0000004906 00000 n +0000429780 00000 n +0001214301 00000 n +0000004956 00000 n +0000005000 00000 n +0000442226 00000 n +0001214209 00000 n +0000005050 00000 n +0000005092 00000 n +0000449675 00000 n +0001214117 00000 n +0000005142 00000 n +0000005184 00000 n +0000462993 00000 n +0001214025 00000 n +0000005234 00000 n +0000005277 00000 n +0000475248 00000 n +0001213933 00000 n +0000005327 00000 n +0000005370 00000 n +0000482181 00000 n +0001213841 00000 n +0000005420 00000 n +0000005464 00000 n +0000490059 00000 n +0001213749 00000 n +0000005514 00000 n +0000005557 00000 n +0000498669 00000 n +0001213657 00000 n +0000005607 00000 n +0000005649 00000 n +0000506244 00000 n +0001213565 00000 n +0000005699 00000 n +0000005740 00000 n +0000512537 00000 n +0001213473 00000 n +0000005790 00000 n +0000005831 00000 n +0000522973 00000 n +0001213381 00000 n +0000005881 00000 n +0000005923 00000 n +0000536909 00000 n +0001213289 00000 n +0000005973 00000 n +0000006017 00000 n +0000545171 00000 n +0001213197 00000 n +0000006067 00000 n +0000006106 00000 n +0000556588 00000 n +0001213105 00000 n +0000006156 00000 n +0000006200 00000 n +0000560671 00000 n +0001213013 00000 n +0000006250 00000 n +0000006294 00000 n +0000565957 00000 n +0001212921 00000 n +0000006344 00000 n +0000006385 00000 n +0000572918 00000 n +0001212829 00000 n +0000006435 00000 n +0000006478 00000 n +0000583894 00000 n +0001212737 00000 n +0000006528 00000 n +0000006572 00000 n +0000596645 00000 n +0001212645 00000 n +0000006622 00000 n +0000006664 00000 n +0000603379 00000 n +0001212553 00000 n +0000006714 00000 n +0000006758 00000 n +0000609774 00000 n +0001212461 00000 n +0000006808 00000 n +0000006851 00000 n +0000620659 00000 n +0001212369 00000 n +0000006901 00000 n +0000006944 00000 n +0000630471 00000 n +0001212277 00000 n +0000006994 00000 n +0000007038 00000 n +0000638943 00000 n +0001212185 00000 n +0000007088 00000 n +0000007130 00000 n +0000645611 00000 n +0001212093 00000 n +0000007180 00000 n +0000007220 00000 n +0000666828 00000 n +0001212015 00000 n +0000007270 00000 n +0000007311 00000 n +0000683022 00000 n +0001211896 00000 n +0000007358 00000 n +0000007400 00000 n +0000683149 00000 n +0001211817 00000 n +0000007449 00000 n +0000007488 00000 n +0000694489 00000 n +0001211724 00000 n +0000007537 00000 n +0000007576 00000 n +0000700450 00000 n +0001211631 00000 n +0000007625 00000 n +0000007671 00000 n +0000700577 00000 n +0001211538 00000 n +0000007720 00000 n +0000007754 00000 n +0000716776 00000 n +0001211445 00000 n +0000007803 00000 n +0000007842 00000 n +0000716903 00000 n +0001211352 00000 n +0000007891 00000 n +0000007931 00000 n +0000723851 00000 n +0001211259 00000 n +0000007980 00000 n +0000008010 00000 n +0000729522 00000 n +0001211166 00000 n +0000008059 00000 n +0000008092 00000 n +0000729904 00000 n +0001211073 00000 n +0000008141 00000 n +0000008182 00000 n +0000738557 00000 n +0001210980 00000 n +0000008232 00000 n +0000008274 00000 n +0000742837 00000 n +0001210887 00000 n +0000008324 00000 n +0000008362 00000 n +0000742962 00000 n +0001210794 00000 n +0000008412 00000 n +0000008494 00000 n +0000746098 00000 n +0001210701 00000 n +0000008544 00000 n +0000008592 00000 n +0000749060 00000 n +0001210608 00000 n +0000008642 00000 n +0000008675 00000 n +0000752567 00000 n +0001210515 00000 n +0000008725 00000 n +0000008764 00000 n +0000756093 00000 n +0001210422 00000 n +0000008814 00000 n +0000008842 00000 n +0000756220 00000 n +0001210329 00000 n +0000008892 00000 n +0000008924 00000 n +0000756347 00000 n +0001210236 00000 n +0000008974 00000 n +0000009009 00000 n +0000768087 00000 n +0001210143 00000 n +0000009059 00000 n +0000009088 00000 n +0000772268 00000 n +0001210050 00000 n +0000009138 00000 n +0000009203 00000 n +0000772395 00000 n +0001209957 00000 n +0000009253 00000 n +0000009292 00000 n +0000777053 00000 n +0001209864 00000 n +0000009342 00000 n +0000009418 00000 n +0000777179 00000 n +0001209771 00000 n +0000009468 00000 n +0000009506 00000 n +0000782642 00000 n +0001209678 00000 n +0000009556 00000 n +0000009586 00000 n +0000782769 00000 n +0001209585 00000 n +0000009636 00000 n +0000009670 00000 n +0000787675 00000 n +0001209492 00000 n +0000009720 00000 n +0000009771 00000 n +0000787802 00000 n +0001209399 00000 n +0000009821 00000 n +0000009877 00000 n +0000792071 00000 n +0001209306 00000 n +0000009927 00000 n +0000009966 00000 n +0000793944 00000 n +0001209213 00000 n +0000010016 00000 n +0000010075 00000 n +0000801129 00000 n +0001209134 00000 n +0000010125 00000 n +0000010157 00000 n +0000010561 00000 n +0000010797 00000 n +0000010209 00000 n +0000010673 00000 n +0000010735 00000 n +0001202293 00000 n +0001195900 00000 n +0001202130 00000 n +0001194813 00000 n +0001185101 00000 n +0001194651 00000 n +0001184539 00000 n +0001182942 00000 n +0001184376 00000 n +0001203124 00000 n +0000011157 00000 n +0000010983 00000 n +0000010895 00000 n +0000011095 00000 n +0000015724 00000 n +0000012041 00000 n +0000011198 00000 n +0001181764 00000 n +0001169332 00000 n +0001181600 00000 n +0000015662 00000 n +0000012333 00000 n +0001168033 00000 n +0001152772 00000 n +0001167869 00000 n +0000012489 00000 n +0001151312 00000 n +0001134294 00000 n +0001151149 00000 n +0000012648 00000 n +0000012805 00000 n +0000012963 00000 n +0000013118 00000 n +0000013277 00000 n +0000013434 00000 n +0000013593 00000 n +0000013752 00000 n +0000013910 00000 n +0000014069 00000 n +0000014227 00000 n +0000014386 00000 n +0000014545 00000 n +0000014704 00000 n +0000014863 00000 n +0000015023 00000 n +0000015183 00000 n +0000015343 00000 n +0000015503 00000 n +0000022313 00000 n +0000016991 00000 n +0000015821 00000 n +0000017363 00000 n +0000017522 00000 n +0000017682 00000 n +0000017842 00000 n +0000018002 00000 n +0000018161 00000 n +0000018321 00000 n +0000018481 00000 n +0000018641 00000 n +0000018800 00000 n +0000018960 00000 n +0000019120 00000 n +0000019279 00000 n +0000019439 00000 n +0000019599 00000 n +0000019759 00000 n +0000019919 00000 n +0000020079 00000 n +0000020239 00000 n +0000020399 00000 n +0000020559 00000 n +0000020719 00000 n +0000020879 00000 n +0000021038 00000 n +0000021198 00000 n +0000021358 00000 n +0000021518 00000 n +0000021678 00000 n +0000021834 00000 n +0000021994 00000 n +0000022153 00000 n +0001133326 00000 n +0001126570 00000 n +0001133163 00000 n +0001126240 00000 n +0001124273 00000 n +0001126077 00000 n +0000028851 00000 n +0000023641 00000 n +0000022423 00000 n +0000028789 00000 n +0000024005 00000 n +0000024163 00000 n +0000024322 00000 n +0000024482 00000 n +0000024641 00000 n +0000024801 00000 n +0000024961 00000 n +0000025121 00000 n +0000025280 00000 n +0000025440 00000 n +0000025600 00000 n +0000025760 00000 n +0000025920 00000 n +0000026079 00000 n +0000026238 00000 n +0000026397 00000 n +0000026557 00000 n +0000026716 00000 n +0000026876 00000 n +0000027035 00000 n +0000027194 00000 n +0000027354 00000 n +0000027514 00000 n +0000027674 00000 n +0000027834 00000 n +0000027994 00000 n +0000028153 00000 n +0000028313 00000 n +0000028473 00000 n +0000028630 00000 n +0000035386 00000 n +0000030345 00000 n +0000028961 00000 n +0000035324 00000 n +0000030701 00000 n +0000030859 00000 n +0000031018 00000 n +0000031177 00000 n +0000031336 00000 n +0000031495 00000 n +0000031654 00000 n +0000031813 00000 n +0000031972 00000 n +0000032131 00000 n +0000032290 00000 n +0000032449 00000 n +0000032609 00000 n +0000032769 00000 n +0000032929 00000 n +0000033089 00000 n +0000033249 00000 n +0000033408 00000 n +0000033568 00000 n +0000033728 00000 n +0000033887 00000 n +0000034047 00000 n +0000034206 00000 n +0000034366 00000 n +0000034526 00000 n +0000034686 00000 n +0000034845 00000 n +0000035005 00000 n +0000035165 00000 n +0000040856 00000 n +0000036427 00000 n +0000035496 00000 n +0000036751 00000 n +0000036910 00000 n +0000037069 00000 n +0000037229 00000 n +0000037389 00000 n +0000037549 00000 n +0000037708 00000 n +0000037868 00000 n +0000038026 00000 n +0000038186 00000 n +0000038346 00000 n +0000038505 00000 n +0000038665 00000 n +0000038825 00000 n +0000038985 00000 n +0000039145 00000 n +0000039304 00000 n +0000039463 00000 n +0000039623 00000 n +0000039782 00000 n +0000039941 00000 n +0000040100 00000 n +0000040259 00000 n +0000040417 00000 n +0000040577 00000 n +0001203242 00000 n +0000049892 00000 n +0000042249 00000 n +0000040940 00000 n +0000042733 00000 n +0000042891 00000 n +0000043050 00000 n +0000043208 00000 n +0000043366 00000 n +0000043525 00000 n +0000043683 00000 n +0000043843 00000 n +0000044003 00000 n +0000044163 00000 n +0000044322 00000 n +0000044481 00000 n +0000044640 00000 n +0000044798 00000 n +0000044957 00000 n +0000045116 00000 n +0000045275 00000 n +0000045435 00000 n +0000045594 00000 n +0000045752 00000 n +0000045912 00000 n +0000046071 00000 n +0000046231 00000 n +0000046390 00000 n +0000046549 00000 n +0000046708 00000 n +0000046866 00000 n +0000047025 00000 n +0000047184 00000 n +0000047343 00000 n +0000047503 00000 n +0000047662 00000 n +0000047821 00000 n +0000047979 00000 n +0000048138 00000 n +0000048298 00000 n +0000048457 00000 n +0000048617 00000 n +0000048776 00000 n +0000048936 00000 n +0000049095 00000 n +0000049255 00000 n +0000049414 00000 n +0000049574 00000 n +0000049734 00000 n +0000051167 00000 n +0000050544 00000 n +0000050002 00000 n +0000050692 00000 n +0000050850 00000 n +0000051009 00000 n +0000051817 00000 n +0000051705 00000 n +0000051277 00000 n +0000058477 00000 n +0000053671 00000 n +0000051915 00000 n +0000058293 00000 n +0000054011 00000 n +0000054170 00000 n +0000054329 00000 n +0000054484 00000 n +0000054642 00000 n +0000054801 00000 n +0000054959 00000 n +0000055118 00000 n +0000055277 00000 n +0000055436 00000 n +0000055595 00000 n +0000055754 00000 n +0000055914 00000 n +0000056072 00000 n +0000056232 00000 n +0000056391 00000 n +0000056551 00000 n +0000056709 00000 n +0000056869 00000 n +0000057028 00000 n +0000057188 00000 n +0000057346 00000 n +0000057501 00000 n +0000057661 00000 n +0000057820 00000 n +0000057975 00000 n +0000058135 00000 n +0000232765 00000 n +0000069545 00000 n +0000061342 00000 n +0000058574 00000 n +0000069483 00000 n +0000061850 00000 n +0000062008 00000 n +0000062167 00000 n +0000062326 00000 n +0000062485 00000 n +0000062644 00000 n +0000062803 00000 n +0000062962 00000 n +0000063121 00000 n +0000063280 00000 n +0000063439 00000 n +0000063598 00000 n +0000063757 00000 n +0000063916 00000 n +0000064070 00000 n +0000064229 00000 n +0000064387 00000 n +0000064546 00000 n +0000064703 00000 n +0000064862 00000 n +0000065021 00000 n +0000065181 00000 n +0000065341 00000 n +0000065501 00000 n +0000065654 00000 n +0000065814 00000 n +0000065974 00000 n +0000066134 00000 n +0000066293 00000 n +0000066453 00000 n +0000066612 00000 n +0000066772 00000 n +0000066931 00000 n +0000067091 00000 n +0000067251 00000 n +0000067411 00000 n +0000067571 00000 n +0000067731 00000 n +0000067891 00000 n +0000068051 00000 n +0000068211 00000 n +0000068371 00000 n +0000068531 00000 n +0000068691 00000 n +0000068851 00000 n +0000069006 00000 n +0000069165 00000 n +0000069325 00000 n +0000071410 00000 n +0000070394 00000 n +0000069655 00000 n +0000071348 00000 n +0000070558 00000 n +0000070716 00000 n +0000070871 00000 n +0000071030 00000 n +0000071189 00000 n +0001203360 00000 n +0000072116 00000 n +0000071942 00000 n +0000071520 00000 n +0000072054 00000 n +0000074535 00000 n +0000072898 00000 n +0000072214 00000 n +0000074351 00000 n +0000073086 00000 n +0000073244 00000 n +0000073401 00000 n +0000073559 00000 n +0000073716 00000 n +0000073875 00000 n +0000074033 00000 n +0000074192 00000 n +0000075212 00000 n +0000075038 00000 n +0000074619 00000 n +0000075150 00000 n +0000076259 00000 n +0000077724 00000 n +0000076119 00000 n +0000075310 00000 n +0000077292 00000 n +0000077415 00000 n +0001123126 00000 n +0001110891 00000 n +0001122962 00000 n +0001110541 00000 n +0001108531 00000 n +0001110378 00000 n +0000077538 00000 n +0001107801 00000 n +0001105430 00000 n +0001107638 00000 n +0000076971 00000 n +0001104079 00000 n +0001087209 00000 n +0001103916 00000 n +0000077600 00000 n +0000077662 00000 n +0000077132 00000 n +0000076784 00000 n +0000076864 00000 n +0000076950 00000 n +0000202413 00000 n +0000082836 00000 n +0000079432 00000 n +0000077901 00000 n +0000081910 00000 n +0000081972 00000 n +0000079668 00000 n +0000082034 00000 n +0000079828 00000 n +0000082095 00000 n +0000079988 00000 n +0000082157 00000 n +0000080148 00000 n +0000082219 00000 n +0000080308 00000 n +0000082281 00000 n +0000080468 00000 n +0000082342 00000 n +0000080628 00000 n +0000082404 00000 n +0000080788 00000 n +0000082466 00000 n +0000080948 00000 n +0000082528 00000 n +0000081108 00000 n +0000082590 00000 n +0000081268 00000 n +0000082652 00000 n +0000081428 00000 n +0000082712 00000 n +0000081589 00000 n +0000082774 00000 n +0000081750 00000 n +0000085497 00000 n +0000084450 00000 n +0000082985 00000 n +0000085249 00000 n +0000085311 00000 n +0000084606 00000 n +0000085373 00000 n +0000084767 00000 n +0000085435 00000 n +0000084926 00000 n +0001086207 00000 n +0001074560 00000 n +0001086043 00000 n +0000085087 00000 n +0001203478 00000 n +0001046026 00000 n +0000087299 00000 n +0000090066 00000 n +0000087111 00000 n +0000085672 00000 n +0000089326 00000 n +0000089388 00000 n +0000089511 00000 n +0000089572 00000 n +0000088016 00000 n +0000089633 00000 n +0000088179 00000 n +0000089695 00000 n +0000088343 00000 n +0000089757 00000 n +0000088507 00000 n +0000089819 00000 n +0000088671 00000 n +0000089880 00000 n +0000088835 00000 n +0000089942 00000 n +0000088999 00000 n +0000090004 00000 n +0000089162 00000 n +0000087829 00000 n +0000087909 00000 n +0000087995 00000 n +0000094014 00000 n +0000092256 00000 n +0000090269 00000 n +0000093581 00000 n +0000093643 00000 n +0000092436 00000 n +0000093705 00000 n +0000092600 00000 n +0000093767 00000 n +0000092764 00000 n +0000093829 00000 n +0000092929 00000 n +0000093891 00000 n +0000093094 00000 n +0000093952 00000 n +0000093259 00000 n +0000093415 00000 n +0000545108 00000 n +0001045994 00000 n +0000095677 00000 n +0000097967 00000 n +0000095505 00000 n +0000094176 00000 n +0000097410 00000 n +0000097472 00000 n +0000096446 00000 n +0000097595 00000 n +0000097657 00000 n +0000096601 00000 n +0000097719 00000 n +0000096765 00000 n +0000097781 00000 n +0000096927 00000 n +0000097843 00000 n +0000097091 00000 n +0000097905 00000 n +0000097255 00000 n +0001073038 00000 n +0001058753 00000 n +0001072875 00000 n +0000096259 00000 n +0000096339 00000 n +0000096425 00000 n +0000099941 00000 n +0000099254 00000 n +0000098183 00000 n +0000099879 00000 n +0000099402 00000 n +0000099558 00000 n +0000099713 00000 n +0001045962 00000 n +0000101437 00000 n +0000104235 00000 n +0000101249 00000 n +0000100077 00000 n +0000103493 00000 n +0000103555 00000 n +0000103678 00000 n +0000103740 00000 n +0000102201 00000 n +0000103802 00000 n +0000102363 00000 n +0000103864 00000 n +0000102524 00000 n +0000103926 00000 n +0000102686 00000 n +0000103988 00000 n +0000102848 00000 n +0000104050 00000 n +0000103010 00000 n +0000104112 00000 n +0000103171 00000 n +0000104173 00000 n +0000103332 00000 n +0000102014 00000 n +0000102094 00000 n +0000102180 00000 n +0000108798 00000 n +0000106574 00000 n +0000104438 00000 n +0000108234 00000 n +0000106774 00000 n +0000106935 00000 n +0000107097 00000 n +0000107260 00000 n +0000108296 00000 n +0000107422 00000 n +0000108358 00000 n +0000107585 00000 n +0000108420 00000 n +0000107747 00000 n +0000108483 00000 n +0000107911 00000 n +0000108546 00000 n +0000108074 00000 n +0000108609 00000 n +0000108672 00000 n +0000108735 00000 n +0001057723 00000 n +0001046058 00000 n +0001057555 00000 n +0001203596 00000 n +0000111586 00000 n +0000111714 00000 n +0000111842 00000 n +0000210251 00000 n +0000111970 00000 n +0000111049 00000 n +0000108987 00000 n +0000111522 00000 n +0000111650 00000 n +0000111778 00000 n +0000111906 00000 n +0000111195 00000 n +0000111357 00000 n +0000219589 00000 n +0001045929 00000 n +0000113783 00000 n +0000116888 00000 n +0000113574 00000 n +0000112134 00000 n +0000116059 00000 n +0000116123 00000 n +0000116249 00000 n +0000116313 00000 n +0000114575 00000 n +0000116377 00000 n +0000114740 00000 n +0000116441 00000 n +0000114905 00000 n +0000116505 00000 n +0000115070 00000 n +0000116569 00000 n +0000115235 00000 n +0000116632 00000 n +0000115400 00000 n +0000116696 00000 n +0000115565 00000 n +0000116760 00000 n +0000115729 00000 n +0000116824 00000 n +0000115894 00000 n +0000114385 00000 n +0000114466 00000 n +0000114553 00000 n +0000119193 00000 n +0000118355 00000 n +0000117093 00000 n +0000119001 00000 n +0000119065 00000 n +0000118510 00000 n +0000119129 00000 n +0000118675 00000 n +0000118834 00000 n +0000334238 00000 n +0001045896 00000 n +0000121089 00000 n +0000123893 00000 n +0000120889 00000 n +0000119356 00000 n +0000123130 00000 n +0000123194 00000 n +0000123320 00000 n +0000123383 00000 n +0000121812 00000 n +0000123446 00000 n +0000121977 00000 n +0000123510 00000 n +0000122142 00000 n +0000123574 00000 n +0000122307 00000 n +0000123638 00000 n +0000122472 00000 n +0000123701 00000 n +0000122637 00000 n +0000123765 00000 n +0000122801 00000 n +0000123829 00000 n +0000122965 00000 n +0000121622 00000 n +0000121703 00000 n +0000121790 00000 n +0000127726 00000 n +0000126175 00000 n +0000124098 00000 n +0000127342 00000 n +0000127406 00000 n +0000126357 00000 n +0000127470 00000 n +0000126522 00000 n +0000127534 00000 n +0000126686 00000 n +0000127598 00000 n +0000126851 00000 n +0000127662 00000 n +0000127017 00000 n +0000127176 00000 n +0001045863 00000 n +0000129589 00000 n +0000132444 00000 n +0000129389 00000 n +0000127889 00000 n +0000131681 00000 n +0000131745 00000 n +0000131871 00000 n +0000131934 00000 n +0000130385 00000 n +0000131997 00000 n +0000130547 00000 n +0000132061 00000 n +0000130709 00000 n +0000132125 00000 n +0000130871 00000 n +0000132189 00000 n +0000131033 00000 n +0000132252 00000 n +0000131195 00000 n +0000132316 00000 n +0000131357 00000 n +0000132380 00000 n +0000131519 00000 n +0001203720 00000 n +0000130195 00000 n +0000130276 00000 n +0000130363 00000 n +0000135346 00000 n +0000134213 00000 n +0000132649 00000 n +0000135026 00000 n +0000135090 00000 n +0000134377 00000 n +0000135154 00000 n +0000134539 00000 n +0000135218 00000 n +0000134700 00000 n +0000135282 00000 n +0000134862 00000 n +0001045830 00000 n +0000137130 00000 n +0000139550 00000 n +0000136939 00000 n +0000135509 00000 n +0000138978 00000 n +0000139042 00000 n +0000139168 00000 n +0000139231 00000 n +0000137831 00000 n +0000139294 00000 n +0000137995 00000 n +0000138159 00000 n +0000138323 00000 n +0000139358 00000 n +0000138487 00000 n +0000138651 00000 n +0000139422 00000 n +0000138815 00000 n +0000139486 00000 n +0000137641 00000 n +0000137722 00000 n +0000137809 00000 n +0000141742 00000 n +0000141870 00000 n +0000141998 00000 n +0000142126 00000 n +0000141311 00000 n +0000139768 00000 n +0000141614 00000 n +0000141678 00000 n +0000141806 00000 n +0000141934 00000 n +0000142062 00000 n +0000141448 00000 n +0001045797 00000 n +0000143947 00000 n +0000146802 00000 n +0000143747 00000 n +0000142290 00000 n +0000146039 00000 n +0000146103 00000 n +0000146229 00000 n +0000146292 00000 n +0000144744 00000 n +0000146355 00000 n +0000144905 00000 n +0000146419 00000 n +0000145067 00000 n +0000146483 00000 n +0000145229 00000 n +0000146547 00000 n +0000145391 00000 n +0000146610 00000 n +0000145553 00000 n +0000146674 00000 n +0000145715 00000 n +0000146738 00000 n +0000145877 00000 n +0000144554 00000 n +0000144635 00000 n +0000144722 00000 n +0000149684 00000 n +0000148551 00000 n +0000147007 00000 n +0000149364 00000 n +0000149428 00000 n +0000148715 00000 n +0000149492 00000 n +0000148877 00000 n +0000149556 00000 n +0000149038 00000 n +0000149620 00000 n +0000149200 00000 n +0001045764 00000 n +0000151474 00000 n +0000154424 00000 n +0000151265 00000 n +0000149847 00000 n +0000153594 00000 n +0000153658 00000 n +0000153784 00000 n +0000153848 00000 n +0000152129 00000 n +0000153912 00000 n +0000152292 00000 n +0000153976 00000 n +0000152454 00000 n +0000154040 00000 n +0000152617 00000 n +0000154104 00000 n +0000152780 00000 n +0000154168 00000 n +0000152942 00000 n +0000154232 00000 n +0000153105 00000 n +0000154296 00000 n +0000153268 00000 n +0000154360 00000 n +0000153431 00000 n +0001203845 00000 n +0000151939 00000 n +0000152020 00000 n +0000152107 00000 n +0000156673 00000 n +0000155772 00000 n +0000154630 00000 n +0000156419 00000 n +0000156483 00000 n +0000155927 00000 n +0000156547 00000 n +0000156090 00000 n +0000156609 00000 n +0000156254 00000 n +0001045731 00000 n +0000158549 00000 n +0000161400 00000 n +0000158349 00000 n +0000156836 00000 n +0000160637 00000 n +0000160701 00000 n +0000160827 00000 n +0000160890 00000 n +0000159318 00000 n +0000160953 00000 n +0000159483 00000 n +0000161017 00000 n +0000159647 00000 n +0000161081 00000 n +0000159812 00000 n +0000161145 00000 n +0000159977 00000 n +0000161208 00000 n +0000160142 00000 n +0000161272 00000 n +0000160307 00000 n +0000161336 00000 n +0000160472 00000 n +0000159128 00000 n +0000159209 00000 n +0000159296 00000 n +0000164178 00000 n +0000163104 00000 n +0000161606 00000 n +0000163922 00000 n +0000163986 00000 n +0000163268 00000 n +0000164050 00000 n +0000163433 00000 n +0000164114 00000 n +0000163597 00000 n +0000163756 00000 n +0001045698 00000 n +0000165854 00000 n +0000168451 00000 n +0000165663 00000 n +0000164341 00000 n +0000167813 00000 n +0000167877 00000 n +0000168003 00000 n +0000168067 00000 n +0000166681 00000 n +0000168131 00000 n +0000166842 00000 n +0000168195 00000 n +0000167004 00000 n +0000168259 00000 n +0000167166 00000 n +0000167327 00000 n +0000168323 00000 n +0000167489 00000 n +0000168387 00000 n +0000167651 00000 n +0000166491 00000 n +0000166572 00000 n +0000166659 00000 n +0000172347 00000 n +0000172602 00000 n +0000170811 00000 n +0000168657 00000 n +0000171963 00000 n +0000170993 00000 n +0000172027 00000 n +0000171155 00000 n +0000172091 00000 n +0000171316 00000 n +0000172155 00000 n +0000171477 00000 n +0000172219 00000 n +0000171640 00000 n +0000172283 00000 n +0000172411 00000 n +0000172475 00000 n +0000172538 00000 n +0000171800 00000 n +0001045665 00000 n +0000174368 00000 n +0000176929 00000 n +0000174177 00000 n +0000172792 00000 n +0000176291 00000 n +0000176355 00000 n +0000176481 00000 n +0000176545 00000 n +0000175153 00000 n +0000176609 00000 n +0000175315 00000 n +0000176673 00000 n +0000175478 00000 n +0000176737 00000 n +0000175640 00000 n +0000175802 00000 n +0000176801 00000 n +0000175965 00000 n +0000176865 00000 n +0000176128 00000 n +0001203970 00000 n +0000174963 00000 n +0000175044 00000 n +0000175131 00000 n +0000179428 00000 n +0000179556 00000 n +0000178771 00000 n +0000177135 00000 n +0000179237 00000 n +0000179301 00000 n +0000178917 00000 n +0000179365 00000 n +0000179492 00000 n +0000179072 00000 n +0001045632 00000 n +0000181237 00000 n +0000183567 00000 n +0000181055 00000 n +0000179720 00000 n +0000182993 00000 n +0000183057 00000 n +0000183183 00000 n +0000183247 00000 n +0000182017 00000 n +0000183311 00000 n +0000182180 00000 n +0000183375 00000 n +0000182342 00000 n +0000182505 00000 n +0000183439 00000 n +0000182667 00000 n +0000183503 00000 n +0000182830 00000 n +0000181827 00000 n +0000181908 00000 n +0000181995 00000 n +0000186068 00000 n +0000186196 00000 n +0000185408 00000 n +0000183773 00000 n +0000185877 00000 n +0000185941 00000 n +0000185554 00000 n +0000186005 00000 n +0000186132 00000 n +0000185712 00000 n +0001045599 00000 n +0000188112 00000 n +0000190382 00000 n +0000187930 00000 n +0000186360 00000 n +0000189808 00000 n +0000189872 00000 n +0000189998 00000 n +0000190062 00000 n +0000188832 00000 n +0000190126 00000 n +0000188996 00000 n +0000189159 00000 n +0000190190 00000 n +0000189323 00000 n +0000190254 00000 n +0000189487 00000 n +0000190318 00000 n +0000189651 00000 n +0000188642 00000 n +0000188723 00000 n +0000188810 00000 n +0000192285 00000 n +0000645547 00000 n +0000192413 00000 n +0000191680 00000 n +0000190588 00000 n +0000192157 00000 n +0000192221 00000 n +0000192349 00000 n +0000191826 00000 n +0000191991 00000 n +0000268557 00000 n +0001045566 00000 n +0000194350 00000 n +0000197109 00000 n +0000194150 00000 n +0000192577 00000 n +0000196343 00000 n +0000196407 00000 n +0000196533 00000 n +0000196597 00000 n +0000195062 00000 n +0000196661 00000 n +0000195223 00000 n +0000196725 00000 n +0000195384 00000 n +0000196789 00000 n +0000195541 00000 n +0000196853 00000 n +0000195701 00000 n +0000196917 00000 n +0000195861 00000 n +0000196981 00000 n +0000196022 00000 n +0000197045 00000 n +0000196183 00000 n +0001204095 00000 n +0000194872 00000 n +0000194953 00000 n +0000195040 00000 n +0000198512 00000 n +0000198084 00000 n +0000197328 00000 n +0000198384 00000 n +0000198448 00000 n +0000198221 00000 n +0001045533 00000 n +0000200152 00000 n +0000203177 00000 n +0000199943 00000 n +0000198649 00000 n +0000202349 00000 n +0000202538 00000 n +0000202602 00000 n +0000200870 00000 n +0000202666 00000 n +0000201035 00000 n +0000202730 00000 n +0000201200 00000 n +0000202794 00000 n +0000201364 00000 n +0000202858 00000 n +0000201527 00000 n +0000202921 00000 n +0000201692 00000 n +0000202985 00000 n +0000201857 00000 n +0000203049 00000 n +0000202020 00000 n +0000203113 00000 n +0000202184 00000 n +0000200680 00000 n +0000200761 00000 n +0000200848 00000 n +0000206022 00000 n +0000204876 00000 n +0000203396 00000 n +0000205702 00000 n +0000205766 00000 n +0000205040 00000 n +0000205830 00000 n +0000205205 00000 n +0000205894 00000 n +0000205370 00000 n +0000205958 00000 n +0000205535 00000 n +0001045500 00000 n +0000207819 00000 n +0000210634 00000 n +0000207619 00000 n +0000206198 00000 n +0000210187 00000 n +0000210378 00000 n +0000210442 00000 n +0000208888 00000 n +0000209050 00000 n +0000210506 00000 n +0000209213 00000 n +0000210570 00000 n +0000209376 00000 n +0000209539 00000 n +0000209699 00000 n +0000209862 00000 n +0000210025 00000 n +0000208698 00000 n +0000208779 00000 n +0000208866 00000 n +0000214632 00000 n +0000219205 00000 n +0000219333 00000 n +0000219461 00000 n +0000214760 00000 n +0000213196 00000 n +0000210840 00000 n +0000214185 00000 n +0000214249 00000 n +0000213369 00000 n +0000214313 00000 n +0000213532 00000 n +0000214376 00000 n +0000213695 00000 n +0000214440 00000 n +0000213859 00000 n +0000214504 00000 n +0000214568 00000 n +0000214696 00000 n +0000214023 00000 n +0000556524 00000 n +0000219717 00000 n +0000217054 00000 n +0000214950 00000 n +0000219077 00000 n +0000219141 00000 n +0000219269 00000 n +0000217281 00000 n +0000219397 00000 n +0000217443 00000 n +0000219525 00000 n +0000217604 00000 n +0000219653 00000 n +0000217765 00000 n +0000217929 00000 n +0000218093 00000 n +0000218257 00000 n +0000218421 00000 n +0000218585 00000 n +0000218749 00000 n +0000218913 00000 n +0001204220 00000 n +0000348000 00000 n +0000356709 00000 n +0000392039 00000 n +0000614896 00000 n +0000625423 00000 n +0001045467 00000 n +0000221657 00000 n +0000224513 00000 n +0000221457 00000 n +0000219894 00000 n +0000223749 00000 n +0000223813 00000 n +0000223940 00000 n +0000224003 00000 n +0000222454 00000 n +0000224066 00000 n +0000222616 00000 n +0000224130 00000 n +0000222778 00000 n +0000224194 00000 n +0000222940 00000 n +0000224258 00000 n +0000223102 00000 n +0000224321 00000 n +0000223264 00000 n +0000224385 00000 n +0000223426 00000 n +0000224449 00000 n +0000223587 00000 n +0000222264 00000 n +0000222345 00000 n +0000222432 00000 n +0000228426 00000 n +0000226485 00000 n +0000224719 00000 n +0000227978 00000 n +0000228042 00000 n +0000226685 00000 n +0000228106 00000 n +0000226847 00000 n +0000228170 00000 n +0000227008 00000 n +0000228234 00000 n +0000227170 00000 n +0000228298 00000 n +0000227333 00000 n +0000228362 00000 n +0000227496 00000 n +0000227655 00000 n +0000227814 00000 n +0001045434 00000 n +0000230248 00000 n +0000233466 00000 n +0000230048 00000 n +0000228589 00000 n +0000232701 00000 n +0000232891 00000 n +0000232955 00000 n +0000231432 00000 n +0000233019 00000 n +0000231591 00000 n +0000233083 00000 n +0000231749 00000 n +0000233146 00000 n +0000231908 00000 n +0000233210 00000 n +0000232067 00000 n +0000233274 00000 n +0000232226 00000 n +0000233338 00000 n +0000232384 00000 n +0000233402 00000 n +0000232543 00000 n +0000231242 00000 n +0000231323 00000 n +0000231410 00000 n +0000237498 00000 n +0000235217 00000 n +0000233672 00000 n +0000236860 00000 n +0000236924 00000 n +0000235426 00000 n +0000236988 00000 n +0000235585 00000 n +0000237052 00000 n +0000235744 00000 n +0000237116 00000 n +0000235904 00000 n +0000237180 00000 n +0000236064 00000 n +0000237244 00000 n +0000236224 00000 n +0000237307 00000 n +0000236384 00000 n +0000237371 00000 n +0000236544 00000 n +0000237434 00000 n +0000236703 00000 n +0000238899 00000 n +0000238537 00000 n +0000237661 00000 n +0000238835 00000 n +0000238674 00000 n +0001045401 00000 n +0000240603 00000 n +0000243368 00000 n +0000240403 00000 n +0000239023 00000 n +0000242665 00000 n +0000242729 00000 n +0000241371 00000 n +0000242856 00000 n +0000242920 00000 n +0000241526 00000 n +0000242984 00000 n +0000241690 00000 n +0000243048 00000 n +0000241854 00000 n +0000243112 00000 n +0000242017 00000 n +0000243176 00000 n +0000242182 00000 n +0000243240 00000 n +0000242347 00000 n +0000243304 00000 n +0000242511 00000 n +0001204345 00000 n +0000241181 00000 n +0000241262 00000 n +0000241349 00000 n +0000245539 00000 n +0000244840 00000 n +0000243587 00000 n +0000245475 00000 n +0000244995 00000 n +0000245152 00000 n +0000245308 00000 n +0001045368 00000 n +0000247369 00000 n +0000249800 00000 n +0000247178 00000 n +0000245676 00000 n +0000249289 00000 n +0000249353 00000 n +0000249480 00000 n +0000249544 00000 n +0000248136 00000 n +0000249608 00000 n +0000248301 00000 n +0000248465 00000 n +0000249672 00000 n +0000248630 00000 n +0000249736 00000 n +0000248795 00000 n +0000248960 00000 n +0000249125 00000 n +0000247946 00000 n +0000248027 00000 n +0000248114 00000 n +0000253570 00000 n +0000253698 00000 n +0000253826 00000 n +0000253954 00000 n +0000252605 00000 n +0000250019 00000 n +0000253250 00000 n +0000253314 00000 n +0000252760 00000 n +0000253378 00000 n +0000252925 00000 n +0000253442 00000 n +0000253090 00000 n +0000253506 00000 n +0000253634 00000 n +0000253762 00000 n +0000253890 00000 n +0000255221 00000 n +0000254853 00000 n +0000254144 00000 n +0000255157 00000 n +0000254990 00000 n +0001045335 00000 n +0000256893 00000 n +0000259318 00000 n +0000256711 00000 n +0000255345 00000 n +0000258743 00000 n +0000258807 00000 n +0000257771 00000 n +0000258934 00000 n +0000258998 00000 n +0000257927 00000 n +0000259062 00000 n +0000258092 00000 n +0000259126 00000 n +0000258257 00000 n +0000259190 00000 n +0000258422 00000 n +0000259254 00000 n +0000258587 00000 n +0000257581 00000 n +0000257662 00000 n +0000257749 00000 n +0000261282 00000 n +0000260583 00000 n +0000259537 00000 n +0000261218 00000 n +0000260738 00000 n +0000260895 00000 n +0000261051 00000 n +0001204470 00000 n +0001045302 00000 n +0000262407 00000 n +0000265103 00000 n +0000262261 00000 n +0000261406 00000 n +0000264720 00000 n +0000264784 00000 n +0000264911 00000 n +0000264975 00000 n +0000264391 00000 n +0000265039 00000 n +0000264555 00000 n +0000264200 00000 n +0000264281 00000 n +0000264368 00000 n +0000269067 00000 n +0000266977 00000 n +0000265309 00000 n +0000268493 00000 n +0000267177 00000 n +0000268621 00000 n +0000267342 00000 n +0000268683 00000 n +0000267506 00000 n +0000268747 00000 n +0000267670 00000 n +0000268811 00000 n +0000267834 00000 n +0000268875 00000 n +0000267998 00000 n +0000268939 00000 n +0000268162 00000 n +0000269003 00000 n +0000268326 00000 n +0001045269 00000 n +0000270844 00000 n +0000272495 00000 n +0000270689 00000 n +0000269230 00000 n +0000272048 00000 n +0000272112 00000 n +0000272239 00000 n +0000272303 00000 n +0000271561 00000 n +0000272367 00000 n +0000271723 00000 n +0000272431 00000 n +0000271884 00000 n +0000271371 00000 n +0000271452 00000 n +0000271539 00000 n +0001045236 00000 n +0000274539 00000 n +0000276654 00000 n +0000274366 00000 n +0000272701 00000 n +0000276015 00000 n +0000276079 00000 n +0000276206 00000 n +0000276270 00000 n +0000275197 00000 n +0000276334 00000 n +0000275361 00000 n +0000276398 00000 n +0000275524 00000 n +0000276462 00000 n +0000275688 00000 n +0000276526 00000 n +0000275852 00000 n +0000276590 00000 n +0000275007 00000 n +0000275088 00000 n +0000275175 00000 n +0000277716 00000 n +0000277350 00000 n +0000276873 00000 n +0000277652 00000 n +0000277487 00000 n +0001045203 00000 n +0000279540 00000 n +0000282280 00000 n +0000279349 00000 n +0000277840 00000 n +0000281578 00000 n +0000281642 00000 n +0000281769 00000 n +0000281833 00000 n +0000280427 00000 n +0000281897 00000 n +0000280591 00000 n +0000281961 00000 n +0000280755 00000 n +0000282025 00000 n +0000280919 00000 n +0000282088 00000 n +0000281084 00000 n +0000282152 00000 n +0000281248 00000 n +0000282216 00000 n +0000281413 00000 n +0001204595 00000 n +0000280237 00000 n +0000280318 00000 n +0000280405 00000 n +0000284976 00000 n +0000284136 00000 n +0000282486 00000 n +0000284784 00000 n +0000284848 00000 n +0000284291 00000 n +0000284912 00000 n +0000284456 00000 n +0000284617 00000 n +0000379596 00000 n +0001045170 00000 n +0000286760 00000 n +0000289858 00000 n +0000286551 00000 n +0000285139 00000 n +0000289028 00000 n +0000289092 00000 n +0000289219 00000 n +0000289283 00000 n +0000287562 00000 n +0000289347 00000 n +0000287725 00000 n +0000289411 00000 n +0000287888 00000 n +0000289475 00000 n +0000288051 00000 n +0000289539 00000 n +0000288214 00000 n +0000289602 00000 n +0000288377 00000 n +0000289666 00000 n +0000288540 00000 n +0000289730 00000 n +0000288702 00000 n +0000289794 00000 n +0000288865 00000 n +0000287372 00000 n +0000287453 00000 n +0000287540 00000 n +0000293281 00000 n +0000291906 00000 n +0000290064 00000 n +0000292897 00000 n +0000292961 00000 n +0000292079 00000 n +0000293025 00000 n +0000292242 00000 n +0000293089 00000 n +0000292405 00000 n +0000293153 00000 n +0000292568 00000 n +0000293217 00000 n +0000292732 00000 n +0001045137 00000 n +0000295100 00000 n +0000297946 00000 n +0000294891 00000 n +0000293444 00000 n +0000297243 00000 n +0000297307 00000 n +0000297434 00000 n +0000295759 00000 n +0000297498 00000 n +0000295924 00000 n +0000296089 00000 n +0000297562 00000 n +0000296254 00000 n +0000297626 00000 n +0000296419 00000 n +0000297690 00000 n +0000296584 00000 n +0000297754 00000 n +0000296749 00000 n +0000297818 00000 n +0000296914 00000 n +0000297882 00000 n +0000297078 00000 n +0000295569 00000 n +0000295650 00000 n +0000295737 00000 n +0000302052 00000 n +0000302244 00000 n +0000302372 00000 n +0000300708 00000 n +0000298152 00000 n +0000301860 00000 n +0000301924 00000 n +0000300890 00000 n +0000301050 00000 n +0000301208 00000 n +0000301988 00000 n +0000302116 00000 n +0000301373 00000 n +0000301531 00000 n +0000302180 00000 n +0000302308 00000 n +0000301693 00000 n +0000442162 00000 n +0000512473 00000 n +0001045104 00000 n +0000304121 00000 n +0000306952 00000 n +0000303921 00000 n +0000302523 00000 n +0000306187 00000 n +0000306251 00000 n +0000306378 00000 n +0000306442 00000 n +0000304900 00000 n +0000306506 00000 n +0000305062 00000 n +0000306570 00000 n +0000305220 00000 n +0000306634 00000 n +0000305382 00000 n +0000306698 00000 n +0000305543 00000 n +0000306762 00000 n +0000305704 00000 n +0000306825 00000 n +0000305865 00000 n +0000306888 00000 n +0000306025 00000 n +0001204720 00000 n +0000304710 00000 n +0000304791 00000 n +0000304878 00000 n +0000310759 00000 n +0000308750 00000 n +0000307158 00000 n +0000310248 00000 n +0000310312 00000 n +0000308950 00000 n +0000310376 00000 n +0000309112 00000 n +0000310440 00000 n +0000309273 00000 n +0000310504 00000 n +0000309435 00000 n +0000310568 00000 n +0000309598 00000 n +0000310632 00000 n +0000309761 00000 n +0000310696 00000 n +0000309924 00000 n +0000310084 00000 n +0001045071 00000 n +0000312464 00000 n +0000315096 00000 n +0000312273 00000 n +0000310922 00000 n +0000314394 00000 n +0000314458 00000 n +0000314585 00000 n +0000314649 00000 n +0000313241 00000 n +0000314713 00000 n +0000313406 00000 n +0000314777 00000 n +0000313570 00000 n +0000314841 00000 n +0000313735 00000 n +0000314905 00000 n +0000313900 00000 n +0000314969 00000 n +0000314064 00000 n +0000315033 00000 n +0000314229 00000 n +0000313051 00000 n +0000313132 00000 n +0000313219 00000 n +0000317220 00000 n +0000316453 00000 n +0000315315 00000 n +0000317092 00000 n +0000317156 00000 n +0000316608 00000 n +0000316766 00000 n +0000316925 00000 n +0001045038 00000 n +0000318975 00000 n +0000321936 00000 n +0000318766 00000 n +0000317357 00000 n +0000321105 00000 n +0000321169 00000 n +0000321296 00000 n +0000321360 00000 n +0000319625 00000 n +0000321424 00000 n +0000319790 00000 n +0000321488 00000 n +0000319953 00000 n +0000321552 00000 n +0000320118 00000 n +0000321616 00000 n +0000320283 00000 n +0000321680 00000 n +0000320447 00000 n +0000321744 00000 n +0000320612 00000 n +0000321808 00000 n +0000320777 00000 n +0000321872 00000 n +0000320940 00000 n +0000319435 00000 n +0000319516 00000 n +0000319603 00000 n +0000323418 00000 n +0000322986 00000 n +0000322155 00000 n +0000323290 00000 n +0000323354 00000 n +0000323123 00000 n +0001045005 00000 n +0000325232 00000 n +0000328160 00000 n +0000325032 00000 n +0000323555 00000 n +0000327397 00000 n +0000327461 00000 n +0000327588 00000 n +0000327651 00000 n +0000326114 00000 n +0000327714 00000 n +0000326274 00000 n +0000327777 00000 n +0000326434 00000 n +0000327840 00000 n +0000326594 00000 n +0000327904 00000 n +0000326754 00000 n +0000327968 00000 n +0000326915 00000 n +0000328032 00000 n +0000327076 00000 n +0000328096 00000 n +0000327237 00000 n +0001204845 00000 n +0000325924 00000 n +0000326005 00000 n +0000326092 00000 n +0000330723 00000 n +0000329454 00000 n +0000328379 00000 n +0000330595 00000 n +0000330659 00000 n +0000329636 00000 n +0000329792 00000 n +0000329953 00000 n +0000330113 00000 n +0000330272 00000 n +0000330432 00000 n +0000475184 00000 n +0001044972 00000 n +0000332576 00000 n +0000334813 00000 n +0000332403 00000 n +0000330860 00000 n +0000334174 00000 n +0000334365 00000 n +0000334429 00000 n +0000333366 00000 n +0000334493 00000 n +0000333528 00000 n +0000334557 00000 n +0000333690 00000 n +0000334621 00000 n +0000333851 00000 n +0000334685 00000 n +0000334012 00000 n +0000334749 00000 n +0000333176 00000 n +0000333257 00000 n +0000333344 00000 n +0000335868 00000 n +0000335504 00000 n +0000335032 00000 n +0000335804 00000 n +0000335641 00000 n +0001044939 00000 n +0000337650 00000 n +0000339297 00000 n +0000337495 00000 n +0000335992 00000 n +0000338850 00000 n +0000338914 00000 n +0000339041 00000 n +0000339105 00000 n +0000338366 00000 n +0000339169 00000 n +0000338527 00000 n +0000339233 00000 n +0000338687 00000 n +0000338176 00000 n +0000338257 00000 n +0000338344 00000 n +0001044906 00000 n +0000341028 00000 n +0000344004 00000 n +0000340819 00000 n +0000339503 00000 n +0000343302 00000 n +0000343366 00000 n +0000343493 00000 n +0000343557 00000 n +0000341830 00000 n +0000343621 00000 n +0000341993 00000 n +0000343685 00000 n +0000342156 00000 n +0000343749 00000 n +0000342320 00000 n +0000343813 00000 n +0000342484 00000 n +0000343876 00000 n +0000342648 00000 n +0000342811 00000 n +0000342974 00000 n +0000343940 00000 n +0000343138 00000 n +0000341640 00000 n +0000341721 00000 n +0000341808 00000 n +0000347872 00000 n +0000348128 00000 n +0000346328 00000 n +0000344210 00000 n +0000347489 00000 n +0000347553 00000 n +0000346510 00000 n +0000347617 00000 n +0000346674 00000 n +0000347680 00000 n +0000346839 00000 n +0000347744 00000 n +0000347003 00000 n +0000347808 00000 n +0000347936 00000 n +0000348064 00000 n +0000347162 00000 n +0000347325 00000 n +0001204970 00000 n +0001044873 00000 n +0000349817 00000 n +0000352695 00000 n +0000349608 00000 n +0000348331 00000 n +0000351993 00000 n +0000352057 00000 n +0000352184 00000 n +0000352248 00000 n +0000350520 00000 n +0000352312 00000 n +0000350683 00000 n +0000352376 00000 n +0000350846 00000 n +0000352440 00000 n +0000351010 00000 n +0000352504 00000 n +0000351174 00000 n +0000352567 00000 n +0000351338 00000 n +0000351502 00000 n +0000351665 00000 n +0000352631 00000 n +0000351829 00000 n +0000350330 00000 n +0000350411 00000 n +0000350498 00000 n +0000356581 00000 n +0000356837 00000 n +0000355037 00000 n +0000352901 00000 n +0000356198 00000 n +0000356262 00000 n +0000355219 00000 n +0000356326 00000 n +0000355383 00000 n +0000356389 00000 n +0000355548 00000 n +0000356453 00000 n +0000355712 00000 n +0000356517 00000 n +0000356645 00000 n +0000356773 00000 n +0000355871 00000 n +0000356034 00000 n +0001044840 00000 n +0000358596 00000 n +0000361142 00000 n +0000358405 00000 n +0000357040 00000 n +0000360503 00000 n +0000360567 00000 n +0000359369 00000 n +0000360694 00000 n +0000360758 00000 n +0000359525 00000 n +0000360822 00000 n +0000359689 00000 n +0000360886 00000 n +0000359854 00000 n +0000360950 00000 n +0000360018 00000 n +0000361014 00000 n +0000360183 00000 n +0000361078 00000 n +0000360348 00000 n +0000359179 00000 n +0000359260 00000 n +0000359347 00000 n +0000363116 00000 n +0000362417 00000 n +0000361361 00000 n +0000363052 00000 n +0000362572 00000 n +0000362729 00000 n +0000362885 00000 n +0001044807 00000 n +0000364967 00000 n +0000367748 00000 n +0000364767 00000 n +0000363240 00000 n +0000366981 00000 n +0000367045 00000 n +0000367172 00000 n +0000367236 00000 n +0000365667 00000 n +0000367300 00000 n +0000365832 00000 n +0000367364 00000 n +0000365997 00000 n +0000367428 00000 n +0000366158 00000 n +0000367492 00000 n +0000366322 00000 n +0000367556 00000 n +0000366486 00000 n +0000367620 00000 n +0000366651 00000 n +0000367684 00000 n +0000366816 00000 n +0000365477 00000 n +0000365558 00000 n +0000365645 00000 n +0000369177 00000 n +0000368746 00000 n +0000367967 00000 n +0000369049 00000 n +0000369113 00000 n +0000368883 00000 n +0001205095 00000 n +0001044774 00000 n +0000370948 00000 n +0000373745 00000 n +0000370748 00000 n +0000369314 00000 n +0000372980 00000 n +0000373044 00000 n +0000373171 00000 n +0000373235 00000 n +0000371669 00000 n +0000373299 00000 n +0000371833 00000 n +0000373363 00000 n +0000371997 00000 n +0000373427 00000 n +0000372161 00000 n +0000373490 00000 n +0000372325 00000 n +0000373554 00000 n +0000372489 00000 n +0000373618 00000 n +0000372653 00000 n +0000373682 00000 n +0000372816 00000 n +0000371479 00000 n +0000371560 00000 n +0000371647 00000 n +0000375459 00000 n +0000375029 00000 n +0000373951 00000 n +0000375331 00000 n +0000375395 00000 n +0000375166 00000 n +0001044741 00000 n +0000377329 00000 n +0000380234 00000 n +0000377129 00000 n +0000375596 00000 n +0000379532 00000 n +0000379723 00000 n +0000379787 00000 n +0000378213 00000 n +0000379851 00000 n +0000378378 00000 n +0000379915 00000 n +0000378543 00000 n +0000379978 00000 n +0000378707 00000 n +0000380042 00000 n +0000378872 00000 n +0000380106 00000 n +0000379037 00000 n +0000380170 00000 n +0000379202 00000 n +0000379367 00000 n +0000378023 00000 n +0000378104 00000 n +0000378191 00000 n +0000383193 00000 n +0000383321 00000 n +0000382224 00000 n +0000380440 00000 n +0000382873 00000 n +0000382937 00000 n +0000382379 00000 n +0000383001 00000 n +0000382543 00000 n +0000383065 00000 n +0000383129 00000 n +0000383257 00000 n +0000382707 00000 n +0001044708 00000 n +0000385083 00000 n +0000387940 00000 n +0000384874 00000 n +0000383485 00000 n +0000387302 00000 n +0000387366 00000 n +0000387493 00000 n +0000387557 00000 n +0000385819 00000 n +0000387621 00000 n +0000385984 00000 n +0000387685 00000 n +0000386149 00000 n +0000387749 00000 n +0000386314 00000 n +0000387813 00000 n +0000386479 00000 n +0000387876 00000 n +0000386644 00000 n +0000386808 00000 n +0000386972 00000 n +0000387137 00000 n +0000385629 00000 n +0000385710 00000 n +0000385797 00000 n +0000391785 00000 n +0000391913 00000 n +0000392103 00000 n +0000390342 00000 n +0000388159 00000 n +0000391337 00000 n +0000391401 00000 n +0000390515 00000 n +0000391465 00000 n +0000390680 00000 n +0000391529 00000 n +0000390846 00000 n +0000391593 00000 n +0000391012 00000 n +0000391657 00000 n +0000391177 00000 n +0000391721 00000 n +0000391849 00000 n +0000391975 00000 n +0001205220 00000 n +0000393777 00000 n +0000393174 00000 n +0000392293 00000 n +0000393649 00000 n +0000393713 00000 n +0000393320 00000 n +0000393482 00000 n +0001044675 00000 n +0000395543 00000 n +0000397435 00000 n +0000395379 00000 n +0000393928 00000 n +0000396988 00000 n +0000397052 00000 n +0000397179 00000 n +0000397243 00000 n +0000396340 00000 n +0000397307 00000 n +0000396503 00000 n +0000397371 00000 n +0000396665 00000 n +0000396823 00000 n +0000396150 00000 n +0000396231 00000 n +0000396318 00000 n +0001044642 00000 n +0000399288 00000 n +0000401661 00000 n +0000399097 00000 n +0000397641 00000 n +0000401088 00000 n +0000401152 00000 n +0000401279 00000 n +0000401342 00000 n +0000399935 00000 n +0000401405 00000 n +0000400100 00000 n +0000400264 00000 n +0000400429 00000 n +0000401469 00000 n +0000400593 00000 n +0000400758 00000 n +0000401533 00000 n +0000400923 00000 n +0000401597 00000 n +0000399745 00000 n +0000399826 00000 n +0000399913 00000 n +0000404076 00000 n +0000404204 00000 n +0000404332 00000 n +0000404460 00000 n +0000403644 00000 n +0000401880 00000 n +0000403948 00000 n +0000404012 00000 n +0000404140 00000 n +0000404268 00000 n +0000404396 00000 n +0000403781 00000 n +0001044609 00000 n +0000406218 00000 n +0000409222 00000 n +0000406009 00000 n +0000404624 00000 n +0000408392 00000 n +0000408456 00000 n +0000408583 00000 n +0000408647 00000 n +0000406911 00000 n +0000408711 00000 n +0000407075 00000 n +0000408775 00000 n +0000407240 00000 n +0000408839 00000 n +0000407405 00000 n +0000408903 00000 n +0000407570 00000 n +0000408966 00000 n +0000407733 00000 n +0000409030 00000 n +0000407898 00000 n +0000409094 00000 n +0000408062 00000 n +0000409158 00000 n +0000408227 00000 n +0000406721 00000 n +0000406802 00000 n +0000406889 00000 n +0000412413 00000 n +0000410931 00000 n +0000409428 00000 n +0000412093 00000 n +0000412157 00000 n +0000411113 00000 n +0000412221 00000 n +0000411278 00000 n +0000412285 00000 n +0000411443 00000 n +0000412349 00000 n +0000411607 00000 n +0000411765 00000 n +0000411926 00000 n +0001205345 00000 n +0001044576 00000 n +0000414170 00000 n +0000417135 00000 n +0000413970 00000 n +0000412576 00000 n +0000416370 00000 n +0000416434 00000 n +0000416561 00000 n +0000416624 00000 n +0000415066 00000 n +0000416687 00000 n +0000415229 00000 n +0000416751 00000 n +0000415392 00000 n +0000416815 00000 n +0000415555 00000 n +0000416879 00000 n +0000415718 00000 n +0000416943 00000 n +0000415881 00000 n +0000417007 00000 n +0000416044 00000 n +0000417071 00000 n +0000416207 00000 n +0000414876 00000 n +0000414957 00000 n +0000415044 00000 n +0000419102 00000 n +0000418438 00000 n +0000417341 00000 n +0000418910 00000 n +0000418974 00000 n +0000418584 00000 n +0000419038 00000 n +0000418746 00000 n +0001044543 00000 n +0000420819 00000 n +0000423511 00000 n +0000420619 00000 n +0000419265 00000 n +0000422875 00000 n +0000422939 00000 n +0000421595 00000 n +0000423066 00000 n +0000423130 00000 n +0000421751 00000 n +0000423194 00000 n +0000421914 00000 n +0000423258 00000 n +0000422077 00000 n +0000423322 00000 n +0000422239 00000 n +0000423384 00000 n +0000422401 00000 n +0000423447 00000 n +0000422563 00000 n +0000422719 00000 n +0000421405 00000 n +0000421486 00000 n +0000421573 00000 n +0000425555 00000 n +0000424858 00000 n +0000423717 00000 n +0000425491 00000 n +0000425013 00000 n +0000425171 00000 n +0000425327 00000 n +0001044510 00000 n +0000427693 00000 n +0000430099 00000 n +0000427493 00000 n +0000425692 00000 n +0000429652 00000 n +0000429716 00000 n +0000429843 00000 n +0000428334 00000 n +0000429907 00000 n +0000428499 00000 n +0000428664 00000 n +0000428829 00000 n +0000429971 00000 n +0000428994 00000 n +0000429159 00000 n +0000429323 00000 n +0000430035 00000 n +0000429488 00000 n +0000428144 00000 n +0000428225 00000 n +0000428312 00000 n +0000434444 00000 n +0000434635 00000 n +0000437805 00000 n +0000437931 00000 n +0000438057 00000 n +0000434763 00000 n +0000432926 00000 n +0000430331 00000 n +0000434252 00000 n +0000433117 00000 n +0000434316 00000 n +0000433282 00000 n +0000433442 00000 n +0000433602 00000 n +0000433760 00000 n +0000433925 00000 n +0000434380 00000 n +0000434508 00000 n +0000434090 00000 n +0000434572 00000 n +0000434699 00000 n +0001205470 00000 n +0000438185 00000 n +0000449611 00000 n +0000462929 00000 n +0000438313 00000 n +0000436750 00000 n +0000434953 00000 n +0000437741 00000 n +0000436923 00000 n +0000437868 00000 n +0000437994 00000 n +0000437088 00000 n +0000438121 00000 n +0000437250 00000 n +0000438249 00000 n +0000437412 00000 n +0000437574 00000 n +0001044477 00000 n +0000439988 00000 n +0000442865 00000 n +0000439779 00000 n +0000438464 00000 n +0000442098 00000 n +0000442289 00000 n +0000442353 00000 n +0000440635 00000 n +0000442417 00000 n +0000440798 00000 n +0000442481 00000 n +0000440960 00000 n +0000441123 00000 n +0000442545 00000 n +0000441286 00000 n +0000442609 00000 n +0000441448 00000 n +0000442673 00000 n +0000441611 00000 n +0000442737 00000 n +0000441774 00000 n +0000442801 00000 n +0000441935 00000 n +0000440445 00000 n +0000440526 00000 n +0000440613 00000 n +0000445505 00000 n +0000445633 00000 n +0000444845 00000 n +0000443071 00000 n +0000445313 00000 n +0000445377 00000 n +0000444991 00000 n +0000445441 00000 n +0000445569 00000 n +0000445148 00000 n +0001044444 00000 n +0000447519 00000 n +0000449992 00000 n +0000447319 00000 n +0000445770 00000 n +0000449547 00000 n +0000449738 00000 n +0000448245 00000 n +0000449801 00000 n +0000448408 00000 n +0000448571 00000 n +0000448733 00000 n +0000449865 00000 n +0000448896 00000 n +0000449059 00000 n +0000449222 00000 n +0000449929 00000 n +0000449384 00000 n +0000448055 00000 n +0000448136 00000 n +0000448223 00000 n +0000454108 00000 n +0000454300 00000 n +0000458189 00000 n +0000458316 00000 n +0000458443 00000 n +0000454420 00000 n +0000452763 00000 n +0000450211 00000 n +0000453916 00000 n +0000452945 00000 n +0000453108 00000 n +0000453980 00000 n +0000453271 00000 n +0000453428 00000 n +0000453591 00000 n +0000454044 00000 n +0000454172 00000 n +0000453754 00000 n +0000454236 00000 n +0000454360 00000 n +0000458571 00000 n +0000458698 00000 n +0000458826 00000 n +0000456285 00000 n +0000454610 00000 n +0000458125 00000 n +0000456503 00000 n +0000458253 00000 n +0000458380 00000 n +0000456666 00000 n +0000456828 00000 n +0000458507 00000 n +0000456989 00000 n +0000457151 00000 n +0000458635 00000 n +0000457313 00000 n +0000457475 00000 n +0000458762 00000 n +0000457636 00000 n +0000457798 00000 n +0000457960 00000 n +0001205595 00000 n +0000657819 00000 n +0000657947 00000 n +0000661682 00000 n +0000661810 00000 n +0001044411 00000 n +0000460758 00000 n +0000463310 00000 n +0000460558 00000 n +0000458990 00000 n +0000462865 00000 n +0000463056 00000 n +0000461555 00000 n +0000463120 00000 n +0000461718 00000 n +0000461882 00000 n +0000462045 00000 n +0000463184 00000 n +0000462209 00000 n +0000463248 00000 n +0000462373 00000 n +0000462537 00000 n +0000462701 00000 n +0000461365 00000 n +0000461446 00000 n +0000461533 00000 n +0000467337 00000 n +0000467529 00000 n +0000467655 00000 n +0000470886 00000 n +0000471013 00000 n +0000467719 00000 n +0000465994 00000 n +0000463529 00000 n +0000467145 00000 n +0000466176 00000 n +0000467209 00000 n +0000466335 00000 n +0000466492 00000 n +0000466656 00000 n +0000467273 00000 n +0000467401 00000 n +0000466820 00000 n +0000467465 00000 n +0000467592 00000 n +0000466981 00000 n +0000471139 00000 n +0000666764 00000 n +0000471267 00000 n +0000469431 00000 n +0000467909 00000 n +0000470758 00000 n +0000470822 00000 n +0000470950 00000 n +0000469622 00000 n +0000469784 00000 n +0000471075 00000 n +0000469946 00000 n +0000470108 00000 n +0000471203 00000 n +0000470270 00000 n +0000470432 00000 n +0000470593 00000 n +0000676903 00000 n +0000677031 00000 n +0000677159 00000 n +0001044378 00000 n +0000472935 00000 n +0000475886 00000 n +0000472735 00000 n +0000471431 00000 n +0000475120 00000 n +0000475311 00000 n +0000475375 00000 n +0000473812 00000 n +0000475439 00000 n +0000473976 00000 n +0000475503 00000 n +0000474139 00000 n +0000475567 00000 n +0000474303 00000 n +0000475631 00000 n +0000474466 00000 n +0000475695 00000 n +0000474630 00000 n +0000475759 00000 n +0000474793 00000 n +0000475822 00000 n +0000474956 00000 n +0000473622 00000 n +0000473703 00000 n +0000473790 00000 n +0000478075 00000 n +0000477241 00000 n +0000476092 00000 n +0000477883 00000 n +0000477947 00000 n +0000477396 00000 n +0000478011 00000 n +0000477560 00000 n +0000477718 00000 n +0001044345 00000 n +0000480008 00000 n +0000482817 00000 n +0000479808 00000 n +0000478238 00000 n +0000482053 00000 n +0000482117 00000 n +0000482244 00000 n +0000482307 00000 n +0000480733 00000 n +0000482370 00000 n +0000480898 00000 n +0000482434 00000 n +0000481063 00000 n +0000482498 00000 n +0000481228 00000 n +0000482562 00000 n +0000481393 00000 n +0000482625 00000 n +0000481558 00000 n +0000482689 00000 n +0000481723 00000 n +0000482753 00000 n +0000481888 00000 n +0001205720 00000 n +0000480543 00000 n +0000480624 00000 n +0000480711 00000 n +0000486505 00000 n +0000485192 00000 n +0000483023 00000 n +0000486185 00000 n +0000486249 00000 n +0000485365 00000 n +0000486313 00000 n +0000485530 00000 n +0000486377 00000 n +0000485694 00000 n +0000486441 00000 n +0000485859 00000 n +0000486018 00000 n +0001044312 00000 n +0000488239 00000 n +0000490569 00000 n +0000488057 00000 n +0000486668 00000 n +0000489931 00000 n +0000489995 00000 n +0000490122 00000 n +0000490186 00000 n +0000488950 00000 n +0000490250 00000 n +0000489114 00000 n +0000489278 00000 n +0000490314 00000 n +0000489441 00000 n +0000490378 00000 n +0000489604 00000 n +0000490442 00000 n +0000489768 00000 n +0000490505 00000 n +0000488760 00000 n +0000488841 00000 n +0000488928 00000 n +0000494448 00000 n +0000492641 00000 n +0000492461 00000 n +0000490788 00000 n +0000492577 00000 n +0000494576 00000 n +0000493843 00000 n +0000492765 00000 n +0000494320 00000 n +0000494384 00000 n +0000494512 00000 n +0000493989 00000 n +0000494154 00000 n +0001044279 00000 n +0000496279 00000 n +0000499371 00000 n +0000496070 00000 n +0000494740 00000 n +0000498541 00000 n +0000498605 00000 n +0000498732 00000 n +0000498796 00000 n +0000497076 00000 n +0000498860 00000 n +0000497239 00000 n +0000498924 00000 n +0000497402 00000 n +0000498988 00000 n +0000497565 00000 n +0000499052 00000 n +0000497728 00000 n +0000499115 00000 n +0000497891 00000 n +0000499179 00000 n +0000498054 00000 n +0000499243 00000 n +0000498216 00000 n +0000499307 00000 n +0000498378 00000 n +0000496886 00000 n +0000496967 00000 n +0000497054 00000 n +0000502252 00000 n +0000500916 00000 n +0000499577 00000 n +0000502060 00000 n +0000502124 00000 n +0000501098 00000 n +0000502188 00000 n +0000501260 00000 n +0000501417 00000 n +0000501577 00000 n +0000501734 00000 n +0000501895 00000 n +0001205845 00000 n +0001044246 00000 n +0000504022 00000 n +0000506881 00000 n +0000503822 00000 n +0000502415 00000 n +0000506116 00000 n +0000506180 00000 n +0000506307 00000 n +0000506371 00000 n +0000504820 00000 n +0000506435 00000 n +0000504982 00000 n +0000506499 00000 n +0000505144 00000 n +0000506563 00000 n +0000505306 00000 n +0000506626 00000 n +0000505468 00000 n +0000506690 00000 n +0000505630 00000 n +0000506754 00000 n +0000505792 00000 n +0000506818 00000 n +0000505954 00000 n +0000504630 00000 n +0000504711 00000 n +0000504798 00000 n +0000508577 00000 n +0000508148 00000 n +0000507087 00000 n +0000508449 00000 n +0000508513 00000 n +0000508285 00000 n +0001044213 00000 n +0000510310 00000 n +0000513112 00000 n +0000510101 00000 n +0000508714 00000 n +0000512409 00000 n +0000512600 00000 n +0000512664 00000 n +0000510957 00000 n +0000512728 00000 n +0000511118 00000 n +0000512792 00000 n +0000511278 00000 n +0000511440 00000 n +0000511602 00000 n +0000512856 00000 n +0000511762 00000 n +0000512920 00000 n +0000511924 00000 n +0000512984 00000 n +0000512086 00000 n +0000513048 00000 n +0000512247 00000 n +0000510767 00000 n +0000510848 00000 n +0000510935 00000 n +0000518777 00000 n +0000518905 00000 n +0000517156 00000 n +0000515091 00000 n +0000513318 00000 n +0000516581 00000 n +0000516645 00000 n +0000515291 00000 n +0000516709 00000 n +0000515452 00000 n +0000516773 00000 n +0000515615 00000 n +0000516837 00000 n +0000515777 00000 n +0000516901 00000 n +0000515940 00000 n +0000516965 00000 n +0000516102 00000 n +0000517029 00000 n +0000516264 00000 n +0000517093 00000 n +0000516427 00000 n +0000776989 00000 n +0000519033 00000 n +0000518348 00000 n +0000517319 00000 n +0000518649 00000 n +0000518713 00000 n +0000518841 00000 n +0000518969 00000 n +0000518485 00000 n +0001044180 00000 n +0000520842 00000 n +0000523354 00000 n +0000520642 00000 n +0000519184 00000 n +0000522845 00000 n +0000522909 00000 n +0000523036 00000 n +0000521543 00000 n +0000521706 00000 n +0000523100 00000 n +0000521869 00000 n +0000522032 00000 n +0000523164 00000 n +0000522193 00000 n +0000523228 00000 n +0000522356 00000 n +0000523290 00000 n +0000522519 00000 n +0000522682 00000 n +0001205970 00000 n +0000521353 00000 n +0000521434 00000 n +0000521521 00000 n +0000530838 00000 n +0000530966 00000 n +0000531158 00000 n +0000531286 00000 n +0000527548 00000 n +0000525581 00000 n +0000523560 00000 n +0000526910 00000 n +0000526974 00000 n +0000525772 00000 n +0000527038 00000 n +0000525934 00000 n +0000527102 00000 n +0000527166 00000 n +0000526097 00000 n +0000527230 00000 n +0000526260 00000 n +0000527292 00000 n +0000526423 00000 n +0000527356 00000 n +0000526586 00000 n +0000527420 00000 n +0000526747 00000 n +0000527484 00000 n +0000531414 00000 n +0000529729 00000 n +0000527711 00000 n +0000530710 00000 n +0000530774 00000 n +0000530902 00000 n +0000529902 00000 n +0000531030 00000 n +0000530064 00000 n +0000531094 00000 n +0000531222 00000 n +0000530226 00000 n +0000530387 00000 n +0000530548 00000 n +0000531350 00000 n +0000532734 00000 n +0000532369 00000 n +0000531565 00000 n +0000532670 00000 n +0000532506 00000 n +0001044147 00000 n +0000534577 00000 n +0000537547 00000 n +0000534368 00000 n +0000532858 00000 n +0000536781 00000 n +0000536845 00000 n +0000536972 00000 n +0000537036 00000 n +0000535297 00000 n +0000537100 00000 n +0000535462 00000 n +0000537164 00000 n +0000535627 00000 n +0000537228 00000 n +0000535792 00000 n +0000537292 00000 n +0000535957 00000 n +0000537355 00000 n +0000536122 00000 n +0000536287 00000 n +0000537419 00000 n +0000536451 00000 n +0000537483 00000 n +0000536616 00000 n +0000535107 00000 n +0000535188 00000 n +0000535275 00000 n +0000540989 00000 n +0000541117 00000 n +0000539780 00000 n +0000537753 00000 n +0000540606 00000 n +0000540670 00000 n +0000539944 00000 n +0000540734 00000 n +0000540109 00000 n +0000540798 00000 n +0000540274 00000 n +0000540862 00000 n +0000540926 00000 n +0000541053 00000 n +0000540439 00000 n +0001044114 00000 n +0000542367 00000 n +0000545362 00000 n +0000542221 00000 n +0000541294 00000 n +0000545044 00000 n +0000545234 00000 n +0000545298 00000 n +0000544725 00000 n +0000544884 00000 n +0001206095 00000 n +0000544534 00000 n +0000544615 00000 n +0000544702 00000 n +0000551903 00000 n +0000549675 00000 n +0000546826 00000 n +0000545568 00000 n +0000548971 00000 n +0000549035 00000 n +0000547062 00000 n +0000549099 00000 n +0000547221 00000 n +0000549163 00000 n +0000547380 00000 n +0000549227 00000 n +0000547540 00000 n +0000549291 00000 n +0000547700 00000 n +0000547859 00000 n +0000548017 00000 n +0000548175 00000 n +0000548333 00000 n +0000549355 00000 n +0000549419 00000 n +0000548491 00000 n +0000549483 00000 n +0000548651 00000 n +0000549547 00000 n +0000549611 00000 n +0000548811 00000 n +0000552095 00000 n +0000552223 00000 n +0000552349 00000 n +0000552477 00000 n +0000552603 00000 n +0000552731 00000 n +0000551595 00000 n +0000549825 00000 n +0000551711 00000 n +0000551775 00000 n +0000551839 00000 n +0000551967 00000 n +0000552031 00000 n +0000552159 00000 n +0000552287 00000 n +0000552413 00000 n +0000552539 00000 n +0000552667 00000 n +0000553831 00000 n +0000553468 00000 n +0000552895 00000 n +0000553767 00000 n +0000553605 00000 n +0001044081 00000 n +0000557097 00000 n +0000555296 00000 n +0000553955 00000 n +0000556460 00000 n +0000556651 00000 n +0000556714 00000 n +0000555478 00000 n +0000556777 00000 n +0000555643 00000 n +0000556841 00000 n +0000555808 00000 n +0000556905 00000 n +0000555971 00000 n +0000556969 00000 n +0000556135 00000 n +0000557033 00000 n +0000556299 00000 n +0000558929 00000 n +0000561182 00000 n +0000558756 00000 n +0000557273 00000 n +0000560543 00000 n +0000560607 00000 n +0000560734 00000 n +0000560798 00000 n +0000559721 00000 n +0000560862 00000 n +0000559886 00000 n +0000560926 00000 n +0000560049 00000 n +0000560990 00000 n +0000560213 00000 n +0000561054 00000 n +0000560378 00000 n +0000561118 00000 n +0000559531 00000 n +0000559612 00000 n +0000559699 00000 n +0000562225 00000 n +0000561858 00000 n +0000561388 00000 n +0000562161 00000 n +0000561995 00000 n +0001206220 00000 n +0001044048 00000 n +0000564203 00000 n +0000566468 00000 n +0000564021 00000 n +0000562349 00000 n +0000565829 00000 n +0000565893 00000 n +0000566020 00000 n +0000566084 00000 n +0000564859 00000 n +0000566148 00000 n +0000565020 00000 n +0000566212 00000 n +0000565182 00000 n +0000566276 00000 n +0000565344 00000 n +0000565506 00000 n +0000566340 00000 n +0000565667 00000 n +0000566404 00000 n +0000564669 00000 n +0000564750 00000 n +0000564837 00000 n +0000568331 00000 n +0000568457 00000 n +0000567732 00000 n +0000566687 00000 n +0000568203 00000 n +0000567878 00000 n +0000568267 00000 n +0000568394 00000 n +0000568039 00000 n +0001044015 00000 n +0000570523 00000 n +0000573363 00000 n +0000570314 00000 n +0000568621 00000 n +0000572790 00000 n +0000572854 00000 n +0000572981 00000 n +0000571320 00000 n +0000573045 00000 n +0000571484 00000 n +0000571648 00000 n +0000571812 00000 n +0000571972 00000 n +0000573108 00000 n +0000572136 00000 n +0000573172 00000 n +0000572299 00000 n +0000573236 00000 n +0000572463 00000 n +0000573300 00000 n +0000572627 00000 n +0000571130 00000 n +0000571211 00000 n +0000571298 00000 n +0000577436 00000 n +0000577628 00000 n +0000579433 00000 n +0000577756 00000 n +0000575958 00000 n +0000573582 00000 n +0000577116 00000 n +0000577180 00000 n +0000576140 00000 n +0000577244 00000 n +0000576304 00000 n +0000577308 00000 n +0000576467 00000 n +0000576630 00000 n +0000577372 00000 n +0000577500 00000 n +0000576794 00000 n +0000577564 00000 n +0000577692 00000 n +0000576956 00000 n +0000579561 00000 n +0000578896 00000 n +0000577933 00000 n +0000579369 00000 n +0000579042 00000 n +0000579497 00000 n +0000579204 00000 n +0001043982 00000 n +0000581566 00000 n +0000584339 00000 n +0000581357 00000 n +0000579685 00000 n +0000583766 00000 n +0000583830 00000 n +0000583957 00000 n +0000584021 00000 n +0000582296 00000 n +0000582461 00000 n +0000582626 00000 n +0000584085 00000 n +0000582786 00000 n +0000582951 00000 n +0000583113 00000 n +0000584148 00000 n +0000583272 00000 n +0000584212 00000 n +0000583437 00000 n +0000584276 00000 n +0000583601 00000 n +0001206345 00000 n +0000582106 00000 n +0000582187 00000 n +0000582274 00000 n +0000588613 00000 n +0000592543 00000 n +0000588741 00000 n +0000586919 00000 n +0000584558 00000 n +0000588421 00000 n +0000587119 00000 n +0000587284 00000 n +0000587449 00000 n +0000588485 00000 n +0000587614 00000 n +0000587773 00000 n +0000587936 00000 n +0000588549 00000 n +0000588677 00000 n +0000588101 00000 n +0000588261 00000 n +0000592671 00000 n +0000592799 00000 n +0000592926 00000 n +0000593053 00000 n +0000590748 00000 n +0000588918 00000 n +0000592415 00000 n +0000592479 00000 n +0000592607 00000 n +0000590957 00000 n +0000591116 00000 n +0000592735 00000 n +0000591278 00000 n +0000591439 00000 n +0000592862 00000 n +0000591601 00000 n +0000591763 00000 n +0000592989 00000 n +0000591924 00000 n +0000592086 00000 n +0000592248 00000 n +0001043949 00000 n +0000595005 00000 n +0000597091 00000 n +0000594832 00000 n +0000593230 00000 n +0000596517 00000 n +0000596581 00000 n +0000596708 00000 n +0000596772 00000 n +0000595704 00000 n +0000596836 00000 n +0000595867 00000 n +0000596030 00000 n +0000596192 00000 n +0000596900 00000 n +0000596964 00000 n +0000596354 00000 n +0000597028 00000 n +0000595514 00000 n +0000595595 00000 n +0000595682 00000 n +0000599326 00000 n +0000599454 00000 n +0000599582 00000 n +0000598896 00000 n +0000597310 00000 n +0000599198 00000 n +0000599262 00000 n +0000599390 00000 n +0000599518 00000 n +0000599033 00000 n +0001043916 00000 n +0000601347 00000 n +0000603826 00000 n +0000601156 00000 n +0000599746 00000 n +0000603251 00000 n +0000603315 00000 n +0000602124 00000 n +0000603442 00000 n +0000603506 00000 n +0000602280 00000 n +0000603570 00000 n +0000602445 00000 n +0000603634 00000 n +0000602610 00000 n +0000603698 00000 n +0000602774 00000 n +0000603762 00000 n +0000602939 00000 n +0000603095 00000 n +0000601934 00000 n +0000602015 00000 n +0000602102 00000 n +0000605808 00000 n +0000605109 00000 n +0000604045 00000 n +0000605744 00000 n +0000605264 00000 n +0000605421 00000 n +0000605577 00000 n +0001206470 00000 n +0001043883 00000 n +0000607533 00000 n +0000610283 00000 n +0000607333 00000 n +0000605932 00000 n +0000609646 00000 n +0000609710 00000 n +0000609837 00000 n +0000609900 00000 n +0000608338 00000 n +0000609963 00000 n +0000608502 00000 n +0000610027 00000 n +0000608666 00000 n +0000610091 00000 n +0000608829 00000 n +0000610155 00000 n +0000608993 00000 n +0000610219 00000 n +0000609155 00000 n +0000609318 00000 n +0000609482 00000 n +0000608148 00000 n +0000608229 00000 n +0000608316 00000 n +0000614768 00000 n +0000614960 00000 n +0000612995 00000 n +0000610502 00000 n +0000614320 00000 n +0000614384 00000 n +0000613186 00000 n +0000614448 00000 n +0000613350 00000 n +0000614512 00000 n +0000613514 00000 n +0000614576 00000 n +0000613679 00000 n +0000614640 00000 n +0000613843 00000 n +0000614704 00000 n +0000614832 00000 n +0000614003 00000 n +0000614161 00000 n +0000616662 00000 n +0000616060 00000 n +0000615163 00000 n +0000616534 00000 n +0000616598 00000 n +0000616206 00000 n +0000616368 00000 n +0001043850 00000 n +0000618324 00000 n +0000621233 00000 n +0000618115 00000 n +0000616813 00000 n +0000620531 00000 n +0000620595 00000 n +0000620722 00000 n +0000620786 00000 n +0000619057 00000 n +0000620850 00000 n +0000619221 00000 n +0000620914 00000 n +0000619385 00000 n +0000620978 00000 n +0000619549 00000 n +0000621042 00000 n +0000619713 00000 n +0000621105 00000 n +0000619877 00000 n +0000620041 00000 n +0000620204 00000 n +0000621169 00000 n +0000620367 00000 n +0000618867 00000 n +0000618948 00000 n +0000619035 00000 n +0000625295 00000 n +0000625551 00000 n +0000623922 00000 n +0000621452 00000 n +0000624911 00000 n +0000624975 00000 n +0000624095 00000 n +0000625039 00000 n +0000624259 00000 n +0000625103 00000 n +0000624424 00000 n +0000625167 00000 n +0000624589 00000 n +0000625231 00000 n +0000625359 00000 n +0000625487 00000 n +0000624749 00000 n +0000626686 00000 n +0000626319 00000 n +0000625754 00000 n +0000626622 00000 n +0000626456 00000 n +0001206595 00000 n +0001043817 00000 n +0000628518 00000 n +0000630854 00000 n +0000628327 00000 n +0000626810 00000 n +0000630343 00000 n +0000630407 00000 n +0000630534 00000 n +0000630598 00000 n +0000629191 00000 n +0000630662 00000 n +0000629356 00000 n +0000629521 00000 n +0000630726 00000 n +0000629686 00000 n +0000629851 00000 n +0000630015 00000 n +0000630790 00000 n +0000630179 00000 n +0000629001 00000 n +0000629082 00000 n +0000629169 00000 n +0000634672 00000 n +0000634800 00000 n +0000634928 00000 n +0000635056 00000 n +0000633161 00000 n +0000631073 00000 n +0000634480 00000 n +0000634544 00000 n +0000633352 00000 n +0000633508 00000 n +0000633669 00000 n +0000634608 00000 n +0000634736 00000 n +0000633834 00000 n +0000634864 00000 n +0000633994 00000 n +0000634992 00000 n +0000634154 00000 n +0000634314 00000 n +0001043784 00000 n +0000636758 00000 n +0000639451 00000 n +0000636558 00000 n +0000635220 00000 n +0000638815 00000 n +0000638879 00000 n +0000637535 00000 n +0000639006 00000 n +0000639070 00000 n +0000637691 00000 n +0000639134 00000 n +0000637854 00000 n +0000639198 00000 n +0000638017 00000 n +0000639262 00000 n +0000638179 00000 n +0000639324 00000 n +0000638341 00000 n +0000639387 00000 n +0000638503 00000 n +0000638659 00000 n +0000637345 00000 n +0000637426 00000 n +0000637513 00000 n +0000641505 00000 n +0000640807 00000 n +0000639657 00000 n +0000641441 00000 n +0000640962 00000 n +0000641120 00000 n +0000641276 00000 n +0001043751 00000 n +0000643240 00000 n +0000646057 00000 n +0000643031 00000 n +0000641642 00000 n +0000645483 00000 n +0000645674 00000 n +0000645738 00000 n +0000644035 00000 n +0000644196 00000 n +0000645802 00000 n +0000644357 00000 n +0000644518 00000 n +0000645866 00000 n +0000644679 00000 n +0000645929 00000 n +0000644840 00000 n +0000645001 00000 n +0000645161 00000 n +0000645993 00000 n +0000645322 00000 n +0000643845 00000 n +0000643926 00000 n +0000644013 00000 n +0000653967 00000 n +0000654157 00000 n +0000654285 00000 n +0000657309 00000 n +0000650533 00000 n +0000647976 00000 n +0000646276 00000 n +0000650149 00000 n +0000650213 00000 n +0000648212 00000 n +0000648373 00000 n +0000650277 00000 n +0000648535 00000 n +0000648696 00000 n +0000650341 00000 n +0000648857 00000 n +0000649018 00000 n +0000650405 00000 n +0000649180 00000 n +0000649342 00000 n +0000649503 00000 n +0000650469 00000 n +0000649664 00000 n +0000649826 00000 n +0000649988 00000 n +0001206720 00000 n +0000657436 00000 n +0000657564 00000 n +0000657691 00000 n +0000654349 00000 n +0000652967 00000 n +0000650683 00000 n +0000653776 00000 n +0000653840 00000 n +0000653131 00000 n +0000653292 00000 n +0000653904 00000 n +0000654030 00000 n +0000653453 00000 n +0000654093 00000 n +0000654221 00000 n +0000653614 00000 n +0000658011 00000 n +0000656539 00000 n +0000654500 00000 n +0000657181 00000 n +0000657245 00000 n +0000657372 00000 n +0000657500 00000 n +0000657628 00000 n +0000657755 00000 n +0000657883 00000 n +0000656694 00000 n +0000656856 00000 n +0000657018 00000 n +0000661938 00000 n +0000659540 00000 n +0000658162 00000 n +0000661554 00000 n +0000661618 00000 n +0000659767 00000 n +0000659928 00000 n +0000660090 00000 n +0000661746 00000 n +0000660253 00000 n +0000660413 00000 n +0000660576 00000 n +0000660740 00000 n +0000661874 00000 n +0000660905 00000 n +0000661066 00000 n +0000661228 00000 n +0000661391 00000 n +0001043718 00000 n +0000664056 00000 n +0000667273 00000 n +0000663829 00000 n +0000662102 00000 n +0000666700 00000 n +0000666891 00000 n +0000666954 00000 n +0000664924 00000 n +0000665086 00000 n +0000665248 00000 n +0000665410 00000 n +0000667017 00000 n +0000665570 00000 n +0000665731 00000 n +0000665893 00000 n +0000666055 00000 n +0000667081 00000 n +0000666215 00000 n +0000667145 00000 n +0000666377 00000 n +0000667209 00000 n +0000666538 00000 n +0000664734 00000 n +0000664815 00000 n +0000664902 00000 n +0000676583 00000 n +0000679627 00000 n +0000676775 00000 n +0000672034 00000 n +0000669839 00000 n +0000667479 00000 n +0000671842 00000 n +0000670066 00000 n +0000670228 00000 n +0000670390 00000 n +0000671906 00000 n +0000670551 00000 n +0000670712 00000 n +0000670874 00000 n +0000671034 00000 n +0000671196 00000 n +0000671970 00000 n +0000671358 00000 n +0000671520 00000 n +0000671682 00000 n +0000679501 00000 n +0000679755 00000 n +0000679883 00000 n +0000680011 00000 n +0000677287 00000 n +0000674275 00000 n +0000672197 00000 n +0000676455 00000 n +0000676519 00000 n +0000676647 00000 n +0000674511 00000 n +0000674673 00000 n +0000674833 00000 n +0000676711 00000 n +0000676839 00000 n +0000674994 00000 n +0000675156 00000 n +0000675314 00000 n +0000676967 00000 n +0000675475 00000 n +0000675637 00000 n +0000675801 00000 n +0000677095 00000 n +0000675965 00000 n +0000676127 00000 n +0000676291 00000 n +0000677223 00000 n +0001206845 00000 n +0000680139 00000 n +0000678555 00000 n +0000677464 00000 n +0000679373 00000 n +0000678719 00000 n +0000678880 00000 n +0000679044 00000 n +0000679437 00000 n +0000679564 00000 n +0000679691 00000 n +0000679819 00000 n +0000679947 00000 n +0000680075 00000 n +0000679209 00000 n +0001043685 00000 n +0000683340 00000 n +0000682053 00000 n +0000680289 00000 n +0000682958 00000 n +0000683085 00000 n +0000683212 00000 n +0000682217 00000 n +0000682403 00000 n +0000682592 00000 n +0000682805 00000 n +0000683276 00000 n +0000688403 00000 n +0000686898 00000 n +0000683478 00000 n +0000688211 00000 n +0000687080 00000 n +0000687268 00000 n +0000688275 00000 n +0000687475 00000 n +0000687663 00000 n +0000688339 00000 n +0000687822 00000 n +0000688019 00000 n +0000692752 00000 n +0000690978 00000 n +0000688541 00000 n +0000691169 00000 n +0000692560 00000 n +0000691367 00000 n +0000691563 00000 n +0000691758 00000 n +0000691957 00000 n +0000692157 00000 n +0000692363 00000 n +0000692624 00000 n +0000692688 00000 n +0000694552 00000 n +0000693470 00000 n +0000692889 00000 n +0000694361 00000 n +0000694425 00000 n +0000693634 00000 n +0000693816 00000 n +0000693999 00000 n +0000694178 00000 n +0000700895 00000 n +0000696720 00000 n +0000694690 00000 n +0000700322 00000 n +0000700386 00000 n +0000697028 00000 n +0000697219 00000 n +0000697418 00000 n +0000700513 00000 n +0000700640 00000 n +0000700704 00000 n +0000697618 00000 n +0000697779 00000 n +0000697940 00000 n +0000698101 00000 n +0000698258 00000 n +0000698418 00000 n +0000698576 00000 n +0000698735 00000 n +0000698896 00000 n +0000699054 00000 n +0000699212 00000 n +0000699371 00000 n +0000700768 00000 n +0000700831 00000 n +0000699533 00000 n +0000699690 00000 n +0000699848 00000 n +0000700005 00000 n +0000700163 00000 n +0001206970 00000 n +0000705149 00000 n +0000703346 00000 n +0000701045 00000 n +0000704830 00000 n +0000704894 00000 n +0000704957 00000 n +0000703546 00000 n +0000703707 00000 n +0000703869 00000 n +0000704029 00000 n +0000704190 00000 n +0000705021 00000 n +0000705085 00000 n +0000704352 00000 n +0000704513 00000 n +0000704671 00000 n +0000708878 00000 n +0000707830 00000 n +0000705299 00000 n +0000708622 00000 n +0000707994 00000 n +0000708150 00000 n +0000708307 00000 n +0000708464 00000 n +0000708686 00000 n +0000708750 00000 n +0000708814 00000 n +0000712963 00000 n +0000711529 00000 n +0000709015 00000 n +0000712835 00000 n +0000712899 00000 n +0000711720 00000 n +0000711880 00000 n +0000712039 00000 n +0000712195 00000 n +0000712355 00000 n +0000712514 00000 n +0000712676 00000 n +0000717286 00000 n +0000715209 00000 n +0000713126 00000 n +0000716648 00000 n +0000716712 00000 n +0000715409 00000 n +0000715567 00000 n +0000715724 00000 n +0000715880 00000 n +0000716040 00000 n +0000716193 00000 n +0000716343 00000 n +0000716495 00000 n +0000716839 00000 n +0000716966 00000 n +0000717030 00000 n +0000717094 00000 n +0000717158 00000 n +0000717222 00000 n +0000729458 00000 n +0000729840 00000 n +0000738494 00000 n +0000738620 00000 n +0000742900 00000 n +0000746034 00000 n +0000723914 00000 n +0000721536 00000 n +0000717423 00000 n +0000723787 00000 n +0000721772 00000 n +0000721930 00000 n +0000722089 00000 n +0000722249 00000 n +0000722411 00000 n +0000722571 00000 n +0000722731 00000 n +0000722891 00000 n +0000723052 00000 n +0000723214 00000 n +0000723402 00000 n +0000723590 00000 n +0000729967 00000 n +0000726684 00000 n +0000724077 00000 n +0000729394 00000 n +0000726947 00000 n +0000727126 00000 n +0000727287 00000 n +0000729585 00000 n +0000727446 00000 n +0000729649 00000 n +0000727604 00000 n +0000729712 00000 n +0000727763 00000 n +0000727923 00000 n +0000729776 00000 n +0000728082 00000 n +0000728270 00000 n +0000728429 00000 n +0000728591 00000 n +0000728750 00000 n +0000728912 00000 n +0000729074 00000 n +0000729236 00000 n +0001207095 00000 n +0000738684 00000 n +0000732585 00000 n +0000730117 00000 n +0000738430 00000 n +0000733019 00000 n +0000733178 00000 n +0000733339 00000 n +0000733496 00000 n +0000733656 00000 n +0000733818 00000 n +0000733977 00000 n +0000734138 00000 n +0000734296 00000 n +0000734450 00000 n +0000734610 00000 n +0000734766 00000 n +0000734928 00000 n +0000735083 00000 n +0000735245 00000 n +0000735399 00000 n +0000735560 00000 n +0000735716 00000 n +0000735878 00000 n +0000736034 00000 n +0000736192 00000 n +0000736354 00000 n +0000736510 00000 n +0000736671 00000 n +0000736830 00000 n +0000736990 00000 n +0000737150 00000 n +0000737311 00000 n +0000737472 00000 n +0000737634 00000 n +0000737793 00000 n +0000737950 00000 n +0000738107 00000 n +0000738269 00000 n +0000743025 00000 n +0000741440 00000 n +0000738860 00000 n +0000742773 00000 n +0000741631 00000 n +0000741789 00000 n +0000741947 00000 n +0000742105 00000 n +0000742262 00000 n +0000742423 00000 n +0000742585 00000 n +0000746161 00000 n +0000745139 00000 n +0000743214 00000 n +0000745778 00000 n +0000745842 00000 n +0000745294 00000 n +0000745906 00000 n +0000745970 00000 n +0000745456 00000 n +0000745616 00000 n +0000749123 00000 n +0000747334 00000 n +0000746337 00000 n +0000748932 00000 n +0000748996 00000 n +0000747525 00000 n +0000747726 00000 n +0000747927 00000 n +0000748128 00000 n +0000748329 00000 n +0000748530 00000 n +0000748731 00000 n +0000752630 00000 n +0000751130 00000 n +0000749273 00000 n +0000752439 00000 n +0000752503 00000 n +0000751312 00000 n +0000751500 00000 n +0000751686 00000 n +0000751877 00000 n +0000752074 00000 n +0000752256 00000 n +0000756410 00000 n +0000754839 00000 n +0000752780 00000 n +0000755965 00000 n +0000756029 00000 n +0000755021 00000 n +0000755175 00000 n +0000755329 00000 n +0000755485 00000 n +0000756156 00000 n +0000756283 00000 n +0000755643 00000 n +0000755805 00000 n +0001207220 00000 n +0000768023 00000 n +0000768531 00000 n +0000760700 00000 n +0000759340 00000 n +0000756560 00000 n +0000760636 00000 n +0000759531 00000 n +0000759693 00000 n +0000759851 00000 n +0000760009 00000 n +0000760167 00000 n +0000760324 00000 n +0000760480 00000 n +0000763246 00000 n +0000762720 00000 n +0000760824 00000 n +0000763182 00000 n +0000762866 00000 n +0000763024 00000 n +0000768595 00000 n +0000766149 00000 n +0000763370 00000 n +0000767959 00000 n +0000768150 00000 n +0000768213 00000 n +0000766367 00000 n +0000766524 00000 n +0000766682 00000 n +0000766844 00000 n +0000767003 00000 n +0000768276 00000 n +0000768340 00000 n +0000768403 00000 n +0000768467 00000 n +0000767163 00000 n +0000767319 00000 n +0000767477 00000 n +0000767639 00000 n +0000767798 00000 n +0000772458 00000 n +0000770552 00000 n +0000768745 00000 n +0000772204 00000 n +0000770761 00000 n +0000770922 00000 n +0000771082 00000 n +0000771244 00000 n +0000771404 00000 n +0000771565 00000 n +0000771727 00000 n +0000771887 00000 n +0000772046 00000 n +0000772331 00000 n +0000777242 00000 n +0000775462 00000 n +0000772608 00000 n +0000776925 00000 n +0000775662 00000 n +0000777116 00000 n +0000775820 00000 n +0000775979 00000 n +0000776137 00000 n +0000776296 00000 n +0000776453 00000 n +0000776611 00000 n +0000776768 00000 n +0000782832 00000 n +0000780542 00000 n +0000777392 00000 n +0000782514 00000 n +0000780769 00000 n +0000782578 00000 n +0000780928 00000 n +0000781087 00000 n +0000781244 00000 n +0000781402 00000 n +0000781560 00000 n +0000781719 00000 n +0000782705 00000 n +0000781878 00000 n +0000782037 00000 n +0000782196 00000 n +0000782355 00000 n +0001207345 00000 n +0000787865 00000 n +0000785741 00000 n +0000782956 00000 n +0000787547 00000 n +0000785959 00000 n +0000787611 00000 n +0000786118 00000 n +0000786276 00000 n +0000786435 00000 n +0000786594 00000 n +0000786753 00000 n +0000786912 00000 n +0000787738 00000 n +0000787071 00000 n +0000787229 00000 n +0000787388 00000 n +0000792134 00000 n +0000791144 00000 n +0000788002 00000 n +0000791943 00000 n +0000791308 00000 n +0000791466 00000 n +0000791625 00000 n +0000791784 00000 n +0000792007 00000 n +0000794007 00000 n +0000793520 00000 n +0000792284 00000 n +0000793816 00000 n +0000793880 00000 n +0000793657 00000 n +0000798187 00000 n +0000797324 00000 n +0000794170 00000 n +0000798123 00000 n +0000797488 00000 n +0000797646 00000 n +0000797806 00000 n +0000797965 00000 n +0000801192 00000 n +0000800371 00000 n +0000798324 00000 n +0000801001 00000 n +0000800526 00000 n +0000801065 00000 n +0000800683 00000 n +0000800842 00000 n +0000803563 00000 n +0000803203 00000 n +0000801329 00000 n +0000803499 00000 n +0000803340 00000 n +0001207470 00000 n +0000810689 00000 n +0000804577 00000 n +0000803700 00000 n +0000810625 00000 n +0000805029 00000 n +0000805185 00000 n +0000805340 00000 n +0000805496 00000 n +0000805652 00000 n +0000805808 00000 n +0000805964 00000 n +0000806119 00000 n +0000806274 00000 n +0000806430 00000 n +0000806586 00000 n +0000806742 00000 n +0000806898 00000 n +0000807054 00000 n +0000807210 00000 n +0000807365 00000 n +0000807521 00000 n +0000807677 00000 n +0000807832 00000 n +0000807987 00000 n +0000808143 00000 n +0000808299 00000 n +0000808455 00000 n +0000808611 00000 n +0000808767 00000 n +0000808922 00000 n +0000809077 00000 n +0000809228 00000 n +0000809382 00000 n +0000809538 00000 n +0000809694 00000 n +0000809849 00000 n +0000810005 00000 n +0000810161 00000 n +0000810316 00000 n +0000810471 00000 n +0000821003 00000 n +0000812055 00000 n +0000810787 00000 n +0000820939 00000 n +0000812660 00000 n +0000812816 00000 n +0000812972 00000 n +0000813128 00000 n +0000813283 00000 n +0000813440 00000 n +0000813597 00000 n +0000813754 00000 n +0000813911 00000 n +0000814067 00000 n +0000814224 00000 n +0000814381 00000 n +0000814538 00000 n +0000814695 00000 n +0000814852 00000 n +0000815009 00000 n +0000815165 00000 n +0000815320 00000 n +0000815477 00000 n +0000815634 00000 n +0000815791 00000 n +0000815948 00000 n +0000816103 00000 n +0000816259 00000 n +0000816416 00000 n +0000816571 00000 n +0000816727 00000 n +0000816884 00000 n +0000817040 00000 n +0000817196 00000 n +0000817352 00000 n +0000817508 00000 n +0000817665 00000 n +0000817821 00000 n +0000817978 00000 n +0000818135 00000 n +0000818292 00000 n +0000818449 00000 n +0000818605 00000 n +0000818762 00000 n +0000818918 00000 n +0000819073 00000 n +0000819229 00000 n +0000819384 00000 n +0000819539 00000 n +0000819695 00000 n +0000819851 00000 n +0000820007 00000 n +0000820161 00000 n +0000820317 00000 n +0000820473 00000 n +0000820628 00000 n +0000820784 00000 n +0000836468 00000 n +0000822300 00000 n +0000821127 00000 n +0000836404 00000 n +0000823193 00000 n +0000823348 00000 n +0000823504 00000 n +0000823660 00000 n +0000823815 00000 n +0000823970 00000 n +0000824125 00000 n +0000824281 00000 n +0000824437 00000 n +0000824591 00000 n +0000824745 00000 n +0000824900 00000 n +0000825056 00000 n +0000825212 00000 n +0000825367 00000 n +0000825522 00000 n +0000825678 00000 n +0000825834 00000 n +0000825989 00000 n +0000826144 00000 n +0000826299 00000 n +0000826455 00000 n +0000826610 00000 n +0000826765 00000 n +0000826921 00000 n +0000827076 00000 n +0000827232 00000 n +0000827387 00000 n +0000827543 00000 n +0000827699 00000 n +0000827855 00000 n +0000828011 00000 n +0000828166 00000 n +0000828321 00000 n +0000828477 00000 n +0000828633 00000 n +0000828789 00000 n +0000828944 00000 n +0000829099 00000 n +0000829255 00000 n +0000829411 00000 n +0000829565 00000 n +0000829721 00000 n +0000829877 00000 n +0000830032 00000 n +0000830187 00000 n +0000830342 00000 n +0000830498 00000 n +0000830652 00000 n +0000830808 00000 n +0000830963 00000 n +0000831119 00000 n +0000831274 00000 n +0000831429 00000 n +0000831585 00000 n +0000831740 00000 n +0000831895 00000 n +0000832050 00000 n +0000832206 00000 n +0000832362 00000 n +0000832518 00000 n +0000832673 00000 n +0000832829 00000 n +0000832985 00000 n +0000833140 00000 n +0000833296 00000 n +0000833451 00000 n +0000833607 00000 n +0000833763 00000 n +0000833919 00000 n +0000834073 00000 n +0000834229 00000 n +0000834384 00000 n +0000834540 00000 n +0000834694 00000 n +0000834849 00000 n +0000835005 00000 n +0000835161 00000 n +0000835316 00000 n +0000835471 00000 n +0000835627 00000 n +0000835783 00000 n +0000835938 00000 n +0000836093 00000 n +0000836249 00000 n +0000852236 00000 n +0000837877 00000 n +0000836592 00000 n +0000852172 00000 n +0000838779 00000 n +0000838935 00000 n +0000839091 00000 n +0000839247 00000 n +0000839403 00000 n +0000839558 00000 n +0000839713 00000 n +0000839868 00000 n +0000840024 00000 n +0000840180 00000 n +0000840335 00000 n +0000840490 00000 n +0000840646 00000 n +0000840802 00000 n +0000840958 00000 n +0000841113 00000 n +0000841268 00000 n +0000841424 00000 n +0000841579 00000 n +0000841735 00000 n +0000841890 00000 n +0000842045 00000 n +0000842201 00000 n +0000842357 00000 n +0000842513 00000 n +0000842668 00000 n +0000842823 00000 n +0000842979 00000 n +0000843135 00000 n +0000843290 00000 n +0000843445 00000 n +0000843600 00000 n +0000843756 00000 n +0000843912 00000 n +0000844067 00000 n +0000844222 00000 n +0000844378 00000 n +0000844533 00000 n +0000844689 00000 n +0000844844 00000 n +0000844999 00000 n +0000845155 00000 n +0000845311 00000 n +0000845467 00000 n +0000845622 00000 n +0000845777 00000 n +0000845932 00000 n +0000846087 00000 n +0000846243 00000 n +0000846399 00000 n +0000846555 00000 n +0000846711 00000 n +0000846867 00000 n +0000847023 00000 n +0000847179 00000 n +0000847334 00000 n +0000847490 00000 n +0000847646 00000 n +0000847803 00000 n +0000847959 00000 n +0000848116 00000 n +0000848271 00000 n +0000848428 00000 n +0000848585 00000 n +0000848741 00000 n +0000848897 00000 n +0000849054 00000 n +0000849211 00000 n +0000849368 00000 n +0000849525 00000 n +0000849682 00000 n +0000849839 00000 n +0000849995 00000 n +0000850151 00000 n +0000850306 00000 n +0000850462 00000 n +0000850617 00000 n +0000850772 00000 n +0000850928 00000 n +0000851084 00000 n +0000851240 00000 n +0000851396 00000 n +0000851552 00000 n +0000851707 00000 n +0000851862 00000 n +0000852018 00000 n +0000867806 00000 n +0000853638 00000 n +0000852360 00000 n +0000867742 00000 n +0000854531 00000 n +0000854686 00000 n +0000854843 00000 n +0000854999 00000 n +0000855155 00000 n +0000855312 00000 n +0000855469 00000 n +0000855626 00000 n +0000855782 00000 n +0000855938 00000 n +0000856092 00000 n +0000856247 00000 n +0000856402 00000 n +0000856558 00000 n +0000856713 00000 n +0000856868 00000 n +0000857023 00000 n +0000857179 00000 n +0000857335 00000 n +0000857491 00000 n +0000857646 00000 n +0000857802 00000 n +0000857956 00000 n +0000858112 00000 n +0000858264 00000 n +0000858420 00000 n +0000858576 00000 n +0000858732 00000 n +0000858887 00000 n +0000859043 00000 n +0000859198 00000 n +0000859354 00000 n +0000859511 00000 n +0000859667 00000 n +0000859823 00000 n +0000859977 00000 n +0000860132 00000 n +0000860287 00000 n +0000860443 00000 n +0000860599 00000 n +0000860754 00000 n +0000860909 00000 n +0000861065 00000 n +0000861221 00000 n +0000861377 00000 n +0000861531 00000 n +0000861686 00000 n +0000861842 00000 n +0000861997 00000 n +0000862151 00000 n +0000862305 00000 n +0000862461 00000 n +0000862616 00000 n +0000862772 00000 n +0000862924 00000 n +0000863079 00000 n +0000863235 00000 n +0000863391 00000 n +0000863547 00000 n +0000863702 00000 n +0000863856 00000 n +0000864012 00000 n +0000864167 00000 n +0000864322 00000 n +0000864477 00000 n +0000864632 00000 n +0000864788 00000 n +0000864944 00000 n +0000865100 00000 n +0000865256 00000 n +0000865411 00000 n +0000865567 00000 n +0000865722 00000 n +0000865878 00000 n +0000866033 00000 n +0000866187 00000 n +0000866342 00000 n +0000866498 00000 n +0000866654 00000 n +0000866810 00000 n +0000866964 00000 n +0000867119 00000 n +0000867275 00000 n +0000867431 00000 n +0000867587 00000 n +0000881095 00000 n +0000869196 00000 n +0000867930 00000 n +0000881031 00000 n +0000869963 00000 n +0000870119 00000 n +0000870275 00000 n +0000870430 00000 n +0000870586 00000 n +0000870741 00000 n +0000870896 00000 n +0000871052 00000 n +0000871208 00000 n +0000871364 00000 n +0000871519 00000 n +0000871673 00000 n +0000871829 00000 n +0000871985 00000 n +0000872141 00000 n +0000872293 00000 n +0000872448 00000 n +0000872603 00000 n +0000872759 00000 n +0000872915 00000 n +0000873070 00000 n +0000873225 00000 n +0000873381 00000 n +0000873537 00000 n +0000873693 00000 n +0000873848 00000 n +0000874004 00000 n +0000874159 00000 n +0000874315 00000 n +0000874470 00000 n +0000874625 00000 n +0000874781 00000 n +0000874937 00000 n +0000875093 00000 n +0000875248 00000 n +0000875404 00000 n +0000875561 00000 n +0000875718 00000 n +0000875875 00000 n +0000876031 00000 n +0000876188 00000 n +0000876344 00000 n +0000876501 00000 n +0000876657 00000 n +0000876813 00000 n +0000876970 00000 n +0000877127 00000 n +0000877283 00000 n +0000877439 00000 n +0000877594 00000 n +0000877750 00000 n +0000877906 00000 n +0000878062 00000 n +0000878219 00000 n +0000878376 00000 n +0000878533 00000 n +0000878690 00000 n +0000878846 00000 n +0000879002 00000 n +0000879158 00000 n +0000879313 00000 n +0000879468 00000 n +0000879624 00000 n +0000879780 00000 n +0000879937 00000 n +0000880093 00000 n +0000880250 00000 n +0000880407 00000 n +0000880564 00000 n +0000880720 00000 n +0000880875 00000 n +0001207595 00000 n +0000894880 00000 n +0000882486 00000 n +0000881219 00000 n +0000894816 00000 n +0000883280 00000 n +0000883436 00000 n +0000883593 00000 n +0000883749 00000 n +0000883906 00000 n +0000884063 00000 n +0000884220 00000 n +0000884377 00000 n +0000884532 00000 n +0000884688 00000 n +0000884843 00000 n +0000884999 00000 n +0000885155 00000 n +0000885311 00000 n +0000885465 00000 n +0000885621 00000 n +0000885777 00000 n +0000885933 00000 n +0000886089 00000 n +0000886244 00000 n +0000886399 00000 n +0000886555 00000 n +0000886711 00000 n +0000886867 00000 n +0000887024 00000 n +0000887180 00000 n +0000887335 00000 n +0000887491 00000 n +0000887646 00000 n +0000887802 00000 n +0000887957 00000 n +0000888113 00000 n +0000888268 00000 n +0000888424 00000 n +0000888579 00000 n +0000888734 00000 n +0000888891 00000 n +0000889047 00000 n +0000889204 00000 n +0000889359 00000 n +0000889515 00000 n +0000889671 00000 n +0000889828 00000 n +0000889983 00000 n +0000890138 00000 n +0000890295 00000 n +0000890452 00000 n +0000890608 00000 n +0000890763 00000 n +0000890919 00000 n +0000891075 00000 n +0000891230 00000 n +0000891385 00000 n +0000891541 00000 n +0000891697 00000 n +0000891853 00000 n +0000892008 00000 n +0000892163 00000 n +0000892318 00000 n +0000892474 00000 n +0000892629 00000 n +0000892783 00000 n +0000892938 00000 n +0000893094 00000 n +0000893251 00000 n +0000893408 00000 n +0000893564 00000 n +0000893721 00000 n +0000893877 00000 n +0000894034 00000 n +0000894191 00000 n +0000894347 00000 n +0000894503 00000 n +0000894659 00000 n +0000910604 00000 n +0000896258 00000 n +0000895004 00000 n +0000910540 00000 n +0000897160 00000 n +0000897316 00000 n +0000897473 00000 n +0000897630 00000 n +0000897785 00000 n +0000897941 00000 n +0000898097 00000 n +0000898253 00000 n +0000898408 00000 n +0000898563 00000 n +0000898719 00000 n +0000898875 00000 n +0000899031 00000 n +0000899186 00000 n +0000899340 00000 n +0000899496 00000 n +0000899652 00000 n +0000899808 00000 n +0000899963 00000 n +0000900118 00000 n +0000900274 00000 n +0000900430 00000 n +0000900586 00000 n +0000900741 00000 n +0000900897 00000 n +0000901053 00000 n +0000901209 00000 n +0000901365 00000 n +0000901520 00000 n +0000901676 00000 n +0000901830 00000 n +0000901985 00000 n +0000902140 00000 n +0000902295 00000 n +0000902450 00000 n +0000902606 00000 n +0000902762 00000 n +0000902918 00000 n +0000903073 00000 n +0000903228 00000 n +0000903384 00000 n +0000903540 00000 n +0000903696 00000 n +0000903851 00000 n +0000904006 00000 n +0000904162 00000 n +0000904318 00000 n +0000904474 00000 n +0000904629 00000 n +0000904785 00000 n +0000904941 00000 n +0000905097 00000 n +0000905252 00000 n +0000905405 00000 n +0000905561 00000 n +0000905717 00000 n +0000905872 00000 n +0000906023 00000 n +0000906178 00000 n +0000906334 00000 n +0000906489 00000 n +0000906645 00000 n +0000906800 00000 n +0000906956 00000 n +0000907112 00000 n +0000907268 00000 n +0000907424 00000 n +0000907579 00000 n +0000907734 00000 n +0000907890 00000 n +0000908046 00000 n +0000908202 00000 n +0000908357 00000 n +0000908513 00000 n +0000908669 00000 n +0000908825 00000 n +0000908981 00000 n +0000909137 00000 n +0000909294 00000 n +0000909451 00000 n +0000909606 00000 n +0000909761 00000 n +0000909916 00000 n +0000910072 00000 n +0000910228 00000 n +0000910384 00000 n +0000925669 00000 n +0000911975 00000 n +0000910728 00000 n +0000925605 00000 n +0000912841 00000 n +0000912996 00000 n +0000913151 00000 n +0000913307 00000 n +0000913462 00000 n +0000913618 00000 n +0000913773 00000 n +0000913928 00000 n +0000914084 00000 n +0000914240 00000 n +0000914396 00000 n +0000914550 00000 n +0000914705 00000 n +0000914861 00000 n +0000915015 00000 n +0000915172 00000 n +0000915327 00000 n +0000915484 00000 n +0000915641 00000 n +0000915798 00000 n +0000915954 00000 n +0000916111 00000 n +0000916266 00000 n +0000916422 00000 n +0000916578 00000 n +0000916734 00000 n +0000916890 00000 n +0000917046 00000 n +0000917202 00000 n +0000917357 00000 n +0000917512 00000 n +0000917667 00000 n +0000917822 00000 n +0000917978 00000 n +0000918133 00000 n +0000918287 00000 n +0000918443 00000 n +0000918599 00000 n +0000918754 00000 n +0000918910 00000 n +0000919067 00000 n +0000919224 00000 n +0000919380 00000 n +0000919537 00000 n +0000919693 00000 n +0000919848 00000 n +0000920005 00000 n +0000920162 00000 n +0000920318 00000 n +0000920473 00000 n +0000920628 00000 n +0000920783 00000 n +0000920939 00000 n +0000921094 00000 n +0000921250 00000 n +0000921406 00000 n +0000921561 00000 n +0000921717 00000 n +0000921873 00000 n +0000922028 00000 n +0000922183 00000 n +0000922339 00000 n +0000922495 00000 n +0000922650 00000 n +0000922805 00000 n +0000922961 00000 n +0000923116 00000 n +0000923270 00000 n +0000923426 00000 n +0000923582 00000 n +0000923737 00000 n +0000923893 00000 n +0000924049 00000 n +0000924204 00000 n +0000924360 00000 n +0000924517 00000 n +0000924674 00000 n +0000924830 00000 n +0000924986 00000 n +0000925140 00000 n +0000925294 00000 n +0000925449 00000 n +0000940963 00000 n +0000927080 00000 n +0000925793 00000 n +0000940899 00000 n +0000927955 00000 n +0000928111 00000 n +0000928267 00000 n +0000928422 00000 n +0000928578 00000 n +0000928733 00000 n +0000928889 00000 n +0000929044 00000 n +0000929200 00000 n +0000929356 00000 n +0000929512 00000 n +0000929668 00000 n +0000929824 00000 n +0000929981 00000 n +0000930136 00000 n +0000930292 00000 n +0000930447 00000 n +0000930603 00000 n +0000930759 00000 n +0000930915 00000 n +0000931071 00000 n +0000931227 00000 n +0000931383 00000 n +0000931538 00000 n +0000931694 00000 n +0000931850 00000 n +0000932006 00000 n +0000932162 00000 n +0000932317 00000 n +0000932473 00000 n +0000932628 00000 n +0000932784 00000 n +0000932939 00000 n +0000933094 00000 n +0000933250 00000 n +0000933406 00000 n +0000933561 00000 n +0000933717 00000 n +0000933872 00000 n +0000934027 00000 n +0000934182 00000 n +0000934336 00000 n +0000934492 00000 n +0000934647 00000 n +0000934803 00000 n +0000934959 00000 n +0000935115 00000 n +0000935271 00000 n +0000935426 00000 n +0000935582 00000 n +0000935738 00000 n +0000935894 00000 n +0000936048 00000 n +0000936205 00000 n +0000936361 00000 n +0000936517 00000 n +0000936674 00000 n +0000936831 00000 n +0000936988 00000 n +0000937144 00000 n +0000937299 00000 n +0000937456 00000 n +0000937612 00000 n +0000937768 00000 n +0000937925 00000 n +0000938082 00000 n +0000938239 00000 n +0000938395 00000 n +0000938551 00000 n +0000938707 00000 n +0000938863 00000 n +0000939020 00000 n +0000939177 00000 n +0000939333 00000 n +0000939489 00000 n +0000939646 00000 n +0000939803 00000 n +0000939960 00000 n +0000940116 00000 n +0000940272 00000 n +0000940429 00000 n +0000940586 00000 n +0000940743 00000 n +0000955879 00000 n +0000942292 00000 n +0000941087 00000 n +0000955815 00000 n +0000943149 00000 n +0000943306 00000 n +0000943463 00000 n +0000943620 00000 n +0000943776 00000 n +0000943933 00000 n +0000944090 00000 n +0000944247 00000 n +0000944403 00000 n +0000944560 00000 n +0000944717 00000 n +0000944874 00000 n +0000945031 00000 n +0000945187 00000 n +0000945344 00000 n +0000945500 00000 n +0000945657 00000 n +0000945810 00000 n +0000945967 00000 n +0000946124 00000 n +0000946281 00000 n +0000946438 00000 n +0000946595 00000 n +0000946751 00000 n +0000946908 00000 n +0000947065 00000 n +0000947221 00000 n +0000947378 00000 n +0000947535 00000 n +0000947691 00000 n +0000947846 00000 n +0000948003 00000 n +0000948159 00000 n +0000948316 00000 n +0000948473 00000 n +0000948630 00000 n +0000948787 00000 n +0000948943 00000 n +0000949100 00000 n +0000949257 00000 n +0000949414 00000 n +0000949569 00000 n +0000949725 00000 n +0000949880 00000 n +0000950036 00000 n +0000950192 00000 n +0000950349 00000 n +0000950505 00000 n +0000950661 00000 n +0000950818 00000 n +0000950973 00000 n +0000951130 00000 n +0000951286 00000 n +0000951442 00000 n +0000951598 00000 n +0000951755 00000 n +0000951912 00000 n +0000952068 00000 n +0000952223 00000 n +0000952379 00000 n +0000952536 00000 n +0000952693 00000 n +0000952849 00000 n +0000953004 00000 n +0000953161 00000 n +0000953318 00000 n +0000953475 00000 n +0000953631 00000 n +0000953787 00000 n +0000953943 00000 n +0000954099 00000 n +0000954256 00000 n +0000954412 00000 n +0000954568 00000 n +0000954723 00000 n +0000954879 00000 n +0000955035 00000 n +0000955191 00000 n +0000955348 00000 n +0000955503 00000 n +0000955659 00000 n +0000968688 00000 n +0000957283 00000 n +0000956003 00000 n +0000968624 00000 n +0000958023 00000 n +0000958178 00000 n +0000958333 00000 n +0000958489 00000 n +0000958645 00000 n +0000958800 00000 n +0000958955 00000 n +0000959111 00000 n +0000959267 00000 n +0000959423 00000 n +0000959578 00000 n +0000959733 00000 n +0000959888 00000 n +0000960044 00000 n +0000960200 00000 n +0000960357 00000 n +0000960514 00000 n +0000960669 00000 n +0000960826 00000 n +0000960982 00000 n +0000961138 00000 n +0000961294 00000 n +0000961450 00000 n +0000961606 00000 n +0000961762 00000 n +0000961918 00000 n +0000962074 00000 n +0000962230 00000 n +0000962385 00000 n +0000962540 00000 n +0000962695 00000 n +0000962851 00000 n +0000963007 00000 n +0000963163 00000 n +0000963318 00000 n +0000963474 00000 n +0000963631 00000 n +0000963787 00000 n +0000963942 00000 n +0000964099 00000 n +0000964255 00000 n +0000964411 00000 n +0000964567 00000 n +0000964723 00000 n +0000964879 00000 n +0000965034 00000 n +0000965190 00000 n +0000965346 00000 n +0000965502 00000 n +0000965658 00000 n +0000965814 00000 n +0000965970 00000 n +0000966126 00000 n +0000966282 00000 n +0000966438 00000 n +0000966593 00000 n +0000966750 00000 n +0000966906 00000 n +0000967063 00000 n +0000967218 00000 n +0000967375 00000 n +0000967532 00000 n +0000967689 00000 n +0000967846 00000 n +0000968002 00000 n +0000968158 00000 n +0000968313 00000 n +0000968469 00000 n +0001207720 00000 n +0000979152 00000 n +0000970061 00000 n +0000968799 00000 n +0000979088 00000 n +0000970675 00000 n +0000970831 00000 n +0000970988 00000 n +0000971144 00000 n +0000971297 00000 n +0000971453 00000 n +0000971609 00000 n +0000971765 00000 n +0000971920 00000 n +0000972075 00000 n +0000972230 00000 n +0000972386 00000 n +0000972542 00000 n +0000972698 00000 n +0000972854 00000 n +0000973010 00000 n +0000973166 00000 n +0000973321 00000 n +0000973477 00000 n +0000973634 00000 n +0000973790 00000 n +0000973945 00000 n +0000974098 00000 n +0000974252 00000 n +0000974408 00000 n +0000974565 00000 n +0000974722 00000 n +0000974877 00000 n +0000975032 00000 n +0000975186 00000 n +0000975342 00000 n +0000975497 00000 n +0000975653 00000 n +0000975810 00000 n +0000975966 00000 n +0000976122 00000 n +0000976278 00000 n +0000976434 00000 n +0000976590 00000 n +0000976746 00000 n +0000976902 00000 n +0000977059 00000 n +0000977216 00000 n +0000977372 00000 n +0000977529 00000 n +0000977685 00000 n +0000977841 00000 n +0000977997 00000 n +0000978153 00000 n +0000978308 00000 n +0000978465 00000 n +0000978620 00000 n +0000978776 00000 n +0000978932 00000 n +0000993815 00000 n +0000980566 00000 n +0000979263 00000 n +0000993751 00000 n +0000981405 00000 n +0000981559 00000 n +0000981714 00000 n +0000981870 00000 n +0000982025 00000 n +0000982181 00000 n +0000982337 00000 n +0000982493 00000 n +0000982648 00000 n +0000982803 00000 n +0000982958 00000 n +0000983114 00000 n +0000983270 00000 n +0000983426 00000 n +0000983582 00000 n +0000983739 00000 n +0000983896 00000 n +0000984051 00000 n +0000984207 00000 n +0000984364 00000 n +0000984521 00000 n +0000984678 00000 n +0000984834 00000 n +0000984991 00000 n +0000985147 00000 n +0000985304 00000 n +0000985460 00000 n +0000985615 00000 n +0000985772 00000 n +0000985929 00000 n +0000986085 00000 n +0000986242 00000 n +0000986399 00000 n +0000986555 00000 n +0000986711 00000 n +0000986866 00000 n +0000987022 00000 n +0000987179 00000 n +0000987336 00000 n +0000987492 00000 n +0000987649 00000 n +0000987806 00000 n +0000987963 00000 n +0000988117 00000 n +0000988273 00000 n +0000988430 00000 n +0000988587 00000 n +0000988744 00000 n +0000988900 00000 n +0000989055 00000 n +0000989212 00000 n +0000989368 00000 n +0000989525 00000 n +0000989681 00000 n +0000989838 00000 n +0000989995 00000 n +0000990151 00000 n +0000990308 00000 n +0000990465 00000 n +0000990622 00000 n +0000990779 00000 n +0000990936 00000 n +0000991093 00000 n +0000991250 00000 n +0000991407 00000 n +0000991564 00000 n +0000991721 00000 n +0000991878 00000 n +0000992034 00000 n +0000992191 00000 n +0000992347 00000 n +0000992503 00000 n +0000992659 00000 n +0000992816 00000 n +0000992973 00000 n +0000993130 00000 n +0000993286 00000 n +0000993441 00000 n +0000993596 00000 n +0001007742 00000 n +0000995325 00000 n +0000993939 00000 n +0001007678 00000 n +0000996119 00000 n +0000996275 00000 n +0000996432 00000 n +0000996587 00000 n +0000996742 00000 n +0000996897 00000 n +0000997053 00000 n +0000997210 00000 n +0000997367 00000 n +0000997524 00000 n +0000997680 00000 n +0000997835 00000 n +0000997992 00000 n +0000998148 00000 n +0000998305 00000 n +0000998461 00000 n +0000998618 00000 n +0000998774 00000 n +0000998931 00000 n +0000999088 00000 n +0000999245 00000 n +0000999401 00000 n +0000999558 00000 n +0000999715 00000 n +0000999872 00000 n +0001000028 00000 n +0001000183 00000 n +0001000340 00000 n +0001000496 00000 n +0001000652 00000 n +0001000808 00000 n +0001000964 00000 n +0001001120 00000 n +0001001276 00000 n +0001001433 00000 n +0001001590 00000 n +0001001747 00000 n +0001001903 00000 n +0001002059 00000 n +0001002215 00000 n +0001002371 00000 n +0001002527 00000 n +0001002684 00000 n +0001002840 00000 n +0001002997 00000 n +0001003154 00000 n +0001003310 00000 n +0001003464 00000 n +0001003620 00000 n +0001003776 00000 n +0001003932 00000 n +0001004084 00000 n +0001004240 00000 n +0001004395 00000 n +0001004551 00000 n +0001004706 00000 n +0001004863 00000 n +0001005020 00000 n +0001005176 00000 n +0001005331 00000 n +0001005488 00000 n +0001005645 00000 n +0001005801 00000 n +0001005958 00000 n +0001006115 00000 n +0001006270 00000 n +0001006427 00000 n +0001006584 00000 n +0001006741 00000 n +0001006897 00000 n +0001007052 00000 n +0001007209 00000 n +0001007366 00000 n +0001007522 00000 n +0001024972 00000 n +0001009257 00000 n +0001007866 00000 n +0001024908 00000 n +0001010231 00000 n +0001010388 00000 n +0001010545 00000 n +0001010701 00000 n +0001010858 00000 n +0001011015 00000 n +0001011172 00000 n +0001011328 00000 n +0001011485 00000 n +0001011642 00000 n +0001011799 00000 n +0001011956 00000 n +0001012112 00000 n +0001012269 00000 n +0001012426 00000 n +0001012582 00000 n +0001012738 00000 n +0001012894 00000 n +0001013051 00000 n +0001013208 00000 n +0001013365 00000 n +0001013522 00000 n +0001013678 00000 n +0001013835 00000 n +0001013992 00000 n +0001014149 00000 n +0001014306 00000 n +0001014462 00000 n +0001014618 00000 n +0001014774 00000 n +0001014929 00000 n +0001015085 00000 n +0001015240 00000 n +0001015396 00000 n +0001015550 00000 n +0001015705 00000 n +0001015860 00000 n +0001016016 00000 n +0001016172 00000 n +0001016328 00000 n +0001016484 00000 n +0001016639 00000 n +0001016795 00000 n +0001016950 00000 n +0001017106 00000 n +0001017261 00000 n +0001017417 00000 n +0001017573 00000 n +0001017728 00000 n +0001017883 00000 n +0001018038 00000 n +0001018194 00000 n +0001018349 00000 n +0001018505 00000 n +0001018660 00000 n +0001018816 00000 n +0001018972 00000 n +0001019128 00000 n +0001019283 00000 n +0001019439 00000 n +0001019594 00000 n +0001019750 00000 n +0001019905 00000 n +0001020061 00000 n +0001020217 00000 n +0001020373 00000 n +0001020529 00000 n +0001020684 00000 n +0001020840 00000 n +0001020997 00000 n +0001021153 00000 n +0001021310 00000 n +0001021467 00000 n +0001021624 00000 n +0001021781 00000 n +0001021937 00000 n +0001022094 00000 n +0001022250 00000 n +0001022407 00000 n +0001022563 00000 n +0001022720 00000 n +0001022875 00000 n +0001023032 00000 n +0001023188 00000 n +0001023345 00000 n +0001023502 00000 n +0001023658 00000 n +0001023813 00000 n +0001023970 00000 n +0001024127 00000 n +0001024283 00000 n +0001024439 00000 n +0001024595 00000 n +0001024752 00000 n +0001040285 00000 n +0001026367 00000 n +0001025096 00000 n +0001040221 00000 n +0001027242 00000 n +0001027399 00000 n +0001027556 00000 n +0001027712 00000 n +0001027868 00000 n +0001028024 00000 n +0001028181 00000 n +0001028337 00000 n +0001028494 00000 n +0001028649 00000 n +0001028806 00000 n +0001028963 00000 n +0001029120 00000 n +0001029273 00000 n +0001029430 00000 n +0001029586 00000 n +0001029743 00000 n +0001029899 00000 n +0001030055 00000 n +0001030212 00000 n +0001030368 00000 n +0001030525 00000 n +0001030681 00000 n +0001030837 00000 n +0001030994 00000 n +0001031151 00000 n +0001031307 00000 n +0001031462 00000 n +0001031619 00000 n +0001031776 00000 n +0001031932 00000 n +0001032087 00000 n +0001032243 00000 n +0001032400 00000 n +0001032557 00000 n +0001032714 00000 n +0001032869 00000 n +0001033025 00000 n +0001033182 00000 n +0001033338 00000 n +0001033495 00000 n +0001033652 00000 n +0001033808 00000 n +0001033964 00000 n +0001034120 00000 n +0001034276 00000 n +0001034432 00000 n +0001034589 00000 n +0001034746 00000 n +0001034902 00000 n +0001035059 00000 n +0001035215 00000 n +0001035372 00000 n +0001035527 00000 n +0001035684 00000 n +0001035841 00000 n +0001035998 00000 n +0001036155 00000 n +0001036311 00000 n +0001036466 00000 n +0001036623 00000 n +0001036780 00000 n +0001036937 00000 n +0001037094 00000 n +0001037251 00000 n +0001037406 00000 n +0001037562 00000 n +0001037718 00000 n +0001037873 00000 n +0001038030 00000 n +0001038187 00000 n +0001038343 00000 n +0001038500 00000 n +0001038657 00000 n +0001038814 00000 n +0001038971 00000 n +0001039127 00000 n +0001039284 00000 n +0001039440 00000 n +0001039596 00000 n +0001039751 00000 n +0001039908 00000 n +0001040065 00000 n +0001043574 00000 n +0001041069 00000 n +0001040409 00000 n +0001043510 00000 n +0001041323 00000 n +0001041480 00000 n +0001041637 00000 n +0001041793 00000 n +0001041949 00000 n +0001042106 00000 n +0001042263 00000 n +0001042419 00000 n +0001042576 00000 n +0001042733 00000 n +0001042889 00000 n +0001043044 00000 n +0001043199 00000 n +0001043354 00000 n +0001207845 00000 n +0001058369 00000 n +0001058030 00000 n +0001073960 00000 n +0001073591 00000 n +0001086865 00000 n +0001086528 00000 n +0001104924 00000 n +0001104532 00000 n +0001108313 00000 n +0001108062 00000 n +0001110783 00000 n +0001110752 00000 n +0001123846 00000 n +0001123523 00000 n +0001126476 00000 n +0001126450 00000 n +0001133866 00000 n +0001133616 00000 n +0001152250 00000 n +0001151836 00000 n +0001168885 00000 n +0001168484 00000 n +0001182520 00000 n +0001182187 00000 n +0001184981 00000 n +0001184759 00000 n +0001195476 00000 n +0001195135 00000 n +0001202786 00000 n +0001202551 00000 n +0001207925 00000 n +0001208047 00000 n +0001208173 00000 n +0001208299 00000 n +0001208425 00000 n +0001208551 00000 n +0001208677 00000 n +0001208776 00000 n +0001208903 00000 n +0001208984 00000 n +0001209058 00000 n +0001219291 00000 n +0001258074 00000 n +0001258115 00000 n +0001258155 00000 n +0001258336 00000 n +trailer +<< +/Size 5717 +/Root 5715 0 R +/Info 5716 0 R +>> +startxref +1258542 +%%EOF