From duraid at octopus.com.au Mon May 2 01:41:24 2005 From: duraid at octopus.com.au (Duraid Madina) Date: Mon, 2 May 2005 01:41:24 -0500 Subject: [llvm-commits] CVS: llvm/lib/Target/IA64/IA64ISelPattern.cpp Message-ID: <200505020641.BAA08979@zion.cs.uiuc.edu> Changes in directory llvm/lib/Target/IA64: IA64ISelPattern.cpp updated: 1.32 -> 1.33 --- Log message: add support for bools to SELECT, this fixes Prolangs-C/bison from the testsuite, however 09-vor is still dead (hopefully for other reasons!) --- Diffs of the changes: (+35 -6) IA64ISelPattern.cpp | 41 +++++++++++++++++++++++++++++++++++------ 1 files changed, 35 insertions(+), 6 deletions(-) Index: llvm/lib/Target/IA64/IA64ISelPattern.cpp diff -u llvm/lib/Target/IA64/IA64ISelPattern.cpp:1.32 llvm/lib/Target/IA64/IA64ISelPattern.cpp:1.33 --- llvm/lib/Target/IA64/IA64ISelPattern.cpp:1.32 Fri Apr 29 23:26:05 2005 +++ llvm/lib/Target/IA64/IA64ISelPattern.cpp Mon May 2 01:41:13 2005 @@ -1054,19 +1054,48 @@ switch (N.getOperand(1).getValueType()) { default: assert(0 && - "ISD::SELECT: 'select'ing something other than i64 or f64!\n"); + "ISD::SELECT: 'select'ing something other than i1, i64 or f64!\n"); + // for i1, we load the condition into an integer register, then + // conditionally copy Tmp2 and Tmp3 to Tmp1 in parallel (only one + // of them will go through, since the integer register will hold + // either 0 or 1) + case MVT::i1: { + bogoResult=MakeReg(MVT::i1); + + // load the condition into an integer register + unsigned condReg=MakeReg(MVT::i64); + unsigned dummy=MakeReg(MVT::i64); + BuildMI(BB, IA64::MOV, 1, dummy).addReg(IA64::r0); + BuildMI(BB, IA64::TPCADDIMM22, 2, condReg).addReg(dummy) + .addImm(1).addReg(Tmp1); + + // initialize Result (bool) to false (hence UNC) and if + // the select condition (condReg) is false (0), copy Tmp3 + BuildMI(BB, IA64::PCMPEQUNC, 3, bogoResult) + .addReg(condReg).addReg(IA64::r0).addReg(Tmp3); + + // now, if the selection condition is true, write 1 to the + // result if Tmp2 is 1 + BuildMI(BB, IA64::TPCMPNE, 3, Result).addReg(bogoResult) + .addReg(condReg).addReg(IA64::r0).addReg(Tmp2); + break; + } + // for i64/f64, we just copy Tmp3 and then conditionally overwrite it + // with Tmp2 if Tmp1 is true case MVT::i64: bogoResult=MakeReg(MVT::i64); + BuildMI(BB, IA64::MOV, 1, bogoResult).addReg(Tmp3); + BuildMI(BB, IA64::CMOV, 2, Result).addReg(bogoResult).addReg(Tmp2) + .addReg(Tmp1); break; case MVT::f64: bogoResult=MakeReg(MVT::f64); + BuildMI(BB, IA64::FMOV, 1, bogoResult).addReg(Tmp3); + BuildMI(BB, IA64::CFMOV, 2, Result).addReg(bogoResult).addReg(Tmp2) + .addReg(Tmp1); break; } - - BuildMI(BB, IA64::MOV, 1, bogoResult).addReg(Tmp3); - BuildMI(BB, IA64::CMOV, 2, Result).addReg(bogoResult).addReg(Tmp2) - .addReg(Tmp1); // FIXME: should be FMOV/FCMOV sometimes, - // though this will work for now (no JIT) + return Result; } From duraid at octopus.com.au Mon May 2 02:27:25 2005 From: duraid at octopus.com.au (Duraid Madina) Date: Mon, 2 May 2005 02:27:25 -0500 Subject: [llvm-commits] CVS: llvm/lib/Target/IA64/IA64ISelPattern.cpp Message-ID: <200505020727.CAA09299@zion.cs.uiuc.edu> Changes in directory llvm/lib/Target/IA64: IA64ISelPattern.cpp updated: 1.33 -> 1.34 --- Log message: support multiplication by constant negative integers this constmul code is still buggy though, so beware. mul by 7427 is currently broken, for example. will fix it when I get a moment :) --- Diffs of the changes: (+13 -4) IA64ISelPattern.cpp | 17 +++++++++++++---- 1 files changed, 13 insertions(+), 4 deletions(-) Index: llvm/lib/Target/IA64/IA64ISelPattern.cpp diff -u llvm/lib/Target/IA64/IA64ISelPattern.cpp:1.33 llvm/lib/Target/IA64/IA64ISelPattern.cpp:1.34 --- llvm/lib/Target/IA64/IA64ISelPattern.cpp:1.33 Mon May 2 01:41:13 2005 +++ llvm/lib/Target/IA64/IA64ISelPattern.cpp Mon May 2 02:27:14 2005 @@ -784,7 +784,7 @@ bool flippedSign; unsigned preliminaryShift=0; - assert(constant > 0 && "erk, don't multiply by zero or negative nums\n"); + assert(constant != 0 && "erk, you're trying to multiply by constant zero\n"); // first, we make the constant to multiply by positive if(constant<0) { @@ -832,15 +832,24 @@ } // don't forget flippedSign and preliminaryShift! - SDOperand finalresult; + SDOperand shiftedresult; if(preliminaryShift) { SDOperand finalshift = ISelDAG->getConstant(preliminaryShift, MVT::i64); - finalresult = ISelDAG->getNode(ISD::SHL, MVT::i64, + shiftedresult = ISelDAG->getNode(ISD::SHL, MVT::i64, results[ops.size()-1], finalshift); } else { // there was no preliminary divide-by-power-of-2 required - finalresult = results[ops.size()-1]; + shiftedresult = results[ops.size()-1]; } + SDOperand finalresult; + if(flippedSign) { // if we were multiplying by a negative constant: + SDOperand zero = ISelDAG->getConstant(0, MVT::i64); + // subtract the result from 0 to flip its sign + finalresult = ISelDAG->getNode(ISD::SUB, MVT::i64, zero, shiftedresult); + } else { // there was no preliminary multiply by -1 required + finalresult = shiftedresult; + } + return finalresult; } From criswell at cs.uiuc.edu Mon May 2 09:47:59 2005 From: criswell at cs.uiuc.edu (John Criswell) Date: Mon, 2 May 2005 09:47:59 -0500 Subject: [llvm-commits] CVS: llvm/lib/Transforms/Scalar/LowerInvoke.cpp Message-ID: <200505021447.JAA04964@choi.cs.uiuc.edu> Changes in directory llvm/lib/Transforms/Scalar: LowerInvoke.cpp updated: 1.21 -> 1.22 --- Log message: Fixed a comment. --- Diffs of the changes: (+3 -3) LowerInvoke.cpp | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) Index: llvm/lib/Transforms/Scalar/LowerInvoke.cpp diff -u llvm/lib/Transforms/Scalar/LowerInvoke.cpp:1.21 llvm/lib/Transforms/Scalar/LowerInvoke.cpp:1.22 --- llvm/lib/Transforms/Scalar/LowerInvoke.cpp:1.21 Thu Apr 21 18:45:12 2005 +++ llvm/lib/Transforms/Scalar/LowerInvoke.cpp Mon May 2 09:47:42 2005 @@ -18,9 +18,9 @@ // program will print a message then abort. // // 'Expensive' exception handling support gives the full exception handling -// support to the program at making the 'invoke' instruction really expensive. -// It basically inserts setjmp/longjmp calls to emulate the exception handling -// as necessary. +// support to the program at the cost of making the 'invoke' instruction +// really expensive. It basically inserts setjmp/longjmp calls to emulate the +// exception handling as necessary. // // Because the 'expensive' support slows down programs a lot, and EH is only // used for a subset of the programs, it must be specifically enabled by an From alenhar2 at cs.uiuc.edu Mon May 2 14:07:44 2005 From: alenhar2 at cs.uiuc.edu (Andrew Lenharth) Date: Mon, 2 May 2005 14:07:44 -0500 Subject: [llvm-commits] CVS: llvm/lib/AsmParser/Lexer.l llvmAsmParser.y Message-ID: <200505021907.j42J7iGC031832@apoc.cs.uiuc.edu> Changes in directory llvm/lib/AsmParser: Lexer.l updated: 1.58 -> 1.59 llvmAsmParser.y updated: 1.218 -> 1.219 --- Log message: Remove support for 1.0 style varargs amusing of course, because we will have to go back to those semantics soon --- Diffs of the changes: (+0 -87) Lexer.l | 1 llvmAsmParser.y | 86 -------------------------------------------------------- 2 files changed, 87 deletions(-) Index: llvm/lib/AsmParser/Lexer.l diff -u llvm/lib/AsmParser/Lexer.l:1.58 llvm/lib/AsmParser/Lexer.l:1.59 --- llvm/lib/AsmParser/Lexer.l:1.58 Sat Jan 8 14:03:59 2005 +++ llvm/lib/AsmParser/Lexer.l Mon May 2 14:07:27 2005 @@ -240,7 +240,6 @@ select { RET_TOK(OtherOpVal, Select, SELECT); } shl { RET_TOK(OtherOpVal, Shl, SHL); } shr { RET_TOK(OtherOpVal, Shr, SHR); } -va_arg { return VA_ARG; /* FIXME: OBSOLETE */} vanext { RET_TOK(OtherOpVal, VANext, VANEXT); } vaarg { RET_TOK(OtherOpVal, VAArg , VAARG); } Index: llvm/lib/AsmParser/llvmAsmParser.y diff -u llvm/lib/AsmParser/llvmAsmParser.y:1.218 llvm/lib/AsmParser/llvmAsmParser.y:1.219 --- llvm/lib/AsmParser/llvmAsmParser.y:1.218 Tue Mar 22 19:29:26 2005 +++ llvm/lib/AsmParser/llvmAsmParser.y Mon May 2 14:07:27 2005 @@ -732,7 +732,6 @@ llvmAsmin = F; CurFilename = Filename; llvmAsmlineno = 1; // Reset the current line number... - ObsoleteVarArgs = false; // Allocate a new module to read CurModule.CurrentModule = new Module(Filename); @@ -741,67 +740,6 @@ Module *Result = ParserResult; - // Check to see if they called va_start but not va_arg.. - if (!ObsoleteVarArgs) - if (Function *F = Result->getNamedFunction("llvm.va_start")) - if (F->arg_size() == 1) { - std::cerr << "WARNING: this file uses obsolete features. " - << "Assemble and disassemble to update it.\n"; - ObsoleteVarArgs = true; - } - - if (ObsoleteVarArgs) { - // If the user is making use of obsolete varargs intrinsics, adjust them for - // the user. - if (Function *F = Result->getNamedFunction("llvm.va_start")) { - assert(F->arg_size() == 1 && "Obsolete va_start takes 1 argument!"); - - const Type *RetTy = F->getFunctionType()->getParamType(0); - RetTy = cast(RetTy)->getElementType(); - Function *NF = Result->getOrInsertFunction("llvm.va_start", RetTy, 0); - - while (!F->use_empty()) { - CallInst *CI = cast(F->use_back()); - Value *V = new CallInst(NF, "", CI); - new StoreInst(V, CI->getOperand(1), CI); - CI->getParent()->getInstList().erase(CI); - } - Result->getFunctionList().erase(F); - } - - if (Function *F = Result->getNamedFunction("llvm.va_end")) { - assert(F->arg_size() == 1 && "Obsolete va_end takes 1 argument!"); - const Type *ArgTy = F->getFunctionType()->getParamType(0); - ArgTy = cast(ArgTy)->getElementType(); - Function *NF = Result->getOrInsertFunction("llvm.va_end", Type::VoidTy, - ArgTy, 0); - - while (!F->use_empty()) { - CallInst *CI = cast(F->use_back()); - Value *V = new LoadInst(CI->getOperand(1), "", CI); - new CallInst(NF, V, "", CI); - CI->getParent()->getInstList().erase(CI); - } - Result->getFunctionList().erase(F); - } - - if (Function *F = Result->getNamedFunction("llvm.va_copy")) { - assert(F->arg_size() == 2 && "Obsolete va_copy takes 2 argument!"); - const Type *ArgTy = F->getFunctionType()->getParamType(0); - ArgTy = cast(ArgTy)->getElementType(); - Function *NF = Result->getOrInsertFunction("llvm.va_copy", ArgTy, - ArgTy, 0); - - while (!F->use_empty()) { - CallInst *CI = cast(F->use_back()); - Value *V = new CallInst(NF, CI->getOperand(2), "", CI); - new StoreInst(V, CI->getOperand(1), CI); - CI->getParent()->getInstList().erase(CI); - } - Result->getFunctionList().erase(F); - } - } - llvmAsmin = stdin; // F is about to go away, don't use it anymore... ParserResult = 0; @@ -915,7 +853,6 @@ // Other Operators %type ShiftOps %token PHI_TOK CALL CAST SELECT SHL SHR VAARG VANEXT -%token VA_ARG // FIXME: OBSOLETE %start Module %% @@ -1986,29 +1923,6 @@ ThrowException("select value types should match!"); $$ = new SelectInst($2, $4, $6); } - | VA_ARG ResolvedVal ',' Types { - // FIXME: This is emulation code for an obsolete syntax. This should be - // removed at some point. - if (!ObsoleteVarArgs) { - std::cerr << "WARNING: this file uses obsolete features. " - << "Assemble and disassemble to update it.\n"; - ObsoleteVarArgs = true; - } - - // First, load the valist... - Instruction *CurVAList = new LoadInst($2, ""); - CurBB->getInstList().push_back(CurVAList); - - // Emit the vaarg instruction. - $$ = new VAArgInst(CurVAList, *$4); - - // Now we must advance the pointer and update it in memory. - Instruction *TheVANext = new VANextInst(CurVAList, *$4); - CurBB->getInstList().push_back(TheVANext); - - CurBB->getInstList().push_back(new StoreInst(TheVANext, $2)); - delete $4; - } | VAARG ResolvedVal ',' Types { $$ = new VAArgInst($2, *$4); delete $4; From alenhar2 at cs.uiuc.edu Mon May 2 16:26:04 2005 From: alenhar2 at cs.uiuc.edu (Andrew Lenharth) Date: Mon, 2 May 2005 16:26:04 -0500 Subject: [llvm-commits] CVS: llvm/lib/VMCore/ConstantFolding.cpp Message-ID: <200505022126.j42LQ4m2032440@apoc.cs.uiuc.edu> Changes in directory llvm/lib/VMCore: ConstantFolding.cpp updated: 1.74 -> 1.75 --- Log message: fold fp div by 0 to inf, the way gcc does. This is legal according to the FP spec --- Diffs of the changes: (+7 -0) ConstantFolding.cpp | 7 +++++++ 1 files changed, 7 insertions(+) Index: llvm/lib/VMCore/ConstantFolding.cpp diff -u llvm/lib/VMCore/ConstantFolding.cpp:1.74 llvm/lib/VMCore/ConstantFolding.cpp:1.75 --- llvm/lib/VMCore/ConstantFolding.cpp:1.74 Sun Apr 24 17:27:20 2005 +++ llvm/lib/VMCore/ConstantFolding.cpp Mon May 2 16:25:47 2005 @@ -470,6 +470,13 @@ (BuiltinType)V2->getValue()); return ConstantClass::get(*Ty, Result); } + static Constant *Div(const ConstantClass *V1, const ConstantClass *V2) { + if (V2->isExactlyValue(0.0)) return ConstantClass::get(*Ty, INFINITY); + if (V2->isExactlyValue(-0.0)) return ConstantClass::get(*Ty, -INFINITY); + if (V2->isNullValue()) return 0; + BuiltinType R = (BuiltinType)V1->getValue() / (BuiltinType)V2->getValue(); + return ConstantClass::get(*Ty, R); + } }; From reid at x10sys.com Mon May 2 18:07:25 2005 From: reid at x10sys.com (Reid Spencer) Date: Mon, 2 May 2005 18:07:25 -0500 Subject: [llvm-commits] CVS: llvm/test/Regression/Transforms/SimplifyLibCalls/FPrintF.ll Message-ID: <200505022307.SAA09558@zion.cs.uiuc.edu> Changes in directory llvm/test/Regression/Transforms/SimplifyLibCalls: FPrintF.ll added (r1.1) --- Log message: Add a test case for testing the FPrintFOptimization. --- Diffs of the changes: (+28 -0) FPrintF.ll | 28 ++++++++++++++++++++++++++++ 1 files changed, 28 insertions(+) Index: llvm/test/Regression/Transforms/SimplifyLibCalls/FPrintF.ll diff -c /dev/null llvm/test/Regression/Transforms/SimplifyLibCalls/FPrintF.ll:1.1 *** /dev/null Mon May 2 18:07:24 2005 --- llvm/test/Regression/Transforms/SimplifyLibCalls/FPrintF.ll Mon May 2 18:07:14 2005 *************** *** 0 **** --- 1,28 ---- + ; Test that the FPrintFOptimizer works correctly + ; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | not grep 'call.*fprintf' + ; + + %struct._IO_FILE = type { int, sbyte*, sbyte*, sbyte*, sbyte*, sbyte*, sbyte*, sbyte*, sbyte*, sbyte*, sbyte*, sbyte*, %struct._IO_marker*, %struct._IO_FILE*, int, int, int, ushort, sbyte, [1 x sbyte], sbyte*, long, sbyte*, sbyte*, int, [52 x sbyte] } + %struct._IO_marker = type { %struct._IO_marker*, %struct._IO_FILE*, int } + + %str = constant [3 x sbyte] c"%s\00" + %chr = constant [3 x sbyte] c"%c\00" + %hello = constant [13 x sbyte] c"hello world\0A\00" + %stdout = external global %struct._IO_FILE* + + declare int %fprintf(%struct._IO_FILE*, sbyte*, ...) + + implementation + + int %foo() + { + entry: + %tmp.1 = load %struct._IO_FILE** %stdout + %tmp.0 = call int (%struct._IO_FILE*, sbyte*, ...)* %fprintf( %struct._IO_FILE* %tmp.1, sbyte* getelementptr ([13 x sbyte]* %hello, int 0, int 0) ) + %tmp.4 = load %struct._IO_FILE** %stdout + %tmp.3 = call int (%struct._IO_FILE*, sbyte*, ...)* %fprintf( %struct._IO_FILE* %tmp.4, sbyte* getelementptr ([3 x sbyte]* %str, int 0, int 0), sbyte* getelementptr ([13 x sbyte]* %hello, int 0, int 0) ) + %tmp.8 = load %struct._IO_FILE** %stdout + %tmp.7 = call int (%struct._IO_FILE*, sbyte*, ...)* %fprintf( %struct._IO_FILE* %tmp.8, sbyte* getelementptr ([3 x sbyte]* %chr, int 0, int 0), int 33 ) + ret int 0 + } + From reid at x10sys.com Mon May 2 18:59:37 2005 From: reid at x10sys.com (Reid Spencer) Date: Mon, 2 May 2005 18:59:37 -0500 Subject: [llvm-commits] CVS: llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp Message-ID: <200505022359.SAA09818@zion.cs.uiuc.edu> Changes in directory llvm/lib/Transforms/IPO: SimplifyLibCalls.cpp updated: 1.25 -> 1.26 --- Log message: Implement the fprintf optimization which converts calls like this: fprintf(F,"hello") -> fwrite("hello",strlen("hello"),1,F) fprintf(F,"%s","hello") -> fwrite("hello",strlen("hello"),1,F) fprintf(F,"%c",'x') -> fputc('c',F) This optimization fires severals times in llvm-test: 313 MultiSource/Applications/Burg 302 MultiSource/Benchmarks/Prolangs-C/TimberWolfMC 189 MultiSource/Benchmarks/Prolangs-C/mybison 175 MultiSource/Benchmarks/Prolangs-C/football 130 MultiSource/Benchmarks/Prolangs-C/unix-tbl --- Diffs of the changes: (+126 -7) SimplifyLibCalls.cpp | 133 ++++++++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 126 insertions(+), 7 deletions(-) Index: llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp diff -u llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp:1.25 llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp:1.26 --- llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp:1.25 Sat Apr 30 01:45:47 2005 +++ llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp Mon May 2 18:59:26 2005 @@ -858,6 +858,132 @@ } } PowOptimizer; +/// This LibCallOptimization will simplify calls to the "fprintf" library +/// function. It looks for cases where the result of fprintf is not used and the +/// operation can be reduced to something simpler. +/// @brief Simplify the pow library function. +struct FPrintFOptimization : public LibCallOptimization +{ +public: + /// @brief Default Constructor + FPrintFOptimization() : LibCallOptimization("fprintf") {} + + /// @brief Destructor + virtual ~FPrintFOptimization() {} + + /// @brief Make sure that the "fprintf" function has the right prototype + virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC) + { + // Just make sure this has at least 2 arguments + return (f->arg_size() >= 2); + } + + /// @brief Perform the fprintf optimization. + virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) + { + // If the call has more than 3 operands, we can't optimize it + if (ci->getNumOperands() > 4 || ci->getNumOperands() <= 2) + return false; + + // If the result of the fprintf call is used, none of these optimizations + // can be made. + if (!ci->hasNUses(0)) + return false; + + // All the optimizations depend on the length of the second argument and the + // fact that it is a constant string array. Check that now + uint64_t len = 0; + ConstantArray* CA = 0; + if (!getConstantStringLength(ci->getOperand(2), len, &CA)) + return false; + + if (ci->getNumOperands() == 3) + { + // Make sure there's no % in the constant array + for (unsigned i = 0; i < len; ++i) + { + if (ConstantInt* CI = dyn_cast(CA->getOperand(i))) + { + // Check for the null terminator + if (CI->getRawValue() == '%') + return false; // we found end of string + } + else + return false; + } + + // fprintf(file,fmt) -> fwrite(fmt,strlen(fmt),1file) + const Type* FILEptr_type = ci->getOperand(1)->getType(); + Function* fwrite_func = SLC.get_fwrite(FILEptr_type); + if (!fwrite_func) + return false; + std::vector args; + args.push_back(ci->getOperand(2)); + args.push_back(ConstantUInt::get(SLC.getIntPtrType(),len)); + args.push_back(ConstantUInt::get(SLC.getIntPtrType(),1)); + args.push_back(ci->getOperand(1)); + new CallInst(fwrite_func,args,"",ci); + ci->eraseFromParent(); + return true; + } + + // The remaining optimizations require the format string to be length 2 + // "%s" or "%c". + if (len != 2) + return false; + + // The first character has to be a % + if (ConstantInt* CI = dyn_cast(CA->getOperand(0))) + if (CI->getRawValue() != '%') + return false; + + // Get the second character and switch on its value + ConstantInt* CI = dyn_cast(CA->getOperand(1)); + switch (CI->getRawValue()) + { + case 's': + { + uint64_t len = 0; + ConstantArray* CA = 0; + if (!getConstantStringLength(ci->getOperand(3), len, &CA)) + return false; + + // fprintf(file,fmt) -> fwrite(fmt,strlen(fmt),1,file) + const Type* FILEptr_type = ci->getOperand(1)->getType(); + Function* fwrite_func = SLC.get_fwrite(FILEptr_type); + if (!fwrite_func) + return false; + std::vector args; + args.push_back(ci->getOperand(3)); + args.push_back(ConstantUInt::get(SLC.getIntPtrType(),len)); + args.push_back(ConstantUInt::get(SLC.getIntPtrType(),1)); + args.push_back(ci->getOperand(1)); + new CallInst(fwrite_func,args,"",ci); + break; + } + case 'c': + { + ConstantInt* CI = dyn_cast(ci->getOperand(3)); + if (!CI) + return false; + + const Type* FILEptr_type = ci->getOperand(1)->getType(); + Function* fputc_func = SLC.get_fputc(FILEptr_type); + if (!fputc_func) + return false; + CastInst* cast = new CastInst(CI,Type::IntTy,CI->getName()+".int",ci); + new CallInst(fputc_func,cast,ci->getOperand(1),"",ci); + break; + } + default: + return false; + } + ci->eraseFromParent(); + return true; + } +} FPrintFOptimizer; + + /// This LibCallOptimization will simplify calls to the "fputs" library /// function. It looks for cases where the result of fputs is not used and the /// operation can be reduced to something simpler. @@ -1083,13 +1209,6 @@ // ffs, ffsl, ffsll: // * ffs(cnst) -> cnst' // -// fprintf: -// * fprintf(file,fmt) -> fputs(fmt,file) -// (if fmt is constant and constains no % characters) -// * fprintf(file,"%s",str) -> fputs(orig,str) -// (only if the fprintf result is not used) -// * fprintf(file,"%c",chr) -> fputc(chr,file) -// // isascii: // * isascii(c) -> ((c & ~0x7f) == 0) // From reid at x10sys.com Mon May 2 19:50:54 2005 From: reid at x10sys.com (Reid Spencer) Date: Mon, 2 May 2005 19:50:54 -0500 Subject: [llvm-commits] CVS: llvm/test/Regression/Transforms/SimplifyLibCalls/StrNCmp.ll Message-ID: <200505030050.TAA10220@zion.cs.uiuc.edu> Changes in directory llvm/test/Regression/Transforms/SimplifyLibCalls: StrNCmp.ll added (r1.1) --- Log message: Add a new test case for the StrNCmpOptimization. --- Diffs of the changes: (+26 -0) StrNCmp.ll | 26 ++++++++++++++++++++++++++ 1 files changed, 26 insertions(+) Index: llvm/test/Regression/Transforms/SimplifyLibCalls/StrNCmp.ll diff -c /dev/null llvm/test/Regression/Transforms/SimplifyLibCalls/StrNCmp.ll:1.1 *** /dev/null Mon May 2 19:50:53 2005 --- llvm/test/Regression/Transforms/SimplifyLibCalls/StrNCmp.ll Mon May 2 19:50:43 2005 *************** *** 0 **** --- 1,26 ---- + ; Test that the StrCmpOptimizer works correctly + ; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | not grep 'call.*strcmp' + + declare int %strncmp(sbyte*,sbyte*,int) + declare int %puts(sbyte*) + %hello = constant [6 x sbyte] c"hello\00" + %hell = constant [5 x sbyte] c"hell\00" + %null = constant [1 x sbyte] c"\00" + + implementation ; Functions: + + int %main () { + %hello_p = getelementptr [6 x sbyte]* %hello, int 0, int 0 + %hell_p = getelementptr [5 x sbyte]* %hell, int 0, int 0 + %null_p = getelementptr [1 x sbyte]* %null, int 0, int 0 + %temp1 = call int %strncmp(sbyte* %hello_p, sbyte* %hello_p,int 5) + %temp2 = call int %strncmp(sbyte* %null_p, sbyte* %null_p,int 0) + %temp3 = call int %strncmp(sbyte* %hello_p, sbyte* %null_p,int 0) + %temp4 = call int %strncmp(sbyte* %null_p, sbyte* %hello_p,int 0) + %temp5 = call int %strncmp(sbyte* %hell_p, sbyte* %hello_p,int 4) + %rslt1 = add int %temp1, %temp2 + %rslt2 = add int %rslt1, %temp3 + %rslt3 = add int %rslt2, %temp4 + %rslt4 = add int %rslt3, %temp5 + ret int %rslt4 + } From reid at x10sys.com Mon May 2 19:52:30 2005 From: reid at x10sys.com (Reid Spencer) Date: Mon, 2 May 2005 19:52:30 -0500 Subject: [llvm-commits] CVS: llvm/test/Regression/Transforms/SimplifyLibCalls/StrNCmp.ll Message-ID: <200505030052.TAA10233@zion.cs.uiuc.edu> Changes in directory llvm/test/Regression/Transforms/SimplifyLibCalls: StrNCmp.ll updated: 1.1 -> 1.2 --- Log message: Correct the title and the success criteria: strcmp -> strncmp --- Diffs of the changes: (+2 -2) StrNCmp.ll | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/test/Regression/Transforms/SimplifyLibCalls/StrNCmp.ll diff -u llvm/test/Regression/Transforms/SimplifyLibCalls/StrNCmp.ll:1.1 llvm/test/Regression/Transforms/SimplifyLibCalls/StrNCmp.ll:1.2 --- llvm/test/Regression/Transforms/SimplifyLibCalls/StrNCmp.ll:1.1 Mon May 2 19:50:43 2005 +++ llvm/test/Regression/Transforms/SimplifyLibCalls/StrNCmp.ll Mon May 2 19:52:19 2005 @@ -1,5 +1,5 @@ -; Test that the StrCmpOptimizer works correctly -; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | not grep 'call.*strcmp' +; Test that the StrNCmpOptimizer works correctly +; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | not grep 'call.*strncmp' declare int %strncmp(sbyte*,sbyte*,int) declare int %puts(sbyte*) From reid at x10sys.com Mon May 2 20:43:56 2005 From: reid at x10sys.com (Reid Spencer) Date: Mon, 2 May 2005 20:43:56 -0500 Subject: [llvm-commits] CVS: llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp Message-ID: <200505030143.UAA10410@zion.cs.uiuc.edu> Changes in directory llvm/lib/Transforms/IPO: SimplifyLibCalls.cpp updated: 1.26 -> 1.27 --- Log message: Add the StrNCmpOptimization which is similar to strcmp. Unfortunately, this optimization didn't trigger on any llvm-test tests. --- Diffs of the changes: (+101 -13) SimplifyLibCalls.cpp | 114 +++++++++++++++++++++++++++++++++++++++++++++------ 1 files changed, 101 insertions(+), 13 deletions(-) Index: llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp diff -u llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp:1.26 llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp:1.27 --- llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp:1.26 Mon May 2 18:59:26 2005 +++ llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp Mon May 2 20:43:45 2005 @@ -573,6 +573,107 @@ } } StrCmpOptimizer; +/// This LibCallOptimization will simplify a call to the strncmp library +/// function. It optimizes out cases where one or both arguments are constant +/// and the result can be determined statically. +/// @brief Simplify the strncmp library function. +struct StrNCmpOptimization : public LibCallOptimization +{ +public: + StrNCmpOptimization() : LibCallOptimization("strncmp") {} + virtual ~StrNCmpOptimization() {} + + /// @brief Make sure that the "strcpy" function has the right prototype + virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC) + { + if (f->getReturnType() == Type::IntTy && f->arg_size() == 3) + return true; + return false; + } + + /// @brief Perform the strncpy optimization + virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) + { + // First, check to see if src and destination are the same. If they are, + // then the optimization is to replace the CallInst with a constant 0 + // because the call is a no-op. + Value* s1 = ci->getOperand(1); + Value* s2 = ci->getOperand(2); + if (s1 == s2) + { + // strncmp(x,x,l) -> 0 + ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,0)); + ci->eraseFromParent(); + return true; + } + + // Check the length argument, if it is Constant zero then the strings are + // considered equal. + uint64_t len_arg = 0; + bool len_arg_is_const = false; + if (ConstantInt* len_CI = dyn_cast(ci->getOperand(3))) + { + len_arg_is_const = true; + len_arg = len_CI->getRawValue(); + if (len_arg == 0) + { + // strncmp(x,y,0) -> 0 + ci->replaceAllUsesWith(ConstantInt::get(Type::IntTy,0)); + ci->eraseFromParent(); + return true; + } + } + + bool isstr_1 = false; + uint64_t len_1 = 0; + ConstantArray* A1; + if (getConstantStringLength(s1,len_1,&A1)) + { + isstr_1 = true; + if (len_1 == 0) + { + // strncmp("",x) -> *x + LoadInst* load = new LoadInst(s1,ci->getName()+".load",ci); + CastInst* cast = + new CastInst(load,Type::IntTy,ci->getName()+".int",ci); + ci->replaceAllUsesWith(cast); + ci->eraseFromParent(); + return true; + } + } + + bool isstr_2 = false; + uint64_t len_2 = 0; + ConstantArray* A2; + if (getConstantStringLength(s2,len_2,&A2)) + { + isstr_2 = true; + if (len_2 == 0) + { + // strncmp(x,"") -> *x + LoadInst* load = new LoadInst(s2,ci->getName()+".val",ci); + CastInst* cast = + new CastInst(load,Type::IntTy,ci->getName()+".int",ci); + ci->replaceAllUsesWith(cast); + ci->eraseFromParent(); + return true; + } + } + + if (isstr_1 && isstr_2 && len_arg_is_const) + { + // strncmp(x,y,const) -> constant + std::string str1 = A1->getAsString(); + std::string str2 = A2->getAsString(); + int result = strncmp(str1.c_str(), str2.c_str(), len_arg); + ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,result)); + ci->eraseFromParent(); + return true; + } + return false; + } +} StrNCmpOptimizer; + /// This LibCallOptimization will simplify a call to the strcpy library /// function. Two optimizations are possible: /// (1) If src and dest are the same and not volatile, just return dest @@ -1276,24 +1377,11 @@ // (if c is a constant integer and s is a constant string) // * strrchr(s1,0) -> strchr(s1,0) // -// strcmp: -// * strcmp(x,x) -> 0 -// * strcmp(x,"") -> *x -// * strcmp("",x) -> *x -// * strcmp(x,y) -> cnst (if both x and y are constant strings) -// // strncat: // * strncat(x,y,0) -> x // * strncat(x,y,0) -> x (if strlen(y) = 0) // * strncat(x,y,l) -> strcat(x,y) (if y and l are constants an l > strlen(y)) // -// strncmp: -// * strncmp(x,y,0) -> 0 -// * strncmp(x,x,l) -> 0 -// * strncmp(x,"",l) -> *x -// * strncmp("",x,l) -> *x -// * strncmp(x,y,1) -> *x - *y -// // strncpy: // * strncpy(d,s,0) -> d // * strncpy(d,s,l) -> memcpy(d,s,l,1) From reid at x10sys.com Mon May 2 21:55:07 2005 From: reid at x10sys.com (Reid Spencer) Date: Mon, 2 May 2005 21:55:07 -0500 Subject: [llvm-commits] CVS: llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp Message-ID: <200505030255.VAA11220@zion.cs.uiuc.edu> Changes in directory llvm/lib/Transforms/IPO: SimplifyLibCalls.cpp updated: 1.27 -> 1.28 --- Log message: Avoid garbage output in the statistics display by ensuring that the strings passed to Statistic's constructor are not destructable. The stats are printed during static destruction and the SimplifyLibCalls module was getting destructed before the statistics. --- Diffs of the changes: (+34 -18) SimplifyLibCalls.cpp | 52 +++++++++++++++++++++++++++++++++------------------ 1 files changed, 34 insertions(+), 18 deletions(-) Index: llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp diff -u llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp:1.27 llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp:1.28 --- llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp:1.27 Mon May 2 20:43:45 2005 +++ llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp Mon May 2 21:54:54 2005 @@ -65,16 +65,15 @@ /// The \p fname argument must be the name of the library function being /// optimized by the subclass. /// @brief Constructor that registers the optimization. - LibCallOptimization(const char * fname ) + LibCallOptimization(const char* fname, + const char* stat_name, const char* description ) : func_name(fname) #ifndef NDEBUG - , stat_name(std::string("simplify-libcalls:")+fname) - , stat_desc(std::string("Number of ")+fname+"(...) calls simplified") - , occurrences(stat_name.c_str(),stat_desc.c_str()) + , occurrences(stat_name,description) #endif { // Register this call optimizer in the optlist (a hash_map) - optlist[func_name] = this; + optlist[fname] = this; } /// @brief Deregister from the optlist @@ -341,7 +340,8 @@ /// @brief Replace calls to exit in main with a simple return struct ExitInMainOptimization : public LibCallOptimization { - ExitInMainOptimization() : LibCallOptimization("exit") {} + ExitInMainOptimization() : LibCallOptimization("exit", + "simplify-libcalls:exit","Number of 'exit' calls simplified") {} virtual ~ExitInMainOptimization() {} // Make sure the called function looks like exit (int argument, int return @@ -406,7 +406,8 @@ { public: /// @brief Default constructor - StrCatOptimization() : LibCallOptimization("strcat") {} + StrCatOptimization() : LibCallOptimization("strcat", + "simplify-libcalls:strcat","Number of 'strcat' calls simplified") {} public: /// @breif Destructor @@ -496,7 +497,8 @@ struct StrCmpOptimization : public LibCallOptimization { public: - StrCmpOptimization() : LibCallOptimization("strcmp") {} + StrCmpOptimization() : LibCallOptimization("strcmp", + "simplify-libcalls:strcmp","Number of 'strcmp' calls simplified") {} virtual ~StrCmpOptimization() {} /// @brief Make sure that the "strcpy" function has the right prototype @@ -580,7 +582,8 @@ struct StrNCmpOptimization : public LibCallOptimization { public: - StrNCmpOptimization() : LibCallOptimization("strncmp") {} + StrNCmpOptimization() : LibCallOptimization("strncmp", + "simplify-libcalls:strncmp","Number of 'strncmp' calls simplified") {} virtual ~StrNCmpOptimization() {} /// @brief Make sure that the "strcpy" function has the right prototype @@ -682,7 +685,8 @@ struct StrCpyOptimization : public LibCallOptimization { public: - StrCpyOptimization() : LibCallOptimization("strcpy") {} + StrCpyOptimization() : LibCallOptimization("strcpy", + "simplify-libcalls:strcpy","Number of 'strcpy' calls simplified") {} virtual ~StrCpyOptimization() {} /// @brief Make sure that the "strcpy" function has the right prototype @@ -769,7 +773,8 @@ /// @brief Simplify the strlen library function. struct StrLenOptimization : public LibCallOptimization { - StrLenOptimization() : LibCallOptimization("strlen") {} + StrLenOptimization() : LibCallOptimization("strlen", + "simplify-libcalls:strlen","Number of 'strlen' calls simplified") {} virtual ~StrLenOptimization() {} /// @brief Make sure that the "strlen" function has the right prototype @@ -806,10 +811,14 @@ struct MemCpyOptimization : public LibCallOptimization { /// @brief Default Constructor - MemCpyOptimization() : LibCallOptimization("llvm.memcpy") {} + MemCpyOptimization() : LibCallOptimization("llvm.memcpy", + "simplify-libcalls:llvm.memcpy", + "Number of 'llvm.memcpy' calls simplified") {} + protected: /// @brief Subclass Constructor - MemCpyOptimization(const char* fname) : LibCallOptimization(fname) {} + MemCpyOptimization(const char* fname, const char* sname, const char* desc) + : LibCallOptimization(fname, sname, desc) {} public: /// @brief Destructor virtual ~MemCpyOptimization() {} @@ -880,7 +889,9 @@ struct MemMoveOptimization : public MemCpyOptimization { /// @brief Default Constructor - MemMoveOptimization() : MemCpyOptimization("llvm.memmove") {} + MemMoveOptimization() : MemCpyOptimization("llvm.memmove", + "simplify-libcalls:llvm.memmove", + "Number of 'llvm.memmove' calls simplified") {} } MemMoveOptimizer; @@ -892,7 +903,9 @@ { public: /// @brief Default Constructor - PowOptimization() : LibCallOptimization("pow") {} + PowOptimization() : LibCallOptimization("pow", + "simplify-libcalls:pow", "Number of 'pow' calls simplified") {} + /// @brief Destructor virtual ~PowOptimization() {} @@ -967,7 +980,8 @@ { public: /// @brief Default Constructor - FPrintFOptimization() : LibCallOptimization("fprintf") {} + FPrintFOptimization() : LibCallOptimization("fprintf", + "simplify-libcalls:fprintf", "Number of 'fprintf' calls simplified") {} /// @brief Destructor virtual ~FPrintFOptimization() {} @@ -1093,7 +1107,8 @@ { public: /// @brief Default Constructor - PutsOptimization() : LibCallOptimization("fputs") {} + PutsOptimization() : LibCallOptimization("fputs", + "simplify-libcalls:fputs", "Number of 'fputs' calls simplified") {} /// @brief Destructor virtual ~PutsOptimization() {} @@ -1166,7 +1181,8 @@ { public: /// @brief Default Constructor - ToAsciiOptimization() : LibCallOptimization("toascii") {} + ToAsciiOptimization() : LibCallOptimization("toascii", + "simplify-libcalls:toascii", "Number of 'toascii' calls simplified") {} /// @brief Destructor virtual ~ToAsciiOptimization() {} From jeffc at jolt-lang.org Mon May 2 22:13:12 2005 From: jeffc at jolt-lang.org (Jeff Cohen) Date: Mon, 2 May 2005 22:13:12 -0500 Subject: [llvm-commits] CVS: llvm/lib/VMCore/ConstantFolding.cpp Message-ID: <200505030313.WAA11396@zion.cs.uiuc.edu> Changes in directory llvm/lib/VMCore: ConstantFolding.cpp updated: 1.75 -> 1.76 --- Log message: Use ANSI-approved way of getting the value infinity (otherwise VC++ won't compile it) --- Diffs of the changes: (+4 -3) ConstantFolding.cpp | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) Index: llvm/lib/VMCore/ConstantFolding.cpp diff -u llvm/lib/VMCore/ConstantFolding.cpp:1.75 llvm/lib/VMCore/ConstantFolding.cpp:1.76 --- llvm/lib/VMCore/ConstantFolding.cpp:1.75 Mon May 2 16:25:47 2005 +++ llvm/lib/VMCore/ConstantFolding.cpp Mon May 2 22:13:01 2005 @@ -24,6 +24,7 @@ #include "llvm/DerivedTypes.h" #include "llvm/Function.h" #include "llvm/Support/GetElementPtrTypeIterator.h" +#include #include using namespace llvm; @@ -471,9 +472,9 @@ return ConstantClass::get(*Ty, Result); } static Constant *Div(const ConstantClass *V1, const ConstantClass *V2) { - if (V2->isExactlyValue(0.0)) return ConstantClass::get(*Ty, INFINITY); - if (V2->isExactlyValue(-0.0)) return ConstantClass::get(*Ty, -INFINITY); - if (V2->isNullValue()) return 0; + BuiltinType inf = std::numeric_limits::infinity(); + if (V2->isExactlyValue(0.0)) return ConstantClass::get(*Ty, inf); + if (V2->isExactlyValue(-0.0)) return ConstantClass::get(*Ty, -inf); BuiltinType R = (BuiltinType)V1->getValue() / (BuiltinType)V2->getValue(); return ConstantClass::get(*Ty, R); } From reid at x10sys.com Mon May 2 23:00:37 2005 From: reid at x10sys.com (Reid Spencer) Date: Mon, 2 May 2005 23:00:37 -0500 Subject: [llvm-commits] CVS: llvm/test/Regression/Transforms/SimplifyLibCalls/MemSet.ll Message-ID: <200505030400.XAA11668@zion.cs.uiuc.edu> Changes in directory llvm/test/Regression/Transforms/SimplifyLibCalls: MemSet.ll added (r1.1) --- Log message: A new test case for the LLVMMemSetOptimization. --- Diffs of the changes: (+17 -0) MemSet.ll | 17 +++++++++++++++++ 1 files changed, 17 insertions(+) Index: llvm/test/Regression/Transforms/SimplifyLibCalls/MemSet.ll diff -c /dev/null llvm/test/Regression/Transforms/SimplifyLibCalls/MemSet.ll:1.1 *** /dev/null Mon May 2 23:00:34 2005 --- llvm/test/Regression/Transforms/SimplifyLibCalls/MemSet.ll Mon May 2 23:00:24 2005 *************** *** 0 **** --- 1,17 ---- + ; Test that the LLVMMemSetOptimizer works correctly + ; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | not grep 'call.*llvm.memset' + + declare sbyte* %llvm.memset(sbyte*,ubyte,uint,uint) + + implementation ; Functions: + + int %main () { + %target = alloca [1024 x sbyte] + %target_p = getelementptr [1024 x sbyte]* %target, int 0, int 0 + call sbyte* %llvm.memset(sbyte* %target_p, ubyte 1, uint 0, uint 1) + call sbyte* %llvm.memset(sbyte* %target_p, ubyte 1, uint 1, uint 1) + call sbyte* %llvm.memset(sbyte* %target_p, ubyte 1, uint 2, uint 2) + call sbyte* %llvm.memset(sbyte* %target_p, ubyte 1, uint 4, uint 4) + call sbyte* %llvm.memset(sbyte* %target_p, ubyte 1, uint 8, uint 8) + ret int 0 + } From brukman at cs.uiuc.edu Tue May 3 00:36:25 2005 From: brukman at cs.uiuc.edu (Misha Brukman) Date: Tue, 3 May 2005 00:36:25 -0500 Subject: [llvm-commits] CVS: llvm/tools/llvmc/llvmc.cpp Message-ID: <200505030536.AAA12537@zion.cs.uiuc.edu> Changes in directory llvm/tools/llvmc: llvmc.cpp updated: 1.24 -> 1.25 --- Log message: Omit periods at the end of command-line switch explanations for consistency --- Diffs of the changes: (+2 -2) llvmc.cpp | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/tools/llvmc/llvmc.cpp diff -u llvm/tools/llvmc/llvmc.cpp:1.24 llvm/tools/llvmc/llvmc.cpp:1.25 --- llvm/tools/llvmc/llvmc.cpp:1.24 Thu Apr 21 18:59:45 2005 +++ llvm/tools/llvmc/llvmc.cpp Tue May 3 00:36:14 2005 @@ -51,9 +51,9 @@ cl::init(CompilerDriver::OPT_FAST_COMPILE), cl::values( clEnumValN(CompilerDriver::OPT_FAST_COMPILE,"O0", - "An alias for the -O1 option."), + "An alias for the -O1 option"), clEnumValN(CompilerDriver::OPT_FAST_COMPILE,"O1", - "Optimize for compilation speed, not execution speed."), + "Optimize for compilation speed, not execution speed"), clEnumValN(CompilerDriver::OPT_SIMPLE,"O2", "Perform simple translation time optimizations"), clEnumValN(CompilerDriver::OPT_AGGRESSIVE,"O3", From lattner at cs.uiuc.edu Tue May 3 00:43:32 2005 From: lattner at cs.uiuc.edu (Chris Lattner) Date: Tue, 3 May 2005 00:43:32 -0500 Subject: [llvm-commits] CVS: llvm/include/llvm/Instructions.h Message-ID: <200505030543.j435hWal011987@apoc.cs.uiuc.edu> Changes in directory llvm/include/llvm: Instructions.h updated: 1.16 -> 1.17 --- Log message: add direct support for making GEP instrs with one index --- Diffs of the changes: (+8 -2) Instructions.h | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-) Index: llvm/include/llvm/Instructions.h diff -u llvm/include/llvm/Instructions.h:1.16 llvm/include/llvm/Instructions.h:1.17 --- llvm/include/llvm/Instructions.h:1.16 Thu Apr 21 15:11:51 2005 +++ llvm/include/llvm/Instructions.h Tue May 3 00:43:14 2005 @@ -300,6 +300,7 @@ } void init(Value *Ptr, const std::vector &Idx); void init(Value *Ptr, Value *Idx0, Value *Idx1); + void init(Value *Ptr, Value *Idx); public: /// Constructors - Create a getelementptr instruction with a base pointer an /// list of indices. The first ctor can optionally insert before an existing @@ -310,8 +311,12 @@ GetElementPtrInst(Value *Ptr, const std::vector &Idx, const std::string &Name, BasicBlock *InsertAtEnd); - /// Constructors - These two constructors are convenience methods because two - /// index getelementptr instructions are so common. + /// Constructors - These two constructors are convenience methods because one + /// and two index getelementptr instructions are so common. + GetElementPtrInst(Value *Ptr, Value *Idx, + const std::string &Name = "", Instruction *InsertBefore =0); + GetElementPtrInst(Value *Ptr, Value *Idx, + const std::string &Name, BasicBlock *InsertAtEnd); GetElementPtrInst(Value *Ptr, Value *Idx0, Value *Idx1, const std::string &Name = "", Instruction *InsertBefore =0); GetElementPtrInst(Value *Ptr, Value *Idx0, Value *Idx1, @@ -336,6 +341,7 @@ bool AllowStructLeaf = false); static const Type *getIndexedType(const Type *Ptr, Value *Idx0, Value *Idx1, bool AllowStructLeaf = false); + static const Type *getIndexedType(const Type *Ptr, Value *Idx); inline op_iterator idx_begin() { return op_begin()+1; } inline const_op_iterator idx_begin() const { return op_begin()+1; } From lattner at cs.uiuc.edu Tue May 3 00:43:44 2005 From: lattner at cs.uiuc.edu (Chris Lattner) Date: Tue, 3 May 2005 00:43:44 -0500 Subject: [llvm-commits] CVS: llvm/lib/VMCore/Instructions.cpp Message-ID: <200505030543.j435hiS9012000@apoc.cs.uiuc.edu> Changes in directory llvm/lib/VMCore: Instructions.cpp updated: 1.15 -> 1.16 --- Log message: add direct support for making GEP instrs with one index --- Diffs of the changes: (+31 -0) Instructions.cpp | 31 +++++++++++++++++++++++++++++++ 1 files changed, 31 insertions(+) Index: llvm/lib/VMCore/Instructions.cpp diff -u llvm/lib/VMCore/Instructions.cpp:1.15 llvm/lib/VMCore/Instructions.cpp:1.16 --- llvm/lib/VMCore/Instructions.cpp:1.15 Sun Apr 24 02:28:37 2005 +++ llvm/lib/VMCore/Instructions.cpp Tue May 3 00:43:30 2005 @@ -603,6 +603,13 @@ OL[2].init(Idx1, this); } +void GetElementPtrInst::init(Value *Ptr, Value *Idx) { + NumOperands = 2; + Use *OL = OperandList = new Use[2]; + OL[0].init(Ptr, this); + OL[1].init(Idx, this); +} + GetElementPtrInst::GetElementPtrInst(Value *Ptr, const std::vector &Idx, const std::string &Name, Instruction *InBe) : Instruction(PointerType::get(checkType(getIndexedType(Ptr->getType(), @@ -619,6 +626,20 @@ init(Ptr, Idx); } +GetElementPtrInst::GetElementPtrInst(Value *Ptr, Value *Idx, + const std::string &Name, Instruction *InBe) + : Instruction(PointerType::get(checkType(getIndexedType(Ptr->getType(),Idx))), + GetElementPtr, 0, 0, Name, InBe) { + init(Ptr, Idx); +} + +GetElementPtrInst::GetElementPtrInst(Value *Ptr, Value *Idx, + const std::string &Name, BasicBlock *IAE) + : Instruction(PointerType::get(checkType(getIndexedType(Ptr->getType(),Idx))), + GetElementPtr, 0, 0, Name, IAE) { + init(Ptr, Idx); +} + GetElementPtrInst::GetElementPtrInst(Value *Ptr, Value *Idx0, Value *Idx1, const std::string &Name, Instruction *InBe) : Instruction(PointerType::get(checkType(getIndexedType(Ptr->getType(), @@ -700,6 +721,16 @@ return 0; } +const Type* GetElementPtrInst::getIndexedType(const Type *Ptr, Value *Idx) { + const PointerType *PTy = dyn_cast(Ptr); + if (!PTy) return 0; // Type isn't a pointer type! + + // Check the pointer index. + if (!PTy->indexValid(Idx)) return 0; + + return PTy; +} + //===----------------------------------------------------------------------===// // BinaryOperator Class //===----------------------------------------------------------------------===// From brukman at cs.uiuc.edu Tue May 3 01:11:02 2005 From: brukman at cs.uiuc.edu (Misha Brukman) Date: Tue, 3 May 2005 01:11:02 -0500 Subject: [llvm-commits] CVS: llvm/tools/llvmc/llvmc.cpp Message-ID: <200505030611.BAA13700@zion.cs.uiuc.edu> Changes in directory llvm/tools/llvmc: llvmc.cpp updated: 1.25 -> 1.26 --- Log message: std::string(NULL) does not a proper constructor make --- Diffs of the changes: (+3 -3) llvmc.cpp | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) Index: llvm/tools/llvmc/llvmc.cpp diff -u llvm/tools/llvmc/llvmc.cpp:1.25 llvm/tools/llvmc/llvmc.cpp:1.26 --- llvm/tools/llvmc/llvmc.cpp:1.25 Tue May 3 00:36:14 2005 +++ llvm/tools/llvmc/llvmc.cpp Tue May 3 01:10:51 2005 @@ -281,9 +281,9 @@ // If the LLVM_LIB_SEARCH_PATH environment variable is // set, append it to the list of places to search for libraries - std::string srchPath = getenv("LLVM_LIB_SEARCH_PATH"); - if (!srchPath.empty()) - LibPaths.push_back(srchPath); + char *srchPath = getenv("LLVM_LIB_SEARCH_PATH"); + if (srchPath != NULL && strlen(srchPath) != 0) + LibPaths.push_back(std::string(srchPath)); // Set the driver flags based on command line options unsigned flags = 0; From brukman at cs.uiuc.edu Tue May 3 01:13:29 2005 From: brukman at cs.uiuc.edu (Misha Brukman) Date: Tue, 3 May 2005 01:13:29 -0500 Subject: [llvm-commits] CVS: llvm/tools/llvmc/c.in cpp.in st.in Message-ID: <200505030613.BAA13923@zion.cs.uiuc.edu> Changes in directory llvm/tools/llvmc: c.in updated: 1.3 -> 1.4 cpp.in updated: 1.3 -> 1.4 st.in updated: 1.2 -> 1.3 --- Log message: Clean up and correct llvmc configurations for C and C++ --- Diffs of the changes: (+24 -32) c.in | 26 +++++++++++--------------- cpp.in | 28 ++++++++++++---------------- st.in | 2 +- 3 files changed, 24 insertions(+), 32 deletions(-) Index: llvm/tools/llvmc/c.in diff -u llvm/tools/llvmc/c.in:1.3 llvm/tools/llvmc/c.in:1.4 --- llvm/tools/llvmc/c.in:1.3 Tue Dec 14 19:54:37 2004 +++ llvm/tools/llvmc/c.in Tue May 3 01:13:18 2005 @@ -1,4 +1,4 @@ -# Stacker Configuration File For llvmc +# C configuration file for llvmc ########################################################## # Language definitions @@ -16,24 +16,21 @@ # Pre-processor definitions ########################################################## - # Stacker doesn't have a preprocessor but the following - # allows the -E option to be supported - preprocessor.command=g++ -E %in% -o %out% %incls% %defs% - preprocessor.required=false + # We use gcc as our pre-processor + preprocessor.command=gcc -E %in% -o %out% %incls% %defs% + preprocessor.required=true ########################################################## # Translator definitions ########################################################## - # To compile stacker source, we just run the stacker - # compiler with a default stack size of 2048 entries. + # To compile C source, just use llvm-gcc's cc1 translator.command=@LLVMCC1@ -quiet %in% -o %out% \ %opt% %incls% %defs% %WOpts% %fOpts% %MOpts% %args% \ -D_GNU_SOURCE - # stkrc doesn't preprocess but we set this to true so - # that we don't run the cp command by default. - translator.preprocesses=true + # llvm-gcc does not pre-process + translator.preprocesses=false # The translator is required to run. translator.required=true @@ -45,18 +42,17 @@ # Optimizer definitions ########################################################## - # For optimization, we use the LLVM "opt" program + # Use gccas to clean up the generated code optimizer.command=@LLVM_BINDIR@/gccas %in% -o %out% %args% - optimizer.required = true - # opt doesn't translate + # gccas doesn't translate optimizer.translates = false - # opt doesn't preprocess + # gccas doesn't preprocess optimizer.preprocesses=false - # opt produces bytecode + # gccas produces bytecode optimizer.output = bytecode ########################################################## Index: llvm/tools/llvmc/cpp.in diff -u llvm/tools/llvmc/cpp.in:1.3 llvm/tools/llvmc/cpp.in:1.4 --- llvm/tools/llvmc/cpp.in:1.3 Tue Dec 14 19:54:37 2004 +++ llvm/tools/llvmc/cpp.in Tue May 3 01:13:18 2005 @@ -1,4 +1,4 @@ -# Stacker Configuration File For llvmc +# C++ configuration file for llvmc ########################################################## # Language definitions @@ -16,50 +16,46 @@ # Pre-processor definitions ########################################################## - # Stacker doesn't have a preprocessor but the following - # allows the -E option to be supported + # We use g++ as our pre-processor preprocessor.command=g++ -E %in% -o %out% %incls% %defs% - preprocessor.required=false + preprocessor.required=true ########################################################## # Translator definitions ########################################################## - # To compile stacker source, we just run the stacker - # compiler with a default stack size of 2048 entries. + # To compile C++ source, just use llvm-g++'s cc1 translator.command=@LLVMCC1PLUS@ -quiet %in% -o %out% \ %opt% %incls% %defs% %WOpts% %fOpts% %MOpts% %args% \ -D_GNU_SOURCE - # stkrc doesn't preprocess but we set this to true so - # that we don't run the cp command by default. - translator.preprocesses=true + # llvm-g++ does not pre-process + translator.preprocesses=false # The translator is required to run. translator.required=true - # stkrc doesn't handle the -On options + # Output of translator is assembly translator.output=assembly ########################################################## # Optimizer definitions ########################################################## - # For optimization, we use the LLVM "opt" program + # Use gccas to clean up the generated code optimizer.command=@LLVM_BINDIR@/gccas %in% -o %out% %args% - optimizer.required = true - # opt doesn't translate + # gccas doesn't translate optimizer.translates = false - # opt doesn't preprocess + # gccas doesn't preprocess optimizer.preprocesses=false - # opt produces bytecode + # gccas produces bytecode optimizer.output = bytecode ########################################################## # Assembler definitions ########################################################## - assembler.command=llc %in% -o %out% %target% %time% %stats% + assembler.command=@LLVM_BINDIR@/llc %in% -o %out% %target% %time% %stats% Index: llvm/tools/llvmc/st.in diff -u llvm/tools/llvmc/st.in:1.2 llvm/tools/llvmc/st.in:1.3 --- llvm/tools/llvmc/st.in:1.2 Thu Nov 25 03:36:28 2004 +++ llvm/tools/llvmc/st.in Tue May 3 01:13:18 2005 @@ -1,4 +1,4 @@ -# Stacker Configuration File For llvmc +# Stacker configuration file for llvmc ########################################################## # Language definitions From reid at x10sys.com Tue May 3 01:22:52 2005 From: reid at x10sys.com (Reid Spencer) Date: Tue, 3 May 2005 01:22:52 -0500 Subject: [llvm-commits] CVS: llvm/test/Regression/Transforms/SimplifyLibCalls/StrChr.ll MemSet.ll Message-ID: <200505030622.BAA14054@zion.cs.uiuc.edu> Changes in directory llvm/test/Regression/Transforms/SimplifyLibCalls: StrChr.ll added (r1.1) MemSet.ll updated: 1.1 -> 1.2 --- Log message: Add a test case for StrChrOptimizer for -simplify-libcalls --- Diffs of the changes: (+25 -6) MemSet.ll | 12 ++++++------ StrChr.ll | 19 +++++++++++++++++++ 2 files changed, 25 insertions(+), 6 deletions(-) Index: llvm/test/Regression/Transforms/SimplifyLibCalls/StrChr.ll diff -c /dev/null llvm/test/Regression/Transforms/SimplifyLibCalls/StrChr.ll:1.1 *** /dev/null Tue May 3 01:22:51 2005 --- llvm/test/Regression/Transforms/SimplifyLibCalls/StrChr.ll Tue May 3 01:22:41 2005 *************** *** 0 **** --- 1,19 ---- + ; Test that the StrChrOptimizer works correctly + ; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | not grep 'call.*strchr' + + declare sbyte* %strchr(sbyte*,int) + declare int %puts(sbyte*) + %hello = constant [14 x sbyte] c"hello world\n\00" + %null = constant [1 x sbyte] c"\00" + + implementation ; Functions: + + int %main () { + %hello_p = getelementptr [14 x sbyte]* %hello, int 0, int 0 + %null_p = getelementptr [1 x sbyte]* %null, int 0, int 0 + + %world = call sbyte* %strchr(sbyte* %hello_p, int 119 ) + %ignore = call sbyte* %strchr(sbyte* %null_p, int 119 ) + %result = call int %puts(sbyte* %world) + ret int %result + } Index: llvm/test/Regression/Transforms/SimplifyLibCalls/MemSet.ll diff -u llvm/test/Regression/Transforms/SimplifyLibCalls/MemSet.ll:1.1 llvm/test/Regression/Transforms/SimplifyLibCalls/MemSet.ll:1.2 --- llvm/test/Regression/Transforms/SimplifyLibCalls/MemSet.ll:1.1 Mon May 2 23:00:24 2005 +++ llvm/test/Regression/Transforms/SimplifyLibCalls/MemSet.ll Tue May 3 01:22:41 2005 @@ -1,17 +1,17 @@ ; Test that the LLVMMemSetOptimizer works correctly ; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | not grep 'call.*llvm.memset' -declare sbyte* %llvm.memset(sbyte*,ubyte,uint,uint) +declare void %llvm.memset(sbyte*,ubyte,uint,uint) implementation ; Functions: int %main () { %target = alloca [1024 x sbyte] %target_p = getelementptr [1024 x sbyte]* %target, int 0, int 0 - call sbyte* %llvm.memset(sbyte* %target_p, ubyte 1, uint 0, uint 1) - call sbyte* %llvm.memset(sbyte* %target_p, ubyte 1, uint 1, uint 1) - call sbyte* %llvm.memset(sbyte* %target_p, ubyte 1, uint 2, uint 2) - call sbyte* %llvm.memset(sbyte* %target_p, ubyte 1, uint 4, uint 4) - call sbyte* %llvm.memset(sbyte* %target_p, ubyte 1, uint 8, uint 8) + call void %llvm.memset(sbyte* %target_p, ubyte 1, uint 0, uint 1) + call void %llvm.memset(sbyte* %target_p, ubyte 1, uint 1, uint 1) + call void %llvm.memset(sbyte* %target_p, ubyte 1, uint 2, uint 2) + call void %llvm.memset(sbyte* %target_p, ubyte 1, uint 4, uint 4) + call void %llvm.memset(sbyte* %target_p, ubyte 1, uint 8, uint 8) ret int 0 } From reid at x10sys.com Tue May 3 02:23:56 2005 From: reid at x10sys.com (Reid Spencer) Date: Tue, 3 May 2005 02:23:56 -0500 Subject: [llvm-commits] CVS: llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp Message-ID: <200505030723.CAA14295@zion.cs.uiuc.edu> Changes in directory llvm/lib/Transforms/IPO: SimplifyLibCalls.cpp updated: 1.28 -> 1.29 --- Log message: Implement optimizations for the strchr and llvm.memset library calls. Neither of these activated as many times as was hoped: strchr: 9 MultiSource/Applications/siod 1 MultiSource/Applications/d 2 MultiSource/Prolangs-C/archie-client 1 External/SPEC/CINT2000/176.gcc/176.gcc llvm.memset: no hits --- Diffs of the changes: (+232 -21) SimplifyLibCalls.cpp | 253 ++++++++++++++++++++++++++++++++++++++++++++++----- 1 files changed, 232 insertions(+), 21 deletions(-) Index: llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp diff -u llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp:1.28 llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp:1.29 --- llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp:1.28 Mon May 2 21:54:54 2005 +++ llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp Tue May 3 02:23:44 2005 @@ -117,8 +117,6 @@ private: const char* func_name; ///< Name of the library call we optimize #ifndef NDEBUG - std::string stat_name; ///< Holder for debug statistic name - std::string stat_desc; ///< Holder for debug statistic description Statistic<> occurrences; ///< debug statistic (-debug-only=simplify-libcalls) #endif }; @@ -166,8 +164,8 @@ { // All the "well-known" functions are external and have external linkage // because they live in a runtime library somewhere and were (probably) - // not compiled by LLVM. So, we only act on external functions that have - // external linkage and non-empty uses. + // not compiled by LLVM. So, we only act on external functions that + // have external linkage and non-empty uses. if (!FI->isExternal() || !FI->hasExternalLinkage() || FI->use_empty()) continue; @@ -272,6 +270,22 @@ return strlen_func; } + /// @brief Return a Function* for the memchr libcall + Function* get_memchr() + { + if (!memchr_func) + { + std::vector args; + args.push_back(PointerType::get(Type::SByteTy)); + args.push_back(Type::IntTy); + args.push_back(TD->getIntPtrType()); + FunctionType* memchr_type = FunctionType::get( + PointerType::get(Type::SByteTy), args, false); + memchr_func = M->getOrInsertFunction("memchr",memchr_type); + } + return memchr_func; + } + /// @brief Return a Function* for the memcpy libcall Function* get_memcpy() { @@ -298,6 +312,7 @@ fputc_func = 0; fwrite_func = 0; memcpy_func = 0; + memchr_func = 0; sqrt_func = 0; strlen_func = 0; } @@ -306,6 +321,7 @@ Function* fputc_func; ///< Cached fputc function Function* fwrite_func; ///< Cached fwrite function Function* memcpy_func; ///< Cached llvm.memcpy function + Function* memchr_func; ///< Cached memchr function Function* sqrt_func; ///< Cached sqrt function Function* strlen_func; ///< Cached strlen function Module* M; ///< Cached Module @@ -490,6 +506,98 @@ } } StrCatOptimizer; +/// This LibCallOptimization will simplify a call to the strchr library +/// function. It optimizes out cases where the arguments are both constant +/// and the result can be determined statically. +/// @brief Simplify the strcmp library function. +struct StrChrOptimization : public LibCallOptimization +{ +public: + StrChrOptimization() : LibCallOptimization("strchr", + "simplify-libcalls:strchr","Number of 'strchr' calls simplified") {} + virtual ~StrChrOptimization() {} + + /// @brief Make sure that the "strchr" function has the right prototype + virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC) + { + if (f->getReturnType() == PointerType::get(Type::SByteTy) && + f->arg_size() == 2) + return true; + return false; + } + + /// @brief Perform the strcpy optimization + virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) + { + // If there aren't three operands, bail + if (ci->getNumOperands() != 3) + return false; + + // Check that the first argument to strchr is a constant array of sbyte. + // If it is, get the length and data, otherwise return false. + uint64_t len = 0; + ConstantArray* CA; + if (!getConstantStringLength(ci->getOperand(1),len,&CA)) + return false; + + // Check that the second argument to strchr is a constant int, return false + // if it isn't + ConstantSInt* CSI = dyn_cast(ci->getOperand(2)); + if (!CSI) + { + // Just lower this to memchr since we know the length of the string as + // it is constant. + Function* f = SLC.get_memchr(); + std::vector args; + args.push_back(ci->getOperand(1)); + args.push_back(ci->getOperand(2)); + args.push_back(ConstantUInt::get(SLC.getIntPtrType(),len)); + ci->replaceAllUsesWith( new CallInst(f,args,ci->getName(),ci)); + ci->eraseFromParent(); + return true; + } + + // Get the character we're looking for + int64_t chr = CSI->getValue(); + + // Compute the offset + uint64_t offset = 0; + bool char_found = false; + for (uint64_t i = 0; i < len; ++i) + { + if (ConstantSInt* CI = dyn_cast(CA->getOperand(i))) + { + // Check for the null terminator + if (CI->isNullValue()) + break; // we found end of string + else if (CI->getValue() == chr) + { + char_found = true; + offset = i; + break; + } + } + } + + // strchr(s,c) -> offset_of_in(c,s) + // (if c is a constant integer and s is a constant string) + if (char_found) + { + std::vector indices; + indices.push_back(ConstantUInt::get(Type::ULongTy,offset)); + GetElementPtrInst* GEP = new GetElementPtrInst(ci->getOperand(1),indices, + ci->getOperand(1)->getName()+".strchr",ci); + ci->replaceAllUsesWith(GEP); + } + else + ci->replaceAllUsesWith( + ConstantPointerNull::get(PointerType::get(Type::SByteTy))); + + ci->eraseFromParent(); + return true; + } +} StrChrOptimizer; + /// This LibCallOptimization will simplify a call to the strcmp library /// function. It optimizes out cases where one or both arguments are constant /// and the result can be determined statically. @@ -808,20 +916,20 @@ /// bytes depending on the length of the string and the alignment. Additional /// optimizations are possible in code generation (sequence of immediate store) /// @brief Simplify the memcpy library function. -struct MemCpyOptimization : public LibCallOptimization +struct LLVMMemCpyOptimization : public LibCallOptimization { /// @brief Default Constructor - MemCpyOptimization() : LibCallOptimization("llvm.memcpy", + LLVMMemCpyOptimization() : LibCallOptimization("llvm.memcpy", "simplify-libcalls:llvm.memcpy", "Number of 'llvm.memcpy' calls simplified") {} protected: /// @brief Subclass Constructor - MemCpyOptimization(const char* fname, const char* sname, const char* desc) + LLVMMemCpyOptimization(const char* fname, const char* sname, const char* desc) : LibCallOptimization(fname, sname, desc) {} public: /// @brief Destructor - virtual ~MemCpyOptimization() {} + virtual ~LLVMMemCpyOptimization() {} /// @brief Make sure that the "memcpy" function has the right prototype virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& TD) @@ -849,6 +957,8 @@ // If the length is larger than the alignment, we can't optimize uint64_t len = LEN->getRawValue(); uint64_t alignment = ALIGN->getRawValue(); + if (alignment == 0) + alignment = 1; // Alignment 0 is identity for alignment 1 if (len > alignment) return false; @@ -880,20 +990,128 @@ ci->eraseFromParent(); return true; } -} MemCpyOptimizer; +} LLVMMemCpyOptimizer; /// This LibCallOptimization will simplify a call to the memmove library /// function. It is identical to MemCopyOptimization except for the name of /// the intrinsic. /// @brief Simplify the memmove library function. -struct MemMoveOptimization : public MemCpyOptimization +struct LLVMMemMoveOptimization : public LLVMMemCpyOptimization { /// @brief Default Constructor - MemMoveOptimization() : MemCpyOptimization("llvm.memmove", + LLVMMemMoveOptimization() : LLVMMemCpyOptimization("llvm.memmove", "simplify-libcalls:llvm.memmove", "Number of 'llvm.memmove' calls simplified") {} -} MemMoveOptimizer; +} LLVMMemMoveOptimizer; + +/// This LibCallOptimization will simplify a call to the memset library +/// function by expanding it out to a single store of size 0, 1, 2, 4, or 8 +/// bytes depending on the length argument. +struct LLVMMemSetOptimization : public LibCallOptimization +{ + /// @brief Default Constructor + LLVMMemSetOptimization() : LibCallOptimization("llvm.memset", + "simplify-libcalls:llvm.memset", + "Number of 'llvm.memset' calls simplified") {} + +public: + /// @brief Destructor + virtual ~LLVMMemSetOptimization() {} + + /// @brief Make sure that the "memset" function has the right prototype + virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& TD) + { + // Just make sure this has 3 arguments per LLVM spec. + return (f->arg_size() == 4); + } + + /// Because of alignment and instruction information that we don't have, we + /// leave the bulk of this to the code generators. The optimization here just + /// deals with a few degenerate cases where the length parameter is constant + /// and the alignment matches the sizes of our intrinsic types so we can do + /// store instead of the memcpy call. Other calls are transformed into the + /// llvm.memset intrinsic. + /// @brief Perform the memset optimization. + virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& TD) + { + // Make sure we have constant int values to work with + ConstantInt* LEN = dyn_cast(ci->getOperand(3)); + if (!LEN) + return false; + ConstantInt* ALIGN = dyn_cast(ci->getOperand(4)); + if (!ALIGN) + return false; + + // Extract the length and alignment + uint64_t len = LEN->getRawValue(); + uint64_t alignment = ALIGN->getRawValue(); + + // Alignment 0 is identity for alignment 1 + if (alignment == 0) + alignment = 1; + + // If the length is zero, this is a no-op + if (len == 0) + { + // memset(d,c,0,a) -> noop + ci->eraseFromParent(); + return true; + } + + // If the length is larger than the alignment, we can't optimize + if (len > alignment) + return false; + + // Make sure we have a constant ubyte to work with so we can extract + // the value to be filled. + ConstantUInt* FILL = dyn_cast(ci->getOperand(2)); + if (!FILL) + return false; + if (FILL->getType() != Type::UByteTy) + return false; + + // memset(s,c,n) -> store s, c (for n=1,2,4,8) + + // Extract the fill character + uint64_t fill_char = FILL->getValue(); + uint64_t fill_value = fill_char; + + // Get the type we will cast to, based on size of memory area to fill, and + // and the value we will store there. + Value* dest = ci->getOperand(1); + Type* castType = 0; + switch (len) + { + case 1: + castType = Type::UByteTy; + break; + case 2: + castType = Type::UShortTy; + fill_value |= fill_char << 8; + break; + case 4: + castType = Type::UIntTy; + fill_value |= fill_char << 8 | fill_char << 16 | fill_char << 24; + break; + case 8: + castType = Type::ULongTy; + fill_value |= fill_char << 8 | fill_char << 16 | fill_char << 24; + fill_value |= fill_char << 32 | fill_char << 40 | fill_char << 48; + fill_value |= fill_char << 56; + break; + default: + return false; + } + + // Cast dest to the right sized primitive and then load/store + CastInst* DestCast = + new CastInst(dest,PointerType::get(castType),dest->getName()+".cast",ci); + new StoreInst(ConstantUInt::get(castType,fill_value),DestCast, ci); + ci->eraseFromParent(); + return true; + } +} LLVMMemSetOptimizer; /// This LibCallOptimization will simplify calls to the "pow" library /// function. It looks for cases where the result of pow is well known and @@ -1349,17 +1567,12 @@ // * memcmp(x,x,l) -> 0 // * memcmp(x,y,l) -> cnst // (if all arguments are constant and strlen(x) <= l and strlen(y) <= l) -// * memcpy(x,y,1) -> *x - *y +// * memcmp(x,y,1) -> *x - *y // // memmove: // * memmove(d,s,l,a) -> memcpy(d,s,l,a) // (if s is a global constant array) // -// memset: -// * memset(s,c,0) -> noop -// * memset(s,c,n) -> store s, c -// (for n=1,2,4,8) -// // pow, powf, powl: // * pow(exp(x),y) -> exp(x*y) // * pow(sqrt(x),y) -> pow(x,y*0.5) @@ -1386,9 +1599,7 @@ // * sqrt(Nroot(x)) -> pow(x,1/(2*N)) // * sqrt(pow(x,y)) -> pow(|x|,y*0.5) // -// strchr, strrchr: -// * strchr(s,c) -> offset_of_in(c,s) -// (if c is a constant integer and s is a constant string) +// strrchr: // * strrchr(s,c) -> reverse_offset_of_in(c,s) // (if c is a constant integer and s is a constant string) // * strrchr(s1,0) -> strchr(s1,0) From lattner at cs.uiuc.edu Tue May 3 11:45:02 2005 From: lattner at cs.uiuc.edu (Chris Lattner) Date: Tue, 3 May 2005 11:45:02 -0500 Subject: [llvm-commits] CVS: llvm/lib/VMCore/Instructions.cpp Message-ID: <200505031645.j43Gj2Pg013872@apoc.cs.uiuc.edu> Changes in directory llvm/lib/VMCore: Instructions.cpp updated: 1.16 -> 1.17 --- Log message: fix a bug in the 1 index GEP handling code --- Diffs of the changes: (+1 -1) Instructions.cpp | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/VMCore/Instructions.cpp diff -u llvm/lib/VMCore/Instructions.cpp:1.16 llvm/lib/VMCore/Instructions.cpp:1.17 --- llvm/lib/VMCore/Instructions.cpp:1.16 Tue May 3 00:43:30 2005 +++ llvm/lib/VMCore/Instructions.cpp Tue May 3 11:44:45 2005 @@ -728,7 +728,7 @@ // Check the pointer index. if (!PTy->indexValid(Idx)) return 0; - return PTy; + return PTy->getElementType(); } //===----------------------------------------------------------------------===// From alenhar2 at cs.uiuc.edu Tue May 3 11:50:05 2005 From: alenhar2 at cs.uiuc.edu (Andrew Lenharth) Date: Tue, 3 May 2005 11:50:05 -0500 Subject: [llvm-commits] CVS: llvm/test/Feature/intrinsics.ll Message-ID: <200505031650.j43Go54p013909@apoc.cs.uiuc.edu> Changes in directory llvm/test/Feature: intrinsics.ll updated: 1.7 -> 1.8 --- Log message: pre add count tests --- Diffs of the changes: (+7 -0) intrinsics.ll | 7 +++++++ 1 files changed, 7 insertions(+) Index: llvm/test/Feature/intrinsics.ll diff -u llvm/test/Feature/intrinsics.ll:1.7 llvm/test/Feature/intrinsics.ll:1.8 --- llvm/test/Feature/intrinsics.ll:1.7 Mon Feb 28 13:31:42 2005 +++ llvm/test/Feature/intrinsics.ll Tue May 3 11:49:48 2005 @@ -8,6 +8,10 @@ declare void %llvm.prefetch(sbyte*, uint, uint) +declare uint %llvm.ctpop.32(uint) +declare ushort %llvm.cttz.16(ushort) +declare ulong %llvm.ctlz.64(ulong) + implementation ; Test llvm intrinsics @@ -16,5 +20,8 @@ call bool %llvm.isunordered(float 0.0, float 1.0) call bool %llvm.isunordered(double 0.0, double 0x7FF8000000000000) call void %llvm.prefetch(sbyte* null, uint 1, uint 3) + call uint %llvm.ctpop(uint 3) + call ushort %llvm.cttz(ushort 7) + call ulong %llvm.ctlz(ulong 65000) ret void } From alenhar2 at cs.uiuc.edu Tue May 3 11:59:22 2005 From: alenhar2 at cs.uiuc.edu (Andrew Lenharth) Date: Tue, 3 May 2005 11:59:22 -0500 Subject: [llvm-commits] CVS: llvm/docs/ReleaseNotes.html Message-ID: <200505031659.j43GxMot013951@apoc.cs.uiuc.edu> Changes in directory llvm/docs: ReleaseNotes.html updated: 1.309 -> 1.310 --- Log message: note the vararg change, and other stuff --- Diffs of the changes: (+20 -2) ReleaseNotes.html | 22 ++++++++++++++++++++-- 1 files changed, 20 insertions(+), 2 deletions(-) Index: llvm/docs/ReleaseNotes.html diff -u llvm/docs/ReleaseNotes.html:1.309 llvm/docs/ReleaseNotes.html:1.310 --- llvm/docs/ReleaseNotes.html:1.309 Fri Apr 22 15:27:33 2005 +++ llvm/docs/ReleaseNotes.html Tue May 3 11:59:09 2005 @@ -130,7 +130,7 @@
    -
  1. +
  2. Transition code for 1.0 style varargs was removed.
@@ -201,6 +201,7 @@
  • Intel and AMD machines running on Win32 with the Cygwin libraries (limited support is available for native builds with Visual C++).
  • PowerPC-based Mac OS X systems, running 10.2 and above.
  • +
  • Alpha-based machines running Debian GNU/Linux
  • The core LLVM infrastructure uses @@ -571,6 +572,23 @@ + +

    + +
    + +
      + +
    • On 21164s, some rare FP arithmatic sequences which may trap do not have the appropriate nops inserted to ensure restartability.
    • + +
    • Vararg functions are not supported.
    • + +
    + +
    +
    Additional Information @@ -603,7 +621,7 @@ src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!" /> The LLVM Compiler Infrastructure
    - Last modified: $Date: 2005/04/22 20:27:33 $ + Last modified: $Date: 2005/05/03 16:59:09 $ From alenhar2 at cs.uiuc.edu Tue May 3 12:01:04 2005 From: alenhar2 at cs.uiuc.edu (Andrew Lenharth) Date: Tue, 3 May 2005 12:01:04 -0500 Subject: [llvm-commits] CVS: llvm/test/Feature/intrinsics.ll Message-ID: <200505031701.j43H14lK013985@apoc.cs.uiuc.edu> Changes in directory llvm/test/Feature: intrinsics.ll updated: 1.8 -> 1.9 --- Log message: yea yea yea --- Diffs of the changes: (+3 -3) intrinsics.ll | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) Index: llvm/test/Feature/intrinsics.ll diff -u llvm/test/Feature/intrinsics.ll:1.8 llvm/test/Feature/intrinsics.ll:1.9 --- llvm/test/Feature/intrinsics.ll:1.8 Tue May 3 11:49:48 2005 +++ llvm/test/Feature/intrinsics.ll Tue May 3 12:00:48 2005 @@ -8,9 +8,9 @@ declare void %llvm.prefetch(sbyte*, uint, uint) -declare uint %llvm.ctpop.32(uint) -declare ushort %llvm.cttz.16(ushort) -declare ulong %llvm.ctlz.64(ulong) +declare uint %llvm.ctpop(uint) +declare ushort %llvm.cttz(ushort) +declare ulong %llvm.ctlz(ulong) implementation From reid at x10sys.com Tue May 3 12:08:56 2005 From: reid at x10sys.com (Reid Spencer) Date: Tue, 3 May 2005 12:08:56 -0500 Subject: [llvm-commits] CVS: llvm/test/Regression/Transforms/SimplifyLibCalls/SPrintF.ll Message-ID: <200505031708.MAA12447@zion.cs.uiuc.edu> Changes in directory llvm/test/Regression/Transforms/SimplifyLibCalls: SPrintF.ll added (r1.1) --- Log message: Add a test case for SPrintFOptimization. --- Diffs of the changes: (+32 -0) SPrintF.ll | 32 ++++++++++++++++++++++++++++++++ 1 files changed, 32 insertions(+) Index: llvm/test/Regression/Transforms/SimplifyLibCalls/SPrintF.ll diff -c /dev/null llvm/test/Regression/Transforms/SimplifyLibCalls/SPrintF.ll:1.1 *** /dev/null Tue May 3 12:08:55 2005 --- llvm/test/Regression/Transforms/SimplifyLibCalls/SPrintF.ll Tue May 3 12:08:45 2005 *************** *** 0 **** --- 1,32 ---- + ; Test that the SPrintFOptimizer works correctly + ; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | not grep 'call.*sprintf' + + declare int %sprintf(sbyte*,sbyte*,...) + declare int %puts(sbyte*) + %hello = constant [6 x sbyte] c"hello\00" + %null = constant [1 x sbyte] c"\00" + %null_hello = constant [7 x sbyte] c"\00hello\00" + %fmt1 = constant [3 x sbyte] c"%s\00" + %fmt2 = constant [3 x sbyte] c"%c\00" + + implementation ; Functions: + + int %main () { + %target = alloca [1024 x sbyte] + %target_p = getelementptr [1024 x sbyte]* %target, int 0, int 0 + %hello_p = getelementptr [6 x sbyte]* %hello, int 0, int 0 + %null_p = getelementptr [1 x sbyte]* %null, int 0, int 0 + %nh_p = getelementptr [7 x sbyte]* %null_hello, int 0, int 0 + %fmt1_p = getelementptr [3 x sbyte]* %fmt1, int 0, int 0 + %fmt2_p = getelementptr [3 x sbyte]* %fmt2, int 0, int 0 + store sbyte 0, sbyte* %target_p + %r1 = call int (sbyte*,sbyte*,...)* %sprintf(sbyte* %target_p, sbyte* %hello_p) + %r2 = call int (sbyte*,sbyte*,...)* %sprintf(sbyte* %target_p, sbyte* %null_p) + %r3 = call int (sbyte*,sbyte*,...)* %sprintf(sbyte* %target_p, sbyte* %nh_p) + %r4 = call int (sbyte*,sbyte*,...)* %sprintf(sbyte* %target_p, sbyte* %fmt1_p, sbyte* %hello_p) + %r5 = call int (sbyte*,sbyte*,...)* %sprintf(sbyte* %target_p, sbyte* %fmt2_p, int 82) + %r6 = add int %r1, %r2 + %r7 = add int %r3, %r6 + %r8 = add int %r5, %r7 + ret int %r8 + } From reid at x10sys.com Tue May 3 12:09:49 2005 From: reid at x10sys.com (Reid Spencer) Date: Tue, 3 May 2005 12:09:49 -0500 Subject: [llvm-commits] CVS: llvm/test/Regression/Transforms/SimplifyLibCalls/StrChr.ll Message-ID: <200505031709.MAA12459@zion.cs.uiuc.edu> Changes in directory llvm/test/Regression/Transforms/SimplifyLibCalls: StrChr.ll updated: 1.1 -> 1.2 --- Log message: Fix this test to succeed even if "strchr" is on a call instruction. --- Diffs of the changes: (+5 -3) StrChr.ll | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) Index: llvm/test/Regression/Transforms/SimplifyLibCalls/StrChr.ll diff -u llvm/test/Regression/Transforms/SimplifyLibCalls/StrChr.ll:1.1 llvm/test/Regression/Transforms/SimplifyLibCalls/StrChr.ll:1.2 --- llvm/test/Regression/Transforms/SimplifyLibCalls/StrChr.ll:1.1 Tue May 3 01:22:41 2005 +++ llvm/test/Regression/Transforms/SimplifyLibCalls/StrChr.ll Tue May 3 12:09:38 2005 @@ -1,5 +1,5 @@ ; Test that the StrChrOptimizer works correctly -; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | not grep 'call.*strchr' +; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | not grep 'call.*%strchr' declare sbyte* %strchr(sbyte*,int) declare int %puts(sbyte*) @@ -14,6 +14,8 @@ %world = call sbyte* %strchr(sbyte* %hello_p, int 119 ) %ignore = call sbyte* %strchr(sbyte* %null_p, int 119 ) - %result = call int %puts(sbyte* %world) - ret int %result + %len = call int %puts(sbyte* %world) + %index = add int %len, 112 + %result = call sbyte* %strchr(sbyte* %hello_p, int %index) + ret int %index } From alenhar2 at cs.uiuc.edu Tue May 3 12:19:47 2005 From: alenhar2 at cs.uiuc.edu (Andrew Lenharth) Date: Tue, 3 May 2005 12:19:47 -0500 Subject: [llvm-commits] CVS: llvm/include/llvm/Intrinsics.h Message-ID: <200505031719.j43HJlFL014186@apoc.cs.uiuc.edu> Changes in directory llvm/include/llvm: Intrinsics.h updated: 1.31 -> 1.32 --- Log message: Implement count leading zeros (ctlz), count trailing zeros (cttz), and count population (ctpop). Generic lowering is implemented, however only promotion is implemented for SelectionDAG at the moment. More coming soon. --- Diffs of the changes: (+5 -1) Intrinsics.h | 6 +++++- 1 files changed, 5 insertions(+), 1 deletion(-) Index: llvm/include/llvm/Intrinsics.h diff -u llvm/include/llvm/Intrinsics.h:1.31 llvm/include/llvm/Intrinsics.h:1.32 --- llvm/include/llvm/Intrinsics.h:1.31 Fri Apr 29 22:43:39 2005 +++ llvm/include/llvm/Intrinsics.h Tue May 3 12:19:29 2005 @@ -63,13 +63,17 @@ // libm related functions. isunordered, // Return true if either argument is a NaN - sqrt, + ctpop, //count population + ctlz, //count leading zeros + cttz, //count trailing zeros + sqrt, //square root // Input/Output intrinsics. readport, writeport, readio, writeio + }; } // End Intrinsic namespace From alenhar2 at cs.uiuc.edu Tue May 3 12:19:54 2005 From: alenhar2 at cs.uiuc.edu (Andrew Lenharth) Date: Tue, 3 May 2005 12:19:54 -0500 Subject: [llvm-commits] CVS: llvm/include/llvm/CodeGen/SelectionDAG.h SelectionDAGNodes.h Message-ID: <200505031719.j43HJs3s014194@apoc.cs.uiuc.edu> Changes in directory llvm/include/llvm/CodeGen: SelectionDAG.h updated: 1.22 -> 1.23 SelectionDAGNodes.h updated: 1.35 -> 1.36 --- Log message: Implement count leading zeros (ctlz), count trailing zeros (cttz), and count population (ctpop). Generic lowering is implemented, however only promotion is implemented for SelectionDAG at the moment. More coming soon. --- Diffs of the changes: (+13 -4) SelectionDAG.h | 6 +++++- SelectionDAGNodes.h | 11 ++++++++--- 2 files changed, 13 insertions(+), 4 deletions(-) Index: llvm/include/llvm/CodeGen/SelectionDAG.h diff -u llvm/include/llvm/CodeGen/SelectionDAG.h:1.22 llvm/include/llvm/CodeGen/SelectionDAG.h:1.23 --- llvm/include/llvm/CodeGen/SelectionDAG.h:1.22 Wed Apr 27 15:10:01 2005 +++ llvm/include/llvm/CodeGen/SelectionDAG.h Tue May 3 12:19:29 2005 @@ -44,6 +44,10 @@ // AllNodes - All of the nodes in the DAG std::vector AllNodes; + + // ValueNodes - track SrcValue nodes + std::map, SDNode*> ValueNodes; + public: SelectionDAG(TargetLowering &tli, MachineFunction &mf) : TLI(tli), MF(mf) { EntryNode = Root = getNode(ISD::EntryToken, MVT::Other); @@ -183,7 +187,7 @@ SDOperand getLoad(MVT::ValueType VT, SDOperand Chain, SDOperand Ptr, SDOperand SV); // getSrcValue - construct a node to track a Value* through the backend - SDOperand getSrcValue(const Value* I); + SDOperand getSrcValue(const Value* I, int offset = 0); void replaceAllUsesWith(SDOperand Old, SDOperand New) { assert(Old != New && "RAUW self!"); Index: llvm/include/llvm/CodeGen/SelectionDAGNodes.h diff -u llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.35 llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.36 --- llvm/include/llvm/CodeGen/SelectionDAGNodes.h:1.35 Thu Apr 28 16:43:25 2005 +++ llvm/include/llvm/CodeGen/SelectionDAGNodes.h Tue May 3 12:19:29 2005 @@ -100,6 +100,9 @@ // Bitwise operators. AND, OR, XOR, SHL, SRA, SRL, + // Counting operators + CTTZ, CTLZ, CTPOP, + // Select operator. SELECT, @@ -546,7 +549,7 @@ ND = N4.Val->getNodeDepth(); NodeDepth = ND+1; - Operands.reserve(3); Operands.push_back(N1); Operands.push_back(N2); + Operands.reserve(4); Operands.push_back(N1); Operands.push_back(N2); Operands.push_back(N3); Operands.push_back(N4); N1.Val->Uses.push_back(this); N2.Val->Uses.push_back(this); N3.Val->Uses.push_back(this); N4.Val->Uses.push_back(this); @@ -748,13 +751,15 @@ class SrcValueSDNode : public SDNode { const Value *V; + int offset; protected: friend class SelectionDAG; - SrcValueSDNode(const Value* v) - : SDNode(ISD::SRCVALUE, MVT::Other), V(v) {} + SrcValueSDNode(const Value* v, int o) + : SDNode(ISD::SRCVALUE, MVT::Other), V(v), offset(o) {} public: const Value *getValue() const { return V; } + int getOffset() const { return offset; } static bool classof(const SrcValueSDNode *) { return true; } static bool classof(const SDNode *N) { From alenhar2 at cs.uiuc.edu Tue May 3 12:19:55 2005 From: alenhar2 at cs.uiuc.edu (Andrew Lenharth) Date: Tue, 3 May 2005 12:19:55 -0500 Subject: [llvm-commits] CVS: llvm/lib/VMCore/Function.cpp Verifier.cpp Message-ID: <200505031719.j43HJtAt014202@apoc.cs.uiuc.edu> Changes in directory llvm/lib/VMCore: Function.cpp updated: 1.93 -> 1.94 Verifier.cpp updated: 1.131 -> 1.132 --- Log message: Implement count leading zeros (ctlz), count trailing zeros (cttz), and count population (ctpop). Generic lowering is implemented, however only promotion is implemented for SelectionDAG at the moment. More coming soon. --- Diffs of the changes: (+17 -0) Function.cpp | 5 +++++ Verifier.cpp | 12 ++++++++++++ 2 files changed, 17 insertions(+) Index: llvm/lib/VMCore/Function.cpp diff -u llvm/lib/VMCore/Function.cpp:1.93 llvm/lib/VMCore/Function.cpp:1.94 --- llvm/lib/VMCore/Function.cpp:1.93 Fri Apr 29 22:43:51 2005 +++ llvm/lib/VMCore/Function.cpp Tue May 3 12:19:30 2005 @@ -206,6 +206,11 @@ assert(getName().size() != 5 && "'llvm.' is an invalid intrinsic name!"); switch (getName()[5]) { + case 'c': + if (getName() == "llvm.ctpop") return Intrinsic::ctpop; + if (getName() == "llvm.cttz") return Intrinsic::cttz; + if (getName() == "llvm.ctlz") return Intrinsic::ctlz; + break; case 'd': if (getName() == "llvm.dbg.stoppoint") return Intrinsic::dbg_stoppoint; if (getName() == "llvm.dbg.region.start")return Intrinsic::dbg_region_start; Index: llvm/lib/VMCore/Verifier.cpp diff -u llvm/lib/VMCore/Verifier.cpp:1.131 llvm/lib/VMCore/Verifier.cpp:1.132 --- llvm/lib/VMCore/Verifier.cpp:1.131 Fri Apr 29 22:43:52 2005 +++ llvm/lib/VMCore/Verifier.cpp Tue May 3 12:19:30 2005 @@ -723,6 +723,18 @@ NumArgs = 2; break; + case Intrinsic::ctpop: + case Intrinsic::ctlz: + case Intrinsic::cttz: + Assert1(FT->getNumParams() == 1, + "Illegal # arguments for intrinsic function!", IF); + Assert1(FT->getReturnType() == FT->getParamType(0), + "Return type does not match source type", IF); + Assert1(FT->getParamType(0)->isIntegral(), + "Argument must be of an int type!", IF); + NumArgs = 1; + break; + case Intrinsic::sqrt: Assert1(FT->getNumParams() == 1, "Illegal # arguments for intrinsic function!", IF); From alenhar2 at cs.uiuc.edu Tue May 3 12:19:56 2005 From: alenhar2 at cs.uiuc.edu (Andrew Lenharth) Date: Tue, 3 May 2005 12:19:56 -0500 Subject: [llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp SelectionDAG.cpp SelectionDAGISel.cpp Message-ID: <200505031719.j43HJuXH014207@apoc.cs.uiuc.edu> Changes in directory llvm/lib/CodeGen/SelectionDAG: LegalizeDAG.cpp updated: 1.93 -> 1.94 SelectionDAG.cpp updated: 1.97 -> 1.98 SelectionDAGISel.cpp updated: 1.45 -> 1.46 --- Log message: Implement count leading zeros (ctlz), count trailing zeros (cttz), and count population (ctpop). Generic lowering is implemented, however only promotion is implemented for SelectionDAG at the moment. More coming soon. --- Diffs of the changes: (+66 -3) LegalizeDAG.cpp | 45 +++++++++++++++++++++++++++++++++++++++++++++ SelectionDAG.cpp | 9 ++++++--- SelectionDAGISel.cpp | 15 +++++++++++++++ 3 files changed, 66 insertions(+), 3 deletions(-) Index: llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp diff -u llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp:1.93 llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp:1.94 --- llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp:1.93 Fri Apr 29 23:43:14 2005 +++ llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp Tue May 3 12:19:29 2005 @@ -987,6 +987,51 @@ } break; + case ISD::CTPOP: + case ISD::CTTZ: + case ISD::CTLZ: + Tmp1 = LegalizeOp(Node->getOperand(0)); // Op + switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) { + case TargetLowering::Legal: + if (Tmp1 != Node->getOperand(0)) + Result = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1); + break; + case TargetLowering::Promote: { + MVT::ValueType OVT = Tmp1.getValueType(); + MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT); + //Zero extend the argument + Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1); + // Perform the larger operation, then subtract if needed. + Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1); + switch(Node->getOpcode()) + { + case ISD::CTPOP: + Result = Tmp1; + break; + case ISD::CTTZ: + //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT) + Tmp2 = DAG.getSetCC(ISD::SETEQ, MVT::i1, Tmp1, + DAG.getConstant(getSizeInBits(NVT), NVT)); + Result = DAG.getNode(ISD::SELECT, NVT, Tmp2, + DAG.getConstant(getSizeInBits(OVT),NVT), Tmp1); + break; + case ISD::CTLZ: + //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT)) + Result = DAG.getNode(ISD::SUB, NVT, Tmp1, + DAG.getConstant(getSizeInBits(NVT) - + getSizeInBits(OVT), NVT)); + break; + } + break; + } + case TargetLowering::Custom: + assert(0 && "Cannot custom handle this yet!"); + case TargetLowering::Expand: + assert(0 && "Cannot expand this yet!"); + break; + } + break; + // Unary operators case ISD::FABS: case ISD::FNEG: Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp diff -u llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.97 llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.98 --- llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp:1.97 Thu Apr 28 16:44:03 2005 +++ llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp Tue May 3 12:19:29 2005 @@ -1328,10 +1328,13 @@ return SDOperand(N, 0); } -SDOperand SelectionDAG::getSrcValue(const Value* v) { - SDNode *N = new SrcValueSDNode(v); +SDOperand SelectionDAG::getSrcValue(const Value* v, int offset) { + if (v && ValueNodes[std::make_pair(v,offset)]) + return SDOperand(ValueNodes[std::make_pair(v,offset)], 0); + SDNode *N = new SrcValueSDNode(v, offset); N->setValueTypes(MVT::Other); - // FIXME: memoize NODES + if (v) //only track non-null values + ValueNodes[std::make_pair(v,offset)] = N; AllNodes.push_back(N); return SDOperand(N, 0); } Index: llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp diff -u llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.45 llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.46 --- llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp:1.45 Fri Apr 29 23:43:14 2005 +++ llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp Tue May 3 12:19:29 2005 @@ -707,6 +707,21 @@ DAG.setRoot(DAG.getNode(ISD::PCMARKER, MVT::Other, getRoot(), Num)); return; } + case Intrinsic::cttz: + setValue(&I, DAG.getNode(ISD::CTTZ, + getValue(I.getOperand(1)).getValueType(), + getValue(I.getOperand(1)))); + return; + case Intrinsic::ctlz: + setValue(&I, DAG.getNode(ISD::CTLZ, + getValue(I.getOperand(1)).getValueType(), + getValue(I.getOperand(1)))); + return; + case Intrinsic::ctpop: + setValue(&I, DAG.getNode(ISD::CTPOP, + getValue(I.getOperand(1)).getValueType(), + getValue(I.getOperand(1)))); + return; } SDOperand Callee; From alenhar2 at cs.uiuc.edu Tue May 3 12:19:56 2005 From: alenhar2 at cs.uiuc.edu (Andrew Lenharth) Date: Tue, 3 May 2005 12:19:56 -0500 Subject: [llvm-commits] CVS: llvm/lib/Target/Alpha/AlphaISelPattern.cpp AlphaInstrInfo.td Message-ID: <200505031719.j43HJudS014215@apoc.cs.uiuc.edu> Changes in directory llvm/lib/Target/Alpha: AlphaISelPattern.cpp updated: 1.106 -> 1.107 AlphaInstrInfo.td updated: 1.41 -> 1.42 --- Log message: Implement count leading zeros (ctlz), count trailing zeros (cttz), and count population (ctpop). Generic lowering is implemented, however only promotion is implemented for SelectionDAG at the moment. More coming soon. --- Diffs of the changes: (+16 -6) AlphaISelPattern.cpp | 13 +++++++++++++ AlphaInstrInfo.td | 9 +++------ 2 files changed, 16 insertions(+), 6 deletions(-) Index: llvm/lib/Target/Alpha/AlphaISelPattern.cpp diff -u llvm/lib/Target/Alpha/AlphaISelPattern.cpp:1.106 llvm/lib/Target/Alpha/AlphaISelPattern.cpp:1.107 --- llvm/lib/Target/Alpha/AlphaISelPattern.cpp:1.106 Sat Apr 30 09:19:13 2005 +++ llvm/lib/Target/Alpha/AlphaISelPattern.cpp Tue May 3 12:19:29 2005 @@ -76,6 +76,10 @@ setOperationAction(ISD::SREM , MVT::f32 , Expand); setOperationAction(ISD::SREM , MVT::f64 , Expand); + // setOperationAction(ISD::CTPOP , MVT::i64 , Expand); + // setOperationAction(ISD::CTTZ , MVT::i64 , Expand); + // setOperationAction(ISD::CTTZ , MVT::i64 , Expand); + //If this didn't legalize into a div.... // setOperationAction(ISD::SREM , MVT::i64, Expand); // setOperationAction(ISD::UREM , MVT::i64, Expand); @@ -1215,6 +1219,15 @@ Node->dump(); assert(0 && "Node not handled!\n"); + case ISD::CTPOP: + case ISD::CTTZ: + case ISD::CTLZ: + Opc = opcode == ISD::CTPOP ? Alpha::CTPOP : + (opcode == ISD::CTTZ ? Alpha::CTTZ : Alpha::CTLZ); + Tmp1 = SelectExpr(N.getOperand(0)); + BuildMI(BB, Opc, 1, Result).addReg(Tmp1); + return Result; + case ISD::MULHU: Tmp1 = SelectExpr(N.getOperand(0)); Tmp2 = SelectExpr(N.getOperand(1)); Index: llvm/lib/Target/Alpha/AlphaInstrInfo.td diff -u llvm/lib/Target/Alpha/AlphaInstrInfo.td:1.41 llvm/lib/Target/Alpha/AlphaInstrInfo.td:1.42 --- llvm/lib/Target/Alpha/AlphaInstrInfo.td:1.41 Thu Apr 14 12:34:20 2005 +++ llvm/lib/Target/Alpha/AlphaInstrInfo.td Tue May 3 12:19:29 2005 @@ -186,12 +186,9 @@ def BICi : OFormL<0x11, 0x08, (ops GPRC:$RC, GPRC:$RA, u8imm:$L), "bic $RA,$L,$RC">; //Bit clear def BIS : OForm< 0x11, 0x20, (ops GPRC:$RC, GPRC:$RA, GPRC:$RB), "bis $RA,$RB,$RC">; //Logical sum def BISi : OFormL<0x11, 0x20, (ops GPRC:$RC, GPRC:$RA, u8imm:$L), "bis $RA,$L,$RC">; //Logical sum -def CTLZ : OForm< 0x1C, 0x32, (ops GPRC:$RC, GPRC:$RA, GPRC:$RB), "CTLZ $RA,$RB,$RC">; //Count leading zero -def CTLZi : OFormL<0x1C, 0x32, (ops GPRC:$RC, GPRC:$RA, u8imm:$L), "CTLZ $RA,$L,$RC">; //Count leading zero -def CTPOP : OForm< 0x1C, 0x30, (ops GPRC:$RC, GPRC:$RA, GPRC:$RB), "CTPOP $RA,$RB,$RC">; //Count population -def CTPOPi : OFormL<0x1C, 0x30, (ops GPRC:$RC, GPRC:$RA, u8imm:$L), "CTPOP $RA,$L,$RC">; //Count population -def CTTZ : OForm< 0x1C, 0x33, (ops GPRC:$RC, GPRC:$RA, GPRC:$RB), "CTTZ $RA,$RB,$RC">; //Count trailing zero -def CTTZi : OFormL<0x1C, 0x33, (ops GPRC:$RC, GPRC:$RA, u8imm:$L), "CTTZ $RA,$L,$RC">; //Count trailing zero +def CTLZ : OForm< 0x1C, 0x32, (ops GPRC:$RC, GPRC:$RB), "CTLZ $RB,$RC">; //Count leading zero +def CTPOP : OForm< 0x1C, 0x30, (ops GPRC:$RC, GPRC:$RB), "CTPOP $RB,$RC">; //Count population +def CTTZ : OForm< 0x1C, 0x33, (ops GPRC:$RC, GPRC:$RB), "CTTZ $RB,$RC">; //Count trailing zero def EQV : OForm< 0x11, 0x48, (ops GPRC:$RC, GPRC:$RA, GPRC:$RB), "eqv $RA,$RB,$RC">; //Logical equivalence def EQVi : OFormL<0x11, 0x48, (ops GPRC:$RC, GPRC:$RA, u8imm:$L), "eqv $RA,$L,$RC">; //Logical equivalence def EXTBL : OForm< 0x12, 0x06, (ops GPRC:$RC, GPRC:$RA, GPRC:$RB), "EXTBL $RA,$RB,$RC">; //Extract byte low From alenhar2 at cs.uiuc.edu Tue May 3 12:19:57 2005 From: alenhar2 at cs.uiuc.edu (Andrew Lenharth) Date: Tue, 3 May 2005 12:19:57 -0500 Subject: [llvm-commits] CVS: llvm/lib/CodeGen/IntrinsicLowering.cpp Message-ID: <200505031719.j43HJvf8014223@apoc.cs.uiuc.edu> Changes in directory llvm/lib/CodeGen: IntrinsicLowering.cpp updated: 1.28 -> 1.29 --- Log message: Implement count leading zeros (ctlz), count trailing zeros (cttz), and count population (ctpop). Generic lowering is implemented, however only promotion is implemented for SelectionDAG at the moment. More coming soon. --- Diffs of the changes: (+196 -0) IntrinsicLowering.cpp | 196 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 196 insertions(+) Index: llvm/lib/CodeGen/IntrinsicLowering.cpp diff -u llvm/lib/CodeGen/IntrinsicLowering.cpp:1.28 llvm/lib/CodeGen/IntrinsicLowering.cpp:1.29 --- llvm/lib/CodeGen/IntrinsicLowering.cpp:1.28 Sat Apr 30 02:13:31 2005 +++ llvm/lib/CodeGen/IntrinsicLowering.cpp Tue May 3 12:19:29 2005 @@ -16,6 +16,7 @@ #include "llvm/DerivedTypes.h" #include "llvm/Module.h" #include "llvm/Instructions.h" +#include "llvm/Type.h" #include using namespace llvm; @@ -164,6 +165,201 @@ AbortFCache); break; } + case Intrinsic::ctpop: { + Value *Src = CI->getOperand(1); + switch (CI->getOperand(0)->getType()->getTypeID()) + { + case Type::SByteTyID: + case Type::UByteTyID: + { + Value* SA = ConstantUInt::get(Type::UByteTy, 1); + Value* MA = ConstantUInt::get(Type::UIntTy, 0x55); + Src = BinaryOperator::create(Instruction::Add, + BinaryOperator::create(Instruction::And, Src, MA), + BinaryOperator::create(Instruction::And, + new ShiftInst(Instruction::Shr, Src, SA), + MA)); + SA = ConstantUInt::get(Type::UByteTy, 2); + MA = ConstantUInt::get(Type::UIntTy, 0x33); + Src = BinaryOperator::create(Instruction::Add, + BinaryOperator::create(Instruction::And, Src, MA), + BinaryOperator::create(Instruction::And, + new ShiftInst(Instruction::Shr, Src, SA), + MA)); + SA = ConstantUInt::get(Type::UByteTy, 4); + MA = ConstantUInt::get(Type::UIntTy, 0x0F); + Src = BinaryOperator::create(Instruction::Add, + BinaryOperator::create(Instruction::And, Src, MA), + BinaryOperator::create(Instruction::And, + new ShiftInst(Instruction::Shr, Src, SA), + MA), "ctpop"); + } + break; + case Type::ShortTyID: + case Type::UShortTyID: + { + Value* SA = ConstantUInt::get(Type::UByteTy, 1); + Value* MA = ConstantUInt::get(Type::UIntTy, 0x5555); + Src = BinaryOperator::create(Instruction::Add, + BinaryOperator::create(Instruction::And, Src, MA), + BinaryOperator::create(Instruction::And, + new ShiftInst(Instruction::Shr, Src, SA), + MA)); + SA = ConstantUInt::get(Type::UByteTy, 2); + MA = ConstantUInt::get(Type::UIntTy, 0x3333); + Src = BinaryOperator::create(Instruction::Add, + BinaryOperator::create(Instruction::And, Src, MA), + BinaryOperator::create(Instruction::And, + new ShiftInst(Instruction::Shr, Src, SA), + MA)); + SA = ConstantUInt::get(Type::UByteTy, 4); + MA = ConstantUInt::get(Type::UIntTy, 0x0F0F); + Src = BinaryOperator::create(Instruction::Add, + BinaryOperator::create(Instruction::And, Src, MA), + BinaryOperator::create(Instruction::And, + new ShiftInst(Instruction::Shr, Src, SA), + MA)); + SA = ConstantUInt::get(Type::UByteTy, 8); + MA = ConstantUInt::get(Type::UIntTy, 0x00FF); + Src = BinaryOperator::create(Instruction::Add, + BinaryOperator::create(Instruction::And, Src, MA), + BinaryOperator::create(Instruction::And, + new ShiftInst(Instruction::Shr, Src, SA), + MA), "ctpop"); + + } + break; + case Type::IntTyID: + case Type::UIntTyID: + { + Value* SA = ConstantUInt::get(Type::UByteTy, 1); + Value* MA = ConstantUInt::get(Type::UIntTy, 0x55555555); + Src = BinaryOperator::create(Instruction::Add, + BinaryOperator::create(Instruction::And, Src, MA), + BinaryOperator::create(Instruction::And, + new ShiftInst(Instruction::Shr, Src, SA), + MA)); + SA = ConstantUInt::get(Type::UByteTy, 2); + MA = ConstantUInt::get(Type::UIntTy, 0x33333333); + Src = BinaryOperator::create(Instruction::Add, + BinaryOperator::create(Instruction::And, Src, MA), + BinaryOperator::create(Instruction::And, + new ShiftInst(Instruction::Shr, Src, SA), + MA)); + SA = ConstantUInt::get(Type::UByteTy, 4); + MA = ConstantUInt::get(Type::UIntTy, 0x0F0F0F0F); + Src = BinaryOperator::create(Instruction::Add, + BinaryOperator::create(Instruction::And, Src, MA), + BinaryOperator::create(Instruction::And, + new ShiftInst(Instruction::Shr, Src, SA), + MA)); + SA = ConstantUInt::get(Type::UByteTy, 8); + MA = ConstantUInt::get(Type::UIntTy, 0x00FF00FF); + Src = BinaryOperator::create(Instruction::Add, + BinaryOperator::create(Instruction::And, Src, MA), + BinaryOperator::create(Instruction::And, + new ShiftInst(Instruction::Shr, Src, SA), + MA)); + SA = ConstantUInt::get(Type::UByteTy, 8); + MA = ConstantUInt::get(Type::UIntTy, 0x0000FFFF); + Src = BinaryOperator::create(Instruction::Add, + BinaryOperator::create(Instruction::And, Src, MA), + BinaryOperator::create(Instruction::And, + new ShiftInst(Instruction::Shr, Src, SA), + MA), "ctpop"); + } + break; + case Type::LongTyID: + case Type::ULongTyID: + { + Value* SA = ConstantUInt::get(Type::UByteTy, 1); + Value* MA = ConstantUInt::get(Type::ULongTy, 0x5555555555555555ULL); + Src = BinaryOperator::create(Instruction::Add, + BinaryOperator::create(Instruction::And, Src, MA), + BinaryOperator::create(Instruction::And, + new ShiftInst(Instruction::Shr, Src, SA), + MA)); + SA = ConstantUInt::get(Type::UByteTy, 2); + MA = ConstantUInt::get(Type::ULongTy, 0x3333333333333333ULL); + Src = BinaryOperator::create(Instruction::Add, + BinaryOperator::create(Instruction::And, Src, MA), + BinaryOperator::create(Instruction::And, + new ShiftInst(Instruction::Shr, Src, SA), + MA)); + SA = ConstantUInt::get(Type::UByteTy, 4); + MA = ConstantUInt::get(Type::ULongTy, 0x0F0F0F0F0F0F0F0FULL); + Src = BinaryOperator::create(Instruction::Add, + BinaryOperator::create(Instruction::And, Src, MA), + BinaryOperator::create(Instruction::And, + new ShiftInst(Instruction::Shr, Src, SA), + MA)); + SA = ConstantUInt::get(Type::UByteTy, 8); + MA = ConstantUInt::get(Type::ULongTy, 0x00FF00FF00FF00FFULL); + Src = BinaryOperator::create(Instruction::Add, + BinaryOperator::create(Instruction::And, Src, MA), + BinaryOperator::create(Instruction::And, + new ShiftInst(Instruction::Shr, Src, SA), + MA)); + SA = ConstantUInt::get(Type::UByteTy, 16); + MA = ConstantUInt::get(Type::ULongTy, 0x00000000FFFFFFFFULL); + Src = BinaryOperator::create(Instruction::Add, + BinaryOperator::create(Instruction::And, Src, MA), + BinaryOperator::create(Instruction::And, + new ShiftInst(Instruction::Shr, Src, SA), + MA), "ctpop"); + } + break; + default: + abort(); + } + + CI->replaceAllUsesWith(Src); + break; + } + case Intrinsic::ctlz: { + Value *Src = CI->getOperand(1); + Value* SA; + switch (CI->getOperand(0)->getType()->getTypeID()) + { + case Type::LongTyID: + case Type::ULongTyID: + SA = ConstantUInt::get(Type::UByteTy, 32); + Src = BinaryOperator::create(Instruction::Or, Src, new ShiftInst(Instruction::Shr, Src, SA)); + case Type::IntTyID: + case Type::UIntTyID: + SA = ConstantUInt::get(Type::UByteTy, 16); + Src = BinaryOperator::create(Instruction::Or, Src, new ShiftInst(Instruction::Shr, Src, SA)); + case Type::ShortTyID: + case Type::UShortTyID: + SA = ConstantUInt::get(Type::UByteTy, 8); + Src = BinaryOperator::create(Instruction::Or, Src, new ShiftInst(Instruction::Shr, Src, SA)); + default: + SA = ConstantUInt::get(Type::UByteTy, 1); + Src = BinaryOperator::create(Instruction::Or, Src, new ShiftInst(Instruction::Shr, Src, SA)); + SA = ConstantUInt::get(Type::UByteTy, 2); + Src = BinaryOperator::create(Instruction::Or, Src, new ShiftInst(Instruction::Shr, Src, SA)); + SA = ConstantUInt::get(Type::UByteTy, 4); + Src = BinaryOperator::create(Instruction::Or, Src, new ShiftInst(Instruction::Shr, Src, SA)); + }; + Src = BinaryOperator::createNot(Src); + + Src = new CallInst(new Function(CI->getCalledFunction()->getFunctionType(), + CI->getCalledFunction()->getLinkage(), + "llvm.ctpop"), Src); + CI->replaceAllUsesWith(Src); + break; + } + case Intrinsic::cttz: { + Value *Src = CI->getOperand(1); + Src = BinaryOperator::create(Instruction::And, BinaryOperator::createNot(Src), + BinaryOperator::create(Instruction::Sub, Src, + ConstantUInt::get(CI->getOperand(0)->getType(), 1))); + Src = new CallInst(new Function(CI->getCalledFunction()->getFunctionType(), + CI->getCalledFunction()->getLinkage(), + "llvm.ctpop"), Src); + CI->replaceAllUsesWith(Src); + break; + } case Intrinsic::returnaddress: case Intrinsic::frameaddress: From alenhar2 at cs.uiuc.edu Tue May 3 12:19:57 2005 From: alenhar2 at cs.uiuc.edu (Andrew Lenharth) Date: Tue, 3 May 2005 12:19:57 -0500 Subject: [llvm-commits] CVS: llvm/lib/Target/X86/X86ISelPattern.cpp Message-ID: <200505031719.j43HJvhv014227@apoc.cs.uiuc.edu> Changes in directory llvm/lib/Target/X86: X86ISelPattern.cpp updated: 1.110 -> 1.111 --- Log message: Implement count leading zeros (ctlz), count trailing zeros (cttz), and count population (ctpop). Generic lowering is implemented, however only promotion is implemented for SelectionDAG at the moment. More coming soon. --- Diffs of the changes: (+3 -0) X86ISelPattern.cpp | 3 +++ 1 files changed, 3 insertions(+) Index: llvm/lib/Target/X86/X86ISelPattern.cpp diff -u llvm/lib/Target/X86/X86ISelPattern.cpp:1.110 llvm/lib/Target/X86/X86ISelPattern.cpp:1.111 --- llvm/lib/Target/X86/X86ISelPattern.cpp:1.110 Fri Apr 29 23:25:35 2005 +++ llvm/lib/Target/X86/X86ISelPattern.cpp Tue May 3 12:19:29 2005 @@ -64,6 +64,9 @@ setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand); setOperationAction(ISD::SEXTLOAD , MVT::i1 , Expand); setOperationAction(ISD::SREM , MVT::f64 , Expand); + setOperationAction(ISD::CTPOP , MVT::i32 , Expand); + setOperationAction(ISD::CTTZ , MVT::i32 , Expand); + setOperationAction(ISD::CTTZ , MVT::i32 , Expand); if (!UnsafeFPMath) { setOperationAction(ISD::FSIN , MVT::f64 , Expand); From alenhar2 at cs.uiuc.edu Tue May 3 12:19:57 2005 From: alenhar2 at cs.uiuc.edu (Andrew Lenharth) Date: Tue, 3 May 2005 12:19:57 -0500 Subject: [llvm-commits] CVS: llvm/lib/Target/PowerPC/PPC32ISelPattern.cpp PPC64ISelPattern.cpp Message-ID: <200505031719.j43HJvg9014230@apoc.cs.uiuc.edu> Changes in directory llvm/lib/Target/PowerPC: PPC32ISelPattern.cpp updated: 1.80 -> 1.81 PPC64ISelPattern.cpp updated: 1.12 -> 1.13 --- Log message: Implement count leading zeros (ctlz), count trailing zeros (cttz), and count population (ctpop). Generic lowering is implemented, however only promotion is implemented for SelectionDAG at the moment. More coming soon. --- Diffs of the changes: (+10 -0) PPC32ISelPattern.cpp | 5 +++++ PPC64ISelPattern.cpp | 5 +++++ 2 files changed, 10 insertions(+) Index: llvm/lib/Target/PowerPC/PPC32ISelPattern.cpp diff -u llvm/lib/Target/PowerPC/PPC32ISelPattern.cpp:1.80 llvm/lib/Target/PowerPC/PPC32ISelPattern.cpp:1.81 --- llvm/lib/Target/PowerPC/PPC32ISelPattern.cpp:1.80 Fri Apr 29 23:26:06 2005 +++ llvm/lib/Target/PowerPC/PPC32ISelPattern.cpp Tue May 3 12:19:29 2005 @@ -69,6 +69,11 @@ setOperationAction(ISD::FCOS , MVT::f32, Expand); setOperationAction(ISD::FSQRT, MVT::f32, Expand); + //PowerPC has these, but they are not implemented + setOperationAction(ISD::CTPOP, MVT::i32 , Expand); + setOperationAction(ISD::CTTZ , MVT::i32 , Expand); + setOperationAction(ISD::CTTZ , MVT::i32 , Expand); + setSetCCResultContents(ZeroOrOneSetCCResult); addLegalFPImmediate(+0.0); // Necessary for FSEL addLegalFPImmediate(-0.0); // Index: llvm/lib/Target/PowerPC/PPC64ISelPattern.cpp diff -u llvm/lib/Target/PowerPC/PPC64ISelPattern.cpp:1.12 llvm/lib/Target/PowerPC/PPC64ISelPattern.cpp:1.13 --- llvm/lib/Target/PowerPC/PPC64ISelPattern.cpp:1.12 Fri Apr 29 23:26:56 2005 +++ llvm/lib/Target/PowerPC/PPC64ISelPattern.cpp Tue May 3 12:19:29 2005 @@ -68,6 +68,11 @@ setOperationAction(ISD::SREM, MVT::i64, Expand); setOperationAction(ISD::UREM, MVT::i64, Expand); + // PowerPC has these, but they are not implemented + setOperationAction(ISD::CTPOP, MVT::i64, Expand); + setOperationAction(ISD::CTTZ , MVT::i64, Expand); + setOperationAction(ISD::CTTZ , MVT::i64, Expand); + setShiftAmountFlavor(Extend); // shl X, 32 == 0 addLegalFPImmediate(+0.0); // Necessary for FSEL addLegalFPImmediate(-0.0); // From alenhar2 at cs.uiuc.edu Tue May 3 13:02:05 2005 From: alenhar2 at cs.uiuc.edu (Andrew Lenharth) Date: Tue, 3 May 2005 13:02:05 -0500 Subject: [llvm-commits] CVS: llvm/docs/LangRef.html Message-ID: <200505031802.j43I25f2023319@apoc.cs.uiuc.edu> Changes in directory llvm/docs: LangRef.html updated: 1.96 -> 1.97 --- Log message: initial descriptions of count intrinsics --- Diffs of the changes: (+118 -1) LangRef.html | 119 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 118 insertions(+), 1 deletion(-) Index: llvm/docs/LangRef.html diff -u llvm/docs/LangRef.html:1.96 llvm/docs/LangRef.html:1.97 --- llvm/docs/LangRef.html:1.96 Sun May 1 17:22:57 2005 +++ llvm/docs/LangRef.html Tue May 3 13:01:48 2005 @@ -145,6 +145,13 @@
  • 'llvm.isunordered' Intrinsic
  • +
  • Bit counting Intrinsics +
      +
    1. 'llvm.ctpop' Intrinsic
    2. +
    3. 'llvm.cttz' Intrinsic
    4. +
    5. 'llvm.ctlz' Intrinsic
    6. +
    +
  • Debugger intrinsics
  • @@ -3029,6 +3036,116 @@
    + + + +
    +

    +LLVM provides intrinsics for a few important bit counting operations. +These allow efficient code generation for some algorithms. +

    + +
    + + + + +
    + +
    Syntax:
    +
    +  declare int %llvm.ctpop(int <src>)
    +
    +
    + +
    Overview:
    + +

    +The 'llvm.ctpop' intrinsic counts the number of ones in a variable. +

    + +
    Arguments:
    + +

    +The only argument is the value to be counted. +

    + +
    Semantics:
    + +

    +The 'llvm.ctpop' intrinsic counts the 1's in a variable. +

    +
    + + + + +
    + +
    Syntax:
    +
    +  declare int %llvm.cttz(int <src>)
    +
    +
    + +
    Overview:
    + +

    +The 'llvm.cttz' intrinsic counts the number of trailing zeros. +

    + +
    Arguments:
    + +

    +The only argument is the value to be counted. +

    + +
    Semantics:
    + +

    +The 'llvm.cttz' intrinsic counts the trailing zeros in a variable. If the src == 0 +then the result is the size in bits of the type of src. +

    +
    + + + + +
    + +
    Syntax:
    +
    +  declare int %llvm.ctlz(int <src>)
    +
    +
    + +
    Overview:
    + +

    +The 'llvm.ctlz' intrinsic counts the number of leading zeros in a variable. +

    + +
    Arguments:
    + +

    +The only argument is the value to be counted. +

    + +
    Semantics:
    + +

    +The 'llvm.ctlz' intrinsic counts the leading zeros in a variable. If the src == 0 +then the result is the size in bits of the type of src. +

    +
    @@ -3056,7 +3173,7 @@ Chris Lattner
    The LLVM Compiler Infrastructure
    - Last modified: $Date: 2005/05/01 22:22:57 $ + Last modified: $Date: 2005/05/03 18:01:48 $ From brukman at cs.uiuc.edu Tue May 3 15:30:45 2005 From: brukman at cs.uiuc.edu (Misha Brukman) Date: Tue, 3 May 2005 15:30:45 -0500 Subject: [llvm-commits] CVS: llvm/tools/llvmc/CompilerDriver.cpp Configuration.cpp Message-ID: <200505032030.PAA14047@zion.cs.uiuc.edu> Changes in directory llvm/tools/llvmc: CompilerDriver.cpp updated: 1.29 -> 1.30 Configuration.cpp updated: 1.18 -> 1.19 --- Log message: Minor clean-ups --- Diffs of the changes: (+13 -17) CompilerDriver.cpp | 28 +++++++++++++--------------- Configuration.cpp | 2 -- 2 files changed, 13 insertions(+), 17 deletions(-) Index: llvm/tools/llvmc/CompilerDriver.cpp diff -u llvm/tools/llvmc/CompilerDriver.cpp:1.29 llvm/tools/llvmc/CompilerDriver.cpp:1.30 --- llvm/tools/llvmc/CompilerDriver.cpp:1.29 Thu Apr 21 18:59:45 2005 +++ llvm/tools/llvmc/CompilerDriver.cpp Tue May 3 15:30:34 2005 @@ -30,21 +30,21 @@ std::cerr << action->program.c_str(); std::vector::const_iterator I = action->args.begin(); while (I != action->args.end()) { - std::cerr << " " << *I; + std::cerr << ' ' << *I; ++I; } - std::cerr << "\n"; + std::cerr << '\n'; } void DumpAction(CompilerDriver::Action* action) { std::cerr << "command = " << action->program.c_str(); std::vector::const_iterator I = action->args.begin(); while (I != action->args.end()) { - std::cerr << " " << *I; + std::cerr << ' ' << *I; ++I; } - std::cerr << "\n"; - std::cerr << "flags = " << action->flags << "\n"; + std::cerr << '\n'; + std::cerr << "flags = " << action->flags << '\n'; } void DumpConfigData(CompilerDriver::ConfigData* cd, const std::string& type ){ @@ -108,19 +108,19 @@ /// @name Methods /// @{ public: - virtual void setFinalPhase( Phases phase ) { + virtual void setFinalPhase(Phases phase) { finalPhase = phase; } - virtual void setOptimization( OptimizationLevels level ) { + virtual void setOptimization(OptimizationLevels level) { optLevel = level; } - virtual void setDriverFlags( unsigned flags ) { + virtual void setDriverFlags(unsigned flags) { Flags = flags & DRIVER_FLAGS_MASK; } - virtual void setOutputMachine( const std::string& machineName ) { + virtual void setOutputMachine(const std::string& machineName) { machine = machineName; } @@ -155,11 +155,11 @@ } } - virtual void addLibraryPath( const sys::Path& libPath ) { + virtual void addLibraryPath(const sys::Path& libPath) { LibraryPaths.push_back(libPath); } - virtual void addToolPath( const sys::Path& toolPath ) { + virtual void addToolPath(const sys::Path& toolPath) { ToolPaths.push_back(toolPath); } @@ -195,7 +195,7 @@ } sys::Path MakeTempFile(const std::string& basename, - const std::string& suffix ) { + const std::string& suffix) { sys::Path result(TempDir); if (!result.appendFile(basename)) throw basename + ": can't use this file name"; @@ -344,7 +344,7 @@ if (*PI == "%Wopts%") { for (StringVector::iterator I = WOptions.begin(), E = WOptions.end(); I != E ; ++I ) { - action->args.push_back( std::string("-W") + *I ); + action->args.push_back(std::string("-W") + *I); } } else found = false; @@ -913,5 +913,3 @@ for (unsigned i = 0; i < NUM_PHASES; ++i) opts.push_back(emptyVec); } - -// vim: sw=2 smartindent smarttab tw=80 autoindent expandtab Index: llvm/tools/llvmc/Configuration.cpp diff -u llvm/tools/llvmc/Configuration.cpp:1.18 llvm/tools/llvmc/Configuration.cpp:1.19 --- llvm/tools/llvmc/Configuration.cpp:1.18 Thu Apr 21 18:59:45 2005 +++ llvm/tools/llvmc/Configuration.cpp Tue May 3 15:30:34 2005 @@ -622,5 +622,3 @@ } return result; // Might return 0 } - -// vim: sw=2 smartindent smarttab tw=80 autoindent expandtab From dhurjati at cs.uiuc.edu Tue May 3 18:33:50 2005 From: dhurjati at cs.uiuc.edu (Dinakar Dhurjati) Date: Tue, 3 May 2005 18:33:50 -0500 Subject: [llvm-commits] CVS: llvm-www/pubs/2005-02-TECS-SAFECode.html 2005-02-TECS-SAFECode.pdf index.html Message-ID: <200505032333.SAA32055@psmith.cs.uiuc.edu> Changes in directory llvm-www/pubs: 2005-02-TECS-SAFECode.html added (r1.1) 2005-02-TECS-SAFECode.pdf added (r1.1) index.html updated: 1.15 -> 1.16 --- Log message: Added SAFECode TECS publication --- Diffs of the changes: (+91 -0) 2005-02-TECS-SAFECode.html | 84 +++++++++++++++++++++++++++++++++++++++++++++ 2005-02-TECS-SAFECode.pdf | 0 index.html | 7 +++ 3 files changed, 91 insertions(+) Index: llvm-www/pubs/2005-02-TECS-SAFECode.html diff -c /dev/null llvm-www/pubs/2005-02-TECS-SAFECode.html:1.1 *** /dev/null Tue May 3 18:33:43 2005 --- llvm-www/pubs/2005-02-TECS-SAFECode.html Tue May 3 18:33:33 2005 *************** *** 0 **** --- 1,84 ---- + + + + + + + Memory Safety Without Garbage Collection for Embedded Applications + + + + +
    + Memory Safety Without Garbage Collection for Embedded Applications +
    + + +

    Abstract:

    Traditional approaches to enforcing memory + safety of programs rely heavily on run-time checks of memory accesses and + on garbage collection, both of which are unattractive for embedded + applications. The goal of our work is to develop advanced compiler + techniques for enforcing memory safety with minimal run-time overheads. In + this paper, we describe a set of compiler techniques that, together with + minor semantic restrictions on C programs and no new syntax, ensure memory + safety and provide most of the error-detection capabilities of type-safe + languages, without using garbage collection, and with no run-time software + checks, (on systems with standard hardware support for memory management). + The language permits arbitrary pointer-based data structures, explicit + deallocation of dynamically allocated memory, and restricted array + operations. One of the key results of this paper is a compiler technique + that ensures that dereferencing dangling pointers to freed memory does not + violate memory safety, without annotations, run-time checks, or garbage + collection, and works for arbitrary type-safe C programs. Furthermore, we + present a new interprocedural analysis for static array bounds checking + under certain assumptions. For a diverse set of embedded C programs, we + show that we are able to ensure memory safety of pointer and dynamic + memory usage in all these programs with no run-time software checks (on + systems with standard hardware memory protection), requiring only minor + restructuring to conform to simple type restrictions. Static array bounds + checking fails for roughly half the programs we study due to complex array + references, and these are the only cases where explicit run-time software + checks would be needed under our language and system assumptions. +
    + +

    Published:

    +
    + "Memory Safety Without Garbage Collection for Embedded + Applications", Dinakar Dhurjati, Sumant Kowshik, Chris Lattner and + Vikram Adve.
    + In ACM Transactions in Embedded Computing Systems (TECS), February 2005. +
    + +

    Download:

    + +

    BibTeX Entry:

    +
    + @article{DKAL:TECS05,
    +  author = {Dinakar Dhurjati and Sumant Kowshik and Vikram Adve and Chris Lattner},
    +  title = {Memory safety without garbage collection for embedded applications},
    +  journal = {Trans. on Embedded Computing Sys.},
    +  volume = {4},
    +  number = {1},
    +  year = {2005},
    +  issn = {1539-9087},
    +  pages = {73--111},
    +  URL       = {http://llvm.cs.uiuc.edu/pubs/2005-02-TECS-SAFECode.html}
    +  publisher = {ACM Press},
    +  address = {New York, NY, USA},
    +  }
    + 
    + +

    Links:

    + SAFECode project + + + Index: llvm-www/pubs/2005-02-TECS-SAFECode.pdf Index: llvm-www/pubs/index.html diff -u llvm-www/pubs/index.html:1.15 llvm-www/pubs/index.html:1.16 --- llvm-www/pubs/index.html:1.15 Wed Apr 20 23:46:11 2005 +++ llvm-www/pubs/index.html Tue May 3 18:33:33 2005 @@ -60,6 +60,13 @@ Programming Language Design and Implementation (PLDI'05), Chicago, Illinois, Jun, 2005. +
  • "Memory Safety Without + Garbage Collection for Embedded Applications"
    Dinakar + Dhurjati, Sumant Kowshik, Vikram Adve and Chris Lattner. ACM Transactions in + Embedded Computing Systems (TECS) , February 2005.
  • + +
  • "RubyComp - A Ruby-to-LLVM Compiler Prototype"
    Anders Alexandersson. Masters Thesis, Division of Computer Science at the Department of Informatics and Mathematics, From dhurjati at cs.uiuc.edu Tue May 3 18:43:43 2005 From: dhurjati at cs.uiuc.edu (Dinakar Dhurjati) Date: Tue, 3 May 2005 18:43:43 -0500 Subject: [llvm-commits] CVS: llvm-www/safecode/index.html Message-ID: <200505032343.SAA32151@psmith.cs.uiuc.edu> Changes in directory llvm-www/safecode: index.html updated: 1.9 -> 1.10 --- Log message: Added TECS publication --- Diffs of the changes: (+5 -0) index.html | 5 +++++ 1 files changed, 5 insertions(+) Index: llvm-www/safecode/index.html diff -u llvm-www/safecode/index.html:1.9 llvm-www/safecode/index.html:1.10 --- llvm-www/safecode/index.html:1.9 Mon Nov 24 16:22:33 2003 +++ llvm-www/safecode/index.html Tue May 3 18:43:30 2005 @@ -39,6 +39,11 @@

    Publications

      +
    • "Memory Safety Without + Garbage Collection for Embedded Applications"
      Dinakar + Dhurjati, Sumant Kowshik, Vikram Adve and Chris Lattner. ACM Transactions in + Embedded Computing Systems (TECS) , February 2005.
    • Memory Safety without Runtime Checks or Garbage Collection for Embedded Systems From reid at x10sys.com Tue May 3 22:20:32 2005 From: reid at x10sys.com (Reid Spencer) Date: Tue, 3 May 2005 22:20:32 -0500 Subject: [llvm-commits] CVS: llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp Message-ID: <200505040320.WAA18073@zion.cs.uiuc.edu> Changes in directory llvm/lib/Transforms/IPO: SimplifyLibCalls.cpp updated: 1.29 -> 1.30 --- Log message: * Correct the function prototypes for some of the functions to match the actual spec (int -> uint) * Add the ability to get/cache the strlen function prototype. * Make sure generated values are appropriately named for debugging purposes * Add the SPrintFOptimiation for 4 casts of sprintf optimization: sprintf(str,cstr) -> llvm.memcpy(str,cstr) (if cstr has no %) sprintf(str,"") -> store sbyte 0, str sprintf(str,"%s",src) -> llvm.memcpy(str,src) (if src is constant) sprintf(str,"%c",chr) -> store chr, str ; store sbyte 0, str+1 The sprintf optimization didn't fire as much as I had hoped: 2 MultiSource/Applications/SPASS 5 MultiSource/Benchmarks/McCat/18-imp 22 MultiSource/Benchmarks/Prolangs-C/TimberWolfMC 1 MultiSource/Benchmarks/Prolangs-C/assembler 6 MultiSource/Benchmarks/Prolangs-C/unix-smail 2 MultiSource/Benchmarks/mediabench/mpeg2/mpeg2dec --- Diffs of the changes: (+172 -9) SimplifyLibCalls.cpp | 181 ++++++++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 172 insertions(+), 9 deletions(-) Index: llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp diff -u llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp:1.29 llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp:1.30 --- llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp:1.29 Tue May 3 02:23:44 2005 +++ llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp Tue May 3 22:20:21 2005 @@ -257,6 +257,21 @@ } /// @brief Return a Function* for the strlen libcall + Function* get_strcpy() + { + if (!strcpy_func) + { + std::vector args; + args.push_back(PointerType::get(Type::SByteTy)); + args.push_back(PointerType::get(Type::SByteTy)); + FunctionType* strcpy_type = + FunctionType::get(PointerType::get(Type::SByteTy), args, false); + strcpy_func = M->getOrInsertFunction("strcpy",strcpy_type); + } + return strcpy_func; + } + + /// @brief Return a Function* for the strlen libcall Function* get_strlen() { if (!strlen_func) @@ -295,8 +310,8 @@ std::vector args; args.push_back(PointerType::get(Type::SByteTy)); args.push_back(PointerType::get(Type::SByteTy)); - args.push_back(Type::IntTy); - args.push_back(Type::IntTy); + args.push_back(Type::UIntTy); + args.push_back(Type::UIntTy); FunctionType* memcpy_type = FunctionType::get(Type::VoidTy, args, false); memcpy_func = M->getOrInsertFunction("llvm.memcpy",memcpy_type); } @@ -314,6 +329,7 @@ memcpy_func = 0; memchr_func = 0; sqrt_func = 0; + strcpy_func = 0; strlen_func = 0; } @@ -323,6 +339,7 @@ Function* memcpy_func; ///< Cached llvm.memcpy function Function* memchr_func; ///< Cached memchr function Function* sqrt_func; ///< Cached sqrt function + Function* strcpy_func; ///< Cached strcpy function Function* strlen_func; ///< Cached strlen function Module* M; ///< Cached Module TargetData* TD; ///< Cached TargetData @@ -493,8 +510,8 @@ std::vector vals; vals.push_back(gep); // destination vals.push_back(ci->getOperand(2)); // source - vals.push_back(ConstantSInt::get(Type::IntTy,len)); // length - vals.push_back(ConstantSInt::get(Type::IntTy,1)); // alignment + vals.push_back(ConstantUInt::get(Type::UIntTy,len)); // length + vals.push_back(ConstantUInt::get(Type::UIntTy,1)); // alignment new CallInst(SLC.get_memcpy(), vals, "", ci); // Finally, substitute the first operand of the strcat call for the @@ -862,8 +879,8 @@ std::vector vals; vals.push_back(dest); // destination vals.push_back(src); // source - vals.push_back(ConstantSInt::get(Type::IntTy,len)); // length - vals.push_back(ConstantSInt::get(Type::IntTy,1)); // alignment + vals.push_back(ConstantUInt::get(Type::UIntTy,len)); // length + vals.push_back(ConstantUInt::get(Type::UIntTy,1)); // alignment new CallInst(SLC.get_memcpy(), vals, "", ci); // Finally, substitute the first operand of the strcat call for the @@ -1255,7 +1272,8 @@ args.push_back(ConstantUInt::get(SLC.getIntPtrType(),len)); args.push_back(ConstantUInt::get(SLC.getIntPtrType(),1)); args.push_back(ci->getOperand(1)); - new CallInst(fwrite_func,args,"",ci); + new CallInst(fwrite_func,args,ci->getName(),ci); + ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,len)); ci->eraseFromParent(); return true; } @@ -1281,7 +1299,7 @@ if (!getConstantStringLength(ci->getOperand(3), len, &CA)) return false; - // fprintf(file,fmt) -> fwrite(fmt,strlen(fmt),1,file) + // fprintf(file,"%s",str) -> fwrite(fmt,strlen(fmt),1,file) const Type* FILEptr_type = ci->getOperand(1)->getType(); Function* fwrite_func = SLC.get_fwrite(FILEptr_type); if (!fwrite_func) @@ -1291,7 +1309,8 @@ args.push_back(ConstantUInt::get(SLC.getIntPtrType(),len)); args.push_back(ConstantUInt::get(SLC.getIntPtrType(),1)); args.push_back(ci->getOperand(1)); - new CallInst(fwrite_func,args,"",ci); + new CallInst(fwrite_func,args,ci->getName(),ci); + ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,len)); break; } case 'c': @@ -1306,6 +1325,7 @@ return false; CastInst* cast = new CastInst(CI,Type::IntTy,CI->getName()+".int",ci); new CallInst(fputc_func,cast,ci->getOperand(1),"",ci); + ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,1)); break; } default: @@ -1317,6 +1337,149 @@ } FPrintFOptimizer; +/// This LibCallOptimization will simplify calls to the "sprintf" library +/// function. It looks for cases where the result of sprintf is not used and the +/// operation can be reduced to something simpler. +/// @brief Simplify the pow library function. +struct SPrintFOptimization : public LibCallOptimization +{ +public: + /// @brief Default Constructor + SPrintFOptimization() : LibCallOptimization("sprintf", + "simplify-libcalls:sprintf", "Number of 'sprintf' calls simplified") {} + + /// @brief Destructor + virtual ~SPrintFOptimization() {} + + /// @brief Make sure that the "fprintf" function has the right prototype + virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC) + { + // Just make sure this has at least 2 arguments + return (f->getReturnType() == Type::IntTy && f->arg_size() >= 2); + } + + /// @brief Perform the sprintf optimization. + virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) + { + // If the call has more than 3 operands, we can't optimize it + if (ci->getNumOperands() > 4 || ci->getNumOperands() < 3) + return false; + + // All the optimizations depend on the length of the second argument and the + // fact that it is a constant string array. Check that now + uint64_t len = 0; + ConstantArray* CA = 0; + if (!getConstantStringLength(ci->getOperand(2), len, &CA)) + return false; + + if (ci->getNumOperands() == 3) + { + if (len == 0) + { + // If the length is 0, we just need to store a null byte + new StoreInst(ConstantInt::get(Type::SByteTy,0),ci->getOperand(1),ci); + ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,0)); + ci->eraseFromParent(); + return true; + } + + // Make sure there's no % in the constant array + for (unsigned i = 0; i < len; ++i) + { + if (ConstantInt* CI = dyn_cast(CA->getOperand(i))) + { + // Check for the null terminator + if (CI->getRawValue() == '%') + return false; // we found a %, can't optimize + } + else + return false; // initializer is not constant int, can't optimize + } + + // Increment length because we want to copy the null byte too + len++; + + // sprintf(str,fmt) -> llvm.memcpy(str,fmt,strlen(fmt),1) + Function* memcpy_func = SLC.get_memcpy(); + if (!memcpy_func) + return false; + std::vector args; + args.push_back(ci->getOperand(1)); + args.push_back(ci->getOperand(2)); + args.push_back(ConstantUInt::get(Type::UIntTy,len)); + args.push_back(ConstantUInt::get(Type::UIntTy,1)); + new CallInst(memcpy_func,args,"",ci); + ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,len)); + ci->eraseFromParent(); + return true; + } + + // The remaining optimizations require the format string to be length 2 + // "%s" or "%c". + if (len != 2) + return false; + + // The first character has to be a % + if (ConstantInt* CI = dyn_cast(CA->getOperand(0))) + if (CI->getRawValue() != '%') + return false; + + // Get the second character and switch on its value + ConstantInt* CI = dyn_cast(CA->getOperand(1)); + switch (CI->getRawValue()) + { + case 's': + { + uint64_t len = 0; + if (ci->hasNUses(0)) + { + // sprintf(dest,"%s",str) -> strcpy(dest,str) + Function* strcpy_func = SLC.get_strcpy(); + if (!strcpy_func) + return false; + std::vector args; + args.push_back(ci->getOperand(1)); + args.push_back(ci->getOperand(3)); + new CallInst(strcpy_func,args,"",ci); + } + else if (getConstantStringLength(ci->getOperand(3),len)) + { + // sprintf(dest,"%s",cstr) -> llvm.memcpy(dest,str,strlen(str),1) + len++; // get the null-terminator + Function* memcpy_func = SLC.get_memcpy(); + if (!memcpy_func) + return false; + std::vector args; + args.push_back(ci->getOperand(1)); + args.push_back(ci->getOperand(3)); + args.push_back(ConstantUInt::get(Type::UIntTy,len)); + args.push_back(ConstantUInt::get(Type::UIntTy,1)); + new CallInst(memcpy_func,args,"",ci); + ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,len)); + } + break; + } + case 'c': + { + // sprintf(dest,"%c",chr) -> store chr, dest + CastInst* cast = + new CastInst(ci->getOperand(3),Type::SByteTy,"char",ci); + new StoreInst(cast, ci->getOperand(1), ci); + GetElementPtrInst* gep = new GetElementPtrInst(ci->getOperand(1), + ConstantUInt::get(Type::UIntTy,1),ci->getOperand(1)->getName()+".end", + ci); + new StoreInst(ConstantInt::get(Type::SByteTy,0),gep,ci); + ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,1)); + break; + } + default: + return false; + } + ci->eraseFromParent(); + return true; + } +} SPrintFOptimizer; + /// This LibCallOptimization will simplify calls to the "fputs" library /// function. It looks for cases where the result of fputs is not used and the /// operation can be reduced to something simpler. From lattner at cs.uiuc.edu Tue May 3 22:21:36 2005 From: lattner at cs.uiuc.edu (Chris Lattner) Date: Tue, 3 May 2005 22:21:36 -0500 Subject: [llvm-commits] CVS: llvm-www/pubs/2005-02-TECS-SAFECode.html Message-ID: <200505040321.j443LaHd029602@apoc.cs.uiuc.edu> Changes in directory llvm-www/pubs: 2005-02-TECS-SAFECode.html updated: 1.1 -> 1.2 --- Log message: fix author order for consistency --- Diffs of the changes: (+2 -2) 2005-02-TECS-SAFECode.html | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm-www/pubs/2005-02-TECS-SAFECode.html diff -u llvm-www/pubs/2005-02-TECS-SAFECode.html:1.1 llvm-www/pubs/2005-02-TECS-SAFECode.html:1.2 --- llvm-www/pubs/2005-02-TECS-SAFECode.html:1.1 Tue May 3 18:33:33 2005 +++ llvm-www/pubs/2005-02-TECS-SAFECode.html Tue May 3 22:21:19 2005 @@ -49,8 +49,8 @@

      Published:

      "Memory Safety Without Garbage Collection for Embedded -Applications", Dinakar Dhurjati, Sumant Kowshik, Chris Lattner and -Vikram Adve.
      +Applications", Dinakar Dhurjati, Sumant Kowshik, Vikram Adve and +Chris Lattner.
      In ACM Transactions in Embedded Computing Systems (TECS), February 2005.
      From alenhar2 at cs.uiuc.edu Wed May 4 09:58:48 2005 From: alenhar2 at cs.uiuc.edu (Andrew Lenharth) Date: Wed, 4 May 2005 09:58:48 -0500 Subject: [llvm-commits] CVS: llvm/docs/LangRef.html Message-ID: <200505041458.j44EwmGl032130@apoc.cs.uiuc.edu> Changes in directory llvm/docs: LangRef.html updated: 1.97 -> 1.98 --- Log message: fixup argument --- Diffs of the changes: (+4 -4) LangRef.html | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) Index: llvm/docs/LangRef.html diff -u llvm/docs/LangRef.html:1.97 llvm/docs/LangRef.html:1.98 --- llvm/docs/LangRef.html:1.97 Tue May 3 13:01:48 2005 +++ llvm/docs/LangRef.html Wed May 4 09:58:31 2005 @@ -3071,7 +3071,7 @@
      Arguments:

      -The only argument is the value to be counted. +The only argument is the value to be counted. The argument may be of any integer type.

      Semantics:
      @@ -3103,7 +3103,7 @@
      Arguments:

      -The only argument is the value to be counted. +The only argument is the value to be counted. The argument may be of any integer type.

      Semantics:
      @@ -3136,7 +3136,7 @@
      Arguments:

      -The only argument is the value to be counted. +The only argument is the value to be counted. The argument may be of any integer type.

      Semantics:
      @@ -3173,7 +3173,7 @@ Chris Lattner
      The LLVM Compiler Infrastructure
      - Last modified: $Date: 2005/05/03 18:01:48 $ + Last modified: $Date: 2005/05/04 14:58:31 $ From alenhar2 at cs.uiuc.edu Wed May 4 10:20:32 2005 From: alenhar2 at cs.uiuc.edu (Andrew Lenharth) Date: Wed, 4 May 2005 10:20:32 -0500 Subject: [llvm-commits] CVS: llvm/test/Regression/CodeGen/Alpha/ctpop.ll Message-ID: <200505041520.j44FKW6D032194@apoc.cs.uiuc.edu> Changes in directory llvm/test/Regression/CodeGen/Alpha: ctpop.ll added (r1.1) --- Log message: added a use of ctpop to debug stuff with --- Diffs of the changes: (+12 -0) ctpop.ll | 12 ++++++++++++ 1 files changed, 12 insertions(+) Index: llvm/test/Regression/CodeGen/Alpha/ctpop.ll diff -c /dev/null llvm/test/Regression/CodeGen/Alpha/ctpop.ll:1.1 *** /dev/null Wed May 4 10:20:26 2005 --- llvm/test/Regression/CodeGen/Alpha/ctpop.ll Wed May 4 10:20:16 2005 *************** *** 0 **** --- 1,12 ---- + ; Make sure this testcase codegens to the bic instruction + ; RUN: llvm-as < %s | llc -march=alpha -enable-alpha-CT | grep 'ctpop' + + declare long %llvm.ctpop(long) + + implementation ; Functions: + + long %bar(long %x) { + entry: + %tmp.1 = call long %llvm.ctpop( long %x ) + ret long %tmp.1 + } From reid at x10sys.com Wed May 4 10:33:59 2005 From: reid at x10sys.com (Reid Spencer) Date: Wed, 4 May 2005 10:33:59 -0500 Subject: [llvm-commits] CVS: llvm/projects/Stacker/lib/compiler/StackerCompiler.cpp Message-ID: <200505041533.KAA17794@zion.cs.uiuc.edu> Changes in directory llvm/projects/Stacker/lib/compiler: StackerCompiler.cpp updated: 1.14 -> 1.15 --- Log message: WHILE does not "pop" a value, it "examines" to top of stack. Make this clear in the applicable comment. --- Diffs of the changes: (+1 -1) StackerCompiler.cpp | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/projects/Stacker/lib/compiler/StackerCompiler.cpp diff -u llvm/projects/Stacker/lib/compiler/StackerCompiler.cpp:1.14 llvm/projects/Stacker/lib/compiler/StackerCompiler.cpp:1.15 --- llvm/projects/Stacker/lib/compiler/StackerCompiler.cpp:1.14 Sat Apr 23 16:26:10 2005 +++ llvm/projects/Stacker/lib/compiler/StackerCompiler.cpp Wed May 4 10:33:48 2005 @@ -799,7 +799,7 @@ BranchInst* root_br_inst = new BranchInst( test ); bb->getInstList().push_back( root_br_inst ); - // Pop the condition value + // Examine the condition value LoadInst* cond = cast( stack_top(test) ); // Compare the condition against 0 From reid at x10sys.com Wed May 4 10:43:51 2005 From: reid at x10sys.com (Reid Spencer) Date: Wed, 4 May 2005 10:43:51 -0500 Subject: [llvm-commits] CVS: llvm/docs/Stacker.html Message-ID: <200505041543.KAA17851@zion.cs.uiuc.edu> Changes in directory llvm/docs: Stacker.html updated: 1.18 -> 1.19 --- Log message: Correct the descriptions of WHILE...END and RROT. Thanks to Lalo Martins for pointing out these errors. --- Diffs of the changes: (+22 -18) Stacker.html | 40 ++++++++++++++++++++++------------------ 1 files changed, 22 insertions(+), 18 deletions(-) Index: llvm/docs/Stacker.html diff -u llvm/docs/Stacker.html:1.18 llvm/docs/Stacker.html:1.19 --- llvm/docs/Stacker.html:1.18 Mon Nov 1 14:47:22 2004 +++ llvm/docs/Stacker.html Wed May 4 10:43:40 2005 @@ -787,7 +787,7 @@ RROT RROT - w1 w2 w3 -- w2 w3 w1 + w1 w2 w3 -- w3 w1 w2 Reverse rotation. Like ROT, but it rotates the other way around. Essentially, the third element on the stack is moved to the top of the stack. @@ -946,24 +946,28 @@ executed. In either case, after the (words....) have executed, execution continues immediately following the ENDIF. -WHILE (words...) END - WHILE (words...) END +WHILE word END + WHILE word END b -- b - The boolean value on the top of the stack is examined. If it is non-zero then the - "words..." between WHILE and END are executed. Execution then begins again at the WHILE where another - boolean is popped off the stack. To prevent this operation from eating up the entire - stack, you should push on to the stack (just before the END) a boolean value that indicates - whether to terminate. Note that since booleans and integers can be coerced you can - use the following "for loop" idiom:
      - (push count) WHILE (words...) -- END
      + The boolean value on the top of the stack is examined (not popped). If + it is non-zero then the "word" between WHILE and END is executed. + Execution then begins again at the WHILE where the boolean on the top of + the stack is examined again. The stack is not modified by the WHILE...END + loop, only examined. It is imperative that the "word" in the body of the + loop ensure that the top of the stack contains the next boolean to examine + when it completes. Note that since booleans and integers can be coerced + you can use the following "for loop" idiom:
      + (push count) WHILE word -- END
      For example:
      - 10 WHILE DUP >d -- END
      - This will print the numbers from 10 down to 1. 10 is pushed on the stack. Since that is - non-zero, the while loop is entered. The top of the stack (10) is duplicated and then - printed out with >d. The top of the stack is decremented, yielding 9 and control is - transfered back to the WHILE keyword. The process starts all over again and repeats until - the top of stack is decremented to 0 at which the WHILE test fails and control is - transfered to the word after the END. + 10 WHILE >d -- END
      + This will print the numbers from 10 down to 1. 10 is pushed on the + stack. Since that is non-zero, the while loop is entered. The top of + the stack (10) is printed out with >d. The top of the stack is + decremented, yielding 9 and control is transfered back to the WHILE + keyword. The process starts all over again and repeats until + the top of stack is decremented to 0 at which point the WHILE test + fails and control is transfered to the word after the END. + INPUT & OUTPUT OPERATORS @@ -1401,7 +1405,7 @@ Reid Spencer
      LLVM Compiler Infrastructure
      - Last modified: $Date: 2004/11/01 20:47:22 $ + Last modified: $Date: 2005/05/04 15:43:40 $ From alenhar2 at cs.uiuc.edu Wed May 4 10:51:24 2005 From: alenhar2 at cs.uiuc.edu (Andrew Lenharth) Date: Wed, 4 May 2005 10:51:24 -0500 Subject: [llvm-commits] CVS: llvm/test/Regression/CodeGen/Alpha/ctlz.ll Message-ID: <200505041551.j44FpOmi032282@apoc.cs.uiuc.edu> Changes in directory llvm/test/Regression/CodeGen/Alpha: ctlz.ll added (r1.1) --- Log message: see if the legalize code propery compensates for the additional zeros introduced --- Diffs of the changes: (+12 -0) ctlz.ll | 12 ++++++++++++ 1 files changed, 12 insertions(+) Index: llvm/test/Regression/CodeGen/Alpha/ctlz.ll diff -c /dev/null llvm/test/Regression/CodeGen/Alpha/ctlz.ll:1.1 *** /dev/null Wed May 4 10:51:17 2005 --- llvm/test/Regression/CodeGen/Alpha/ctlz.ll Wed May 4 10:51:07 2005 *************** *** 0 **** --- 1,12 ---- + ; Make sure this testcase codegens to the bic instruction + ; RUN: llvm-as < %s | llc -march=alpha -enable-alpha-CT | grep 'ctlz' + + declare ubyte %llvm.ctlz(ubyte) + + implementation ; Functions: + + ubyte %bar(ubyte %x) { + entry: + %tmp.1 = call ubyte %llvm.ctlz( ubyte %x ) + ret ubyte %tmp.1 + } From alenhar2 at cs.uiuc.edu Wed May 4 10:56:50 2005 From: alenhar2 at cs.uiuc.edu (Andrew Lenharth) Date: Wed, 4 May 2005 10:56:50 -0500 Subject: [llvm-commits] CVS: llvm/test/Regression/CodeGen/Alpha/ctlz.ll ctpop.ll Message-ID: <200505041556.j44FuoJK032308@apoc.cs.uiuc.edu> Changes in directory llvm/test/Regression/CodeGen/Alpha: ctlz.ll updated: 1.1 -> 1.2 ctpop.ll updated: 1.1 -> 1.2 --- Log message: comment fix --- Diffs of the changes: (+2 -2) ctlz.ll | 2 +- ctpop.ll | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/test/Regression/CodeGen/Alpha/ctlz.ll diff -u llvm/test/Regression/CodeGen/Alpha/ctlz.ll:1.1 llvm/test/Regression/CodeGen/Alpha/ctlz.ll:1.2 --- llvm/test/Regression/CodeGen/Alpha/ctlz.ll:1.1 Wed May 4 10:51:07 2005 +++ llvm/test/Regression/CodeGen/Alpha/ctlz.ll Wed May 4 10:56:34 2005 @@ -1,4 +1,4 @@ -; Make sure this testcase codegens to the bic instruction +; Make sure this testcase codegens to the ctlz instruction ; RUN: llvm-as < %s | llc -march=alpha -enable-alpha-CT | grep 'ctlz' declare ubyte %llvm.ctlz(ubyte) Index: llvm/test/Regression/CodeGen/Alpha/ctpop.ll diff -u llvm/test/Regression/CodeGen/Alpha/ctpop.ll:1.1 llvm/test/Regression/CodeGen/Alpha/ctpop.ll:1.2 --- llvm/test/Regression/CodeGen/Alpha/ctpop.ll:1.1 Wed May 4 10:20:16 2005 +++ llvm/test/Regression/CodeGen/Alpha/ctpop.ll Wed May 4 10:56:34 2005 @@ -1,4 +1,4 @@ -; Make sure this testcase codegens to the bic instruction +; Make sure this testcase codegens to the ctpop instruction ; RUN: llvm-as < %s | llc -march=alpha -enable-alpha-CT | grep 'ctpop' declare long %llvm.ctpop(long) From reid at x10sys.com Wed May 4 12:35:06 2005 From: reid at x10sys.com (Reid Spencer) Date: Wed, 4 May 2005 12:35:06 -0500 Subject: [llvm-commits] CVS: llvm/test/Regression/Transforms/SimplifyLibCalls/IsDigit.ll Message-ID: <200505041735.MAA18755@zion.cs.uiuc.edu> Changes in directory llvm/test/Regression/Transforms/SimplifyLibCalls: IsDigit.ll added (r1.1) --- Log message: Add a test case for the IsDigitOptimization class. --- Diffs of the changes: (+17 -0) IsDigit.ll | 17 +++++++++++++++++ 1 files changed, 17 insertions(+) Index: llvm/test/Regression/Transforms/SimplifyLibCalls/IsDigit.ll diff -c /dev/null llvm/test/Regression/Transforms/SimplifyLibCalls/IsDigit.ll:1.1 *** /dev/null Wed May 4 12:35:05 2005 --- llvm/test/Regression/Transforms/SimplifyLibCalls/IsDigit.ll Wed May 4 12:34:55 2005 *************** *** 0 **** --- 1,17 ---- + ; Test that the IsDigitOptimizer works correctly + ; RUN: llvm-as < %s | opt -simplify-libcalls | llvm-dis | not grep 'call.*isdigit' + + declare int %isdigit(int) + + implementation ; Functions: + + int %main () { + %val1 = call int %isdigit(int 47) + %val2 = call int %isdigit(int 48) + %val3 = call int %isdigit(int 57) + %val4 = call int %isdigit(int 58) + %rslt1 = add int %val1, %val2 + %rslt2 = add int %val3, %val4 + %rslt = add int %rslt1, %rslt2 + ret int %rslt + } From reid at x10sys.com Wed May 4 12:45:21 2005 From: reid at x10sys.com (Reid Spencer) Date: Wed, 4 May 2005 12:45:21 -0500 Subject: [llvm-commits] CVS: llvm/test/Regression/Transforms/SimplifyLibCalls/IsDigit.ll Message-ID: <200505041745.MAA18849@zion.cs.uiuc.edu> Changes in directory llvm/test/Regression/Transforms/SimplifyLibCalls: IsDigit.ll updated: 1.1 -> 1.2 --- Log message: Make sure both optimization cases get tested. --- Diffs of the changes: (+2 -1) IsDigit.ll | 3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) Index: llvm/test/Regression/Transforms/SimplifyLibCalls/IsDigit.ll diff -u llvm/test/Regression/Transforms/SimplifyLibCalls/IsDigit.ll:1.1 llvm/test/Regression/Transforms/SimplifyLibCalls/IsDigit.ll:1.2 --- llvm/test/Regression/Transforms/SimplifyLibCalls/IsDigit.ll:1.1 Wed May 4 12:34:55 2005 +++ llvm/test/Regression/Transforms/SimplifyLibCalls/IsDigit.ll Wed May 4 12:45:10 2005 @@ -12,6 +12,7 @@ %val4 = call int %isdigit(int 58) %rslt1 = add int %val1, %val2 %rslt2 = add int %val3, %val4 - %rslt = add int %rslt1, %rslt2 + %sum = add int %rslt1, %rslt2 + %rslt = call int %isdigit(int %sum) ret int %rslt } From reid at x10sys.com Wed May 4 13:58:39 2005 From: reid at x10sys.com (Reid Spencer) Date: Wed, 4 May 2005 13:58:39 -0500 Subject: [llvm-commits] CVS: llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp Message-ID: <200505041858.NAA19638@zion.cs.uiuc.edu> Changes in directory llvm/lib/Transforms/IPO: SimplifyLibCalls.cpp updated: 1.30 -> 1.31 --- Log message: Implement the IsDigitOptimization for simplifying calls to the isdigit library function: isdigit(chr) -> 0 or 1 if chr is constant isdigit(chr) -> chr - '0' <= 9 otherwise Although there are many calls to isdigit in llvm-test, most of them are compiled away by macros leaving only this: 2 MultiSource/Applications/hexxagon --- Diffs of the changes: (+54 -6) SimplifyLibCalls.cpp | 60 +++++++++++++++++++++++++++++++++++++++++++++------ 1 files changed, 54 insertions(+), 6 deletions(-) Index: llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp diff -u llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp:1.30 llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp:1.31 --- llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp:1.30 Tue May 3 22:20:21 2005 +++ llvm/lib/Transforms/IPO/SimplifyLibCalls.cpp Wed May 4 13:58:28 2005 @@ -1554,6 +1554,60 @@ } } PutsOptimizer; +/// This LibCallOptimization will simplify calls to the "isdigit" library +/// function. It simply does range checks the parameter explicitly. +/// @brief Simplify the isdigit library function. +struct IsDigitOptimization : public LibCallOptimization +{ +public: + /// @brief Default Constructor + IsDigitOptimization() : LibCallOptimization("isdigit", + "simplify-libcalls:isdigit", "Number of 'isdigit' calls simplified") {} + + /// @brief Destructor + virtual ~IsDigitOptimization() {} + + /// @brief Make sure that the "fputs" function has the right prototype + virtual bool ValidateCalledFunction(const Function* f, SimplifyLibCalls& SLC) + { + // Just make sure this has 1 argument + return (f->arg_size() == 1); + } + + /// @brief Perform the toascii optimization. + virtual bool OptimizeCall(CallInst* ci, SimplifyLibCalls& SLC) + { + if (ConstantInt* CI = dyn_cast(ci->getOperand(1))) + { + // isdigit(c) -> 0 or 1, if 'c' is constant + uint64_t val = CI->getRawValue(); + if (val >= '0' && val <='9') + ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,1)); + else + ci->replaceAllUsesWith(ConstantSInt::get(Type::IntTy,0)); + ci->eraseFromParent(); + return true; + } + + // isdigit(c) -> (unsigned)c - '0' <= 9 + CastInst* cast = + new CastInst(ci->getOperand(1),Type::UIntTy, + ci->getOperand(1)->getName()+".uint",ci); + BinaryOperator* sub_inst = BinaryOperator::create(Instruction::Sub,cast, + ConstantUInt::get(Type::UIntTy,0x30), + ci->getOperand(1)->getName()+".sub",ci); + SetCondInst* setcond_inst = new SetCondInst(Instruction::SetLE,sub_inst, + ConstantUInt::get(Type::UIntTy,9), + ci->getOperand(1)->getName()+".cmp",ci); + CastInst* c2 = + new CastInst(setcond_inst,Type::IntTy, + ci->getOperand(1)->getName()+".isdigit",ci); + ci->replaceAllUsesWith(c2); + ci->eraseFromParent(); + return true; + } +} IsDigitOptimizer; + /// This LibCallOptimization will simplify calls to the "toascii" library /// function. It simply does the corresponding and operation to restrict the /// range of values to the ASCII character set (0-127). @@ -1751,12 +1805,6 @@ // * signbit(cnst) -> cnst' // * signbit(nncst) -> 0 (if pstv is a non-negative constant) // -// sprintf: -// * sprintf(dest,fmt) -> strcpy(dest,fmt) -// (if fmt is constant and constains no % characters) -// * sprintf(dest,"%s",orig) -> strcpy(dest,orig) -// (only if the sprintf result is not used) -// // sqrt, sqrtf, sqrtl: // * sqrt(expN(x)) -> expN(x*0.5) // * sqrt(Nroot(x)) -> pow(x,1/(2*N)) From lattner at cs.uiuc.edu Wed May 4 14:05:18 2005 From: lattner at cs.uiuc.edu (Chris Lattner) Date: Wed, 4 May 2005 14:05:18 -0500 Subject: [llvm-commits] CVS: llvm/test/Regression/Transforms/InstCombine/set.ll Message-ID: <200505041905.j44J5ILa001150@apoc.cs.uiuc.edu> Changes in directory llvm/test/Regression/Transforms/InstCombine: set.ll updated: 1.15 -> 1.16 --- Log message: new testcase --- Diffs of the changes: (+7 -0) set.ll | 7 +++++++ 1 files changed, 7 insertions(+) Index: llvm/test/Regression/Transforms/InstCombine/set.ll diff -u llvm/test/Regression/Transforms/InstCombine/set.ll:1.15 llvm/test/Regression/Transforms/InstCombine/set.ll:1.16 --- llvm/test/Regression/Transforms/InstCombine/set.ll:1.15 Sun Apr 24 01:55:33 2005 +++ llvm/test/Regression/Transforms/InstCombine/set.ll Wed May 4 14:05:02 2005 @@ -106,3 +106,10 @@ %C = seteq int %a, %b ret bool %C } + +uint %test20(uint %A) { + %B = and uint %A, 1 + %C = setne uint %B, 0 + %D = cast bool %C to uint + ret uint %D +} From lattner at cs.uiuc.edu Wed May 4 14:10:43 2005 From: lattner at cs.uiuc.edu (Chris Lattner) Date: Wed, 4 May 2005 14:10:43 -0500 Subject: [llvm-commits] CVS: llvm/lib/Transforms/Scalar/InstructionCombining.cpp Message-ID: <200505041910.j44JAhDb001693@apoc.cs.uiuc.edu> Changes in directory llvm/lib/Transforms/Scalar: InstructionCombining.cpp updated: 1.333 -> 1.334 --- Log message: Instcombine: cast (X != 0) to int, cast (X == 1) to int -> X iff X has only the low bit set. This implements set.ll:test20. This triggers 2x on povray, 9x on mesa, 11x on gcc, 2x on crafty, 1x on eon, 6x on perlbmk and 11x on m88ksim. It allows us to compile these two functions into the same code: struct s { unsigned int bit : 1; }; unsigned foo(struct s *p) { if (p->bit) return 1; else return 0; } unsigned bar(struct s *p) { return p->bit; } --- Diffs of the changes: (+25 -3) InstructionCombining.cpp | 28 +++++++++++++++++++++++++--- 1 files changed, 25 insertions(+), 3 deletions(-) Index: llvm/lib/Transforms/Scalar/InstructionCombining.cpp diff -u llvm/lib/Transforms/Scalar/InstructionCombining.cpp:1.333 llvm/lib/Transforms/Scalar/InstructionCombining.cpp:1.334 --- llvm/lib/Transforms/Scalar/InstructionCombining.cpp:1.333 Sat Apr 30 23:42:15 2005 +++ llvm/lib/Transforms/Scalar/InstructionCombining.cpp Wed May 4 14:10:26 2005 @@ -3553,9 +3553,30 @@ return new ShiftInst(Instruction::Shl, Op0c, Op1); } break; + case Instruction::SetNE: + case Instruction::SetEQ: + // We if we are just checking for a seteq of a single bit and casting it + // to an integer. If so, shift the bit to the appropriate place then + // cast to integer to avoid the comparison. + if (ConstantInt *Op1C = dyn_cast(Op1)) { + // cast (X != 0) to int, cast (X == 1) to int -> X iff X has only the + // low bit set. + bool isSetNE = SrcI->getOpcode() == Instruction::SetNE; + if ((isSetNE && Op1C->getRawValue() == 0) || + (!isSetNE && Op1C->getRawValue() == 1)) { + Constant *Not1 = + ConstantExpr::getNot(ConstantInt::get(Op0->getType(), 1)); + if (MaskedValueIsZero(Op0, cast(Not1))) { + if (CI.getType() == Op0->getType()) + return ReplaceInstUsesWith(CI, Op0); + else + return new CastInst(Op0, CI.getType()); + } + } + } + break; } } - return 0; } @@ -4603,8 +4624,9 @@ // Now that I is pointing to the first non-allocation-inst in the block, // insert our getelementptr instruction... // - std::vector Idx(2, Constant::getNullValue(Type::IntTy)); - Value *V = new GetElementPtrInst(New, Idx, New->getName()+".sub", It); + Value *NullIdx = Constant::getNullValue(Type::IntTy); + Value *V = new GetElementPtrInst(New, NullIdx, NullIdx, + New->getName()+".sub", It); // Now make everything use the getelementptr instead of the original // allocation. From alenhar2 at cs.uiuc.edu Wed May 4 14:11:18 2005 From: alenhar2 at cs.uiuc.edu (Andrew Lenharth) Date: Wed, 4 May 2005 14:11:18 -0500 Subject: [llvm-commits] CVS: llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp Message-ID: <200505041911.j44JBIIZ001939@apoc.cs.uiuc.edu> Changes in directory llvm/lib/CodeGen/SelectionDAG: LegalizeDAG.cpp updated: 1.94 -> 1.95 --- Log message: Make promoteOp work for CT* Proof? ubyte %bar(ubyte %x) { entry: %tmp.1 = call ubyte %llvm.ctlz( ubyte %x ) ret ubyte %tmp.1 } ==> zapnot $16,1,$0 CTLZ $0,$0 subq $0,56,$0 zapnot $0,1,$0 ret $31,($26),1 --- Diffs of the changes: (+28 -0) LegalizeDAG.cpp | 28 ++++++++++++++++++++++++++++ 1 files changed, 28 insertions(+) Index: llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp diff -u llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp:1.94 llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp:1.95 --- llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp:1.94 Tue May 3 12:19:29 2005 +++ llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp Wed May 4 14:11:05 2005 @@ -1534,6 +1534,34 @@ AddLegalizedOperand(Op.getValue(1), Result.getValue(1)); break; } + case ISD::CTPOP: + case ISD::CTTZ: + case ISD::CTLZ: + Tmp1 = Node->getOperand(0); + //Zero extend the argument + Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1); + // Perform the larger operation, then subtract if needed. + Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1); + switch(Node->getOpcode()) + { + case ISD::CTPOP: + Result = Tmp1; + break; + case ISD::CTTZ: + //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT) + Tmp2 = DAG.getSetCC(ISD::SETEQ, MVT::i1, Tmp1, + DAG.getConstant(getSizeInBits(NVT), NVT)); + Result = DAG.getNode(ISD::SELECT, NVT, Tmp2, + DAG.getConstant(getSizeInBits(VT),NVT), Tmp1); + break; + case ISD::CTLZ: + //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT)) + Result = DAG.getNode(ISD::SUB, NVT, Tmp1, + DAG.getConstant(getSizeInBits(NVT) - + getSizeInBits(VT), NVT)); + break; + } + break; } assert(Result.Val && "Didn't set a result!"); From alenhar2 at cs.uiuc.edu Wed May 4 14:12:23 2005 From: alenhar2 at cs.uiuc.edu (Andrew Lenharth) Date: Wed, 4 May 2005 14:12:23 -0500 Subject: [llvm-commits] CVS: llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp AlphaISelPattern.cpp Message-ID: <200505041912.j44JCNQl001963@apoc.cs.uiuc.edu> Changes in directory llvm/lib/Target/Alpha: AlphaAsmPrinter.cpp updated: 1.13 -> 1.14 AlphaISelPattern.cpp updated: 1.107 -> 1.108 --- Log message: Well, add support for ct* for 21264 only. 21164 is broken until expand works. --- Diffs of the changes: (+11 -5) AlphaAsmPrinter.cpp | 3 ++- AlphaISelPattern.cpp | 13 +++++++++---- 2 files changed, 11 insertions(+), 5 deletions(-) Index: llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp diff -u llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp:1.13 llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp:1.14 --- llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp:1.13 Thu Apr 21 18:10:23 2005 +++ llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp Wed May 4 14:12:09 2005 @@ -31,6 +31,7 @@ namespace llvm { extern cl::opt EnableAlphaFTOI; + extern cl::opt EnableAlphaCT; } namespace { @@ -234,7 +235,7 @@ bool AlphaAsmPrinter::doInitialization(Module &M) { AsmPrinter::doInitialization(M); - if(EnableAlphaFTOI) + if(EnableAlphaFTOI || EnableAlphaCT) O << "\t.arch ev6\n"; else O << "\t.arch ev56\n"; Index: llvm/lib/Target/Alpha/AlphaISelPattern.cpp diff -u llvm/lib/Target/Alpha/AlphaISelPattern.cpp:1.107 llvm/lib/Target/Alpha/AlphaISelPattern.cpp:1.108 --- llvm/lib/Target/Alpha/AlphaISelPattern.cpp:1.107 Tue May 3 12:19:29 2005 +++ llvm/lib/Target/Alpha/AlphaISelPattern.cpp Wed May 4 14:12:09 2005 @@ -36,9 +36,12 @@ cl::opt EnableAlphaIDIV("enable-alpha-intfpdiv", cl::desc("Use the FP div instruction for integer div when possible"), cl::Hidden); - cl::opt EnableAlphaFTOI("enable-alpha-ftoi", + cl::opt EnableAlphaFTOI("enable-alpha-FTOI", cl::desc("Enable use of ftoi* and itof* instructions (ev6 and higher)"), cl::Hidden); + cl::opt EnableAlphaCT("enable-alpha-CT", + cl::desc("Enable use of the ctpop, ctlz, and cttz instructions"), + cl::Hidden); cl::opt EnableAlphaCount("enable-alpha-count", cl::desc("Print estimates on live ins and outs"), cl::Hidden); @@ -76,9 +79,11 @@ setOperationAction(ISD::SREM , MVT::f32 , Expand); setOperationAction(ISD::SREM , MVT::f64 , Expand); - // setOperationAction(ISD::CTPOP , MVT::i64 , Expand); - // setOperationAction(ISD::CTTZ , MVT::i64 , Expand); - // setOperationAction(ISD::CTTZ , MVT::i64 , Expand); + if (!EnableAlphaCT) { + setOperationAction(ISD::CTPOP , MVT::i64 , Expand); + setOperationAction(ISD::CTTZ , MVT::i64 , Expand); + setOperationAction(ISD::CTTZ , MVT::i64 , Expand); + } //If this didn't legalize into a div.... // setOperationAction(ISD::SREM , MVT::i64, Expand); From alenhar2 at cs.uiuc.edu Wed May 4 14:25:54 2005 From: alenhar2 at cs.uiuc.edu (Andrew Lenharth) Date: Wed, 4 May 2005 14:25:54 -0500 Subject: [llvm-commits] CVS: llvm/lib/Target/Alpha/AlphaISelPattern.cpp Message-ID: <200505041925.j44JPsfY002231@apoc.cs.uiuc.edu> Changes in directory llvm/lib/Target/Alpha: AlphaISelPattern.cpp updated: 1.108 -> 1.109 --- Log message: fix typo --- Diffs of the changes: (+1 -1) AlphaISelPattern.cpp | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/Target/Alpha/AlphaISelPattern.cpp diff -u llvm/lib/Target/Alpha/AlphaISelPattern.cpp:1.108 llvm/lib/Target/Alpha/AlphaISelPattern.cpp:1.109 --- llvm/lib/Target/Alpha/AlphaISelPattern.cpp:1.108 Wed May 4 14:12:09 2005 +++ llvm/lib/Target/Alpha/AlphaISelPattern.cpp Wed May 4 14:25:37 2005 @@ -82,7 +82,7 @@ if (!EnableAlphaCT) { setOperationAction(ISD::CTPOP , MVT::i64 , Expand); setOperationAction(ISD::CTTZ , MVT::i64 , Expand); - setOperationAction(ISD::CTTZ , MVT::i64 , Expand); + setOperationAction(ISD::CTLZ , MVT::i64 , Expand); } //If this didn't legalize into a div.... From alenhar2 at cs.uiuc.edu Wed May 4 14:25:56 2005 From: alenhar2 at cs.uiuc.edu (Andrew Lenharth) Date: Wed, 4 May 2005 14:25:56 -0500 Subject: [llvm-commits] CVS: llvm/lib/Target/PowerPC/PPC32ISelPattern.cpp PPC64ISelPattern.cpp Message-ID: <200505041925.j44JPu5X002239@apoc.cs.uiuc.edu> Changes in directory llvm/lib/Target/PowerPC: PPC32ISelPattern.cpp updated: 1.81 -> 1.82 PPC64ISelPattern.cpp updated: 1.13 -> 1.14 --- Log message: fix typo --- Diffs of the changes: (+2 -2) PPC32ISelPattern.cpp | 2 +- PPC64ISelPattern.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/lib/Target/PowerPC/PPC32ISelPattern.cpp diff -u llvm/lib/Target/PowerPC/PPC32ISelPattern.cpp:1.81 llvm/lib/Target/PowerPC/PPC32ISelPattern.cpp:1.82 --- llvm/lib/Target/PowerPC/PPC32ISelPattern.cpp:1.81 Tue May 3 12:19:29 2005 +++ llvm/lib/Target/PowerPC/PPC32ISelPattern.cpp Wed May 4 14:25:37 2005 @@ -72,7 +72,7 @@ //PowerPC has these, but they are not implemented setOperationAction(ISD::CTPOP, MVT::i32 , Expand); setOperationAction(ISD::CTTZ , MVT::i32 , Expand); - setOperationAction(ISD::CTTZ , MVT::i32 , Expand); + setOperationAction(ISD::CTLZ , MVT::i32 , Expand); setSetCCResultContents(ZeroOrOneSetCCResult); addLegalFPImmediate(+0.0); // Necessary for FSEL Index: llvm/lib/Target/PowerPC/PPC64ISelPattern.cpp diff -u llvm/lib/Target/PowerPC/PPC64ISelPattern.cpp:1.13 llvm/lib/Target/PowerPC/PPC64ISelPattern.cpp:1.14 --- llvm/lib/Target/PowerPC/PPC64ISelPattern.cpp:1.13 Tue May 3 12:19:29 2005 +++ llvm/lib/Target/PowerPC/PPC64ISelPattern.cpp Wed May 4 14:25:37 2005 @@ -71,7 +71,7 @@ // PowerPC has these, but they are not implemented setOperationAction(ISD::CTPOP, MVT::i64, Expand); setOperationAction(ISD::CTTZ , MVT::i64, Expand); - setOperationAction(ISD::CTTZ , MVT::i64, Expand); + setOperationAction(ISD::CTLZ , MVT::i64, Expand); setShiftAmountFlavor(Extend); // shl X, 32 == 0 addLegalFPImmediate(+0.0); // Necessary for FSEL From alenhar2 at cs.uiuc.edu Wed May 4 14:25:57 2005 From: alenhar2 at cs.uiuc.edu (Andrew Lenharth) Date: Wed, 4 May 2005 14:25:57 -0500 Subject: [llvm-commits] CVS: llvm/lib/Target/X86/X86ISelPattern.cpp Message-ID: <200505041925.j44JPvvH002242@apoc.cs.uiuc.edu> Changes in directory llvm/lib/Target/X86: X86ISelPattern.cpp updated: 1.111 -> 1.112 --- Log message: fix typo --- Diffs of the changes: (+1 -1) X86ISelPattern.cpp | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/lib/Target/X86/X86ISelPattern.cpp diff -u llvm/lib/Target/X86/X86ISelPattern.cpp:1.111 llvm/lib/Target/X86/X86ISelPattern.cpp:1.112 --- llvm/lib/Target/X86/X86ISelPattern.cpp:1.111 Tue May 3 12:19:29 2005 +++ llvm/lib/Target/X86/X86ISelPattern.cpp Wed May 4 14:25:37 2005 @@ -66,7 +66,7 @@ setOperationAction(ISD::SREM , MVT::f64 , Expand); setOperationAction(ISD::CTPOP , MVT::i32 , Expand); setOperationAction(ISD::CTTZ , MVT::i32 , Expand); - setOperationAction(ISD::CTTZ , MVT::i32 , Expand); + setOperationAction(ISD::CTLZ , MVT::i32 , Expand); if (!UnsafeFPMath) { setOperationAction(ISD::FSIN , MVT::f64 , Expand); From alenhar2 at cs.uiuc.edu Wed May 4 14:25:57 2005 From: alenhar2 at cs.uiuc.edu (Andrew Lenharth) Date: Wed, 4 May 2005 14:25:57 -0500 Subject: [llvm-commits] CVS: llvm/lib/Target/IA64/IA64ISelPattern.cpp Message-ID: <200505041925.j44JPvBY002245@apoc.cs.uiuc.edu> Changes in directory llvm/lib/Target/IA64: IA64ISelPattern.cpp updated: 1.34 -> 1.35 --- Log message: fix typo --- Diffs of the changes: (+5 -0) IA64ISelPattern.cpp | 5 +++++ 1 files changed, 5 insertions(+) Index: llvm/lib/Target/IA64/IA64ISelPattern.cpp diff -u llvm/lib/Target/IA64/IA64ISelPattern.cpp:1.34 llvm/lib/Target/IA64/IA64ISelPattern.cpp:1.35 --- llvm/lib/Target/IA64/IA64ISelPattern.cpp:1.34 Mon May 2 02:27:14 2005 +++ llvm/lib/Target/IA64/IA64ISelPattern.cpp Wed May 4 14:25:37 2005 @@ -89,6 +89,11 @@ setOperationAction(ISD::FCOS , MVT::f32, Expand); setOperationAction(ISD::FSQRT, MVT::f32, Expand); + //IA64 has these, but they are not implemented + setOperationAction(ISD::CTPOP, MVT::i32 , Expand); + setOperationAction(ISD::CTTZ , MVT::i32 , Expand); + setOperationAction(ISD::CTLZ , MVT::i32 , Expand); + computeRegisterProperties(); addLegalFPImmediate(+0.0); From lattner at cs.uiuc.edu Wed May 4 18:19:18 2005 From: lattner at cs.uiuc.edu (Chris Lattner) Date: Wed, 4 May 2005 18:19:18 -0500 Subject: [llvm-commits] CVS: llvm-www/pubs/2005-05-04-LattnerPHDThesis-book.pdf 2005-05-04-LattnerPHDThesis-book.ps 2005-05-04-LattnerPHDThesis-poster.pdf 2005-05-04-LattnerPHDThesis.html 2005-05-04-LattnerPHDThesis.pdf 2005-05-04-LattnerPHDThesis.ps index.html Message-ID: <200505042319.j44NJIZL005801@apoc.cs.uiuc.edu> Changes in directory llvm-www/pubs: 2005-05-04-LattnerPHDThesis-book.pdf added (r1.1) 2005-05-04-LattnerPHDThesis-book.ps added (r1.1) 2005-05-04-LattnerPHDThesis-poster.pdf added (r1.1) 2005-05-04-LattnerPHDThesis.html added (r1.1) 2005-05-04-LattnerPHDThesis.pdf added (r1.1) 2005-05-04-LattnerPHDThesis.ps added (r1.1) index.html updated: 1.16 -> 1.17 --- Log message: Add my PHD thesis. --- Diffs of the changes: (+933968 -0) 2005-05-04-LattnerPHDThesis-book.pdf | 0 2005-05-04-LattnerPHDThesis-book.ps |455246 +++++++++++++++++++++++++++++++++ 2005-05-04-LattnerPHDThesis-poster.pdf | 0 2005-05-04-LattnerPHDThesis.html | 98 2005-05-04-LattnerPHDThesis.pdf |27007 + 2005-05-04-LattnerPHDThesis.ps |451614 ++++++++++++++++++++++++++++++++ index.html | 3 7 files changed, 933968 insertions(+) Index: llvm-www/pubs/2005-05-04-LattnerPHDThesis-book.pdf Index: llvm-www/pubs/2005-05-04-LattnerPHDThesis-book.ps diff -c /dev/null llvm-www/pubs/2005-05-04-LattnerPHDThesis-book.ps:1.1 *** /dev/null Wed May 4 18:19:11 2005 --- llvm-www/pubs/2005-05-04-LattnerPHDThesis-book.ps Wed May 4 18:18:50 2005 *************** *** 0 **** --- 1,455246 ---- + %!PS-Adobe-3.0 + %%Title: (Macroscopic Data Structure Analysis and Optimization: Chris Lattner Ph.D. Disse) + %%Version: 1 3 + %%Creator: (LaTeX with hyperref package) + %%CreationDate: (D:20050504180600) + %%For: (Chris Lattner) + %%DocumentData: Clean7Bit + %%LanguageLevel: 2 + %%BoundingBox: 0 0 612 792 + %%Pages: 114 0 + %%DocumentProcessColors: (atend) + %%DocumentNeededResources: (atend) + %%DocumentSuppliedResources: (atend) + %%EndComments + %%BeginDefaults + %%EndDefaults + %%BeginProlog + %%BeginProcSet: PStoPS 1 15 + userdict begin + [/showpage/erasepage/copypage]{dup where{pop dup load + type/operatortype eq{1 array cvx dup 0 3 index cvx put + bind def}{pop}ifelse}{pop}ifelse}forall + [/letter/legal/executivepage/a4/a4small/b5/com10envelope + /monarchenvelope/c5envelope/dlenvelope/lettersmall/note + /folio/quarto/a5]{dup where{dup wcheck{exch{}put} + {pop{}def}ifelse}{pop}ifelse}forall + /setpagedevice {pop}bind 1 index where{dup wcheck{3 1 roll put} + {pop def}ifelse}{def}ifelse + /PStoPSmatrix matrix currentmatrix def + /PStoPSxform matrix def/PStoPSclip{clippath}def + /defaultmatrix{PStoPSmatrix exch PStoPSxform exch concatmatrix}bind def + /initmatrix{matrix defaultmatrix setmatrix}bind def + /initclip[{matrix currentmatrix PStoPSmatrix setmatrix + [{currentpoint}stopped{$error/newerror false put{newpath}} + {/newpath cvx 3 1 roll/moveto cvx 4 array astore cvx}ifelse] + {[/newpath cvx{/moveto cvx}{/lineto cvx} + {/curveto cvx}{/closepath cvx}pathforall]cvx exch pop} + stopped{$error/errorname get/invalidaccess eq{cleartomark + $error/newerror false put cvx exec}{stop}ifelse}if}bind aload pop + /initclip dup load dup type dup/operatortype eq{pop exch pop} + {dup/arraytype eq exch/packedarraytype eq or + {dup xcheck{exch pop aload pop}{pop cvx}ifelse} + {pop cvx}ifelse}ifelse + {newpath PStoPSclip clip newpath exec setmatrix} bind aload pop]cvx def + /initgraphics{initmatrix newpath initclip 1 setlinewidth + 0 setlinecap 0 setlinejoin []0 setdash 0 setgray + 10 setmiterlimit}bind def + end + %%EndProcSet + %%EndProlog + %%BeginSetup + %%BeginResource: l2check + %%Copyright: Copyright 1993 Adobe Systems Incorporated. All Rights Reserved. + systemdict /languagelevel known + { systemdict /languagelevel get 1 eq } + { true } + ifelse + { + initgraphics /Helvetica findfont 18 scalefont setfont + 72 600 moveto (Error: Your printer driver needs to be configured) dup show + 72 580 moveto (for printing to a PostScript Language Level 1 printer.) dup show + exch = = + /Helvetica-Bold findfont 16 scalefont setfont + 72 520 moveto (Windows and Unix) show + /Times-Roman findfont 16 scalefont setfont + 72 500 moveto (Select ?Language Level 1? in the PostScript options section) show + 72 480 moveto (of the Acrobat print dialog.) show + /Helvetica-Bold findfont 16 scalefont setfont + 72 440 moveto (Macintosh) show + /Times-Roman findfont 16 scalefont setfont + 72 420 moveto (In the Chooser, select your printer driver.) show + 72 400 moveto (Then select your printer and click the Setup button.) show + 72 380 moveto (Follow any on-screen dialogs that may appear.) show + showpage + quit + } + if + %%EndResource + userdict /pdf_svglb currentglobal put true setglobal + %%BeginResource: file Pscript_CFF PSVER + userdict/ct_CffDict 6 dict put ct_CffDict begin/F0Subr{systemdict/internaldict + known{1183615869 systemdict/internaldict get exec/FlxProc known{save true}{ + false}ifelse}{userdict/internaldict known not{userdict/internaldict{count 0 eq + {/internaldict errordict/invalidaccess get exec}if dup type/integertype ne{ + /internaldict errordict/invalidaccess get exec}if dup 1183615869 eq{pop 0}{ + /internaldict errordict/invalidaccess get exec}ifelse}dup 14 get 1 25 dict put + bind executeonly put}if 1183615869 userdict/internaldict get exec/FlxProc + known{save true}{false}ifelse}ifelse[systemdict/internaldict known not{100 + dict/begin cvx/mtx matrix/def cvx}if systemdict/currentpacking known{ + currentpacking true setpacking}if{systemdict/internaldict known{1183615869 + systemdict/internaldict get exec dup/$FlxDict known not{dup dup length exch + maxlength eq{pop userdict dup/$FlxDict known not{100 dict begin/mtx matrix def + dup/$FlxDict currentdict put end}if}{100 dict begin/mtx matrix def dup + /$FlxDict currentdict put end}ifelse}if/$FlxDict get begin}if grestore/exdef{ + exch def}def/dmin exch abs 100 div def/epX exdef/epY exdef/c4y2 exdef/c4x2 + exdef/c4y1 exdef/c4x1 exdef/c4y0 exdef/c4x0 exdef/c3y2 exdef/c3x2 exdef/c3y1 + exdef/c3x1 exdef/c3y0 exdef/c3x0 exdef/c1y2 exdef/c1x2 exdef/c2x2 c4x2 def + /c2y2 c4y2 def/yflag c1y2 c3y2 sub abs c1x2 c3x2 sub abs gt def/PickCoords{{ + c1x0 c1y0 c1x1 c1y1 c1x2 c1y2 c2x0 c2y0 c2x1 c2y1 c2x2 c2y2}{c3x0 c3y0 c3x1 + c3y1 c3x2 c3y2 c4x0 c4y0 c4x1 c4y1 c4x2 c4y2}ifelse/y5 exdef/x5 exdef/y4 exdef + /x4 exdef/y3 exdef/x3 exdef/y2 exdef/x2 exdef/y1 exdef/x1 exdef/y0 exdef/x0 + exdef}def mtx currentmatrix pop mtx 0 get abs 1e-05 lt mtx 3 get abs 1e-05 lt + or{/flipXY -1 def}{mtx 1 get abs 1e-05 lt mtx 2 get abs 1e-05 lt or{/flipXY 1 + def}{/flipXY 0 def}ifelse}ifelse/erosion 1 def systemdict/internaldict known{ + 1183615869 systemdict/internaldict get exec dup/erosion known{/erosion get + /erosion exch def}{pop}ifelse}if yflag{flipXY 0 eq c3y2 c4y2 eq or{false + PickCoords}{/shrink c3y2 c4y2 eq{0}{c1y2 c4y2 sub c3y2 c4y2 sub div abs}ifelse + def/yshrink{c4y2 sub shrink mul c4y2 add}def/c1y0 c3y0 yshrink def/c1y1 c3y1 + yshrink def/c2y0 c4y0 yshrink def/c2y1 c4y1 yshrink def/c1x0 c3x0 def/c1x1 + c3x1 def/c2x0 c4x0 def/c2x1 c4x1 def/dY 0 c3y2 c1y2 sub round dtransform + flipXY 1 eq{exch}if pop abs def dY dmin lt PickCoords y2 c1y2 sub abs .001 gt{ + c1x2 c1y2 transform flipXY 1 eq{exch}if/cx exch def/cy exch def/dY 0 y2 c1y2 + sub round dtransform flipXY 1 eq{exch}if pop def dY round dup 0 ne{/dY exdef}{ + pop dY 0 lt{-1}{1}ifelse/dY exdef}ifelse/erode PaintType 2 ne erosion .5 ge + and def erode{/cy cy .5 sub def}if/ey cy dY add def/ey ey ceiling ey sub ey + floor add def erode{/ey ey .5 add def}if ey cx flipXY 1 eq{exch}if itransform + exch pop y2 sub/eShift exch def/y1 y1 eShift add def/y2 y2 eShift add def/y3 + y3 eShift add def}if}ifelse}{flipXY 0 eq c3x2 c4x2 eq or{false PickCoords}{ + /shrink c3x2 c4x2 eq{0}{c1x2 c4x2 sub c3x2 c4x2 sub div abs}ifelse def/xshrink + {c4x2 sub shrink mul c4x2 add}def/c1x0 c3x0 xshrink def/c1x1 c3x1 xshrink def + /c2x0 c4x0 xshrink def/c2x1 c4x1 xshrink def/c1y0 c3y0 def/c1y1 c3y1 def/c2y0 + c4y0 def/c2y1 c4y1 def/dX c3x2 c1x2 sub round 0 dtransform flipXY -1 eq{exch} + if pop abs def dX dmin lt PickCoords x2 c1x2 sub abs .001 gt{c1x2 c1y2 + transform flipXY -1 eq{exch}if/cy exch def/cx exch def/dX x2 c1x2 sub round 0 + dtransform flipXY -1 eq{exch}if pop def dX round dup 0 ne{/dX exdef}{pop dX 0 + lt{-1}{1}ifelse/dX exdef}ifelse/erode PaintType 2 ne erosion .5 ge and def + erode{/cx cx .5 sub def}if/ex cx dX add def/ex ex ceiling ex sub ex floor add + def erode{/ex ex .5 add def}if ex cy flipXY -1 eq{exch}if itransform pop x2 + sub/eShift exch def/x1 x1 eShift add def/x2 x2 eShift add def/x3 x3 eShift add + def}if}ifelse}ifelse x2 x5 eq y2 y5 eq or{x5 y5 lineto}{x0 y0 x1 y1 x2 y2 + curveto x3 y3 x4 y4 x5 y5 curveto}ifelse epY epX}systemdict/currentpacking + known{exch setpacking}if/exec cvx/end cvx]cvx executeonly exch{pop true exch + restore}{systemdict/internaldict known not{1183615869 userdict/internaldict + get exec exch/FlxProc exch put true}{1183615869 systemdict/internaldict get + exec dup length exch maxlength eq{false}{1183615869 systemdict/internaldict + get exec exch/FlxProc exch put true}ifelse}ifelse}ifelse{systemdict + /internaldict known{1183615869 systemdict/internaldict get exec/FlxProc get + exec}{1183615869 userdict/internaldict get exec/FlxProc get exec}ifelse}if} + executeonly def/F1Subr{gsave currentpoint newpath moveto}bind def/F2Subr{ + currentpoint grestore gsave currentpoint newpath moveto}bind def/HSSubr{ + systemdict/internaldict known not{pop 3}{1183615869 systemdict/internaldict + get exec dup/startlock known{/startlock get exec}{dup/strtlck known{/strtlck + get exec}{pop 3}ifelse}ifelse}ifelse}bind def end + %%EndResource + + userdict /pdf_svglb get setglobal + /currentpacking where{pop currentpacking true setpacking}if + %%BeginResource: procset pdfvars + %%Copyright: Copyright 1987-2001 Adobe Systems Incorporated. All Rights Reserved. + %%Version: 5.0 6 + %%Title: definition of dictionary of variables used by PDF & PDFText procsets + userdict /PDF 160 dict put + userdict /PDFVars 89 dict dup begin put + /docSetupDone false def + /InitAll 0 def + /TermAll 0 def + /DocInitAll 0 def + /DocTermAll 0 def + /_pdfEncodings 2 array def + /_pdf_str1 1 string def + /_pdf_i 0 def + /_pdf_na 0 def + /_pdf_showproc 0 def + /_italMtx [1 0 .212557 1 0 0] def + /_italMtx_WMode1 [1 -.212557 0 1 0 0] def + /_italMtxType0 [1 0 .1062785 1 0 0] def + /_italMtx_WMode1Type0 [1 -.1062785 0 1 0 0] def + /_basefont 0 def + /_basefonto 0 def + /_pdf_oldCIDInit null def + /_pdf_FontDirectory 30 dict def + /_categories 10 dict def + /_sa? true def + /_ColorSep5044? false def + /nulldict 0 dict def + /_processColors 0 def + /overprintstack null def + /_defaulttransfer currenttransfer def + /_defaultflatness currentflat def + /_defaulthalftone null def + /_defaultcolortransfer null def + /_defaultblackgeneration null def + /_defaultundercolorremoval null def + /_defaultcolortransfer null def + PDF begin + [/c/cs/cm/d/d0/f/h/i/j/J/l/m/M/n/q/Q/re/ri/S/sc/sh/Tf/w/W + /applyInterpFunc/applystitchFunc/domainClip/encodeInput + /initgs/int/limit/rangeClip + /defineRes/findRes/setSA/pl + %% to keep CoolType entries in GlyphDirProcs safe from collisions with Win PS driver + /? /! /| /: /+ /GetGlyphDirectory + /pdf_flushFilters /pdf_readstring /pdf_dictOp /pdf_image /pdf_maskedImage + /pdf_shfill /pdf_sethalftone + ] {null def} bind forall + end + end + %%EndResource + PDFVars begin PDF begin + %%BeginResource: procset pdfutil + %%Copyright: Copyright 1993-1999 Adobe Systems Incorporated. All Rights Reserved. + %%Version: 4.0 2 + %%Title: Basic utilities used by other PDF procsets + /bd {bind def} bind def + /ld {load def} bd + /bld { + dup length dict begin + { null def } forall + bind + end + def + } bd + /dd { PDFVars 3 1 roll put } bd + /xdd { exch dd } bd + /Level2? + systemdict /languagelevel known + { systemdict /languagelevel get 2 ge } { false } ifelse + def + /Level1? Level2? not def + /Level3? + systemdict /languagelevel known + {systemdict /languagelevel get 3 eq } { false } ifelse + def + /getifknown { + 2 copy known { get true } { pop pop false } ifelse + } bd + /here { + currentdict exch getifknown + } bd + /isdefined? { where { pop true } { false } ifelse } bd + %%EndResource + %%BeginResource: procset pdf + %%Version: 5.0 7 + %%Copyright: Copyright 1998-2001 Adobe Systems Incorporated. All Rights Reserved. + %%Title: General operators for PDF, common to all Language Levels. + /cm { matrix astore concat } bd + /d /setdash ld + /f /fill ld + /h /closepath ld + /i {dup 0 eq {pop _defaultflatness} if setflat} bd + /j /setlinejoin ld + /J /setlinecap ld + /M /setmiterlimit ld + /n /newpath ld + /S /stroke ld + /w /setlinewidth ld + /W /clip ld + /initgs { + 0 setgray + [] 0 d + 0 j + 0 J + 10 M + 1 w + false setSA + /_defaulttransfer load settransfer + 0 i + /RelativeColorimetric ri + newpath + } bd + /int { + dup 2 index sub 3 index 5 index sub div 6 -2 roll sub mul + exch pop add exch pop + } bd + /limit { + dup 2 index le { exch } if pop + dup 2 index ge { exch } if pop + } bd + /domainClip { + Domain aload pop 3 2 roll + limit + } [/Domain] bld + /applyInterpFunc { + 0 1 DimOut 1 sub + { + dup C0 exch get exch + dup C1 exch get exch + 3 1 roll + 1 index sub + 3 index + N exp mul add + exch + currentdict /Range_lo known + { + dup Range_lo exch get exch + Range_hi exch get + 3 2 roll limit + } + { + pop + } + ifelse + exch + } for + pop + } [/DimOut /C0 /C1 /N /Range_lo /Range_hi] bld + /encodeInput { + NumParts 1 sub + 0 1 2 index + { + dup Bounds exch get + 2 index gt + { exit } + { dup + 3 index eq + { exit } + { pop } ifelse + } ifelse + } for + 3 2 roll pop + dup Bounds exch get exch + dup 1 add Bounds exch get exch + 2 mul + dup Encode exch get exch + 1 add Encode exch get + int + } [/NumParts /Bounds /Encode] bld + /rangeClip { + exch dup Range_lo exch get + exch Range_hi exch get + 3 2 roll + limit + } [/Range_lo /Range_hi] bld + /applyStitchFunc { + Functions exch get exec + currentdict /Range_lo known { + 0 1 DimOut 1 sub { + DimOut 1 add -1 roll + rangeClip + } for + } if + } [/Functions /Range_lo /DimOut] bld + /pdf_flushfilters + { + aload length + { dup status + 1 index currentfile ne and + { dup flushfile closefile } + { pop } + ifelse + } repeat + } bd + /pdf_readstring + { + 1 index dup length 1 sub get + exch readstring pop + exch pdf_flushfilters + } bind def + /pdf_dictOp + { + 3 2 roll + 10 dict copy + begin + _Filters dup length 1 sub get def + currentdict exch exec + _Filters pdf_flushfilters + end + } [/_Filters] bld + /pdf_image {{image} /DataSource pdf_dictOp} bd + /pdf_imagemask {{imagemask} /DataSource pdf_dictOp} bd + /pdf_shfill {{sh} /DataSource pdf_dictOp} bd + /pdf_sethalftone {{sethalftone} /Thresholds pdf_dictOp} bd + /pdf_maskedImage + { + 10 dict copy begin + /miDict currentdict def + /DataDict DataDict 10 dict copy def + DataDict begin + /DataSource + _Filters dup length 1 sub get + def + miDict image + _Filters pdf_flushfilters + end + end + } [/miDict /DataDict /_Filters] bld + /RadialShade { + 40 dict begin + /background exch def + /ext1 exch def + /ext0 exch def + /BBox exch def + /r2 exch def + /c2y exch def + /c2x exch def + /r1 exch def + /c1y exch def + /c1x exch def + /rampdict exch def + gsave + BBox length 0 gt { + newpath + BBox 0 get BBox 1 get moveto + BBox 2 get BBox 0 get sub 0 rlineto + 0 BBox 3 get BBox 1 get sub rlineto + BBox 2 get BBox 0 get sub neg 0 rlineto + closepath + clip + newpath + } if + c1x c2x eq + { + c1y c2y lt {/theta 90 def}{/theta 270 def} ifelse + } + { + /slope c2y c1y sub c2x c1x sub div def + /theta slope 1 atan def + c2x c1x lt c2y c1y ge and { /theta theta 180 sub def} if + c2x c1x lt c2y c1y lt and { /theta theta 180 add def} if + } + ifelse + gsave + clippath + c1x c1y translate + theta rotate + -90 rotate + { pathbbox } stopped + { 0 0 0 0 } if + /yMax exch def + /xMax exch def + /yMin exch def + /xMin exch def + grestore + xMax xMin eq yMax yMin eq or + { + grestore + end + } + { + rampdict begin + 40 dict begin + background length 0 gt { background sssetbackground gsave clippath fill grestore } if + gsave + c1x c1y translate + theta rotate + -90 rotate + /c2y c1x c2x sub dup mul c1y c2y sub dup mul add sqrt def + /c1y 0 def + /c1x 0 def + /c2x 0 def + ext0 { + 0 getrampcolor + c2y r2 add r1 lt + { + c1x c1y r1 360 0 arcn + xMin yMin moveto + xMax yMin lineto + xMax yMax lineto + xMin yMax lineto + xMin yMin lineto + eofill + } + { + c2y r1 add r2 le + { + c1x c1y r1 0 360 arc + fill + } + { + c2x c2y r2 0 360 arc fill + r1 r2 eq + { + /p1x r1 neg def + /p1y c1y def + /p2x r1 def + /p2y c1y def + p1x p1y moveto p2x p2y lineto p2x yMin lineto p1x yMin lineto + fill + } + { + /AA r2 r1 sub c2y div def + /theta AA 1 AA dup mul sub sqrt div 1 atan def + /SS1 90 theta add dup sin exch cos div def + /p1x r1 SS1 SS1 mul SS1 SS1 mul 1 add div sqrt mul neg def + /p1y p1x SS1 div neg def + /SS2 90 theta sub dup sin exch cos div def + /p2x r1 SS2 SS2 mul SS2 SS2 mul 1 add div sqrt mul def + /p2y p2x SS2 div neg def + r1 r2 gt + { + /L1maxX p1x yMin p1y sub SS1 div add def + /L2maxX p2x yMin p2y sub SS2 div add def + } + { + /L1maxX 0 def + /L2maxX 0 def + }ifelse + p1x p1y moveto p2x p2y lineto L2maxX L2maxX p2x sub SS2 mul p2y add lineto + L1maxX L1maxX p1x sub SS1 mul p1y add lineto + fill + } + ifelse + } + ifelse + } ifelse + } if + c1x c2x sub dup mul + c1y c2y sub dup mul + add 0.5 exp + 0 dtransform + dup mul exch dup mul add 0.5 exp 72 div + 0 72 matrix defaultmatrix dtransform dup mul exch dup mul add sqrt + 72 0 matrix defaultmatrix dtransform dup mul exch dup mul add sqrt + 1 index 1 index lt { exch } if pop + /hires exch def + hires mul + /numpix exch def + /numsteps NumSamples def + /rampIndxInc 1 def + /subsampling false def + numpix 0 ne + { + NumSamples numpix div 0.5 gt + { + /numsteps numpix 2 div round cvi dup 1 le { pop 2 } if def + /rampIndxInc NumSamples 1 sub numsteps div def + /subsampling true def + } if + } if + /xInc c2x c1x sub numsteps div def + /yInc c2y c1y sub numsteps div def + /rInc r2 r1 sub numsteps div def + /cx c1x def + /cy c1y def + /radius r1 def + newpath + xInc 0 eq yInc 0 eq rInc 0 eq and and + { + 0 getrampcolor + cx cy radius 0 360 arc + stroke + NumSamples 1 sub getrampcolor + cx cy radius 72 hires div add 0 360 arc + 0 setlinewidth + stroke + } + { + 0 + numsteps + { + dup + subsampling { round cvi } if + getrampcolor + cx cy radius 0 360 arc + /cx cx xInc add def + /cy cy yInc add def + /radius radius rInc add def + cx cy radius 360 0 arcn + eofill + rampIndxInc add + } + repeat + pop + } ifelse + ext1 { + c2y r2 add r1 lt + { + c2x c2y r2 0 360 arc + fill + } + { + c2y r1 add r2 le + { + c2x c2y r2 360 0 arcn + xMin yMin moveto + xMax yMin lineto + xMax yMax lineto + xMin yMax lineto + xMin yMin lineto + eofill + } + { + c2x c2y r2 0 360 arc fill + r1 r2 eq + { + /p1x r2 neg def + /p1y c2y def + /p2x r2 def + /p2y c2y def + p1x p1y moveto p2x p2y lineto p2x yMax lineto p1x yMax lineto + fill + } + { + /AA r2 r1 sub c2y div def + /theta AA 1 AA dup mul sub sqrt div 1 atan def + /SS1 90 theta add dup sin exch cos div def + /p1x r2 SS1 SS1 mul SS1 SS1 mul 1 add div sqrt mul neg def + /p1y c2y p1x SS1 div sub def + /SS2 90 theta sub dup sin exch cos div def + /p2x r2 SS2 SS2 mul SS2 SS2 mul 1 add div sqrt mul def + /p2y c2y p2x SS2 div sub def + r1 r2 lt + { + /L1maxX p1x yMax p1y sub SS1 div add def + /L2maxX p2x yMax p2y sub SS2 div add def + } + { + /L1maxX 0 def + /L2maxX 0 def + }ifelse + p1x p1y moveto p2x p2y lineto L2maxX L2maxX p2x sub SS2 mul p2y add lineto + L1maxX L1maxX p1x sub SS1 mul p1y add lineto + fill + } + ifelse + } + ifelse + } ifelse + } if + grestore + grestore + end + end + end + } ifelse + } bd + /GenStrips { + 40 dict begin + /background exch def + /ext1 exch def + /ext0 exch def + /BBox exch def + /y2 exch def + /x2 exch def + /y1 exch def + /x1 exch def + /rampdict exch def + gsave + BBox length 0 gt { + newpath + BBox 0 get BBox 1 get moveto + BBox 2 get BBox 0 get sub 0 rlineto + 0 BBox 3 get BBox 1 get sub rlineto + BBox 2 get BBox 0 get sub neg 0 rlineto + closepath + clip + newpath + } if + x1 x2 eq + { + y1 y2 lt {/theta 90 def}{/theta 270 def} ifelse + } + { + /slope y2 y1 sub x2 x1 sub div def + /theta slope 1 atan def + x2 x1 lt y2 y1 ge and { /theta theta 180 sub def} if + x2 x1 lt y2 y1 lt and { /theta theta 180 add def} if + } + ifelse + gsave + clippath + x1 y1 translate + theta rotate + { pathbbox } stopped + { 0 0 0 0 } if + /yMax exch def + /xMax exch def + /yMin exch def + /xMin exch def + grestore + xMax xMin eq yMax yMin eq or + { + grestore + end + } + { + rampdict begin + 20 dict begin + background length 0 gt { background sssetbackground gsave clippath fill grestore } if + gsave + x1 y1 translate + theta rotate + /xStart 0 def + /xEnd x2 x1 sub dup mul y2 y1 sub dup mul add 0.5 exp def + /ySpan yMax yMin sub def + /numsteps NumSamples def + /rampIndxInc 1 def + /subsampling false def + xStart 0 transform + xEnd 0 transform + 3 -1 roll + sub dup mul + 3 1 roll + sub dup mul + add 0.5 exp 72 div + 0 72 matrix defaultmatrix dtransform dup mul exch dup mul add sqrt + 72 0 matrix defaultmatrix dtransform dup mul exch dup mul add sqrt + 1 index 1 index lt { exch } if pop + mul + /numpix exch def + numpix 0 ne + { + NumSamples numpix div 0.5 gt + { + /numsteps numpix 2 div round cvi dup 1 le { pop 2 } if def + /rampIndxInc NumSamples 1 sub numsteps div def + /subsampling true def + } if + } if + ext0 { + 0 getrampcolor + xMin xStart lt + { xMin yMin xMin neg ySpan rectfill } if + } if + /xInc xEnd xStart sub numsteps div def + /x xStart def + 0 + numsteps + { + dup + subsampling { round cvi } if + getrampcolor + x yMin xInc ySpan rectfill + /x x xInc add def + rampIndxInc add + } + repeat + pop + ext1 { + xMax xEnd gt + { xEnd yMin xMax xEnd sub ySpan rectfill } if + } if + grestore + grestore + end + end + end + } ifelse + } bd + %%EndResource + %%BeginResource: procset pdflev2 + %%Version: 5.0 15 + %%Copyright: Copyright 1987-2001 Adobe Systems Incorporated. All Rights Reserved. + %%LanguageLevel: 2 + %%Title: PDF operators, with code specific for Level 2 + /docinitialize { + PDF begin + /_defaulthalftone currenthalftone dd + /_defaultblackgeneration currentblackgeneration dd + /_defaultundercolorremoval currentundercolorremoval dd + /_defaultcolortransfer [currentcolortransfer] dd + /_defaulttransfer currenttransfer dd + end + PDFVars /docSetupDone true put + } bd + /initialize { + PDFVars /docSetupDone get { + _defaulthalftone sethalftone + /_defaultblackgeneration load setblackgeneration + /_defaultundercolorremoval load setundercolorremoval + _defaultcolortransfer aload pop setcolortransfer + } if + false setoverprint + } bd + /terminate { } bd + /c /curveto ld + /cs /setcolorspace ld + /l /lineto ld + /m /moveto ld + /q /gsave ld + /Q /grestore ld + /sc /setcolor ld + /setSA/setstrokeadjust ld + /re { + 4 2 roll m + 1 index 0 rlineto + 0 exch rlineto + neg 0 rlineto + h + } bd + /concattransferfuncs { + [ 3 1 roll /exec load exch /exec load ] cvx + } bd + /concatandsettransfer { + /_defaulttransfer load concattransferfuncs settransfer + } bd + /concatandsetcolortransfer { + _defaultcolortransfer aload pop + 8 -1 roll 5 -1 roll concattransferfuncs 7 1 roll + 6 -1 roll 4 -1 roll concattransferfuncs 5 1 roll + 4 -1 roll 3 -1 roll concattransferfuncs 3 1 roll + concattransferfuncs + setcolortransfer + } bd + /defineRes/defineresource ld + /findRes/findresource ld + currentglobal + true systemdict /setglobal get exec + [/Function /ExtGState /Form /Shading /FunctionDictionary /MadePattern /PatternPrototype /DataSource /Image] + { /Generic /Category findresource dup length dict copy /Category defineresource pop } + forall + systemdict /setglobal get exec + /ri + { + /findcolorrendering isdefined? + { + mark exch + findcolorrendering + counttomark 2 eq + { type /booleantype eq + { dup type /nametype eq + { dup /ColorRendering resourcestatus + { pop pop + dup /DefaultColorRendering ne + { + /ColorRendering findresource + setcolorrendering + } if + } if + } if + } if + } if + cleartomark + } + { pop + } ifelse + } bd + /knownColorants? { + pop false + } bd + /getrampcolor { + /indx exch def + 0 1 NumComp 1 sub { + dup + Samples exch get + dup type /stringtype eq { indx get } if + exch + Scaling exch get aload pop + 3 1 roll + mul add + } for + setcolor + } bd + /sssetbackground { aload pop setcolor } bd + %%EndResource + %%BeginResource: procset pdftext + %%Version: 5.0 6 + %%Copyright: Copyright 1987-2001 Adobe Systems Incorporated. All Rights Reserved. + %%Title: Text operators for PDF + PDF /PDFText 78 dict dup begin put + /docinitialize + { + /resourcestatus where { + pop + /CIDParams /ProcSet resourcestatus { + pop pop + false /CIDParams /ProcSet findresource /SetBuildCompatible get exec + } if + } if + PDF begin + PDFText /_pdfDefineIdentity-H known + { PDFText /_pdfDefineIdentity-H get exec} + if + end + } bd + /initialize { + PDFText begin + } bd + /terminate { end } bd + Level2? + { + /_safeput + { + 3 -1 roll load 3 1 roll put + } + bd + } + { + /_safeput + { + 2 index load dup dup length exch maxlength ge + { dup length 5 add dict copy + 3 index xdd + } + { pop } + ifelse + 3 -1 roll load 3 1 roll put + } + bd + } + ifelse + /pdf_has_composefont? systemdict /composefont known def + /CopyFont { + { + 1 index /FID ne 2 index /UniqueID ne and + { def } { pop pop } ifelse + } forall + } bd + /Type0CopyFont + { + exch + dup length dict + begin + CopyFont + [ + exch + FDepVector + { + dup /FontType get 0 eq + { + 1 index Type0CopyFont + /_pdfType0 exch definefont + } + { + /_pdfBaseFont exch + 2 index exec + } + ifelse + exch + } + forall + pop + ] + /FDepVector exch def + currentdict + end + } bd + Level2? {currentglobal true setglobal} if + /cHexEncoding + [/c00/c01/c02/c03/c04/c05/c06/c07/c08/c09/c0A/c0B/c0C/c0D/c0E/c0F/c10/c11/c12 + /c13/c14/c15/c16/c17/c18/c19/c1A/c1B/c1C/c1D/c1E/c1F/c20/c21/c22/c23/c24/c25 + /c26/c27/c28/c29/c2A/c2B/c2C/c2D/c2E/c2F/c30/c31/c32/c33/c34/c35/c36/c37/c38 + /c39/c3A/c3B/c3C/c3D/c3E/c3F/c40/c41/c42/c43/c44/c45/c46/c47/c48/c49/c4A/c4B + /c4C/c4D/c4E/c4F/c50/c51/c52/c53/c54/c55/c56/c57/c58/c59/c5A/c5B/c5C/c5D/c5E + /c5F/c60/c61/c62/c63/c64/c65/c66/c67/c68/c69/c6A/c6B/c6C/c6D/c6E/c6F/c70/c71 + /c72/c73/c74/c75/c76/c77/c78/c79/c7A/c7B/c7C/c7D/c7E/c7F/c80/c81/c82/c83/c84 + /c85/c86/c87/c88/c89/c8A/c8B/c8C/c8D/c8E/c8F/c90/c91/c92/c93/c94/c95/c96/c97 + /c98/c99/c9A/c9B/c9C/c9D/c9E/c9F/cA0/cA1/cA2/cA3/cA4/cA5/cA6/cA7/cA8/cA9/cAA + /cAB/cAC/cAD/cAE/cAF/cB0/cB1/cB2/cB3/cB4/cB5/cB6/cB7/cB8/cB9/cBA/cBB/cBC/cBD + /cBE/cBF/cC0/cC1/cC2/cC3/cC4/cC5/cC6/cC7/cC8/cC9/cCA/cCB/cCC/cCD/cCE/cCF/cD0 + /cD1/cD2/cD3/cD4/cD5/cD6/cD7/cD8/cD9/cDA/cDB/cDC/cDD/cDE/cDF/cE0/cE1/cE2/cE3 + /cE4/cE5/cE6/cE7/cE8/cE9/cEA/cEB/cEC/cED/cEE/cEF/cF0/cF1/cF2/cF3/cF4/cF5/cF6 + /cF7/cF8/cF9/cFA/cFB/cFC/cFD/cFE/cFF] def + Level2? {setglobal} if + /modEnc { + /_enc xdd + /_icode 0 dd + counttomark 1 sub -1 0 + { + index + dup type /nametype eq + { + _enc _icode 3 -1 roll put + _icode 1 add + } + if + /_icode xdd + } for + cleartomark + _enc + } bd + /trEnc { + /_enc xdd + 255 -1 0 { + exch dup -1 eq + { pop /.notdef } + { Encoding exch get } + ifelse + _enc 3 1 roll put + } for + pop + _enc + } bd + /TE { + /_i xdd + StandardEncoding 256 array copy modEnc + _pdfEncodings exch _i exch put + } bd + /TZ + { + /_usePDFEncoding xdd + findfont + dup length 6 add dict + begin + { + 1 index /FID ne { def } { pop pop } ifelse + } forall + /pdf_origFontName FontName def + /FontName exch def + currentdict /PaintType known + { PaintType 2 eq {/PaintType 0 def} if } + if + _usePDFEncoding 0 ge + { + /Encoding _pdfEncodings _usePDFEncoding get def + pop + } + { + _usePDFEncoding -1 eq + { + counttomark 0 eq + { pop } + { + Encoding 256 array copy + modEnc /Encoding exch def + } + ifelse + } + { + 256 array + trEnc /Encoding exch def + } + ifelse + } + ifelse + pdf_EuroProcSet pdf_origFontName known + { + pdf_origFontName pdf_AddEuroGlyphProc + } if + Level2? + { + currentdict /pdf_origFontName undef + } if + FontName currentdict + end + definefont pop + } + bd + Level2? + { + /TZG + { + currentglobal true setglobal + 2 index _pdfFontStatus + { + 2 index findfont + false setglobal + 3 index findfont + true setglobal + ne + { + 2 index findfont dup rcheck + { + dup length dict begin + { + 1 index /FID ne { def } { pop pop } ifelse + } forall + currentdict end + } + if + 3 index exch definefont pop + } + if + } if + setglobal + TZ + } bd + } + { + /TZG {TZ} bd + } ifelse + Level2? + { + currentglobal false setglobal + userdict /pdftext_data 5 dict put + pdftext_data + begin + /saveStacks + { + pdftext_data + begin + /vmmode currentglobal def + false setglobal + count array astore /os exch def + end + countdictstack array dictstack pdftext_data exch /ds exch put + cleardictstack pdftext_data /dscount countdictstack put + pdftext_data /vmmode get setglobal + } bind def + /restoreStacks + { + pdftext_data /vmmode currentglobal put false setglobal + clear cleardictstack + pdftext_data /ds get dup + pdftext_data /dscount get 1 2 index length 1 sub + { get begin dup } for + pop pop + pdftext_data /os get aload pop + pdftext_data /vmmode get setglobal + } bind def + /testForClonePrinterBug + { + currentglobal true setglobal + /undefinedCategory /Generic /Category findresource + dup length dict copy /Category defineresource pop + setglobal + pdftext_data /saveStacks get exec + pdftext_data /vmmode currentglobal put false setglobal + /undefined /undefinedCategory { resourcestatus } stopped + pdftext_data exch /bugFound exch put + pdftext_data /vmmode get setglobal + pdftext_data /restoreStacks get exec + pdftext_data /bugFound get + } bind def + end + setglobal + /pdf_resourcestatus + pdftext_data /testForClonePrinterBug get exec + { + { + pdftext_data /saveStacks get exec + pdftext_data /os get dup dup length 1 sub + dup 1 sub dup 0 lt { pop 0 } if + exch 1 exch { get exch dup } for + pop pop + { resourcestatus } + stopped + { + clear cleardictstack pdftext_data /restoreStacks get exec + { pop pop } stopped pop false + } + { + count array astore pdftext_data exch /results exch put + pdftext_data /restoreStacks get exec pop pop + pdftext_data /results get aload pop + } + ifelse + } + } + { { resourcestatus } } + ifelse + bd + } + if + Level2? + { + /_pdfUndefineResource + { + currentglobal 3 1 roll + _pdf_FontDirectory 2 index 2 copy known + {undef} + {pop pop} + ifelse + 1 index (pdf) exch _pdfConcatNames 1 index + 1 index 1 _pdfConcatNames 1 index + 5 index 1 _pdfConcatNames 1 index + 4 + { + 2 copy pdf_resourcestatus + { + pop 2 lt + {2 copy findresource gcheck setglobal undefineresource} + {pop pop} + ifelse + } + { pop pop} + ifelse + } repeat + setglobal + } bd + } + { + /_pdfUndefineResource { pop pop} bd + } + ifelse + Level2? + { + /_pdfFontStatus + { + currentglobal exch + /Font pdf_resourcestatus + {pop pop true} + {false} + ifelse + exch setglobal + } bd + } + { + /_pdfFontStatusString 50 string def + _pdfFontStatusString 0 (fonts/) putinterval + /_pdfFontStatus + { + FontDirectory 1 index known + { pop true } + { + _pdfFontStatusString 6 42 getinterval + cvs length 6 add + _pdfFontStatusString exch 0 exch getinterval + { status } stopped + {pop false} + { + { pop pop pop pop true} + { false } + ifelse + } + ifelse + } + ifelse + } bd + } + ifelse + Level2? + { + /_pdfCIDFontStatus + { + /CIDFont /Category pdf_resourcestatus + { + pop pop + /CIDFont pdf_resourcestatus + {pop pop true} + {false} + ifelse + } + { pop false } + ifelse + } bd + } + if + /_pdfString100 100 string def + /_pdfComposeFontName + { + dup length 1 eq + { + 0 get + 1 index + type /nametype eq + { + _pdfString100 cvs + length dup dup _pdfString100 exch (-) putinterval + _pdfString100 exch 1 add dup _pdfString100 length exch sub getinterval + 2 index exch cvs length + add 1 add _pdfString100 exch 0 exch getinterval + exch pop + true + } + { + pop pop + false + } + ifelse + } + { + false + } + ifelse + dup {exch cvn exch} if + } bd + /_pdfConcatNames + { + exch + _pdfString100 cvs + length dup dup _pdfString100 exch (-) putinterval + _pdfString100 exch 1 add dup _pdfString100 length exch sub getinterval + 3 -1 roll exch cvs length + add 1 add _pdfString100 exch 0 exch getinterval + cvn + } bind def + /_pdfTextTempString 50 string def + /_pdfRegOrderingArray [(Adobe-Japan1) (Adobe-CNS1) (Adobe-Korea1) (Adobe-GB1)] def + /_pdf_CheckCIDSystemInfo + { + 1 index _pdfTextTempString cvs + (Identity) anchorsearch + { + pop pop pop pop true + } + { + false + _pdfRegOrderingArray + { + 2 index exch + anchorsearch + { pop pop pop true exit} + { pop } + ifelse + } + forall + exch pop + exch /CIDFont findresource + /CIDSystemInfo get + 3 -1 roll /CMap findresource + /CIDSystemInfo get + exch + 3 -1 roll + { + 2 copy + /Supplement get + exch + dup type /dicttype eq + {/Supplement get} + {pop 0 } + ifelse + ge + } + { true } + ifelse + { + dup /Registry get + 2 index /Registry get eq + { + /Ordering get + exch /Ordering get + dup type /arraytype eq + { + 1 index type /arraytype eq + { + true + 1 index length 1 sub -1 0 + { + dup 2 index exch get exch 3 index exch get ne + { pop false exit} + if + } for + exch pop exch pop + } + { pop pop false } + ifelse + } + { + eq + } + ifelse + } + { pop pop false } + ifelse + } + { pop pop false } + ifelse + } + ifelse + } bind def + pdf_has_composefont? + { + /_pdfComposeFont + { + 2 copy _pdfComposeFontName not + { + 2 index + } + if + (pdf) exch _pdfConcatNames + dup _pdfFontStatus + { dup findfont 5 2 roll pop pop pop true} + { + 4 1 roll + 1 index /CMap pdf_resourcestatus + { + pop pop + true + } + {false} + ifelse + 1 index true exch + { + _pdfCIDFontStatus not + {pop false exit} + if + } + forall + and + { + 1 index 1 index 0 get _pdf_CheckCIDSystemInfo + { + 3 -1 roll pop + 2 index 3 1 roll + composefont true + } + { + pop pop exch pop false + } + ifelse + } + { + _pdfComposeFontName + { + dup _pdfFontStatus + { + exch pop + 1 index exch + findfont definefont true + } + { + pop exch pop + false + } + ifelse + } + { + exch pop + false + } + ifelse + } + ifelse + { true } + { + dup _pdfFontStatus + { dup findfont true } + { pop false } + ifelse + } + ifelse + } + ifelse + } bd + } + { + /_pdfComposeFont + { + _pdfComposeFontName not + { + dup + } + if + dup + _pdfFontStatus + {exch pop dup findfont true} + { + 1 index + dup type /nametype eq + {pop} + {cvn} + ifelse + eq + {pop false} + { + dup _pdfFontStatus + {dup findfont true} + {pop false} + ifelse + } + ifelse + } + ifelse + } bd + } + ifelse + /_pdfStyleDicts 4 dict dup begin + /Adobe-Japan1 4 dict dup begin + Level2? + { + /Serif + /HeiseiMin-W3-83pv-RKSJ-H _pdfFontStatus + {/HeiseiMin-W3} + { + /HeiseiMin-W3 _pdfCIDFontStatus + {/HeiseiMin-W3} + {/Ryumin-Light} + ifelse + } + ifelse + def + /SansSerif + /HeiseiKakuGo-W5-83pv-RKSJ-H _pdfFontStatus + {/HeiseiKakuGo-W5} + { + /HeiseiKakuGo-W5 _pdfCIDFontStatus + {/HeiseiKakuGo-W5} + {/GothicBBB-Medium} + ifelse + } + ifelse + def + /HeiseiMaruGo-W4-83pv-RKSJ-H _pdfFontStatus + {/HeiseiMaruGo-W4} + { + /HeiseiMaruGo-W4 _pdfCIDFontStatus + {/HeiseiMaruGo-W4} + { + /Jun101-Light-RKSJ-H _pdfFontStatus + { /Jun101-Light } + { SansSerif } + ifelse + } + ifelse + } + ifelse + /RoundSansSerif exch def + /Default Serif def + } + { + /Serif /Ryumin-Light def + /SansSerif /GothicBBB-Medium def + { + (fonts/Jun101-Light-83pv-RKSJ-H) status + }stopped + {pop}{ + { pop pop pop pop /Jun101-Light } + { SansSerif } + ifelse + /RoundSansSerif exch def + }ifelse + /Default Serif def + } + ifelse + end + def + /Adobe-Korea1 4 dict dup begin + /Serif /HYSMyeongJo-Medium def + /SansSerif /HYGoThic-Medium def + /RoundSansSerif SansSerif def + /Default Serif def + end + def + /Adobe-GB1 4 dict dup begin + /Serif /STSong-Light def + /SansSerif /STHeiti-Regular def + /RoundSansSerif SansSerif def + /Default Serif def + end + def + /Adobe-CNS1 4 dict dup begin + /Serif /MKai-Medium def + /SansSerif /MHei-Medium def + /RoundSansSerif SansSerif def + /Default Serif def + end + def + end + def + /TZzero + { + /_wmode xdd + /_styleArr xdd + /_regOrdering xdd + 3 copy + _pdfComposeFont + { + 5 2 roll pop pop pop + } + { + [ + 0 1 _styleArr length 1 sub + { + _styleArr exch get + _pdfStyleDicts _regOrdering 2 copy known + { + get + exch 2 copy known not + { pop /Default } + if + get + } + { + pop pop pop /Unknown + } + ifelse + } + for + ] + exch pop + 2 index 3 1 roll + _pdfComposeFont + {3 -1 roll pop} + { + findfont dup /FontName get exch + } + ifelse + } + ifelse + dup /WMode 2 copy known + { get _wmode ne } + { pop pop _wmode 1 eq} + ifelse + { + exch _wmode _pdfConcatNames + dup _pdfFontStatus + { exch pop dup findfont false} + { exch true } + ifelse + } + { + dup /FontType get 0 ne + } + ifelse + { + dup /FontType get 3 eq _wmode 1 eq and + { + _pdfVerticalRomanT3Font dup length 10 add dict copy + begin + /_basefont exch + dup length 3 add dict + begin + {1 index /FID ne {def}{pop pop} ifelse } + forall + /Encoding Encoding dup length array copy + dup 16#27 /quotesingle put + dup 16#60 /grave put + _regOrdering /Adobe-Japan1 eq + {dup 16#5c /yen put dup 16#a5 /yen put dup 16#b4 /yen put} + if + def + FontName + currentdict + end + definefont + def + /Encoding _basefont /Encoding get def + /_fauxfont true def + } + { + dup length 3 add dict + begin + {1 index /FID ne {def}{pop pop} ifelse } + forall + FontType 0 ne + { + /Encoding Encoding dup length array copy + dup 16#27 /quotesingle put + dup 16#60 /grave put + _regOrdering /Adobe-Japan1 eq + {dup 16#5c /yen put} + if + def + /_fauxfont true def + } if + } ifelse + /WMode _wmode def + dup dup /FontName exch def + currentdict + end + definefont pop + } + { + pop + } + ifelse + /_pdf_FontDirectory 3 1 roll _safeput + } + bd + Level2? + { + /Tf { + _pdf_FontDirectory 2 index 2 copy known + {get exch 3 -1 roll pop} + {pop pop} + ifelse + selectfont + } bd + } + { + /Tf { + _pdf_FontDirectory 2 index 2 copy known + {get exch 3 -1 roll pop} + {pop pop} + ifelse + exch findfont exch + dup type /arraytype eq + {makefont} + {scalefont} + ifelse + setfont + } bd + } + ifelse + /cshow where + { + pop /pdf_cshow /cshow load dd + /pdf_remove2 {pop pop} dd + } + { + /pdf_cshow {exch forall} dd + /pdf_remove2 {} dd + } ifelse + /pdf_xshow + { + /_pdf_na xdd + /_pdf_i 0 dd + currentpoint + /_pdf_y xdd + /_pdf_x xdd + { + pdf_remove2 + _pdf_str1 exch 0 exch put + _pdf_str1 /_pdf_showproc load exec + {_pdf_na _pdf_i get} stopped + { pop pop } + { + _pdf_x _pdf_y moveto + 0 + rmoveto + } + ifelse + _pdf_i 1 add /_pdf_i xdd + currentpoint + /_pdf_y xdd + /_pdf_x xdd + } + exch + pdf_cshow + } bd + /pdf_yshow + { + /_pdf_na xdd + /_pdf_i 0 dd + currentpoint + /_pdf_y xdd + /_pdf_x xdd + { + pdf_remove2 + _pdf_str1 exch 0 exch put + _pdf_str1 /_pdf_showproc load exec + {_pdf_na _pdf_i get} stopped + { pop pop } + { + _pdf_x _pdf_y moveto + 0 exch + rmoveto + } + ifelse + _pdf_i 1 add /_pdf_i xdd + currentpoint + /_pdf_y xdd + /_pdf_x xdd + } + exch + pdf_cshow + } bd + /pdf_xyshow + { + /_pdf_na xdd + /_pdf_i 0 dd + currentpoint + /_pdf_y xdd + /_pdf_x xdd + { + pdf_remove2 + _pdf_str1 exch 0 exch put + _pdf_str1 /_pdf_showproc load exec + {_pdf_na _pdf_i get} stopped + { pop pop } + { + {_pdf_na _pdf_i 1 add get} stopped + { pop pop pop} + { + _pdf_x _pdf_y moveto + rmoveto + } + ifelse + } + ifelse + _pdf_i 2 add /_pdf_i xdd + currentpoint + /_pdf_y xdd + /_pdf_x xdd + } + exch + pdf_cshow + } bd + /pdfl1xs {/_pdf_showproc /show load dd pdf_xshow} bd + /pdfl1ys {/_pdf_showproc /show load dd pdf_yshow} bd + /pdfl1xys {/_pdf_showproc /show load dd pdf_xyshow} bd + Level2? _ColorSep5044? not and + { + /pdfxs {{xshow} stopped {pdfl1xs} if} bd + /pdfys {{yshow} stopped {pdfl1ys} if} bd + /pdfxys {{xyshow} stopped {pdfl1xys} if} bd + } + { + /pdfxs /pdfl1xs load dd + /pdfys /pdfl1ys load dd + /pdfxys /pdfl1xys load dd + } ifelse + /pdf_charpath {false charpath} bd + /pdf_xcharpath {/_pdf_showproc /pdf_charpath load dd pdf_xshow} bd + /pdf_ycharpath {/_pdf_showproc /pdf_charpath load dd pdf_yshow} bd + /pdf_xycharpath {/_pdf_showproc /pdf_charpath load dd pdf_xyshow} bd + /pdf_strokepath + { + { + pdf_remove2 + _pdf_str1 exch 0 exch put + _pdf_str1 false charpath + currentpoint S moveto + } bind + exch pdf_cshow + } bd + /pdf_xstrokepath {/_pdf_showproc {pdf_charpath S} dd pdf_xshow} bd + /pdf_ystrokepath {/_pdf_showproc {pdf_charpath S} dd pdf_yshow} bd + /pdf_xystrokepath {/_pdf_showproc {pdf_charpath S} dd pdf_xyshow} bd + Level2? {currentglobal true setglobal} if + /d0/setcharwidth ld + /nND {{/.notdef} repeat} bd + /T3Defs { + /BuildChar + { + 1 index /Encoding get exch get + 1 index /BuildGlyph get exec + } + def + /BuildGlyph { + exch begin + GlyphProcs exch get exec + end + } def + /_pdfT3Font true def + } bd + /_pdfBoldRomanWidthProc + { + stringwidth 1 index 0 ne { exch .03 add exch }if setcharwidth + 0 0 + } bd + /_pdfType0WidthProc + { + dup stringwidth 0 0 moveto + 2 index true charpath pathbbox + 0 -1 + 7 index 2 div .88 + setcachedevice2 + pop + 0 0 + } bd + /_pdfType0WMode1WidthProc + { + dup stringwidth + pop 2 div neg -0.88 + 2 copy + moveto + 0 -1 + 5 -1 roll true charpath pathbbox + setcachedevice + } bd + /_pdfBoldBaseFont + 11 dict begin + /FontType 3 def + /FontMatrix[1 0 0 1 0 0]def + /FontBBox[0 0 1 1]def + /Encoding cHexEncoding def + /_setwidthProc /_pdfBoldRomanWidthProc load def + /_bcstr1 1 string def + /BuildChar + { + exch begin + _basefont setfont + _bcstr1 dup 0 4 -1 roll put + dup + _setwidthProc + 3 copy + moveto + show + _basefonto setfont + moveto + show + end + }bd + currentdict + end + def + pdf_has_composefont? + { + /_pdfBoldBaseCIDFont + 11 dict begin + /CIDFontType 1 def + /CIDFontName /_pdfBoldBaseCIDFont def + /FontMatrix[1 0 0 1 0 0]def + /FontBBox[0 0 1 1]def + /_setwidthProc /_pdfType0WidthProc load def + /_bcstr2 2 string def + /BuildGlyph + { + exch begin + _basefont setfont + _bcstr2 1 2 index 256 mod put + _bcstr2 0 3 -1 roll 256 idiv put + _bcstr2 dup _setwidthProc + 3 copy + moveto + show + _basefonto setfont + moveto + show + end + }bd + currentdict + end + def + /_pdfDefineIdentity-H + { + /Identity-H /CMap PDFText /pdf_resourcestatus get exec + { + pop pop + } + { + /CIDInit/ProcSet findresource begin 12 dict begin + begincmap + /CIDSystemInfo + 3 dict begin + /Registry (Adobe) def + /Ordering (Identity) def + /Supplement 0 def + currentdict + end + def + /CMapName /Identity-H def + /CMapVersion 1 def + /CMapType 1 def + 1 begincodespacerange + <0000> + endcodespacerange + 1 begincidrange + <0000> 0 + endcidrange + endcmap + CMapName currentdict/CMap defineresource pop + end + end + } ifelse + } def + } if + /_pdfVerticalRomanT3Font + 10 dict begin + /FontType 3 def + /FontMatrix[1 0 0 1 0 0]def + /FontBBox[0 0 1 1]def + /_bcstr1 1 string def + /BuildChar + { + exch begin + _basefont setfont + _bcstr1 dup 0 4 -1 roll put + dup + _pdfType0WidthProc + moveto + show + end + }bd + currentdict + end + def + Level2? {setglobal} if + /MakeBoldFont + { + dup /ct_SyntheticBold known + { + dup length 3 add dict begin + CopyFont + /ct_StrokeWidth .03 0 FontMatrix idtransform pop def + /ct_SyntheticBold true def + currentdict + end + definefont + } + { + dup dup length 3 add dict + begin + CopyFont + /PaintType 2 def + /StrokeWidth .03 0 FontMatrix idtransform pop def + /dummybold currentdict + end + definefont + dup /FontType get dup 9 ge exch 11 le and + { + _pdfBoldBaseCIDFont + dup length 3 add dict copy begin + dup /CIDSystemInfo get /CIDSystemInfo exch def + /_Type0Identity /Identity-H 3 -1 roll [ exch ] composefont + /_basefont exch def + /_Type0Identity /Identity-H 3 -1 roll [ exch ] composefont + /_basefonto exch def + currentdict + end + /CIDFont defineresource + } + { + _pdfBoldBaseFont + dup length 3 add dict copy begin + /_basefont exch def + /_basefonto exch def + currentdict + end + definefont + } + ifelse + } + ifelse + } bd + /MakeBold { + 1 index + _pdf_FontDirectory 2 index 2 copy known + {get} + {exch pop} + ifelse + findfont + dup + /FontType get 0 eq + { + dup /WMode known {dup /WMode get 1 eq }{false} ifelse + version length 4 ge + and + {version 0 4 getinterval cvi 2015 ge } + {true} + ifelse + {/_pdfType0WidthProc} + {/_pdfType0WMode1WidthProc} + ifelse + _pdfBoldBaseFont /_setwidthProc 3 -1 roll load put + {MakeBoldFont} Type0CopyFont definefont + } + { + dup /_fauxfont known not 1 index /SubstMaster known not and + { + _pdfBoldBaseFont /_setwidthProc /_pdfBoldRomanWidthProc load put + MakeBoldFont + } + { + 2 index 2 index eq + { exch pop } + { + dup length dict begin + CopyFont + currentdict + end + definefont + } + ifelse + } + ifelse + } + ifelse + pop pop + dup /dummybold ne + {/_pdf_FontDirectory exch dup _safeput } + { pop } + ifelse + }bd + /MakeItalic { + _pdf_FontDirectory exch 2 copy known + {get} + {exch pop} + ifelse + dup findfont + dup /FontInfo 2 copy known + { + get + /ItalicAngle 2 copy known + {get 0 eq } + { pop pop true} + ifelse + } + { pop pop true} + ifelse + { + exch pop + dup /FontType get 0 eq Level2? not and + { dup /FMapType get 6 eq } + { false } + ifelse + { + dup /WMode 2 copy known + { + get 1 eq + { _italMtx_WMode1Type0 } + { _italMtxType0 } + ifelse + } + { pop pop _italMtxType0 } + ifelse + } + { + dup /WMode 2 copy known + { + get 1 eq + { _italMtx_WMode1 } + { _italMtx } + ifelse + } + { pop pop _italMtx } + ifelse + } + ifelse + makefont + dup /FontType get 42 eq Level2? not or + { + dup length dict begin + CopyFont + currentdict + end + } + if + 1 index exch + definefont pop + /_pdf_FontDirectory exch dup _safeput + } + { + pop + 2 copy ne + { + /_pdf_FontDirectory 3 1 roll _safeput + } + { pop pop } + ifelse + } + ifelse + }bd + /MakeBoldItalic { + /dummybold exch + MakeBold + /dummybold + MakeItalic + }bd + Level2? + { + /pdf_CopyDict + {1 index length add dict copy} + def + } + { + /pdf_CopyDict + { + 1 index length add dict + 1 index wcheck + { copy } + { begin + {def} forall + currentdict + end + } + ifelse + } + def + } + ifelse + /pdf_AddEuroGlyphProc + { + currentdict /CharStrings known + { + CharStrings /Euro known not + { + dup + /CharStrings + CharStrings 1 pdf_CopyDict + begin + /Euro pdf_EuroProcSet 4 -1 roll get def + currentdict + end + def + /pdf_PSBuildGlyph /pdf_PSBuildGlyph load def + /pdf_PathOps /pdf_PathOps load def + /Symbol eq + { + /Encoding Encoding dup length array copy + dup 160 /Euro put def + } + if + } + { pop + } + ifelse + } + { pop + } + ifelse + } + def + Level2? {currentglobal true setglobal} if + /pdf_PathOps 4 dict dup begin + /m {moveto} def + /l {lineto} def + /c {curveto} def + /cp {closepath} def + end + def + /pdf_PSBuildGlyph + { + gsave + 8 -1 roll pop + 7 1 roll + currentdict /PaintType 2 copy known {get 2 eq}{pop pop false} ifelse + dup 9 1 roll + { + currentdict /StrokeWidth 2 copy known + { + get 2 div + 5 1 roll + 4 -1 roll 4 index sub + 4 1 roll + 3 -1 roll 4 index sub + 3 1 roll + exch 4 index add exch + 4 index add + 5 -1 roll pop + } + { + pop pop + } + ifelse + } + if + setcachedevice + pdf_PathOps begin + exec + end + { + currentdict /StrokeWidth 2 copy known + { get } + { pop pop 0 } + ifelse + setlinewidth stroke + } + { + fill + } + ifelse + grestore + } def + /pdf_EuroProcSet 13 dict def + pdf_EuroProcSet + begin + /Courier-Bold + { + 600 0 6 -12 585 612 + { + 385 274 m + 180 274 l + 179 283 179 293 179 303 c + 179 310 179 316 180 323 c + 398 323 l + 423 404 l + 197 404 l + 219 477 273 520 357 520 c + 409 520 466 490 487 454 c + 487 389 l + 579 389 l + 579 612 l + 487 612 l + 487 560 l + 449 595 394 612 349 612 c + 222 612 130 529 98 404 c + 31 404 l + 6 323 l + 86 323 l + 86 304 l + 86 294 86 284 87 274 c + 31 274 l + 6 193 l + 99 193 l + 129 77 211 -12 359 -12 c + 398 -12 509 8 585 77 c + 529 145 l + 497 123 436 80 356 80 c + 285 80 227 122 198 193 c + 360 193 l + cp + 600 0 m + } + pdf_PSBuildGlyph + } def + /Courier-BoldOblique /Courier-Bold load def + /Courier + { + 600 0 17 -12 578 584 + { + 17 204 m + 97 204 l + 126 81 214 -12 361 -12 c + 440 -12 517 17 578 62 c + 554 109 l + 501 70 434 43 366 43 c + 266 43 184 101 154 204 c + 380 204 l + 400 259 l + 144 259 l + 144 270 143 281 143 292 c + 143 299 143 307 144 314 c + 418 314 l + 438 369 l + 153 369 l + 177 464 249 529 345 529 c + 415 529 484 503 522 463 c + 522 391 l + 576 391 l + 576 584 l + 522 584 l + 522 531 l + 473 566 420 584 348 584 c + 216 584 122 490 95 369 c + 37 369 l + 17 314 l + 87 314 l + 87 297 l + 87 284 88 272 89 259 c + 37 259 l + cp + 600 0 m + } + pdf_PSBuildGlyph + } def + /Courier-Oblique /Courier load def + /Helvetica + { + 556 0 24 -19 541 703 + { + 541 628 m + 510 669 442 703 354 703 c + 201 703 117 607 101 444 c + 50 444 l + 25 372 l + 97 372 l + 97 301 l + 49 301 l + 24 229 l + 103 229 l + 124 67 209 -19 350 -19 c + 435 -19 501 25 509 32 c + 509 131 l + 492 105 417 60 343 60 c + 267 60 204 127 197 229 c + 406 229 l + 430 301 l + 191 301 l + 191 372 l + 455 372 l + 479 444 l + 194 444 l + 201 531 245 624 348 624 c + 433 624 484 583 509 534 c + cp + 556 0 m + } + pdf_PSBuildGlyph + } def + /Helvetica-Oblique /Helvetica load def + /Helvetica-Bold + { + 556 0 12 -19 563 710 + { + 563 621 m + 537 659 463 710 363 710 c + 216 710 125 620 101 462 c + 51 462 l + 12 367 l + 92 367 l + 92 346 l + 92 337 93 328 93 319 c + 52 319 l + 12 224 l + 102 224 l + 131 58 228 -19 363 -19 c + 417 -19 471 -12 517 18 c + 517 146 l + 481 115 426 93 363 93 c + 283 93 254 166 246 224 c + 398 224 l + 438 319 l + 236 319 l + 236 367 l + 457 367 l + 497 462 l + 244 462 l + 259 552 298 598 363 598 c + 425 598 464 570 486 547 c + 507 526 513 517 517 509 c + cp + 556 0 m + } + pdf_PSBuildGlyph + } def + /Helvetica-BoldOblique /Helvetica-Bold load def + /Symbol + { + 750 0 20 -12 714 685 + { + 714 581 m + 650 645 560 685 465 685 c + 304 685 165 580 128 432 c + 50 432 l + 20 369 l + 116 369 l + 115 356 115 347 115 337 c + 115 328 115 319 116 306 c + 50 306 l + 20 243 l + 128 243 l + 165 97 300 -12 465 -12 c + 560 -12 635 25 685 65 c + 685 155 l + 633 91 551 51 465 51 c + 340 51 238 131 199 243 c + 555 243 l + 585 306 l + 184 306 l + 183 317 182 326 182 336 c + 182 346 183 356 184 369 c + 614 369 l 644 432 l + 199 432 l + 233 540 340 622 465 622 c + 555 622 636 580 685 520 c + cp + 750 0 m + } + pdf_PSBuildGlyph + } def + /Times-Bold + { + 500 0 16 -14 478 700 + { + 367 308 m + 224 308 l + 224 368 l + 375 368 l + 380 414 l + 225 414 l + 230 589 257 653 315 653 c + 402 653 431 521 444 457 c + 473 457 l + 473 698 l + 444 697 l + 441 679 437 662 418 662 c + 393 662 365 700 310 700 c + 211 700 97 597 73 414 c + 21 414 l + 16 368 l + 69 368 l + 69 359 68 350 68 341 c + 68 330 68 319 69 308 c + 21 308 l + 16 262 l + 73 262 l + 91 119 161 -14 301 -14 c + 380 -14 443 50 478 116 c + 448 136 l + 415 84 382 40 323 40 c + 262 40 231 77 225 262 c + 362 262 l + cp + 500 0 m + } + pdf_PSBuildGlyph + } def + /Times-BoldItalic + { + 500 0 9 -20 542 686 + { + 542 686 m + 518 686 l + 513 673 507 660 495 660 c + 475 660 457 683 384 683 c + 285 683 170 584 122 430 c + 58 430 l + 34 369 l + 105 369 l + 101 354 92 328 90 312 c + 34 312 l + 9 251 l + 86 251 l + 85 238 84 223 84 207 c + 84 112 117 -14 272 -14 c + 326 -14 349 9 381 9 c + 393 9 393 -10 394 -20 c + 420 -20 l + 461 148 l + 429 148 l + 416 109 362 15 292 15 c + 227 15 197 55 197 128 c + 197 162 204 203 216 251 c + 378 251 l + 402 312 l + 227 312 l + 229 325 236 356 241 369 c + 425 369 l + 450 430 l + 255 430 l + 257 435 264 458 274 488 c + 298 561 337 654 394 654 c + 437 654 484 621 484 530 c + 484 516 l + 516 516 l + cp + 500 0 m + } + pdf_PSBuildGlyph + } def + /Times-Italic + { + 500 0 23 -10 595 692 + { + 399 317 m + 196 317 l + 199 340 203 363 209 386 c + 429 386 l + 444 424 l + 219 424 l + 246 514 307 648 418 648 c + 448 648 471 638 492 616 c + 529 576 524 529 527 479 c + 549 475 l + 595 687 l + 570 687 l + 562 674 558 664 542 664 c + 518 664 474 692 423 692 c + 275 692 162 551 116 424 c + 67 424 l + 53 386 l + 104 386 l + 98 363 93 340 90 317 c + 37 317 l + 23 279 l + 86 279 l + 85 266 85 253 85 240 c + 85 118 137 -10 277 -10 c + 370 -10 436 58 488 128 c + 466 149 l + 424 101 375 48 307 48 c + 212 48 190 160 190 234 c + 190 249 191 264 192 279 c + 384 279 l + cp + 500 0 m + } + pdf_PSBuildGlyph + } def + /Times-Roman + { + 500 0 10 -12 484 692 + { + 347 298 m + 171 298 l + 170 310 170 322 170 335 c + 170 362 l + 362 362 l + 374 403 l + 172 403 l + 184 580 244 642 308 642 c + 380 642 434 574 457 457 c + 481 462 l + 474 691 l + 449 691 l + 433 670 429 657 410 657 c + 394 657 360 692 299 692 c + 204 692 94 604 73 403 c + 22 403 l + 10 362 l + 70 362 l + 69 352 69 341 69 330 c + 69 319 69 308 70 298 c + 22 298 l + 10 257 l + 73 257 l + 97 57 216 -12 295 -12 c + 364 -12 427 25 484 123 c + 458 142 l + 425 101 384 37 316 37 c + 256 37 189 84 173 257 c + 335 257 l + cp + 500 0 m + } + pdf_PSBuildGlyph + } def + end + Level2? {setglobal} if + currentdict readonly pop end + %%EndResource + PDFText begin + [userdict /pdf_svglb currentglobal put true setglobal + 39/quotesingle 96/grave 128/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis + /Udieresis/aacute/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute + /egrave/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde + /oacute/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex + /udieresis/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls + /registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash + /.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef + /.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash + /questiondown/exclamdown/logicalnot/.notdef/florin/.notdef/.notdef + /guillemotleft/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe + /endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide + /.notdef/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright + /fi/fl/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand + /Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex + /Idieresis/Igrave/Oacute/Ocircumflex/.notdef/Ograve/Uacute/Ucircumflex + /Ugrave/dotlessi/circumflex/tilde/macron/breve/dotaccent/ring/cedilla + /hungarumlaut/ogonek/caron + 0 TE + [1/dotlessi/caron 39/quotesingle 96/grave + 127/bullet/Euro/bullet/quotesinglbase/florin/quotedblbase/ellipsis + /dagger/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE + /bullet/Zcaron/bullet/bullet/quoteleft/quoteright/quotedblleft + /quotedblright/bullet/endash/emdash/tilde/trademark/scaron + /guilsinglright/oe/bullet/zcaron/Ydieresis/space/exclamdown/cent/sterling + /currency/yen/brokenbar/section/dieresis/copyright/ordfeminine + /guillemotleft/logicalnot/hyphen/registered/macron/degree/plusminus + /twosuperior/threesuperior/acute/mu/paragraph/periodcentered/cedilla + /onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters + /questiondown/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla + /Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis + /Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply/Oslash + /Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls/agrave + /aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla/egrave/eacute + /ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis/eth/ntilde + /ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash/ugrave/uacute + /ucircumflex/udieresis/yacute/thorn/ydieresis + 1 TE + end + + userdict /pdf_svglb get setglobal + %%BeginResource: pdfasc.prc + %%Version: 4.0 2 + %%Copyright: Copyright 1992-1997 Adobe Systems Incorporated. All Rights Reserved. + /AS { + 9 dict begin + /shrink? xdd + /Pury xdd + /Purx xdd + /Plly xdd + /Pllx xdd + gsave newpath clippath pathbbox newpath grestore + /Dury xdd + /Durx xdd + /Dlly xdd + /Dllx xdd + Durx Dllx sub Dury Dlly sub + Pury Plly sub div exch Purx Pllx sub div + 2 copy gt { exch } if pop + Durx Dllx add 2 div Dury Dlly add 2 div translate + shrink? { dup scale } { pop } ifelse + Purx Pllx add -2 div Pury Plly add -2 div translate + end + } [/shrink? /Pury /Purx /Plly /Pllx /Durx /Dury /Dllx /Dlly] + bld + %%EndResource + currentdict readonly pop + end end + /currentpacking where {pop setpacking}if + PDFVars/DocInitAll{[PDF PDFText]{/docinitialize get exec}forall }put + PDFVars/InitAll{[PDF PDFText]{/initialize get exec}forall initgs}put + PDFVars/TermAll{[PDFText PDF]{/terminate get exec}forall}put + PDFVars begin PDF begin + PDFVars/DocInitAll get exec PDFVars/InitAll get exec + userdict /pdf_svglb currentglobal put true setglobal + %%BeginResource: font RZUVEF+CMTT10 + ct_CffDict begin + %!FontType1 + 16 dict begin + /FontInfo 15 dict dup begin + /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) def + /version (1.00B) def + /FullName (CMTT10) def + /FamilyName (Computer Modern) def + /Weight (Medium) def + /ItalicAngle 0 def + /isFixedPitch true def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + end def + /FontName /RZUVEF+CMTT10 def + /Encoding 256 array + 0 1 255 {1 index exch /.notdef put} for + dup 0 /.notdef put + def + /PaintType 0 def + /FontType 1 def + /FontMatrix [0.001 0 0 0.001 0 0 ] def + /FontBBox { -4 -235 731 800 } def + /XUID [6 5000832 ] def + /StrokeWidth 0 def + currentdict end + currentfile eexec A0B00ED5187D9C0F1ECDF51878C3AA5CAA3EC9EBBC6A5E + 2825687306A156DACC32FBF734087CDFC35B78DDA68032BCA38CA8E8A340AAA3 + 002A0E52D0B9162BC68AACFC0F14A1C933363A56EE460EB41CE8C2E9EDC509AB + 9E0462B9F619AD944F133AF072E5FD1625902963260181189070C40FB0D49A96 + 50D86FB0AA90098027455AC2354A299FC7BFC34B4F1162E5E9A3EFD80D6240B6 + 9378BB4F6F9F5D673C647FDACF190F06118F289D2CA3C383F4695BF8B1281FF0 + A685A5A98B8A6B83D6A275897818FC87CFE403C2F363B01464E2671ECB011A62 + 54B55729E6739775DD76E427D10F13DA43569D7CF323F9E66A45BA661AB0CC07 + 35E9906BEA549ECBC2E0B1043900E3E21AA5856183907B5BAD9B313C86B80169 + 1E80681EC1BEF69FA5B0F67E675F17512CEE81C43D2ED2C134C987EC0C8BF9FD + CE3A3FCA339829D45F471225B5DFA7CB8EFF7E1BE6E19E8045483480F2CCAFDB + 686D979F04F612209B443C7D5323CE42168F0B6760038662D59C87E9EE07FA9E + 31B8B79ED16F0AEEBFBED1C02A6C9390DD95B1CF3283860C1705DC4BE70AC493 + 62FA45EA0BB4571C40D93C1D42E9CB6708096C1DC386195910301A6032580B5B + 653B28143C4BF9DC8083E9B540932B81BC3DE8EF08F6DDABFA8535B09A51C755 + AEB085CD136A88E9453607B1A4966A7F9941FEDB18665F655B234169934ADE77 + 684D4D9DE8F97BBFA39BFF20924AA28F18193AC91967D0EA25B52CAE7152B373 + 5979315B45E1E9E1B82254BE2108206D7ADFD5CA7473C33E88435A422A1E72C1 + 2FFE23AA67231A04BC2D7FD4A20F8C01E5826CB99A5872CAC37575961CF6D773 + 412F31BE4AE18005CE51712FC58F692B55941BBA14AA700FA466E41F25B384C8 + B69F759EEEEBD030ED585F912B79F7D1C09158E04D1EDE18F06F01523E7B90EE + 4B4A4BFDAA2FBE65BC779C3883ED77EFED55413BB1A3E457D1E46D6717DF44AD + 1ACCFF765A0251201C45CF2213A08A60DF73A167B0A441ABD6AFDB9B35195600 + 048B62F68D48F58A2B543DCEE24BE9F570B803F2156A8129CD6893B419AC7727 + 4FB891BF69F9394F75AAE5820AC7908505301EA6903B5E9335603288E7FB503D + 9BD277670982A8C5FFEBC92F5640E188384AC5354D8A96B28CDEC08BAED8F7CD + 2CD5787ACACF017CAC59113402DEDAE8FDA1E4871BAF2B11A56DC7695A2ABE0A + 456E19DACC83FB91E7E43E0EF044CC6D38B8C379B36248C084A5888BA9079910 + 71C329743A3FB8F51912ACE0393405F6295C3193C6FFDB6BED51F6C76DF17490 + C79963BB8F4FA903E75246AB81B7DB725CEE46B9FE5123D484AF6879FA711499 + D009DC808254AD270FFFD6FB300F32D649D4C2930695BAE95B76FD6176AAA0A7 + 2E031672633B5ACD5902BDFAB1882486450367620A4E8959F9585633EB85F858 + 354C1277E4FD330630CBC9B1D5D4895D84001E79E1B2F55C8F8D3D88E746E82C + 073B905DDB57152E86E18F8F0A59B42D32F126CE750BBB27173E671591F15CFB + F8CD8F604E5E737D22FFF287D4EE08043687841A679268B6F10598AB10CE8FF2 + E1FB3986342BBE3624D1CC2618C70A38E4325DBFAECBD325AE26D31B7FD0214F + F769D6012C7A3B178855C9CBAC2BD5C5E39ACBFA705D9C947F07F87F56CA84C1 + 05253674DBE09DC90DBFC996EFFBF61EB4676AED3A4F9C8F112C76A3BD81042F + 96F7444143F09E2D7487E919D55E604498DEE596B6D4A240D0BEABB6C0004728 + 782D47DB3A2AFEBB067C5A32C413CE1FBAC9D7303F38D98A534DCED54B27DD68 + EFAA076B211027F18B7EF7436171DC79EED1BF0E4CB197490A4129F33ED2B016 + 56F4AA44D0E4D158D09F3D67231EF5B9B51FD2C48D386D2C3D0AF1BFA4334C2A + 8EC52DC601EF1A94CBFE63B9679C1BA3CD867A8705BE5C60860CA5D2955F180A + 9C7E66A259A2C2467F359BE61452BB7429B11A769D2F6956ACB8A97722CD2CEE + 26068D027561124A924755F723DE12F763B781D798E36EA308BA4E9F8C46C514 + EBD76697AD72AD41B085EA39E7EE2A7B4E40CBCE56C22D9D0DA37614C781A187 + 7A01016F12D2FB0384DCC6AC829984F4688720EFB2AC3278343BCC35FA91B9B2 + 80C0170CDD5BBBFFDE35B823E4E6E8361B09D7A22A6FA101708269D44A8CEE7E + DC3FA5B720D346E3CBB66651885D8975589E0C18BF91846AD290608B88DF77FE + B6653557817D0314C46B768EB0F4A90426BDC7A76BB39E4F834A4323F32B1C32 + 6A2DA00EDBA520A9804DA7863F365BF663ED156822217C05C8B85304E90E1648 + 8186FCD9457943F512B6F996F0E44A2E06687B0098143C086D37C46F82B839BA + 41AEE119399E322C84A88F33CEB834B70D9551486622BF13A7EFF04265578541 + B3798E4D3E2EAAB5146B3189DC2EE741175250C63F329854A17534C47D681100 + 2151F2410B922D100F8254E8B9DA381A54B5C04F8A15E2FD242EB9B361D70309 + 5289B17469352E3362FE18051201C20B7D82E0EEEE382D4B49936238EC837012 + 17F208B798B354DEEEF646E2103D3F5FD1D3532D36CDBB52E1301E1E40D8CC0C + 3105B35B0FD358D1FBDFD72F8B5021B3B2EC04D57DD7E7A11B6D762C8CD7A1DD + B78007CE4A88F18E89BAE001EE11CD77EB24D47C40E559C86B620F0BF80024F2 + A3A7733AF1E3DB09ED186ED33AD6250F3CB8953F8D5ECB3B3A0F74D2477F64D5 + 9DCFC1184184D6A723A674A3D69C5D324170B7DE1A31C889AF0C6F5BE8164FB6 + A3E964D71212346BF3D382CC0559021DFBCF05F5A736075F96B045B93ED5F8C1 + 9AD6CB810E57B8F01EA72AB39A4E5D221EAFC02E3F12A38A4E37A7425B1818E7 + 1DC7226A49EB40A2CE11CED213EC2C4D1FD5A233E63C716D4DA58C9BDE493DD9 + FE2458BCADD011AB623226346A536FC4AB53406A13AD1C3FDBB3B5D1FCABF440 + 835080C3ED290C954EE545365E58AEFD7208B5822E12926DB719B4A2C4E95E47 + 6959E92EA03E02F510EF3B36233390F34538AA146B727628E546D91930A9B993 + 899969E60A633C7CB15FF8997204E9F7F38354065F7AD109E8FE4BD10BDB76B0 + 558F45FEE052EE979283D6827AC34D4505E953BD5DB76D0E952C969824581A2A + DBF6CB880B4FC0103DFD1D13D87D445EA815E4B057727507D8DF79C007BC6404 + AB83F76F1D27F265B7734C3D371AD7951D75B3E658D1A8C4E69E08104CBECD34 + 1049B94574E2D2B9BA5DA2ACE5085465E09A4046B8A6C85E4C282E34C6186A3E + FA6DEE2A2DBC2187189684B0F4D997B3B976E3BD960E69441C4EA65B5886CDC0 + 31A8C49A5650BE055842A53251BC10589E051418A6CE1726D11804EFB019BE8D + 690E9ED84FFC261BDC12FDFC278AFC7CA3473000678520DAC0CE46E19648CBB3 + 714320864767DC9A00821F2CDA324E73199B691C61880F44BD1E759D9E6151A0 + 28B510FEC5C3499AAA0D946FD7E16DF0322EB2E671960B054321EE5524B8ECF7 + 209DD14491D81EF447481DAB19854EBA6F39C7917A8C7C7BF2FF2CAE9587F62D + 3D13C1806B570F609A11EACF4A24DCCA56D27CEB1348D13DAD2AA3B918B8A01E + 3C44AA56879ACD258CF18D946DC389596FA4BD9B3A5A97731A8A091ACDE55FF0 + 238179B6B80ED9C12725874CFDEDD386F20B64FBA34F14D5B12C3FA21DB40FED + AFB2C7AE57C9F488C7D5EFE0ADAED3020DEC7B4BD2EAD3BA2AD1216D93ABE017 + D9D366F4AA66DBAAD729917A495F8692B7186858F865ACABB1C38AF4B6753E49 + 67FEF6ED9A4F4A4814F36293D7D518B908AAA5C37505D7001D48653D8680D713 + 247A1AAE80C5DE99BCAB10ADB534801263F51168C32A866BC134DF31260D8C92 + 8CA0E7AB66954CDABA2FB8C8F4FFF1F239934F28168B38B69B07403998CB4844 + F3D0BCA9E1B1EA763B62399C26232B157D64A12E097806B6758C7EB56F8F85C8 + 8DC420280E57A1093C2475DD0F0C4582CD3D8B2267E51BFED7E4504B66DCEA76 + 0701272727501E83524C9CA3352D40BF5EA4384759165EB5A785D3002723B80D + B5E9EB68ECDA6F515A384A9984A398ECB45E565E81F266545B0552D62FB55697 + 14914EFF3F1894F006D85534344F9733C45B27F6642B6CB187903C3C404489E8 + A149F87CECFDB146EFE92860CEC734C4A3BAA446DA6899E740911E6A4B8C565F + 0528B475B57B5104C5D844BAA39BCB9335B36BEF3A710819CCCA50093DDF1417 + B076F00D46D922D3911083F768EFDF833922F435E0E3E25BDA7AC53A041D852A + 7D90F6EFA467D7902B48820B41F99F49EC07C021BA9CE63130A7B13D04C97259 + D76F89B50A7E52EB48720A6AB6650382017F1F6461A1DB561E4A499B66AD7258 + 0DE89035F45BF838218A10499095BAB774108DDD056DFFE75A6AB042AD4E34A8 + 0D2CB902D5EA78DE74A9BC72F21C17A9029D7C1AAB01308A2C33C02E755BDB91 + AC0A9176FED110DAE9EF500AB94697CDF18B82D812EAECBAA9D235A10DE89D15 + CDC69358ABCDC64159849D99F8AA5CF04FD204F597FB80188A28117BC7FE1C4A + 7FAB7A0225504014F3361BBE4871AEAA12C5B0CAE203BBC56DD1EE0FB5FFEDEA + D201D3CC32D77631815E7C3E6D65C0B60283861CA3AACBB0E038AD02D059B109 + 0120354AC952944374CB77BD3BAE80F268AA38148CA20919EF4133717E663637 + E6BBB4DEF6C3694782E000C31BA57D7B56458E5B0C0D7714A8CFC08D2B23269C + D54F7C40AAE6427A9328DA249D4F4D4C19DF534A2761B7D7C80ACC3217F9D37F + 17AD2026287232B2849C4C8D89E7B95467EFB2F2F4BD73ADB91F0E2DB2C04CB5 + 64D68C5115CBFA570BA83561B77859104390386A037CE667CB135A4E2AC00E73 + 3207B4D2EFC33CEC552D8FE31107A45A7404750D41938EFF2A5A4A30C54A21D9 + 805CF652E366D6ECF050A461BCB68483B2CA1768664CC4AB4926CC0C2C994A78 + 574AC51C78A4FD6E65E9BF40DCCBD0EA5E1E9AC3F608DAD89F324B11B501087F + 9F88FF2E616903F15E32AA6EF41F19E0C2BDE74BB6174019DAD779B4CF09AA3A + 27560E3F415CBAB0C3212E7376BCD6EE264AFD28BDFF146D84771C7FDA52AA46 + BDAE6015F78503D315D6BAD2A1A1A40ABFB5DE3E300583DA99A02D09A74341C6 + 32830719B40BF9C775B1FD023CDFD60EC207838915C22994FFCABE27AAD75222 + 99C71C28A7DDE974DE2E35D1504B89C382832D9A83FB32A337239531C6351C97 + A7DB53E8DED82A827B750C38F4BE077F781A7C6CF48BD6127DD6D4CC53E8F0E1 + 54FE395F40A55E17147926280FA222952EC614BF88F6E22C69D523A6A007CCCE + 8CAC1EEE8F0DECC26104121CF4EC8D015E9A49E8FAAAA94611D92A39A01C0EA3 + B6C6D25F120055593B53B9452F8AD931CC26BC2C2AE29DA252BD7269F8BBADFB + 47EFED6F5F14E3A317622B8BA4B14F6D2A2E510462795CA5DC580FA6E2725A39 + 6E9FEC01BD1E92FBB0D0ACFD6AF30DB67A9EE09B4012D0238AD2D19FD7EC9A54 + EC63FC2E3FA9941A5A93A38DABDD2304303657B8B48677D91C36A01552FB6106 + 1A55D1FDBBD15F04203D3DB11B82CC12BFFA9EBE08519794DE8071CA70C36033 + 54F1AAD7757DD77E8757BA9F7243D2583C949A80E30A8E111ED509E3C8538A97 + AB13166ADD198B0BC8096F0AFE81A6CF539C2988375281B3FD37A72C0686F9FA + 59EE176EB49ED6CAEC58A9F04B93D52CA7635B142D4DA4BC1FEC076F966F2689 + 94C28ED79AECD6F1BDE18C1011D62EB0F002ABF71CC657EED612A0F2230D04FB + 3CCD2207F84392E94C624A097D0F055199EF01F04FDE20BDD87E73585BBA0ACC + FAB1C799CE07ED862AD223FB0E8C4FE68CCD510E5392E6EF8FA8368E239650B2 + 1E25125D4CC280D383ACE24EE223C6335DFE84F8151CC045ED68D972C765C030 + BEB5C9F76B7846B9C23FEB7B141822EE34FEC85D87E48C236CC69D71418421DF + 94AC39389947ADC5BF48632821803EB51DF092AACCF11DF88E8BB616C9920EBD + C8D68A5CA83CF7C4DA4925754DEFD3982464CBFFDCD1913D37A7BC129C8CCB85 + BC18092B650A31E4CE7B098980540063912C446AB21A63FF9EF77361DC610315 + 96BEC86D7C548DAF6B272F9A0C52523BF742EE5BA1E931718BB3598720C7EEAC + 90AFB48DC3FA166EFD4E65F81C1CC74D587863E363AE0F7FC686D01A154C4125 + 2CCEAD10240276108F7A148A578C8C4F1D1E5186C5E8F3176197BFE0211D9AE0 + 6A40680C1FC4EA0C964C2A59AE5D6220C9BDC67EE178740932159D2E096F88C5 + 39F164FE585390F12388792328ACC9AFD5E38E29F81FE6CF8226E5541ACE36B8 + 9DA104F85C5D13D59C35FEF54E1161C769196F11DFBF2CBC4C1CC328DD89F810 + E51E539317AAA7CC19FE02888DDA80FD68E324FC148103D0D70519B6FDD9F598 + 4714EE4036BE272DD89D6CD6C0FBB9E019D35A531067DDB0B9B0D711F67F5104 + 9AF998B3B69418B7B545FEBBC1413E26A964F469D4FEFED18CF6B8EBA419DAA6 + 0BF7F34DAD93E2C03319DDFEE1E6D4F6AE5B60E604106986635B5F4556773407 + ED29EA44B1DFC993936C70723A23EFFE6FC4E51331522F0AE9B988FA066FA6CA + C2D4898E2A0CF54C261C1B6758F3F37786FC5DAA532D14086493D80F9ED207D1 + B1BF0725DE8952678D14701E0CA5C93A61372FDB51080F5B6B425FAAF18A974A + 0AF63281058391E29F48086B401490F6B397E458DAEFBEC72C8CB166745A5702 + BC5416E15190282905E56DE60CB0D43C013B379F6BE4618FE72A2E00D30C14E8 + EFA43A518B606DFF874819CAB5CB03F6F1E7395D4B7CCF6D647436F29D5ACC5A + 2FE5991A5D429FA212EFDB9012DDFE0E89726A62288EC56D120C91D429D0AC4A + 12B759D0A10FFB85D0EFD5D53C075C4A8C14A97C5647EF314224C63B67455431 + 84288EE00AEAAB1A6CFD8F895D74D48128E11DCFB601161BEF6CFCE2926ADEB6 + C92E5FF023AE03B801F3F8DC87000B4AC52596621F6FD4B42B40F0DC2FB35D95 + DCAE8918629BD1F66D17EABD319D2046FC63262B34B9259874724AB2EC247449 + 9E1F6D8F7E16B497477AC21A25399F05C677495F6FC4BD5E790E963E50DD7DF4 + 8CF9F6B55BFEBCA40BDBA03B2EC8E49F1445D06961A6248F4006F61A4B75A7F6 + 73008F0618785669BC33EA15BCC5875190B15D5F2974172717D09917C8CC36A4 + 518215235A263D4261E7964EA63FFF0E223E64B07F2A07AF37241788B98FCED8 + 0F2EC5B03ED453BA63312CBC72559152D5C4DC70270C1F383E125823CD1F3767 + 2A92741A34C1096716CB55ACBA1ED599DB2B56214877436DB673A519EEC87253 + 7D6E922D3F134A621DE34E5019BF9A6A4D60F506EA44200CA0BC00C9CE4B2DF2 + DE77C41DE78BA935B524E94AB10B6BFD32FFEB7DA30ABCE2862B15A856C00EE4 + 23A3419AC0428B9254DF5E03266C01EF2BECE61A2CFBD81F7F06EEC66CEE5F4E + 3A1F838103F188D2DE501BFF8AAE429F830D750D9292BFD1D790CE146411C7E4 + 35D14E630BC27324CA4969BA5326E47D061AFBEEB5F04F2196F24C455C844B23 + AC229199DDBD27E4C9FF24AF4C6891500CB8DA25E6D8CC83C41566BAA2C1077A + E15B3183E6279E2A3A3B45FBC431E23746060B067EF78B9450BA3033E8C7BCB1 + DEFCA27E681CF95D8633822D8450D734EAF1510743F209E9A565EFE033A15DFB + 674AE4FB24890E900D87A7FD361852644BBBE0736086A9474942BF1A7F94E84C + 37B3F32992E4444BB006CF1C6FF91E1E22DB8768A529F6F16CD009BD639F6507 + 11E213B6CA5FD8F399AAF9C791F2C81DBBEC58EA9DB53663C774326B71ED3DF1 + F1A81F5A0C89EE60D38CD47F3E307119E6D11088DDE904C8D4009E268E2598D3 + 84CD5A09F7B8B1FC01A591C2470356F08E4FE030EC4810C59256416187EEC754 + F1513555828F751B8C865884006E4FA231C0FA612A244ADA29B8023BAC00BC4D + 694F40850E3EEF6BA047189125BAE0CB4A9D15AE5579579D272D94F3ED7EE331 + 517808735B336F61721405750D1D20F346D749A9662D3B08319EB92F23A523F0 + 0987F2E79F10986ECDCA632279F1C79D4D103E54A774F4F4EB2BF94FCF288587 + 3D97A009F504EA1411A70F2842DFD19BF9E1876C10D846503A305EF50BCC41A5 + A423B8E66CE2EA7CEF71BE968C8E032F68B39498EB4C225CD1AB02BB51B115D8 + C36F84F9640503AD8C638E093439222F4773529E596F13B40532A504A57B153F + 70DB047DB5481EFBBC20EF04EB2BEC34005CBBE5249B1717AC62C895B62BBB77 + 8FDACCB5C6E47E6A14CEC08139B701F27D23136F58BCF71AB7286952477F63CD + E2D5DEACA0B9E843EABDE64EE3C0DE321374BC83E9C82E06457D97B970C43E82 + A2020739AAA13D80FD05B06085BE8113A2692245EBDE20AA378EF704B4AD48DD + 7CBEE2325935F2437DA42B6C162A4BDB98359A3D4354D42FD3B2247D6D9BE1AC + 4A39A0D20E6AA5E9B87ADC2BD53C7B962B1422EAE7097C02EBC9624A46A8980D + B3803BBC4198BBD079F4DF32C9E1E86E47DF2DFBC153E3A4FD05795A931FFAD7 + EF4B5538570A691BC0BED11E0B233EE147830B663B2971650F76705F9A1F2434 + 8512A559A0C05C8B53530D6CBF15BC17027C0238C896319AFDD930073F76BD7D + 98D821E77B162523C095721898A06C32905F5C86795D34494B8AB86A8FACAD6F + 76FB7CE27CFBD1AA0F2EE89C5283FB4CC3A287FB3079E8AC4DE2EC3E7CE7D114 + 90F5A630C1549D060A859867DB9451AE70FD945916A6F27CA53BCD6A82ED720E + 2385C2B896656311EF2DEF2CC50D790E3B03B1AEEF6C9396ED16E3DDDCCDBD70 + C8F49EDC2051E7BC2EE17A28FC6359C78C80D107AB0A5133569666B8DD9D0DAA + 26BCD49E7C1C16BE6CE51D7D27D5C5D3D228486B60B04765E3986FC1601DC97C + 86A33CECAA81182212A9DD7200A52075252F3EEDEBB1EA71F4AED294D3669D7B + 2E9788669E787ADBFF4D522AA12E25C576DD935814980472F175EA28EDAF1CD9 + CABA80F61742BD00DBACF6FD75BD7C658700D8267B48C26C1036DC4DE5B80C6D + F799EA2E8C631D66C0B5A9DCBB21CD527C199E0956153C37BBE5235EB3582A63 + 939F201466AF07C13F97502746E96142C6EFEFB5284C18139A5E13A92AAE267A + B1AC46874D25373B7E5FF1EE0FF8636CB922211B1D6ECB1245D072FBCEA97FE6 + 48DE1A0D10F2946B2945454FC5624FA066077DECF2FDDB96A96E8C49561828EC + F304A1792044DCB91E09323B7880547069A2CFE9D8D8FDF90C36BC93AE324A96 + 4532F9F612E8AA330B55DA12370AD9FDC5CFFAED62B412454734CACBC431E05B + 3262B2F7393A26A4365767A8FE346F8223500667ECD885CEE338C2EC73309AC0 + BB5C077F35BC0C7F65CC7020B34671A162D736C14EB16FB690F5FFDB40FC9466 + 89E91F16E747312AFC618C30779DFC6BAFE3DE9633D850E5ED692F21C26F0AF0 + B5AEFB5B3DE83D41AAA1824A5D46CA9259FE277447DC4B817B1A506CFC3CDA70 + B7ADCEF756BF2CCDC4989C0156D765CB63E8EF68A93AA52B30109699F36AAB0F + 6016B7E0870ED44DC427E3E3F78B047B0A399900A4EDA4868CCEA86A825EB899 + 85D7D45704B3FAEE618AF2C564E69302A64A1556DF446211CDC99D8C1E640D5B + A8D299EEF0D314175737A8832102F75923C0C2DAC9F5D27C878E55701F81C07A + FA73747E9592ADDFED8321FE2918489852D1EEA7680293A669C24E0A64950FA2 + 64DE4AFD8458C09ABB8976EB7DC4B763F25E2EBDEB03A8FDB1ED623BE59A9022 + F88C9ABE92FEC518170BF97A5D6D3BF8EE4D845903D7057F95E15B9D5E436114 + DD464164F8920BA3574A68EE4D6BB83DEB20B722F86780B98C08F168BC2AC199 + 8F9F76995D512C7A0225687C75D7338F7EDB25F68B31CDE3B027E57F11C815E3 + DBBAAF18FFD97B1BC64C40F8641DF0DE786A6A4B689F4092DF85E9F3B1662B8C + B61BC09102975C89AA708A81465AB0076EBA3F135C727543C5C36770EE7D757E + F20E252F856CA4423F52A4CA6F305CE65FE3B4D708E52163CCA772975AB1A253 + 20138CE9347B193628E4B6B7DADE4F4B9F8EB1476E5F778979B5EF10A0980449 + DB0CB3AEFF83A0C5BA0B630F9961D956059C1731FC9F588A933B155E34AE526D + 8B671792543587F7DCAF75884D6C4092F67E0AE4E726A064E1D6323EC767695A + FF32DF611EFB014261A90FA1531A6597A88BE14857C2EC4C5ABF59B81A299261 + 1F79AC7B8F55219ABE29B9DD2543D7EE3897C32F011729A435BE247C2BFD3446 + 5FA5CA6157FA2E8DFE12DFAC7CD098D0999A911231F19A431541628F605AF79B + CF22E5B671D1014F83582B58F0BFFA7BAA79C2D45C2DF6EC6BFBFE8119FDAB81 + D48380B38F27380DDCF92E3CB5761DDEC271899A0449BA1DAA6E54B05402B34C + 7031FA424CE917C936CB08496F996089F947DA0ED8E322F8EE8937905AE8A25F + 15ABAC89F2EF45EDA7939D6F25A7F65B6380CA11F734CEFE149C496AA9C0D97E + 55D5E0AF210883E7BB1F339AAD07B76C3C0611BE73F37D5E73F3F4B3FD9DB8CC + 6AC5A5DAB14CF43427EC04D5B8CB2DE81EC38E669A61AD1EED9F4DFC86A9C450 + 8E149FB71899370AE8ACB46F8837643489DA32C293CDBE971593FDCC226F6B1E + DE96A660B0A3AD83079463FAA12F0B1621EFF0EB1EE74AFA31D0AA7CF20D543A + 3083B4A27E1B1743DBB3E95138622A526B07F2705A93E6F3F460C6EB82373456 + 491E450758FA9CCFCBC57DB21156A7C8A1A8410651BC611F897F16C7A8FCCCB4 + 864F543242C252494DA4290D073C5739785337121E2BB53D5C770A3F203366BD + 4B1959315B2AD1A7D46C368083C99FD0107EF4CC8B687C4EED916DFFEADF5ABD + B314E8507FEA6BC9A8CAACB3D751F48602F3ACC2A4AA01D29DA8D6726F639151 + E3A884F8969D8D448021BA84797E2263C15BE5D488F752FD34BB6758128DAF2A + BAFA952B8B0D9E1175BABDFCDA0734A6415D3845B312BC03B387234B48C5BCDA + 99CFF3D71B88762D9472D12BA80E356BDCCC20DEA7C9880DD3D041F09437B87B + BAEA9749EF6FC0B3D1B16BFC8A1F4D76DBE2160A85A3F25A84A8610A4670E7AB + A7B2370552CB077469DFDB126DCC1E619C087B6412335B0745AA7E07849F6A99 + 6E9CF946AC1334E6316066AF16241CC3CCF0A2BA6D3E4CEBE25A1ACE3F4CF53C + CD26AFF554D7BA99D3A9F41AE0A8F2CB704F682DABFA6D9040C1B61150A515EA + 477EFC5B626B68AB6AF6079F1C97A32D84DE8E8ADA1628B509C55EF5B7DB29D3 + FEA383F85FA4A08811F8F261A52D8A2E8020A7E7DDA1499E59AFB79E7C33DC5E + 5D15F722CBC925F4D7BBFD7C315D3E5DB027B5E3AE3B4C94A148F65A6A7111B5 + 6D505F11D039903994AD650329808B2F22DFEEFEDC00A6D8D1A60A91D7C24A9A + 794FB3BF1555CC6F4A8059DBDF23FB4CE8478E0E508DC694420A42A56F8AAB4F + B08C4E5C732B8010738190937B488B4B2864DEDBDC0F56367485DA9F3F02D55C + 6FBEC69AB82EA276FBC7683ECF2CF099E4FE6395B0487727D105F62AED2E742B + F22AB60E3352E5385AB8A033FE94A47478A7E3192A4A3B96EEB3131D3B697533 + 0A2EB1207278D7D91D4244DF0DB7DB727ED384479B8AA4E15B614F779E9B428C + 12FA275961573CE6D458F5E331A367576913933988E022AC84E93A865A2A43E7 + DE5A999E83B694B988BC6EE99248968BCF844671DEA8F5E31C21C2C7397482A2 + 89ACEE69C7DC0E2D6687D17F90946EA6A2DE105FDB44EBEE7F86513F181D52EA + B7AD80A0687D9B28D4CF06821FA4A9F65C7C5B1AA951081165AB9C5511F616BE + 7206990FC6C0268D57875949EDEC2C72FE9E5C306558C8A02D17E8590C9798BC + 65DAA86D078D0758922AEE5672153D133241E4FB1BF919BC395FA3D5F5F627CB + 04551F66D1F0809584C0FFDDC33D7024A413E11A710F0F9BF00B3D25E283B8AB + 2FEAD3EA76416943E4DDF6989F1B7E4FBC932D6E10F8DFC886DAE77FDE5E62AF + 7E90B2677026BE2B8447F6C5AA6BBDEA356219DA1B2BE92F5BB72FBD3E451825 + 8D68C9084B6E7A304D009FD77556BC24885DFBD19A33B1DBC88FB730B363D38A + 556577A787E1150BC440AD50DF131A481D37B527541CC1314E186D426A214922 + AFCB8852D7CF6D751CE77A9D47F8BAA753BDB6C0A4C5EAE38C1D284FB84524CF + 3E31E067DD754AB99CECC27AB1AD1A2F740A566AB5D17D5CD0E3D4C1B40AFAB6 + 41AE11784477D6CBCCA6BF41EE797EDC6D4A2073E6CFA1CE6FC2DE222042FAEE + 74BE793246E98FA7BDC7BC25873D23341EB18914FA71290826F0434A1772546B + 3EC90C67588D5669D356B32425A36040D28FB7AD80EFFDAE49802797522A9657 + BB9A0AD001BAEED0BF5B59AAADF18E79E61FD4BFF032E8E0B28FA9DA47DCF935 + A8C0B71FFC8999C51A1AFA9D8589282A6671A2E935977AA641E114D2B70CE32E + 2496FF52BC2AFA6B0CD167F47601D22D0C5A3A8578707EDA28DF99742B05EE60 + 9E84DB348E8B9CE5F8E3483BBDCB453ADB9EC35EDF16AED1B0CEF47597286F59 + BF9FC83222F05D5C041A800B123B39B280E782C11D96FB20F5AB8B1DE56FA2FE + 7ACD05A1285AA3BCDC54E7716C6627CE5C3E602AB1C989B08B1F6C24C8A53F20 + 455742D68ECE2DFC34D02AAFB0E0EE2ADB507D7E4D5E7533548FBA7069FEF688 + 6802440BBEE0C4724E8FF83580F88B6F9BDB2123B1CA0C1736DC9800F2A3730F + B65D30365296ACE3BB498CE2119A1D4F27FBFD7DB5906B4727CD0011657F085C + 017A128D4A2E590CA4E7AC9D517F5D507741B3BFF488E534E41AB13DA5CAEE02 + B0779743830AE12DD9735CBE08BE542D174BFC2ACB1568A0DE834A99C5ED5F89 + 89CFC2A95147BC528FB0A78F190A2F0EF47B627B6F4E7E1E809ADAAA501B418F + 39D34F1B2FEC2DE64E893DACF6E307DC47B00B227F562ED1F110FCF2A43A9766 + 7EE102494F111ED265C89966ACBE9814099391DB6D4CF85CCAEAB111721D4157 + 4234E11F97B4CA1EBE4EFA896762010B1C3BCABCE120F67F959B40CC0E6C8BA8 + 3B91166C401F7073BFFD259C2D1EB8DBFAFC5DFD239CE4EC4CDCB6DC8BE3BBD9 + 033FCA496DA556D9A942A7A3B2448C7C0E201BA54D1D16163273220B96C8C78F + 5598E96F06A5B898316D5A0879A3935989BD0E8E466B4E85BCAC6D231628B1A5 + AC9337B9D2573408E17FAEAE32041AEA2A6C1F7A8B0068A70B6238B893B653A2 + CD72301E588C2C98295E784C1752E529E283822EB23433FFBF95B64FEA6144A2 + 1F8437B5FE7329721EA8EE9A3E3C027DBEB1C1644E6258DF9557725DE1849BFC + A2A11B174DB38AA89C1989EBF29E4930BC2EF820EDDA253C717E75B2ADD06205 + 2599736D79D85731E16C2D50A52F62C9DEA261F1BC54D7D933445653D05CD020 + 70FE9C1E406D66C037EC47EC51A0BB59F95BC7CE04C47975F85F5D00E3EFB9C6 + 0BDCB06127FF816EA406BE0C33A3977048DB287615F072455544819F67E21F57 + 0D8F3E64B1C709E320106AAC30D6A4E5A778A635EF23B3FDA58A778F6D77A33F + D89BF40A6D6383BE71B7D6FD5792B4317E1ED191CB613A246B6BD0FBFD265A97 + 225ABB811DDD82BD754DBABC2F35FEB67C88F5057DAF0C041B1F976FB42251AC + 43B622B7EC9CB4FD2263D03A8C1EA19E5CD35C4DCD322C0EAA69D2561B3064F8 + 51BA7AB258027CF10882815ED899A07AFD22350CE21ACECF1DA3B4FE4C9E0CF4 + D15732C358B432292A7466076A631AC2350BC547809FF2E935F3EDBB5AAFBA0B + 7B583CC138E5BC1A3462046E0E7569129372979F6CD102A44D52F989F3DDE654 + B250DF1DDFDFD9565B65D19592A9B2F6FD3BBC2CA441785F3254CED82084FF21 + EFCA21C25602ABD3038F458ABD724D0224BA0A95B7C29149F92BE988E8EC6A14 + 95E5B0B39C31D7BD22E5EF004C12D6ACB784335B67DA1A073647C0DB46B16C22 + 9D578ED969E6E3EFBD57290E8512890720F36C0A3542ABE1415327A46FC58AAD + 8148B4828B56C4A9962D6141AE3E9E35FE6B2F27D25F49C400D3636686874B3E + 063E1C573D430BCEF9B86AD571505802F0D55FC1CD437EA716B2A1077B89EFCC + 093B8F2D5637EEE670EDA984CC0746A7743C2970EFBC2721922DF42903BDDD80 + D4A4F79B43F191EB6E4C3EED7686E1CF7F0A44657465C5B1C05D05505271B7EB + 16C5E279F6D94DDC856F81B05F2EB2597581971701EF896A0F363CCB27637C13 + B8E897D252D36230088C260E9FE9420A55CCB215E224BD29E1B4B429F87A0DAD + 42838710835B101D342D45E4179484B8283F0A3E72918772A1105B92772E0DC6 + 7C8DF25F70F8D070C7A57268E91C35040313C15027E351929FB8196E2F105DF4 + F6AA9FB068538792ADB3EB269FE433119EEE5279B70102CE94018697B7D8CF13 + 809960D1953FDC086ED9747DC4812AF5ABE07671B7805730BB799103C0575734 + DCB3A9C0D187148F7961E16FABB4E38632D14CD4F36FBA9CD7FDEE27DD8176F1 + E38C5B00236EF0CBD4215EE373EF3F7E6BFE65F0DF40F781893EF4B5B9250262 + 5D43C9AF74305D21F8785049DD483220A95DDAA8FDCAC84CEAEF3D4729F23C39 + D2E035F7E2C1C1E570E5BB9B281D0E9C111841D5E083A247D9D6ED5F78BC519A + D1AC53CF8735411886F336BEC6C3F27345490DAA069DCCB609E2F0C32F1F9590 + 51DA7AD2D883F39B428E3C52D7F08F480BB59DB98217A82B90F97667DB834204 + BE4A21484D107FBFA9E4E5E5BE021975D63C65A0E842D5C6D4E388B264FC51D7 + E8CAE95C3DCACD7E02A539F832EDCA6322C12EE1FB57E872A3874016056DC02C + 599D07042C83C7ABB4D1B409B0F7453F8609E0BA83F6746FE80AD78FCE1230D7 + 62C84C3CA338A6479DD36EB79D1CE4DDB8627F441596981F4D45189B1CB0DD5D + A9C4CC3921038A716735F8568D0A7748231679256CCDB24E1858266E5483A274 + A221326B74C1ADCCEF8F4827E78A62C7704111431CB6FC3F7A15DB98BC5D160D + 55F9FBDC87652AC3850F4777362A744DB84934DBE729D1F3327897B41555FF61 + F5E0AF1889035E1E8CE41F62B3E694E1AAEDE0907ED2A4D7AE31735FE3FA6FF0 + 6D9A122BE7ABA49CA869D17478C2BEEC1DB11EBE04AF33F5FEB949C156DD2DC5 + 3B41FCBB169CCC1FADB5A32E55688BFFFBF6B805704AB43ADBB380D5BDFFFC17 + F80F1019E85E831EA1240CF8AB626672AD2B75E59DA2F42B446A0780D3E6A528 + E4A9DF89D0D3F31C37E718FE55CB714BF50779EE54B1B711037720BE15E621AC + 9F33F5C650BF75E3959341F310EF264D2615FAB16EDC45BC059A7F9EEFBBC24F + 2483DB9048C8369CDD5110C1FD732B15A81ECA8E6C67B97E8324E7586EA0EEA0 + 17582F1BC0B7B1B5AB68AAFC75A785FF2C0768B6884E36C5855DBBC9A269E898 + DDF2C1B5EC0644B0F1CE613AC0A69E1D9C25C521F0D965606D08F736E4E97839 + 6AAC80228FB7C3213883FFC4E7DDAE223A7852CA9BE1AB6EC11989E5CFE23914 + DF46EC0EED6873E7DD6E2FC3BD39EDDCF3D7B50C2CC186CA4F4C6F71F6E45F97 + D005E1012D975B30518C86ABE69F9A3204938BB3A25F0D18640A9878B8E54441 + A5D9F590E2E5221E4A108275C6E53A1ADFFA03CC507F425B84346382C1E46F56 + 72D5C876A9AE65C84AEDCE4F66D56BE18DDF3FC3B30862285DB7749729747754 + B1A720435886CC062D1578A2E9585ADCFE7695DCE52C432495FD1B7B4E5ED934 + EE07C32C2562170B00D084C495639D3E2549875096E25A27C0CA570148E502A9 + 0879BBA67343CCF4C8110EF864177A271E3584937E9BCC56F6CFD180C956B029 + 2D414DBFEB78A071406BF11E828FD38CB6FCBC138A140A8E8F45D83AF9178B45 + 9A45540A4EE65AEDB3CCE4FA98C167118D3516977F8C0FB28C1AD0CF6AABBACE + B0CB0B43F27E8C1986FF24FEBDFA0D12FB3E7771FD530471617FC9DE69BF6292 + B1A8C64BB18EE6D29E1522BF779836A86DDA8BC79E55310BAFC1B4B793CC392E + 366B43694853BA09389455B4809BCECD77A420D54A2B657AFD14F9D7803F1C3B + 927312C8D7C6B4AD1AE9A524412345865E9CE2EE9E160CF3646726DD25D5EABC + 96B72A7D2C89178FB928 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark + /RZUVEF+CMTT10 findfont /Encoding get + dup 37 /percent put + dup 38 /ampersand put + dup 40 /parenleft put + dup 41 /parenright put + dup 42 /asterisk put + dup 43 /plus put + dup 44 /comma put + dup 45 /hyphen put + dup 46 /period put + dup 47 /slash put + dup 49 /one put + dup 50 /two put + dup 51 /three put + dup 52 /four put + dup 54 /six put + dup 55 /seven put + dup 58 /colon put + dup 59 /semicolon put + dup 61 /equal put + dup 62 /greater put + dup 63 /question put + dup 65 /A put + dup 66 /B put + dup 67 /C put + dup 68 /D put + dup 69 /E put + dup 70 /F put + dup 71 /G put + dup 72 /H put + dup 73 /I put + dup 76 /L put + dup 77 /M put + dup 78 /N put + dup 79 /O put + dup 80 /P put + dup 82 /R put + dup 83 /S put + dup 84 /T put + dup 86 /V put + dup 88 /X put + dup 89 /Y put + dup 91 /bracketleft put + dup 93 /bracketright put + dup 97 /a put + dup 98 /b put + dup 99 /c put + dup 100 /d put + dup 101 /e put + dup 102 /f put + dup 103 /g put + dup 104 /h put + dup 105 /i put + dup 106 /j put + dup 107 /k put + dup 108 /l put + dup 109 /m put + dup 110 /n put + dup 111 /o put + dup 112 /p put + dup 113 /q put + dup 114 /r put + dup 115 /s put + dup 116 /t put + dup 117 /u put + dup 118 /v put + dup 119 /w put + dup 120 /x put + dup 121 /y put + dup 122 /z put + dup 126 /asciitilde put + dup 32 /.notdef put + pop + end + %%EndResource + + userdict /pdf_svglb get setglobal + [ 0 /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/percent/ampersand/.notdef/parenleft/parenright + /asterisk/plus/comma/hyphen/period/slash + /.notdef/one/two/three/four/.notdef + /six/seven/.notdef/.notdef/colon/semicolon + /.notdef/equal/greater/question/.notdef/A + /B/C/D/E/F/G + /H/I/.notdef/.notdef/L/M + /N/O/P/.notdef/R/S + /T/.notdef/V/.notdef/X/Y + /.notdef/bracketleft/.notdef/bracketright/.notdef/.notdef + /.notdef/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/.notdef/.notdef/.notdef + /asciitilde/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef + /N722/RZUVEF+CMTT10 -1 TZG + userdict /pdf_svglb currentglobal put true setglobal + %%BeginResource: font TEQVDA+CMR10 + ct_CffDict begin + %!FontType1 + 16 dict begin + /FontInfo 15 dict dup begin + /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) def + /version (1.00B) def + /FullName (CMR10) def + /FamilyName (Computer Modern) def + /Weight (Medium) def + /ItalicAngle 0 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + end def + /FontName /TEQVDA+CMR10 def + /Encoding 256 array + 0 1 255 {1 index exch /.notdef put} for + dup 0 /.notdef put + def + /PaintType 0 def + /FontType 1 def + /FontMatrix [0.001 0 0 0.001 0 0 ] def + /FontBBox { -251 -250 1009 969 } def + /XUID [6 5000793 ] def + /StrokeWidth 0 def + currentdict end + currentfile eexec A0B00ED5187D9C0F1ECDF51878C3AA5CAA3EC9EBBC6A5E + 2825687306A156DACC32FBF734087CDFC35B78DDA68032BCA38CA8E8A340AAA3 + 002A0E52D0B9162BC68AACFC0F14A1C933363A56EE460EB41CE8C2E9EDC509AB + 9E0462B9F619AD944F133AF072E5FD1625902963260181189070C40FB0D49A96 + 50D86FB0AA90098027455AC2354A299FC7BFC34B4F1162E5E9A3EFD80D6240B6 + 9378BB4F6F9C33B910EC9F1A2CB9EFF55282DDA2B7E7C4B1FF6BBEDD12916474 + 7C47C4F0B9730A20110B972C6E3B152D541C5EEFFD9815AA1D2A5396F0EE6FF8 + C72686B1CA6ED6692D437E716C93E5EBDC25D177D5521810869088C82EBF4483 + CF1296528C0320AE7776B6C2348CBF592DC554866FFE33BDFA1D0610D9672A49 + 0417D1494EA769AE1DB57C163FE76277DACFC6AE3C75FB83DB2091F24AE61962 + 8315A9DA3516D9313B6E99322E5D326C0DD17EBB5EECEA839FBCE8FE3BD6CD57 + A596C100328F24B6541F455E19BB48F23AC441B9041AEEBC0EEE70382DD18313 + 6DB72ECFAF899FFD1A51F59E6A4919D502F99FBA2C6D6E963D5D4E999C22B2E6 + 675334E93FD82C0048C287A1ABC6C3F81D840036C0610F03A1ED0244C06A05C8 + E6A4B86A5089C6ADE7F260A3E2CAB7CA4514828A4EFAF571FA56B068BD96C37C + B19FE02A2DA6345E00C0B5A2A18E5DDE1174386F08CF358FF68BFDC503A7E9EE + DE1C4168BE7F44380CD5972A38A1F71B83C589901F74E7DEE258627AA98EE53C + 7960E0C054265D2A81D3BBF95C289344D3B62B007BE9033209DDDAF50816E086 + 1514B42E6CB818CE0E9D0FBA19C81B7EF5C85FB7DEDF1F5CF7F06ECD440467D4 + 1FE583FA56AA3A8E710C9706B6BFC09040D04D8E927AC319A4A9196C1E144D8F + 91EC3736C52B79C6FA8C0D9C9FC094A04D0CB3E6590B3E798619B4F7118300D4 + 4FB0D69DA2D351B2C64FBE9BBCD8F8F26F0C6336B33A29DBDCC87DB7C5ABBE62 + E13479A2E650420148E39C57C4B407F7ECA18B3F54468639C82F6876767E3DB0 + A5366E3D8B827AD5E3BD3A299B184B6ED6DDB4E183B62D67EB85C730A2D43594 + 6E6B04BB1C70A411F68EA68235F09F82DE10877BE05B388CA6B170666A689EA5 + F02619E19C418C467AA2AFE4EDAAEE7418ECF7042450F9DE0BF63EA5A33679FD + 97FF27654CF5BC2EEBED678880CDC99E85B1C6000BD2478AB13A3E53D1F0C527 + F5A68292D3605B0338554E02D39F7DE723288E6C565C5128243B9E60391590B0 + 7627F0E1B43E9B33AC9E735657A5FBD67C6123695666AC2DF8794B1D7394099C + 14BABAEFDC75ED85957E1F756E8BA21FD08EEC3173CE1B64D336BB3CB1051308 + A032B9D59C1E1146F15D7B6FA2E450D6904D3EF88AA0FBEE2418806BC31039A2 + 576658578334757D7BC1CDB8284F77552CA3E3609D459F186EED214D54695220 + A6625E04E85DD8E3AB29F96309262357A97E482E1805D1A9A47929B94C6D4F23 + BA73EE0246DF00B3FE933218C241F80F14D37B1C9719055E67C90074B610463E + B7BCA18F26959EC52B2505AA9C1A0653126304FEB2F2328535615EC7BC322745 + 3371FADA4A73925F2BB35AA86B373D956103BD01132E1996E93C7CD168DA42A8 + 7229C2C278C10607D5E687B85457DE8C4395E299A3CB8ADD2F43E217DFC46FFB + 0ACEEFCAF6E90BAD86F7C7176E60B08970407D8811BD11C16203F54B96A20581 + 11CF71E5985799F739D38D97D596019A59F0030DD88BAAB55C2F61C601E73864 + EEE339F8E4A5C4BC59B1B6341AA0FEBF7D9966752BF0202737836FA300BDE546 + 17425DE83A43A755E9761623FCFCC9B23A71BADA10F3B054CA7095B4E6C8183D + 9001842C6146F265F94D5D55D871E29A020CE30954E97A37A0EC92516CBA3DA9 + 797992BFFB6F39249828389D4AAC119E0579AE461084D9CEA5DF0291EE4CC161 + C84A914BF429270A5595AB880200A8C5F2344C16AF5E5850B04CC0151E6D32EE + 6A3EDF73B9DE136FD14267B103F8CC294EB1226EF19A9E077562EDE44CB52424 + 2C6052735B60FC082D06CD08C9521CB8FE45B0599E377D8304726846B295F35E + 27156CB74B215AE9CFE2960180954B371B9CBF1CE88B2D273CC8C3E21965D3A3 + D0253EB677CBC5F9F888FCC7046B699128387DB28BF55CC1346787F9C3BBD0E5 + F97ADCFAF918143A47DD3117ACC60A728008B5537D8DE15FE7B31824D5780153 + 8764A4A52D383C1A82468A4AD082EB855B1D060397534F6A4CE97AAA5967A854 + A34CC85563547BCA3597DDD79FE88EBE5E9D35025AC1BBF62B3F615939DF5D16 + 0DCB9AC1291753FD2FB956CB01BC8B1EF1883D9299C455149FBE0616A24211BF + DB5F20F968A196A056803FEE9BB31CA00F2D13BC666F4881F98FE20EA4EBC7FE + D493D46E53A8720D340FC111C3B6D1A0F3EFA7F0F297D06594F2B4A712477660 + B61040080DD8BAC9266A32391A0D4BB277A71BDFE599104B8F604BDF0B8E36D9 + C725F39A68951F4D04380E9156965B37DBCC0F8DC2F2772AA47C5D0BAE75BBA5 + 835DB0471481300B175CF12D1C1FA3990FDF9271E41DBE889D83165E00CD7061 + 23F4BD262EA0EDA93D3FA11D86DEE3C7399A085C51B9416D11E3B1496B3A8BBE + 03BF9F6B03A3E2D4E8C5F369FF6F44016CE52DD8E605C9B292D5792C27D3C8DA + 737C374167D06464342AEC7AE2ACB56EE0DE9DB2A51326476DD28243932786E0 + 424A52D492E6438F66CD6C818325EAEEB78AAB5F3B512FF367156F33F77EF068 + 53ABEA5852B2DC3E20553EFDB38E253D8E6C7B74CDE7541CE602602BC401D5F2 + 50D9755A97C4D48AAAF11FE5871F4074E4D87A69BA2DB50F151C80F149122E0E + 94031D48DC0E191CB8C94D5B293DE6806872B34DFED08BEADC2F0258F04153E1 + EED1939BD61B768077B11B0E3204AE45745D9ADE0F8BC4ACDF3BB07B119BE44B + E98BA83D3BD81B15FB5DEE4D4E5B585BCC429E7D655A3824421A1E05AEECFCB3 + 6514F5E2D4747107278EB1143EFDA129FF20165FC325CEF9BF889BCD6A866A38 + DA84D8AF3BF6E51BD1665426C32D858C79EB25E13F44B7FDB0B3C5BE73BEC043 + 2755E394C2E4677BB615C58374EB8B7FBF6FE7B63A4C0072E5CBADBCA680392D + 5041F1F3A57E35D30E5E93BE4B6148BCA2F0A66168DC65356ED773DFEFAE0AB8 + 975BB692BEFE3244976DC0C6CC6B43ECF126A37B59A14D4D63A4591594E0B194 + 0272EB3833EE79C86159902EA67F481B583AD2AB53A925996ED641E9F15A580F + EAE80EF8CAD9238670400956DA7BDA4784C4D7356FB8EDC7846C199B26377E33 + 5A019F3FCA4C417E51A1D2A3467F45522E61C59C22B783221231A67210646380 + DCC44994C46A7B42234F8058DED8FB87ED00A2B279F97B878D87DBB321C9EE45 + EC075117168BC6AA4DBC91E508C5250A58A663A9B934C5D346FF3F22292FD08A + EE93D88E4EF06C8ED2C2A6526E2E4779BB6D7FDD5CBD5097AEA865C49110D284 + F23492C04DCCC36C6FBA7EE2F2AAEC52D5A704ADCBC9A003CF111F7D29EC723F + 6D2D000FCE2D020E9876826F6D0E565DE9224791C84B49807D3AD2A8F8CCD6C6 + 7798848B0244958CC2CDB84BDF509BA2002B6436C42DBA0E97AF6053562B67DD + E5771BE22C715CCFBAF1A95B90C70BC839B8D7A1E5B64F029D4F3F433E785D2F + FC44C80DF7F035114CE544D4777370AF488B03C88CBC75765BE377726B43F7D5 + 388F669C0821B2CEEAD9C1EA72186BF6216010E2ED80090C506B1DE58F0B1BD8 + 448817190F7E2CF8880A139EEE90BECE9C8573F66F294A523322AAD44997C82E + FDA83026F8E84736294BE9113082E3F37546782CAB9D57DF3E0A367F7E5A1720 + 5BD0FAA115D891970BC63A5589536C3CC0BF1A41ED2C7D9293704F4A36E33530 + 8E4B88802D50EABDA98A8F843CB09446CA153C1AD38431770B791B236B294937 + A79791FBEABBBD818D5CE4FA11A4A5D40AB17D6278E8DAF64ED446796A0F6153 + FE06A2CEB2A3723A4FE1E45CB4348F342C1E1F07487B61CFB50337F09614F336 + 51C97E2A295B5150C059515E4F8E335C691A441192DA90F2ED6F525CE7D1D2FD + 11591E05D74C5B4E30A201DC6BC6C8F27824B8FCDF383BF34020D53AEC3421DD + 5C1CB50820FA27B20A0677243CD78B5FF8226E0A9F72E253376BCB184B945CFE + DE2D13536F468AA2700A1ECF6F70892934FECDB59BFD31EDD5EF7A6A5E44FBDD + 8F1C55FD75DB4400C7F4219EEA12E93C5EB86CD48B1C85BDFAE82BAF7125F228 + 55C2A24B30A73C514E40903CA0162524174517BF9CF89F67BEC122A8619B832F + 67ED707417A8FA8994F48ABB8C3A7677B5F26DF65451291A7DD2C1BAEFCAE51B + E4B63297C322DBDA274026F4D4796C50A3F4F285B4C9EE5A5AE72E72C731B5F8 + 0DAFACF8C6D60C3204DFAD2593256C8BF95F73D049348407B8DF2AAA38ED7620 + 323F3C4DB14CCC3EC28DBD9AF7C589832ED11ABB2456442EEDA1C276DB3C0B2B + 7AE29FEDB290324E1089B059A0B35FE927724853A9B8EE99E7DBF9872F31C857 + 4DCE8D4C092EE7255F48FC8F2E449C1A1EFD3D628F2EAE8042527C035405E7CD + 42483A39093581762B833C743B987EC4E2302CA3452D65FB72F16CDCE155DD8F + F52DCC4DB162B88C1FFF87328C6837455A882CE1F019E45C4571BA223B18A40C + B0E79D162D4A10BD518E1673698FA5DC0D427270AE00B90DC82C454A5970F06A + 5450F99727B9030D9B702A8D5BAF55FE35782472AA4FB10B1EF7D688AF43E996 + 206C99D3904056EB31D58AD084FB10D23F93202600C30D26C885B89313A87437 + 1784CDA5B227821B82B6E86A40191B0FD1F372D63B8594A9AED94E48CB0848C2 + E7FCE856E17E0A12A9748D398F87DEEA80CEF71EB07DB79AE27C502015C611F4 + 4EE9409F22663DFE62D4A86F4A7C0D639DB2AA821F34D809006B2D9CD1406055 + 5DCB4A6A908DAF51ED172C98D380D983535A6E6E818A41D1705062E524A4188F + 6E58CD74E479BC3C171ADED1A7202E6BE6862CDE140A806412C0571FB82468FC + 54FAB7572D29015D5A83BA6877D14A30D4348043382A15037E2578148F739E80 + 474660823630628F05C65D25481EE17075C5B6E7330D5746C0E1F4A95462C635 + 59FE6AFE75FFFD99D18C8248D0947A74D9515CC09016FFD48FACDC99E7D62549 + 39AA1376559CF78E0F6711E3E98B01CBFA833BC6E823335A73F29D0D230D4424 + 7AC2839C29D3022AD0616BCBD413BA827EBBE6C7EB54139EDE7273ACC5A7BC84 + BC58605F6BEE955D1BCB2565F4174248125E143E306FD62B80EB6B3B2065ADD3 + 3724F5C9AF81067943ADB2C01FA5F0AA5E332459DA97F9CA1A9525248669089B + A08FA6DDAB6C641FA651AF3D7DBF665BADE303845ACFAD5C5ABC69BE8B8FB627 + 077C20EAABA57192DA9056E3BB8640752FF9645AEF1A192319E1B04EC19DA003 + 4162ACF684453367CAFFCAE72866341A8D828607C34CF227F0D55069947E2DDC + 4AF3813205BA1F6EAF421C2B49EAACF42DA070346FC7C6B39AAE3FCF1CF55AB5 + 4E6DBB567842CFEC377D2CF6DEE73F00EC2F9332E1F80E359E1EB0F9562F6299 + 094EE0DC820AE38AFD75BF75A72CC642ADE117F26F85477540FE769FD30E42F1 + 285285916ECD2D258F81F5705835C9EC17B071263980DE940F9EDCC7FCC619FA + D3FA20235B8A741A8177648EDC71B5DDA175486E1395E393DBD6E60DD534CD42 + 5F2D3A3511CF898DA80F6696E000E9C783BF3A1CC3A1D6D3D7F67D84037BFC92 + 4A2E41BEE9BE553368C60ECD5040E1CC341A487442B8CC82213D2902BC78CE0C + 3647B6EF5A90A255ECAFA85C113485457FB492721CDC1434E051B968920DB9AF + F157D1726D6BF533BA7482418D7FC4E6BF92B4973A0074BB669477912A0E527E + E33F54DF19DC4D3A60F2761BA9EB4E5ABF6ACAD1232F74EB0F34D20FEC1CC47B + D8C4E2BD00851D546A538B4D3EFF8E1F8F9746E243FC0DA8869B3A20C439ED96 + B77BAEACAC5955AF82C14ED975D5D07C040C30794FAC16B0783F798409E425B9 + A098C326385FF3CCA42EE16087E290C9AD0B69EFFD4B13C9B6483B3F7A207F52 + 491A2B9074FC18F834B0D77DE2EDD2F4A01CCC248AE462A714D552A5BCA4BE45 + 41443BDE102F9C45F30128D8B60F6568BCDA38A19C2CF05EAC496A62E211B906 + 27AD04964C4E6F167EB08FD88CE7089E551E8B1806EBAC6534FAD2626F2E0467 + A5EDBD626E4B6E7F4FBF29A4DCBA48CE90D915825573BF9C864A557C6689D547 + 15EBBF3FD54C7F22D463E5A0E95D1D90530479B639D72DCD3F663385D00FD47A + 490B404BE928B790F24812C8C9BE22AE742E1559A251FDFB81D10197C10FF09E + 5DC330D8E4893A2D079300FB4E6AF65D4D22A490669117422943419FEB9BF738 + FC190D72859FC6C62C8664B439146B1957F1242C93FB9F1F2A09CB63E879A62A + 31D8C69A6868AA72435877F484488FA6B7A20E41A34BBFCA6B385E5F9B85DF0C + DB577102491B00AF4C4975DF4082C9EFCE0C196DAA01BDA95614D7173137EB32 + 2B6ADF90542C30C17D5E8BE4560CFABB7600810ED171A292B4787D8388E1BAFA + F1375D256A73FDF8461C662FCF6D3359F83D42C58A6DC0CA4A94AD85709B845F + C267184E7F53AF26B9729AE661CA8627A9A8649C79B0AA18D2AA263161645A3A + 4C6DCC0347B7D0CDFABC3ACB6BAA40AE5DD04ACF1369588D8DF78930DD360433 + F53FE2447C3CFACAC27E3A35AAC33BA89B88D1987FFCE99D5E551846E57EAF5F + 7E334FB60FFD3F3C0B932CB0C1F9C8036AEEE2848A3336CEB8874F1FBF67B3B2 + 052CB0A886A3100824609B455C013C771C63285D2172394CC11D231E9F4073B9 + 82F8A073C0B2B2E470FE748EFE81ED21332BB431B00757C4F83853D5088A48D8 + 94FD0A14D1C0E251261060E4FFD8759BCC8310737415CD5CFEF3B3431FC68A2F + 089C2540AB1F38B36ADDFFB9E1C8B9BF1C131FEA01C48CC8687E27CF42146180 + A944A1C2D67C2D8DEFA74025DC939EA165F9658F6997A8C5E1DF0B96072D1264 + 54BBFE7D03A40729293E003BDB52DB08DCE5105216D5041E1B718E6B582AEA6B + F79663339C927F12F54E4ABDA7BF0FC19E73F6F69C148D9A79FD7BF561E6573B + A553BC57D8B44F91760BD7ABBE6C196C77B7CCFB4060F03EB9FC16E3C69E427C + FA5BD6254A3545D08A0EE99F103C6D266AB83ED0CC876ED8DE2867A3C032DE2E + C27A81864B6292A4921BAD725E1AAC3D8A29FE1CE461548A8D515A2FE6A82373 + 5BC20CD1ED09288F6EBF7C384F1EF170B456C8B3DD1324FD346D7D8A23E4A855 + C7FD09FBE71D05C33D1705BEC5D96D410F232EA44704338D50825CC05D2BC973 + FF8FA8DFAE11A31E4C28B8F3ED277C42437A94F8EA037F943A82D7CD2B58EDB1 + F70F4B7CDE814629A77CF99D59708FCC6AAD2349EE6C805E5C99DC4F7EBB374E + 1C4490AB3DB2303D37CDA85AC969643227FADB3ED540E05B5133F12B7504C976 + E54FA6403841ED9A82DED351E339F7D8E625F109C63287324EB82B1859BD86FE + 60600104D430DF8F471EF5669E3ADD7122236BAD49F6A28DC462A595B4F69E3E + 943FEE5E6F2BE23748A5DAC0634EAC3FC18F74A44494222189F074097305C806 + B6CCE59E633473D67CC986ED8991125441CA53A326C4EAC64722F25A3D49C7B1 + 5CF84C9FB301E24F7A46668E2406952B6E31A581BF2924FBE2D857E34C8F0A96 + CE1B99824A4409BCD46E599494EE77E518C9FE48807A68242C2D3FE93E4B01AD + BC6D3ADB36D9468CF452CEB04990760D856DAFE13B5582B4DFC6FAFE14E5D192 + BAE5633C1526B922213F54506AD5A5EDA6D8570BECCABE001BFE504E94260D46 + 1C5DF0357C8D06C40CD698F33B53A49EDE1484C5BC21109985D43023310CCB5C + 2E70650411824761603C3F4C309DE9E7C2903F43E554F038553F4148705744E3 + CA1C84D534CFCFF33D4AD45B2607B764C9541AF1D6B1BE6FE1BF45FF1F440924 + EAF1A44E56FDB2A98D334F291B0F2AA5190177E731C147566064222814AB886E + CBA4A101C584DC04549488FA18E6DDEEF2CFE1F691199529E8D4A96B9329E547 + 947624A3FB759E40F7502F01D7218A8E892D3D089586377DF6865488C2C716B4 + E43BBBFA846DAFDD4B758E674B538AA9D14DFFDC569DA970154353AB5E4FB9F3 + B2BEB99BA10DF6935C95F9BAE4FF14BBC67579306F8FEB5D6852B9E7E388C741 + EF3C678E77F1A1BEBE7DF7947E7933C32EC995DB9AD7D4F0C02B93B9313B71B6 + D641F54821D01504E867CCEF55444323C45806D0B870A04670F5BB8CE9C7CB5E + 2833380F6D3563AD103F4C100AEF4C8E748F6C9E6E8927818DC3FE731C9B2DA1 + C7A397465981336B2B1927B7899477135E429858407BCEC512CEFE40D0964DA7 + D273DB664F7CE2D1B1799DF766067BCD33036DA01CC4FB527A02437EFE81373E + BA0670E32D0376DCB5EB5068B851ECE8B6FD69014677BB3A0DB4771DA30C1ABC + BE627595695A1974C20E2373A950119E77400E00B1C7B6D9F2D8E43DF29573D5 + 6A25ED74833A93A459EEF833FECC686001F4BD0466D86AE9417DBFDEE729C2D2 + 16D0D90686AD1797035D4BF2DD13B0B931F95A633A2096D40E84F9A44F23937D + C6AB72FE1A2FFA50F2315C598305A2AB7252C25F51F9F34C003A129FB1ABCBBD + F36529343CB4270431F02F2782E8F666376B7FDC88FEBE9ECC015F4E908C6B6A + 3820777103DE54739309518304B9F0B5A822F8BDDA2DB4D61652F32D19894110 + AE98F86916372FAC21FBA801438DA832F0FF8326288E25A539844926199526AC + C15F06E4427EB2D12540007AC700EE886F267DC73C8C2CBF95A952E74E7C4DAC + C2A19158FBD0CE5A8C12228D2EBB35A6AAF66C73D21C09C6F0FEDBED1C363C5B + 2BB28DB1872A5464B1466B3D1B1F04B6306F9B899B3509F99CD9F959EDE3C5D5 + 32CE2D9EF63B3DB999F375D111BF312467B63A2F7299019CC8609944C96006E0 + 14969F9BF8514F522E5EDB19934253E6C018E52C8A4522D04CEF152F1A110A8A + CB0B8B58E968CED9C5CA27E4EFDD3645F5C26BD27DE97FE0F790A429DD592BE8 + 3953C59AD9759B63828FAF46D15DEE918FB33F598637B56F25E61D9374F4F4A2 + 4156FFA0728741C5C1014B26190476FD843FC23504A4563563A032D66C4DAC14 + CD4D31B50B07806A4B3E92DE661AD3D483CECA1FE3539F32DDFA9E433ADB7313 + 3A8FFCCB908DB3E33E529D2D4D30E6AFE958AEAA3E6A58041C2083351510D2A4 + 8445FE9A2413973C00D51E8551CD0B1696D02C18106B1A57C027E23024182225 + D464F81A9FF876205153D5C0315ED4DE719D48D77865929A385B06B39244E675 + 37ED3F4656E88F207453F5B9A1DD3A8B842F863EAB1B1E2399CC5A6CDF0314B4 + D64DBAEF9A44FC7778026D9C84C218210C6EBFE399E5EAA059E1AFBF321B9A53 + 7B77024F12D7EAA767D9954D5E4B61037B6479527B2878C657D197166D7E32EF + 306440EDAC7675263B3E900EA19F18207E6CC4396BD8860105D29BF3F28FDDC6 + E33EB50F103900B9401A61162521C422DBAFE7F9516DBEE7070ACDF24EDC7C08 + ACCAC839EA093680DA692436469D9D1BC64804A7AB5D356948DE0D4FAB29A395 + 64660DA6C531765F2CA5004BF2139F21C4C989E39B3C4A6404437112E0952866 + 34369E780B2139BFF1288DC525463854FC4EE21D546893441FA392741E829C48 + ECA093E3B5F9BCAF4A7B2D5509B89EA287A9E18E4C11B4269D9C57F7EE225E25 + AD37242F20FCE4020BC4FC466F37532512B3414AE04D92037B823C84FC3A93B5 + D8B2CC80A223EC453604F0571652A9A9044338BAB9F1231684CFDFAA786BBE08 + 2DE7933CFE4CFCED69A73B560B935AB6080183FD93C1875AB4F825F85061F7FF + 37D8E9D6F62F2367DCE8C1C797237094DD522811D3D3F01B5390BC93EB8F6BE0 + 2197C6EEAA6AEA8FF9B78BD46588395B20B8FC3BF4CF285AC97E9A7E230E4643 + 0203FFDEA413435BFDD0836B83F6BFFDC3B1BE591426D4A51160889229D162A7 + 817EEED70592EA4E5DA52C4E54BF5C193BFA1CE17898853E31454643B8114484 + DE763F98225D4FAF679513610B33C1BC91B3CAE74974EEA6A013AC6E4C36271F + C80BD0DAF22BF81BFD8FC43AB2FE2F100CB8A8B0B9EFD60FFA81B72C79725310 + EC41F71ECF907E559D464BE8E4A9A11DAA8AAE170C0B1179952FE17516CB6C4D + CB200159E3C31CEBAD0F165C5C40E0FC0C3BB9333FB2B60D0D18A8A51D98C95C + 6650F8C87942C1B463CBB4F23DED173A1AEC29D9943C1BBAE9855CF04899862A + 2AEB6EC81B1CC89D7B246C6CA741D22E5CCAA30D52578BAAB912FE23EA3DE1FF + CF34C63B49897E2755AFF56FF6DB1C46E9AF40516D80779AE93D24225C1F565E + 5C3699FDA830BFE08EB68887928D57360E8C464307E92273DF59C535A7B4A546 + CEE4C20E7F6B683542EB40E233BB9CB8BECBE6267FD9767D98CBF60D1993CA0B + 6175B285FDEE67CC529C8023AC2C9D2FF9A1F1073D2FC751FCD93BC633304065 + 52CA4C80C40D5CCC3509DBAC3E4C99D465FC1DC49834BE3832EB5282B4163539 + 70B7F01D7CBD8107AEBDE31DA69B108214A6FCE1E9DD05E790D15D742FEF9450 + 344F6B0F16ADF1B6A17E82C67E655FE53961DE5DA35667CDA603615D8456B173 + 6976659DECCDCF4229007442BD3A566B69C8222AE57C61F206824ED1B4DA9C8F + 210D8E269DD187981BA2DCC8D3DD20DCA7478A896E3142200A1BAB2ABA4D10DB + 9D0FAAEF3F438619C0BAC679DCEAE4B16355E91ADF82E62F01E699B44B3DADBB + 695A2372A12815E2BAE9D0639B649ACD15653C49609134C69AA3007E81458824 + 35D4F2CF28373962F045217C2C678D1CA694735192BF11B89D67BC669F685231 + 800A5321AD4E5FD76109B1AD255C8D768B62DFF2013DFEAA57A14E72852FDAEC + 93278C888C88E1B0C08DDFEA83236D35924348DFFDF9ECBD7F60AEF496327C1E + 4A1466FE98361338047FD2DE14257AB2B7C6CC80C551E19EBAC5BB0CFE033248 + 90399B199CA219C484A7BAEC2A04A6EAEF0C85CC1F3123B4961A758546662A1C + 947338D66C029CF981999B4A8F72B0409E264BEA61EA43AE3F54013F766EA993 + A51078DA893F2B4BF271A3C15DCD2F903EEB8C605ACE1E05FF99065767E6286B + 13653CFCBD9A321B9DC879CEE9963270115D882430B2E0B04D08DD1FE61BFC93 + 5B8DABB87B0CA19A53347CB708EB36DBD01F2C660B3D6D319ABB7A90D9BDA22B + 3B5DB5F0D6163B633FADDE75F806837F4F35C6787C3D8CE63494101DD66FB3E8 + E1560DDA6389FB32C8036F06C8ADD46384A6255B52883B8161C8BE9FEA9D3119 + 647515964883906ACBED5060C97A8314A2E7046EC6686C411EC0E96186CB303B + A26969DB61148FA98CB3AD7A7E6FD0C49406B67871DCE5FD418134E32B106BC4 + 9DB2E8F58059661EFAF8B45CD75D82C6A4B6FD949D4F8693A5B40C54FEBB4207 + 440E63A85A93FBFB2ECD0C9D343678B02E2C19EEFF56C5645F51E9DCF08350E7 + D59485C428B3A154B4F84D0889CBDA0D75411A3C67381E9E9AD3F96D6F8F0FCB + 1495C4441656BE4E3F603265783C49788BA25C4A72A9BA1E29BFC2528C9F8BD9 + 4A4712409A8943ED3E1F327CFE49916A5C925B69C1F101DA9F1320608B58052D + C15FA0EC1FE8F2121593B74CE4D79C6D7954FDC0E1AB445DC54AE6F5A03CD00E + 90BE6F03910C5707D1F81E0890B014844EB8702C3CC3E85AFE108B97664ADAFA + A4FAF82A342C7F8A3D66E8A95C21ACDA384F4516E10D14480C3EEC79B23240AC + 7203B0B2B04F819F5AC727D5B2DD47973C1DECD65B32F4366DC8BB21B5D74CA3 + FD6716C3D5A41F36F03ADA3EEF70E62AFFD07D9F895BA5DAE39518073015C0A4 + 413635AAE8495F1F166A9AFF390AC9D829A74C76B30D986C08E987D878157C66 + 2C82FE182043B6E72DA8F2A77238F7D405A313EA269AB26C4773685C154CED5C + 1F091AD08E5AFC2FDF30FE4A72C64D3DC4DE53B9FA65EF9379C19FFC007BA428 + AFFA49B0A38A851520A3ACCEA5FFCA10F68707A4491F3B11B4A839588AA1B68B + C40A9AD19594E2534E461E329C28C1935C55A1F8E9A4C9AEC2A495F18BEB9CDD + C2512AAA3A067F8A408141558027C8296EB623385CCABEF3CF908446480D6FFB + F6D5302F3B11E7CBC2F5AB8818A24F7A75DE78FE1F692305E56411464772D6B7 + 10968A52F88154A4F4A8B274AF46386EC6955021D542C1792986B5011704BA21 + A1C308EB6CF2C69BFD491BD1CD47992FAD184B89F5CC0B6114697DA5B8B02320 + 07A30C3787F2397A3C1E11F14D61C459E09132813A880F9C34953F6D5C0444C4 + CEA82D29BE3B643704A13838348D8F509AA1D3198E78D1A8EBC14347102ADBE1 + 1F7BA24C3E7D18746DD0FD00C98C2755DB1D7FA35BADEEA9834EBB4857B6B5B2 + DFEC8F9AB37898CE03C31F8FE8582D291DD2C33C6A372064753E63D7F05E13B6 + EB2F96091A219D65392161B4C846BE5E66279F58E8A3082D97EE161CEA0E069F + 030BA59B9F76B4C1BEAAEDACE9B42F49D7DB472E0047EC8BBC98F8B6C0F185BA + 65FDA9B5C141E514A63F76B88BAA04743CB92ED6C96102E76B04309962A90844 + 768624B85FFF5AF830D0646DEFF0E177F8C4AB9B3FEA59494C1B6F94A937F81A + ED8DA44AB2E35B5906B94358C3C2ED971B3B27EDF170535524E32E97E63FE1B7 + E299C72A3ECBE906E3624DA331D252AA35354FE95120DF8372D11E8B868423F7 + A5892B0EF35BA0FE7F111B37707840795590160C038BF2466B79C179985FFF64 + B896A1E78617E312571822EB4C42C415EC20091430CC765FC70CA68FA57E16EF + C3C6DC25BAC2471B26E35569F63C7937F3E0BFEEE004AC734985077016E7C218 + C0B0A0C6AD64BFA00B5A38E5D24CBF39F8B7D329E3F629057F9269F6254FE01F + BDBA487B064B791A47F212898D229228371689E4295AF8C685750B6769093959 + 6E1195FC070619193A8D4AD767D0405F157A46CE51E1794CAC8B800E89CCA8CD + 58A78D93CCF621C66B35BBB3E8FA3A6AC2D1229A49FA61BE455E12AABA24AA20 + 8E85DDE724020DCE15F2C247A96AD55C9EBAB1B04101D7B261746437ED10B261 + 450A272324DF5810E0A1521DF9E41B53B5619B832E22D7430160AE63C9A06EFA + 4E739027C10A65CD010CC8C20728794EC31CE3D17BED2B482FE2F070837B993A + 5A52B5DB885A240DB3C1A3FFB9C82A2AFEB0EE8F8AD5D39F2D956E62BE6D598D + D33B2518E4BE33E221095BF0A607E7C9CCC9A78278C1DA5CA55E15EF7748615E + 3132AC4BB2524832750647FE351ABACF4C55BE2F09A410DC68F41676E918E51A + D15FF180A1AEC358359C3922899123FCFFEA139DC097516EEC747C702D8136CD + C7FEF7FB28D2505235BC2078983CECDC316920FA29BC2F5BFF525C1BC1EF0A2E + F8ED2E502CEF4F1B5219F97623CCF31CA8472DD6DE1226286D9617D9D3B98014 + 4A2BFB8A9D619B0FC4DCC415F451D65CCD41561F49A5023B61EFEFCB3E93B7B8 + A29A88D063918932FD5628154295D47C3DAE02294FA20057277DBD6BB71E4F0E + 178C5B3DE2ACE929A8495E858B03C582457ABC8535698817112EBDEDD0AABEF8 + E40652BDEC8CA0423E1CE38D518B985EF1467E1952EED83CBA7B10DDD1DA0ED4 + 2E3F517085F596C1840B3F1888EDADAC1974C0E899EA33A6521F5867F1529A24 + 3AA42D2E170F358A458ECEC4296F8BFC9F2C9A63A5D994E1EACA33607ED910BA + 25072A7C9E305B2A9AA0DB1B7B32F746538CD70C3FDCDECBC0179372FDC91F65 + D0CC102D9BBA498E59BC7E8B3C15FB20E534415A868D237E809B6042DE570C03 + 9AD72E3BC38446D6E7B5BE28A467A36539A1F8C64FA0A296029622B07C835FA4 + F198D67C35C40BE2F2033EECFEC19DBE92EBD920029008D0A0D3ECFDC2D79C2C + 94C21D7DABF97588DF9C0F208E46F1C7B7088B9AC4F7CDE9BCD30FCB08E1F718 + F8CC476E0BE8DB1F66E8F23313BE92F4131439FDA8EDFC20C39FADCE885BCEE9 + 8390412B87CF3893421CAA4E17C92E7835D0841061DA174C7563A6725E12E83D + 8FFDDFA0271BAA962F064B7876629F2A88F5282C2D6DBD7E23C2BEE446965CDD + AC334E504D21FDB110FE9FDB28A0D6FD13742509DF17E5F2CDE9E3B2DAEE7767 + C3C1B3E733B053C204843FCF87D2FE0D427DAD1BB0A99E383DB8201105A87804 + 88AF6E51D06AAAD5085E8850818636ACD2C60B85288F2959E4ABC8807E5F82C5 + 0D669355C429A3EDD00AC929E6F16D2355537BC9B33F99EA367452F2FB6F3FEF + 165A69B3889926664D3E73FF4557C5CBDDE3669A451106FA44D71CFE114D9B37 + 0936EB0B8D61A23978F6F6D2AC3D83217370536EC1FEA60A9AA4E951CA43592E + CCAE15C0F2BFD720C9B01FA4EEFDFF2D9946880386CA0BBBD00E504CE2988143 + ED24296F8A1C858D2B32746F2317FFADB1C4BA3248DBCE6696F95B19953E9263 + 208F2019A7EB663EB649E85480F79595C44F189379ED3103BFC710C26B02F0A0 + 056B0AB4087089261F263B1662D8D56D0942CE94264C51DE639F9B2B08573F7D + 9E0DF6C23711D95D51307D3449FCD188C1EED0DD1E96243037EAEB812E99BD3D + 9CBD461BF0BA950597515A6A7F675C04A004E3597A00CAD8117689C2F40699D7 + 7848746EDB2A27DD6B740BB1435588FC74850A7AF5167A62E57E9A31C622005F + 6EA0B79B29F078ED3D1AE2EE8B494878DD9607DAD5E0CDD0573A9B0FB860A24D + 22C97DB138D25982D7E60015ADE3C639513218794C164D155235CF617A6FD856 + 89BCCA9071F3221857B5EAE7054E20C169563B8F3C2E5182DA9814CEF82A444C + 3C63053A116117664C055D67FED854122CB327DD703CAB0E332996109E31169A + 4D013626A617042C8D10A2E87E4D38F7D53EB0BFB50ADABD40441AF4DD247D24 + 6DF1BA4F66B3F9F4F1DDAA9D6050B9B078DE9C97A35D5B24407BA6EB9D73BEEB + 0A73BFCF48B96EFF7EC3276CEDEECEB54C937DB9DEBCF58DDE72E0E3A61004BF + 9C0C9E27FF46971A078E34D73B48E39AFC30341DFD7EAFAC445916DA031F8CD5 + ABCDF337DB0D138A675D9463BB5FDEA1C669BC9BC9F75E4A0A757DA4AE10AAB2 + C111AD5929F270791EC3D6A3DFFF31DE8C4A48EA07C48C7FECF81FEF8BFDC933 + 00CD79D51703B4804206500D7CB341CCA45523E98B42BD95579FB9FA71F5BDA6 + F2E9BFB5D7A7C43C27A2AAF6E2C83BD8877FBDFE154B80FE70BD789107060C55 + 525925CD5B66B062EF1769FB79810888C83475CB9A30BC418304D857BA5643D4 + 58D94B0A62D042A9494F21FFFCD53E738DF97C280ED7DC105359DBD86736FD66 + 0B46362955A75D6E7916715B401FBD7700C471EA7F016B6089DA46E582B6867D + F322BF618BCC1287D446838B79644699F13DF60E4D6132B822D924F6ACE8A844 + A5ECF873BFD829081BC3A62586609EE9098AC0CA9701B861C20C227131248FA0 + 53EDC85160A92ACD81735E9B90653A8100F808AF9F6738BCF2731669FBA0D013 + BA72C4E125829124EEAC3C0F86EFF6A7F3100069F949F0B4794A8718F88F4E52 + 91E411D746DB5F4EB1E685F11FEAF2FB87A2CD427975ADE35653761E4941DB09 + 5765C1B8D251A40C555ADC132BB26EBADA3B02696F323023548FBB46A7C9CFA9 + A54116CBAFFE73B3E899B1928DD829299D8612F2477579CBCD763BF061125A2A + 20D6FDF8E711356C2AE363D80DD3FFB77E887F117BC7FE1C71A3665AD4308406 + B1BCBA2F66455CA6D6693AADD5DE956ED7B84EB95A4829F66CAF8371C2613699 + 3953012B5FB3E6D4BBABADAC8E6866894443342345DB549F48B6CBD70123C2F9 + CBF5EC699128300D9F1D2C0C40239FABE5C4A5E09BEE286391B40D54FA8FA20E + AEC9407B1CB16E0561BE3316923AB2D891FFEDD6F237B0BF05576B85B67E4DAD + 03D8646CC504AA2BC0004002E1C0E53BE16A0EF9BC10309AAEE524E833F21C09 + DDE930100194161E961508961543D3C0829CAF7921559588C8996ECC334585F1 + EC9B6DE76CEAA196A0013E7C8E44AEC07BD2CEB5F9BC20F4A0674EC24FA4CF88 + 90A1D1424EA7008B8AFACE988CE3CF4F6BB167A4F21E106642F342976EE56CB1 + 618A85705755A68F14140552831240F6242D485D57B56025F589B96B0033E276 + 5A768D0D417545BFD24A6A648D7038D07E3192584065482FD59AD49D76B69258 + 7ED055421C74A91D73950A22B4E1AE5A5C3F6C920544A1C745D2545FA01631AC + 37EB9E5BC7C4C455DFD15CE1E6F6B16073710EB88A5DF50C80CDA4771F602333 + D320BFFE3E036DCD97FF5C28F575D0CB2E1797FA12DA1526E7D222E302377E82 + 6DFBC5C13473D5C4A2641A2941A178A231369CA7A444DAC7A712BC55CAA8AFCE + D2D1591868B9C62D0D136614A540D3654D1BDD7DDD44EADA68AEC6F84219A9F4 + 1482184FCE55DE28E7C20083A0C2316D9A46B4D52681EA8ACCD990483216A04B + 3D50F1872EC1D61128CF36E2E3A5C2E32EF8E79A8E3C817550B83802615D7701 + DBD0CAB9D6AB922FAB6D9CFC5C401DC9F01D0B2293C124AAE17BF5C025048C4B + BBF86C713FB2E13A02C453F5B2DD1E5C7EB7C65BAF3DA81E43274B65771B01AB + 4D147EC6C8E6A39A48DAD45CFF6EDC6FD4B90052D10A72681DEEFA186C50FBB2 + 122CF2F98E6AD9DC18704B2404D808B7D05D058BCC3213DAF7A0D1C371B971F1 + A133656FF6283C400347F027276893F1A2061CBEABB6A1F1E8C46E7437D59795 + 1527CB6E2A4918E469958E1A5A5371A94FB24B0AF2DA13E154A87BA36079BD04 + 345907E2F89358241537C8469925674942C196E2C2C064B8089A7246A4EA2AA3 + C3577EFB950D9B4DE96B478D71D10A8446EBDA4CACBC48DDAC88BD812D68F8A1 + 98543DEC34E9CA86EE35B9A43120C1B901502B79B13CAB67737CEACCA258C78C + E2A366D38EB2A5E0C06FC4D12ACE329F4B0B2692F52D8B14FE5D42B195CCB1DF + 7856F5E5E04F89D4F97DF144DB33EAC1753B0296724936CAFB71E4B15550FDEF + CFCA25A6E4F4763BACE722B7BD9BF13BA6729252181E2397D984D768AD1076B6 + 36A9F9E9ABB83B6F5C5D08C7FD576DC984925F90B771C2055BDFBC7DDC21C2C4 + 2617B7CB300EBE9EFB00BA3199F111FB16CA401171455B7E4133161CED9F52A3 + 188F94FFF4D9D28C7CD3E13B686E7FA8F3801A9EE1F8A67B0F8C61396DC246E3 + 6A5597B2F6E2A95EBDC8FEA51660605B6A0C3DC7BADD19F1A3AE5D6800FA1A5D + 2C98EE2E7D0CF4438C62A59939B512D7E467CFE4E193E4C904C16C7C1ADE203A + 193D3999503C3A59CC059CBA263E12D529FB2250E8E6F6008BC570F4DC2258F4 + A55376F3B13980E5257596C1930228169C0BA2884A8797AFE4DA57DE5EC8E09D + 6914F9BD600B78DCF6B5D831EEE19D39A585C6E286DA9872BCC0217C8DCF6CF4 + E34577DE20EB36103E4D55B7CB8B6B20EA2B7F1C4EEA001D329056C5BD5B9729 + 6E8E0D735075FABC92C5827A4ACF7A11B61A262316A7CBD1FDC0B5A9B2FFDE90 + FA4A7A9EC2CB0607CCA25ABB7A4E69DA9A5F7E775637ED2BB959A15805319A1C + 03543646A93F2C63B5747D2D64542BCF42B5E137D8B9BBD7BCC207682B750469 + 75B4D58A13D27FC69B3451E6AD66979EF8B39B627D4809ACFAB9290F095349EF + FBB88D19DB406B3FCC6D4151E4BA20D9A905EAF20B4672AEFA61DB38E81DF824 + 77E66C910EFFEED4C50A1D7600D7B6817A8830FCE59F01FFA0F4FA0B779B3535 + A251942F00C20ED3BE7B31E966469D5BC25B0E23062659672E445393D7C23F75 + 0247B31378042F836209456165BDFDD28A24685D3CD2CE37AF9DFA21EC32CEB3 + BBB9C71DAFADD2C152835E4C9FD7F0D40A7A9A6B79428A7C17D50DE7615341C3 + 1BBFCB72196B8CAD75EB6BAA41111115601D245F9FA88F51059495A3DE297CFB + 6E5FE558AEF03BDE143C2CF60EC59EDFB22C5E522BF8BA0A3736B91124E19F11 + BC3C0687FB71411FBEE822A0AD39E1F104744B098CC7D3583567161C695F08DC + E6950C03ABC0002011A23DF434C183E01D5A1C965BC194CBA1DD6E1259F4F329 + 0F5CB3AC0EE71A6E60F96308363598E12E8F8318DEA9D76FF66E9C2D265C1352 + 9F8EBE6DE0CD28E61A5FD9538DCD0EEEAB135B181BD75A2BEAE9BFBB81AA470F + F52838F8F8A0FE2F393A04D032FE528BAF359D6EC0FF08BB7908005058BD9D34 + 09720789E925BA34D4A4BB5016BF426A6087D173C320AF8604AAC3D7286ED253 + 923755F7FEBD7CD230B366D5B7FC5FCBB319F7E3EA4CFFB5FEF5DE60A6BBB015 + C3CC914254A6E92603B2239E368906EFFFEAFEEF1B32EADAAFD71EB38C552DB0 + 79AAA656CA98C9DCD090C59B0E67842B06F6CD8ADB7324D11F1E23FF92C4CFCF + 27D6EC64FA9E253872CEABC6D4827267B3CB129DB6D80D94B37DE9DAD660C1D2 + 88E1EF7BBD16D60217C1A3EAE1B175B6655671055E6B14577A954F320A50DCB8 + 7187F9B013EBBE244C42B830AD89A120F388036628B2C3BE991CC16D9F2E6C5E + 2EAED0B349557751DFE5C90D935480C11CA14CA8BE2A20E4E45212B20BB176CF + C778412D5DEE9669584AED14DE3E8343CA609DB45AA0B47DCC9D2E1EB7ECEE58 + 83988E6097BFE88653CA05AE9713617E7BA1695B1D7219EE06338B3379EC9366 + 0A96C0EDC214DB074C429DEEB3ED0B466432025427269EA1447547C3B9A78B11 + 45BA108C514A0704AF7B0992B7FBAED71F22DD8B93F725BB3B24D9C211044C0C + 71F9A37EF4A8A1447FDE380B2DC52D4ABBFD9AD7B0474DE2FFA1E1E0943A0299 + 3F4A3CEBFDE8957E8BBDE42D1015D8B9A6DFAF72D7D0A9346C6219BC60556EE4 + BCF63FA04D7644891E942D169E613FA5BDC43747237B9EB52EEC414292AA8925 + 60A777CA0FB6AE82AE7E95FE64706C651E9C2D8AD1557DF916FF02DC570E1285 + AB2D761BB72596CD92E01971025AFD8AF68EFC706CD1CA25BEE5F39FD9F69DAB + DED489D9FB7DCD7890FB27EB3F321B98336514EE9AD4258DCAD94515BD9C74B8 + A1BE56823D32CC3BFE70AF8B541EA756CF4604CB9457CBCE5C83C8E8EF566CEE + 72FB7A3E64038A1A88644828093761AE4F27611880D822FB0AD1A6032E09C405 + CE1EEDA10498709C795FEDC9BC69EFCFAA436959229D5E627E4F9D3DB0DE8669 + 91A7A9454722FD669F11D2142DB0D9A0DDCA4663B304DA28189AC24EA4B4E844 + EB3649C97DF060EEC13ABCB47E8A93A70D2C95496F2FEC3A969A4757FF3B799E + 7254FCF9867E0814E636598359CF0AC3DA8FC9CAC9672786E6359D40A53D8B61 + 14BE1FBAC708DEB12629C70A5E64966256E393C6B8D1F2EA2F2BDE3BEF78103B + 6733633306B38C9026640B8A3502BBE7A33C25966FE13152C986ACF9244A29F5 + E3A685519950F7A63DC1A5952313533AD6D0760D19DB7306729492A2903EB116 + FBFEA99DB0240A1119D27A2EABFD88DDABAD7BD4EF39CDCD2839E88B274C9AD2 + 8D95C48EFC4BC39E073A8BB46408CAAEDD86DE0580F54180104D59B0A6377F07 + 06ED0F073371E2E71B6209568CFE7023BBD9FE08AC7D51A8787C26D40C8216AF + 88A5D715BD14D390402F532E062FEEBE4854CB05F82DF443521F8658CEB2DB27 + D66D1FF818F410DEB77F8BEE2340AA61833AEBDD31FF9E68D2C96CEC275E4140 + 8434BF71E5C7DF967EA46B04DA27D947B4074B78C3294319BF60B5961C2D6680 + A5C838DD3406705363171694680AC3CD4C92FFC71B1BE1E333B72BAADA9D253E + 0DFEE8F10FCCE566C09E0E6B70E9C6DB3FDE2898987D0E78937DFC41D9C26D98 + C3B625BC504A4F832C25582FAC1EF8F7BF2E565663A84C2EC8B9C0C9FEB1F0C7 + 9553486A982D111F4597D1FDB0E48B114E26758A5BD414CA4ED4E3D004375FC8 + AE9224A1908004FA543C9496E78765DAC048D15B9E9DD9E6A49ECF024BDE5FFD + 9E11E7549A54CCD567B1D100067E7F731D0BFC288DC9638DB506AA6E2F12A025 + 86AF65EF83ABCCB609FB9414FA33E2E21826E2E615A074DC835AE929C0902B3D + 8F1D3F97C7B0772005A90339E32126B20D6C4B5AC210C808A615E94260A15F84 + D67701D5BC4644D82E8235ABB54345B90C6BA6827337751E53BDE64AF22CF207 + C3AB2D679DA146E2CCFFD2A6817D9C366C3CFD5BBE38D2CEDFD50CB69C4096B3 + B1453DC62AE888A845F1C79160C813D8A8A6DCE73D5614B4BA5BED6EF8280B65 + 6460ACA13EECF07F3F322C323FF1C0A998967C029108D722D47542111D7A803B + 1A1F08EDB8C647D2C6CFE107ECB5B1982D12EC23E62F8106C684843E61485DEC + 4B365D2A5092A4F96C29365FCEA5A190726555AC0790BA5BE694B042253D3F60 + 129267A796E088A62CF7A56C666A6D7B501F0D199180A5F6CB957127806FC574 + 9D5AEC520719642E63DD47A58D31620F2333C6D8E27296E69D5EBC8F852A090C + 5CEDFF6C77223E76A53E351D77715E2D6E89CE15163B2C8F6C851D1D38C35168 + 49B67839A08C797C44AF93A87564C75ECDB648FC81431883A848915DA0143EAD + E4995075CEF65E64497D9ED9D63E64B822D9DCF5EF453DCA49C9A08DE0B18AE8 + 0CB26ADCBE07D070028DFF617413D556A7798CE1C52320EABC0FBA9633D4E107 + 9AE8E39731F5F94F1A8144E5408399D31E833EB48B500C0CD8BDE18D07DE18E1 + 57D4494B2CF38924B44971C7550AC69A25AD28A10983A59A75CAD287D669767C + 9A33BB770907A47BF8E6906D6BDC75377FFED4B65A030C988AC7AE6276128D5D + 49A3ACE90FC871D8DEBCFB6BAD765EC299AE7019D043CF1FD627C389285595DB + BB8657C9B9AF11D8115CDBCD2E2041B4B3409AEC153BC696326920B7C5F805E2 + 4ABA1BA9887BCB128954DFEF1C799E6DCB217B6859B111FE981227AD40D12CC7 + DB06F27345FBCEFDDFC7C5AEDB0CAB4FC8B55A6A5E41051ADD690B63443724CE + 92459FD0AFED5DD5BC4B85425C3543C91DAF0023A1C0BAF5FC0E3A061AC47CC0 + 6F6D1FD94BE64B076F6D672F355EAD71A909956C346BAC19A036D109C0F15672 + 8CF7F163EE57B61233DD0BBF0B2398627C43B1E92566DCECE5BF4256899FF6A3 + 490F125E56812DD8F9FABC3BE75A6113969136B2BB64C2CC475D1745179F7E5E + 03FA767F847FBF39E48BE9E39BC7BC176D29BE4218FC672848E78BA696638EB2 + 06B7E66A9F7B12E1B69B7757B8FD21EC10575A3F36712F0568EC0D533F1DE2CF + B93D5128F36361C401A400A2C9520EA38B38C8141785C0B1C2B18CDA1D1FCBC3 + 55D30F6C469BAFCF081A22FFA03AF1712DEB24A24F82C3A9AB9722F6BA909C1B + CDF669D54CBEB3D5EA6B78DA08589515463EA4BB7B1DD75DA84D38A48C4F6C13 + 35B0CFFEBBD08E50DA8AD9433D6A9BA0B0FCBC460A2F9D98113256F1910FDDFF + D4206A4A4D20E96EC35C38C532E923CC62B40C0813BAFE5952341A16C76C6130 + 7CE3C331EC57A6DD4C8011BA0F60C8164C52BF70FD877F2800011D6A362EF9E5 + 1B62ABF6211F125214DE9C55FDA6C43BF7D8028647E9A809551AB220B1B1A37F + 820AA214EB72AC86C86490797395FF978BB0B98ADA23D925799559BC149DAF89 + EFEA9357123442433A49BE64583EEB36B2910F6EB2032DD0DE666CFBA9D9DEC1 + AD1288B86E9EA8C17F561A63ABDD13D3B4EC892B3464324AA77989639714A017 + 738224F3F2551DC92E9AFDF0325B4C8EC0BDC5BBD6424DE89658524BF42BB425 + B36AD9BC4342B0ECAC017469A232DB60ACA324D506B8276B2076933671E34B24 + 57A13245DAA4C1F0460451C25CF7F42FFDF73397FA3C7EFD180036D3F8516C14 + FB840864BFE0C655FE295ABC4EDC485482265B6EC9F71AC6A62C63639D082AFC + 58FF1D6E5B58C05035FC27058D2BDF066B19B7FBE4A204649CF3A7FD4FB9A3EC + DD5799C69348C181D2E57A6621E3A7F561599EFD48FF744BFE15388071005C07 + FFD9BAE32237E53DFC5E5D03870C0105424C331659A2AD7D3D6B83DD7B27FB21 + D806B72938AB7F7497FC0EEA827A9A82FD30E53A5BDC64EAE0840F2B81578E67 + 512826EBCE7BB53D9353AAA13FE74E5ED72184EADDB16326C2A0AAE2E69E664D + DAE2C37005AE0C6888F2A043AE519D8C770FF3720DEBCA0D56DCC83F3208613A + 6339F93928387A81881C5DC6900AFDEE6CE959DC6F0CF00FC5B2EDDB0029BCF8 + A1D6811B62BC687B8DCA0D83F7E13526A2D429F66798D966EBAE064CB40070A0 + 27A41C7AC9737BEF98F2D59CCA9683A4921763691202EF2423D41C86F82BD1DB + 7CD301374E479958C9C039305826EFD47133DAA9F6B4CB5C513D31CBFB45121F + 5FF836F9D26D181D87DDDB8F15D3CE37E3CB0D4FC6289399D03D3D67BFDF26E9 + D69AFF5C116B3AAD11735B897AD22B9053C583952284F8E6E54F05216875441F + 595F887954AEE853D714F47F4CD9596D1F9C78757E82BD7838E9ED8C8D553494 + 0D8FD480E84FDEA457BD990803041A2E4A645742FA8B11B3F13F5C3D39773471 + DD3EF10F72126518A952AC2A4391BB6427E2E565C5D9D32357D50ED99B50D5BF + 2C017AC0455D3E99714146F5E20DEE78AA3197C235FCDFDDF92C0FBAA51DC791 + AB366298F86EBCCA03FEFC79301E8C907FEB90D25F96BD98DBA8D8B5756950E6 + 6734773E41433B54617346D9D161C29D153A0631F63A78EABD8FBFC181E95855 + 8366843586D54D03FC7BC405AD53A6016EB59D6D08CF66DF50BFAE50BB8F3E2E + 75137D082446FCBD0DE9A7516554C138795CA0C4E58CCA063011BB3A1FE87B7F + CD6AF452265CD3DAB18FA6F158D891F221CF41A732D88550B681B3BDE3AEC917 + 7457EAF00B8FDA31363AC27F63E09907AEC7DA17CE2A95E893A0A0C3FD462792 + 042B9D51A4A8623B9EF52E5EF22F8B72A2D23B2EBFDCA9753788FB4AED6D0A5C + B36969D0FE9EC7B9466A3BCEFC2E0E112D93E96DC8BC52A90E64BA44EDEC771F + 953DEA46506EDD12103C2F7808595C7544B4064B15BB377D731DF40F9BBF0B64 + 652228EE8DAF0A4168D3F54F7BA4FAB80E10471A500A13C1C86CC16D36C4593B + EBB25BE0A7726FF4814E2ABCD4881E84819C70DC2486A6D2879E217D9CE71B9A + 79AD0F47FF09C05B0CD4F7750A3ADA663EE527FB1AFE00CBA311E67560754234 + 005DDACCD910E8F4674EEF7E86224EF70678774CDC21A275FBA83E3182F88A3D + 13360E2236F2E0015C9ADE38E81670A4C3FFCFC004C1BB7D1EAEC5A6BC09F321 + A59E70A0473EBC237D3A1D6A27FF5D59AE5FC338C767668AF1CD2A3AB6EAEA68 + 07EA856360FF18C5E284F1EBB56EC606B52F1A208A3A7ADF991F8BA82CE41807 + 9C16E2C38E819050FC995AD3FB32F485B101BEA1FA44E0807C7A5EFA33960571 + 9FB44DF64E2380C85DA8A315FC6BB8492148FC1724909E090D1AE3839738B963 + EAB7BED393854C436322DAFC4C4841791B43C0C345DD7D6F9FCF81923B09F38F + 3C133C348B5A9F96625455034A980AA7D04F9A09491DC64B6EBDA9872B19F222 + 5E7C7CE8D537DB35BEF9232273CF73B81B4886B6EDBA09D2A944BC5C1F8E7BCD + B21073A3937836951BB856C58F8C16FB630CEB30A2340B01B822B06649264F72 + 3E4E2B3863825F89770E1CE07549DCC15DE261022AADBB5A6CCFA945A47FA2C9 + D384A5E30CC0C407BB61EA1BE4BF82AFFF8D49504481B6210C7BEC1892C061E4 + 9D9D124220CA2E378C7758A71D3799B09BA84E9745A83FCBD884231FC91F9B73 + A9ED613C021D09551DA85667AA6FE54D44D52049AB91D4410D29E7A2910D120E + 355DD2CEE6E4A49BF71D8A61D36B16FD08EB3119748B6270A05DD71CBBFC5CB1 + E9B3BD155CD45604DAA4F92D99C308D8CD0C558586F28F11745663644D91902D + 8AA1F890A5461E96BC366470D422D24E69CCD01875505106637B02D0D040B0C3 + A947CB7A4279B8781F95DA19B65412626C50488334307020B5DA917EAE788348 + D0D02E4E4E4FC525E56FE1DF93E28D3BD8630CD2C769AC8FF87A7DE55BB0F49C + BA2AB133E381F834CC848D39405A67DDD4C1655E7C90C33C9BA11DBB81124560 + 0E0D73 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark + /TEQVDA+CMR10 findfont /Encoding get + dup 2 /Theta put + dup 11 /ff put + dup 12 /fi put + dup 13 /fl put + dup 14 /ffi put + dup 15 /ffl put + dup 16 /dotlessi put + dup 19 /acute put + dup 24 /cedilla put + dup 33 /exclam put + dup 34 /quotedblright put + dup 35 /numbersign put + dup 37 /percent put + dup 38 /ampersand put + dup 39 /quoteright put + dup 40 /parenleft put + dup 41 /parenright put + dup 42 /asterisk put + dup 43 /plus put + dup 44 /comma put + dup 45 /hyphen put + dup 46 /period put + dup 47 /slash put + dup 48 /zero put + dup 49 /one put + dup 50 /two put + dup 51 /three put + dup 52 /four put + dup 53 /five put + dup 54 /six put + dup 55 /seven put + dup 56 /eight put + dup 57 /nine put + dup 58 /colon put + dup 59 /semicolon put + dup 61 /equal put + dup 63 /question put + dup 65 /A put + dup 66 /B put + dup 67 /C put + dup 68 /D put + dup 69 /E put + dup 70 /F put + dup 71 /G put + dup 72 /H put + dup 73 /I put + dup 74 /J put + dup 75 /K put + dup 76 /L put + dup 77 /M put + dup 78 /N put + dup 79 /O put + dup 80 /P put + dup 81 /Q put + dup 82 /R put + dup 83 /S put + dup 84 /T put + dup 85 /U put + dup 86 /V put + dup 87 /W put + dup 88 /X put + dup 89 /Y put + dup 90 /Z put + dup 91 /bracketleft put + dup 92 /quotedblleft put + dup 93 /bracketright put + dup 96 /quoteleft put + dup 97 /a put + dup 98 /b put + dup 99 /c put + dup 100 /d put + dup 101 /e put + dup 102 /f put + dup 103 /g put + dup 104 /h put + dup 105 /i put + dup 106 /j put + dup 107 /k put + dup 108 /l put + dup 109 /m put + dup 110 /n put + dup 111 /o put + dup 112 /p put + dup 113 /q put + dup 114 /r put + dup 115 /s put + dup 116 /t put + dup 117 /u put + dup 118 /v put + dup 119 /w put + dup 120 /x put + dup 121 /y put + dup 122 /z put + dup 123 /endash put + dup 124 /emdash put + dup 126 /tilde put + dup 127 /dieresis put + dup 32 /.notdef put + pop + end + %%EndResource + + userdict /pdf_svglb get setglobal + [ 0 /.notdef/.notdef/Theta/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/ff + /fi/fl/ffi/ffl/dotlessi/.notdef + /.notdef/acute/.notdef/.notdef/.notdef/.notdef + /cedilla/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/exclam/quotedblright/numbersign + /.notdef/percent/ampersand/quoteright/parenleft/parenright + /asterisk/plus/comma/hyphen/period/slash + /zero/one/two/three/four/five + /six/seven/eight/nine/colon/semicolon + /.notdef/equal/.notdef/question/.notdef/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/quotedblleft/bracketright/.notdef/.notdef + /quoteleft/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/emdash/.notdef + /tilde/dieresis/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef + /N614/TEQVDA+CMR10 -1 TZG + userdict /pdf_svglb currentglobal put true setglobal + %%BeginResource: font SALNLK+CMBX12 + ct_CffDict begin + %!FontType1 + 16 dict begin + /FontInfo 15 dict dup begin + /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) def + /version (1.0) def + /FullName (CMBX12) def + /FamilyName (Computer Modern) def + /Weight (Bold) def + /ItalicAngle 0 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + end def + /FontName /SALNLK+CMBX12 def + /Encoding 256 array + 0 1 255 {1 index exch /.notdef put} for + dup 0 /.notdef put + def + /PaintType 0 def + /FontType 1 def + /FontMatrix [0.001 0 0 0.001 0 0 ] def + /FontBBox { -53 -251 1139 750 } def + /XUID [6 5000769 ] def + /StrokeWidth 0 def + currentdict end + currentfile eexec A0B00ED5187D9C0F1ECDF51878C3AA5CAA3EC67F973A7D + D910BBCA8FA950CADA53428ADA87055C66C84903F07F66481254896782FDF2A4 + DCDEAB2999969F5A6734747823B5041212A1A6A3CD412CCD0EE61173E1EB05DD + F2B7DCA21E965DF4EB09D153FA00AC23728D25C5DC9BB0A1944C5671068B302A + D0309F99CF5211A3284B39D335A60C7DFD0BC14ACFF2B3C123318746D7569FA7 + D46BDEA41DC698FF8E70859812B9B1D5C7E4FD37F567E45F827518C39376A886 + A804C346208D37664B1B9E94DB1FB2E2EE9F9F1DB367186382AAAC9F88AE0B1B + 76F3D577A495E8941B2845D58030749D3FF00468783A615907208CF914F9918C + DA0D219B6E2B51CE87499D98C30CA000F373786617007C4E72F955EFA73ACDD7 + E584726C3AFC22EB900C82CF2D8177914EFE48AA370F7D5CD02CDF91919D186E + 63FDD2F8FEBCD41D4C3B1B928A1A815296FF0953856E29CF6A2F670E83591EAC + 77FE25BCA4F2867052E0B846DC2EC87C634E709D8E88FA5ADEB86D5BBF953D5A + E5BCEDD294D4CDA8D8FBDBA47F351B3F117E678E1C3D253AC2F9AAF5023F1EA8 + 19E9D6AABF66C49F5D2C5591F0A4B173F74FBDE6BA67F703FF63026502BBEEC8 + 4AA68C76BEF6D21F15ECD326E787410AC606DAFC12EA42F4671FEA9F65606493 + 4FE97033A84ABF79CF4345263C8D6DCA1957A1E27DC60404C324A7F5DBE5BB6B + DFD5EFB3ED4D6BB6CF6E1D701F5CCA0C3AE7E3B72E4DEB931DA853921178519F + C8FDC220AD8BFD90E4731DC41EF880054C54824A991E330BE5630D02CBDA4874 + 70D9648636475BA352060CAE7303389161E71BC0EDCAEC5660CC7CBBA773F0C1 + 04CC871ED896574C147F2B0AADBCCFF2AFFE819A7D6DA71FB954ECCC22EA2869 + C9E585AC37B6A045BE660A766FAFB91750034816800AD3AC6D447F16821F77AE + 272F0192F311C232A08F7ED439998ADECF49C0A1CD76F40F2177A7CE4167C463 + 1ECB1052D388C2EACAFB876CA92FBFE45053CD9385A915A31C37B363252E8897 + 4F2182C20F4669B99E2BEFD41A18E33A2099DCA0904BB200F1C4E18695B33C8D + FCAA525577F524E87AC892A64575D0E3E54194FE37276A3AD49CFDC8510472E3 + 8928F00891D315ACB503A7310EA8FCE2AE949AAB28B71DCDACBC32115D4EC015 + 64EE49856B867849E6735383DF5BF4F523F4EA73156096793EF7276F2A99E004 + E0513F40CC3DB39814179E72785D7A963375FC510A6ED7865C14011EA6DFAC6D + A6970B57F95E02939942981F079D790636BF4226FEE5AC072CEB78444E6E9B15 + A7931111DAF18D419777340D050AD1E000EB575FFEA05997C05338DAD83FC982 + 97884A81F02CAC668431B4B0DEDB23CC50631716DCE27C73ADD5124BD5C8B206 + 84BF8BF880DCD9F9FD9AEED0E6D0F30BC63AA4DE980CBEA520AC6DFFA33FF886 + 3921607279E7B97B11C0CE75AFF1EC35DD9A2A8021EA29E04C1F95577AC035E8 + F6DF2BF5060DF1FFF1C69644CDE6A9083068690C9D62464C1050570BC5521C8B + C5C7F0FA102003D3588AD0FE4CFF116425B8BFE2DE55A33E9487778984E03296 + 2AE2B850FD58CFD80E5D7C8A6C5832DA22E625804922AD557EA2F06665ADEE1E + A3D3C3B530B97D17B33F38ED6EB3E6B306C0D84BAD1E312B64931F508BF3C1BD + EEE6339A587AE7CEB29D6ECE8DBD2F6E8D70B8516C003870EC4825F3660C4078 + E522AC5676EBC17E121F7BA1EDFF80C3DD6AB55EF226BFA3C8486F98B3B46C23 + E741E7CBE3DAA6C4EB7323A3B94BE335E53A70267533340EE7005D7D4D97A7D7 + 1DBD12D422E862679A936E9E9CD91B6301668A02FE547BE50DD32CD677812032 + C341A70DC51B4A51B85B2B0561E574C33388EE0C5DC840DA99919818F82D4689 + D924A7731F1B29D3513BA91FCAACB9492DEFD532527C96E5EEBB57E110561608 + D7B065F82460D4D1669D1EC722DE204590B52063223CEAE9B7EDBBDA06307619 + B49C56552D4966B0A35C1DB1D179EBECA2226898A97DB270B4E966803D60584C + 658965AC09339552A56E5CBCB4584E4196C9FE261AEAB3E41E94F223D5C9FEB0 + 5BA737C51388CD18978BF31672F9EE4AC602FFB099BC20F128F4196A4718F497 + EEA9F6D26C500EFFE944126464A499AB157D7572A904D876DCFB34AFECF8EF97 + 410EE1432C4A612E58BCE8A12A6CF7092B62CA40A88A8D65D57F91450176B36A + D64ECEB6E09C7F4833FD2C1989F455328396A08E3F2D67BFBD7D013A85BA938A + 1B2EB381FADBD5BA85475BCA929038CA5DB0028B5730C8884ED58409DDA28FC2 + 2FC3EA2B82A2D5D0C79699D6364FEDAAE9F6709CCFA50392DCE8609B1543360D + 2694020751B58AD429F8200F4359490307A8E01F1511C2E238B5508EE6293E9B + D944D40E071B3043E96D3C5CE500B78166DB807B3753CBA1EB35F73057940088 + EDA5ACA66EE6C6C9008EB50557DBBFE6CCCB74E716C20115FEAFE4CC9B658EC7 + 92E637AE64D208D15A3746A971ED33F5D21AF398FF4EFFE7ED6C8FA05B2DC9B6 + A9F6A42B0FDDF349434999AA372617DEFF29F8708DF159EBA217DE3DD9FDCC86 + 713A169E67652ACBC83A586D13EAE9A50C6C41B37507FB41AC8318AEC8BE743E + F3FC7A05851BD351D829C33A8A2FA1AD9F51ADED5E313485DB5402ABA8B823C5 + D4CE25DEA7374128CAD0944CE27906ECED8EB1B2D5D0BA36BA33CDCF5ABB02EB + CD929C5B455F72BA09E4A471766C0B071C6E4F8E80D67AA409118E2E38FEA5C9 + C2145536BDBCE020C15153B43E352EA2CFEE0BD2F49C2B7290B789AE6D2F0D4A + 48151C799D0DA87107CF8408A8D34361B835D4A0A5ADF0938C6BD33D011F7478 + 9E903726C84D69F99367AEA19EFB5B9866E0BFD52BBED2BFEF8F4EF377E0EDCF + 82C275AE0CCF9C45A1239E7AC027C871665DB6A3556EEE3D789BEE2C65F54F52 + 2F58D762B1FE1A5F02A26BFA312B0F21BFB9003B493E46143595E2CFDFF4D974 + 0E473EC74CF557A723CDE21552A447070154F45CE6AB089277DC60DC2BFA3742 + 6C05695A5A50B4A5C21FD27A87818D5E0D1E7EBECFD9737090B64E217B1FF0F8 + 3A1D15BEBDEE2095EA1B2476459E1050E77C7BECD652DCCB9DE261FAEBB8EBD7 + 8A5845A4EC49325AAFA909B2CFA8B20BCE4AC4FFC25B9C62350C55C053D797F0 + 3F05F4D726C35BBCA46855D3B8D7E59E2522778F59BEB87A8BCA2871D6A4E1A4 + 2BDCA8790E37CE052FD2192989682F78D490FE1B323639995E1008A3D422B144 + 45F8EF250F58111820CB17517942CEAC5B9CE93DDE66795745B2A9F908ACBA46 + 9EB2A65727E9C86726AB555BE1D779D8B77E23700AAF0DE070AC64F74C963B0A + 3AD0070A8071C4E11BB600ADCD80B28B591F7C39DF1A4F44192F6B86AEA62BC7 + 7E2F2D3DDC810D67AD86A6398DD9C68C033035B7BABB7793A86D8AB0CDF0199B + 8A76DEDBB4C5718EC41A8F1791821FB43371BD0BA07331F0E934A3FAB0FA11DD + DA114570EE282FB7F35B0B9CECFC9A144DDA28E1A084F636681D9E85263E3394 + 5A2FB892A677FAB93CEF00C531921EA0378C11C30910DF4E8E370A37FEBF4C4E + EF3BA96BFF417DAD3E2A5A11FB5D0D566C4E4A3F35DAB756A170A741FAD8E7D4 + 4CA10DC05ACCF771BE90AFE0A4D9DCF0B3DD5409B0EE29356153436164CC5C2B + E00D44696ECA6EAA9916FC1367017C91CAFF2527E7A2D4E6D3AB55367F1F6F51 + 02163E6126917575083B8F9769F62F3DEB799E4DD2EE182579D6A9E8D41C1A53 + 1BEB058CFE85EE4B8E20CD146CF5E4F477BB123B2C85A01A9C9E326132E93255 + 3DFE23BC289FEF828D6E5646A69367BD5CE3BE0C1481706F98A0082EC26ACE98 + 4143B6F862B5659B319228E33E2AC243CCB1120A8D71F39FC2A06E965D33B917 + E98AD81B35FA5620E0376B8F99B85EE6F4DDF88CB0A6B4BCFD7F0823A9C2A2FD + 02B9234D007DCD06789A810DA364C00F7C0A2E226166D811337554715133F5DB + 6AC7F44A7CA097A48E07E1C2794F1C1ADC388B30FCA28996A258B528D97DC357 + 5FF36CE7BF312E9D7DDE6BE674D786BDE61CE5652C69C2C68DA64DFD9DF83D6F + 3DD1A3B2F8597FD97E048E8B09E17552BC5D5166FB3D90B0132E5E6CD8B5D2EC + 7DE048DD25FF9083A65109BC483CDE82BEE289985315B3A6EDC1F311330C6C30 + 87AF02521037DD5BBFB619E8C0093068D0D4926BEFAE909D1D312D9227EBDDEB + 84D548E022D0D4AFEBABBA824F1639542A8484D07BDB634B973E09F8AE10815B + E0AE7D83AC464F54FD02B2989E747B61EBA71E289ECF5EF3A80E1B4AB7C8B256 + 29EB57A2A7157C94FDA1FB042892B44C42C0F27D9F79217BCDE04BE431B901AA + A90111AC16DAFAC55357DBAA9B701130A39645D71DADBBA88414103D0B138458 + 425057E7056EABDCB7711CA008147D5CD14807E24BD231C62A157B59DFF4B96D + 27BDCBA08B9FAC623DC39B2C197D146BDF0D32DD3D2C4F8AC7EA4DA3ACC82E06 + 36B83FB0830C9DBA90154755627E5424D31E0DEC2DE77B925D8C0E2403F138A6 + DE9235EE20D3487C6B7E56A4FBA91879DCD20735F5E801B8C633A5A2F534A3B6 + 250AF850518957CBE8B546D99FFBBF8037CC86E2FA1BBED097D1FAEE6A069A42 + 59148510601A09BEBC4675B0BD9E33D6FA808DB4051940AC9C4605EB7BED8193 + 8212181AC5F1A7611CFF9A61FD9D81DA8B29607125C11F034D467CEE4E7333F7 + C377B70931D17FF47501E2BC08754552C394190AF2282AEB40997C46187DA76B + 5334C20A494E5F2F1A7D917B9796BAFC2DB8E3E9D91DFC3999599ADB618D4899 + 025F646E0D5BB0F6A4BD65A0A22855AFE0BFE81C87438697C2E824A94073F7D7 + 8A706E59D34E3A9086AC8BD7D08F270A05B9A70034BE532A0A1944F303EDF5AC + 8B1C0DA7EC29A3B024EA01F1064B83E2D9802B930AC768DB33DDBF8D322631BE + CD848662192B4E6F7240F894D3F534E2E41A6F5663E2A195B9AC086EE60B9969 + F02AD7AABB1C80635277E234301F3B4266D04CA484889A0AE03B196E790ADA8C + B1ABEA49482608299F8BBBEEAB3710A6A0CC06FDE208B9CA9B41F8EB06C8866D + 5D6E0B17A639793FB493F629792CB2DE4675DDEF4A31763C7DE079B21C17D099 + 25329BEF043C523FB9BFA54121BEFB2CEC22FA4BD67DB5F567391F0AC8CC24A2 + 2676E09F3D006DEF2DBC085082B7B63CC6717B8E44DFB14DC849706609CDF7E5 + D282EFF75D53AED7987D389749726B0810FB3D602C74CA3F0668DECAA698F97A + 3B658406603C61057A1BFE8B6FF36FC9732BCA4058BB3B614F5BE6FB47E2E419 + DFD09C7ACEFCFD54FB14D7D3A8803F8BAFC3FC65FAC2A575D8663867355FCBD0 + 11B47C6F779B7A314701B847DDF078CEAF29869EFFEB8F7577304DF3BBCDD64B + 217EB2CA6EEC8C2D1E0229FB789C1A81C89D71AFF6DFABA708EE78D45E8814A1 + 7B96D598603C337CBD4E7281AB295C832A8D7FFDD381CDFA51C30FDA30FAD696 + 04A2BC3DF0273F2870CBE3D6CF09C2D77D6AE471A98A11C3EB7148CA95F9326F + 4CA61232B23F06207D9C2A091FDCD9A247D71564E2573D47DD203B0076215318 + 1AA668FAEC1EFA8DFF8C80977BB2FD082C061BECD3B8CBC05122CA6FFAA98A70 + 6EAC415E5B611843206715D066041260DE939FF905DCADEC0CF093BB7079B9AC + 0E32EF6096D337BAEB3FC76449BAF2CC3E474B384C6888E7312E9074B4EB46F1 + 249AC3C837186125956BB087ED6AE8A1EDF0D22B990DF1F595DA5C0BEE5141F0 + 961E8FBE727B6FFEB4E1784A8E5D784581CE318635B70FE3B60A1A076BA2836C + ABD29F4D6FE30F73982499B96D54BA653B129015AD88C4646B38C30AB176167A + CC713B57C471ADA135A8B2D5157452B253807C0734B89C5627E0A37E650624A2 + 6F24C3DA41B9077372FB495C57E68BDE6B812084C43824B8BD73C22D2DB74B89 + 01A55CBE6E4A1D95ABB8A634173C9BC25C69E87A3C6FB832A191FFA7F6103AF0 + A267D9C4877211EFD51C34926269FFDF78782A044B1D2D1BEBC3C02FB6F49FB9 + D00D08B8D6C94D57E5A8557556927B4D4ADB46963093D93AFE8C9EA0B713D588 + A5E2D5837F28BDCADBE139B355581C6F9B23E75036FAFF24E0DBDA76D07BBA85 + 07F5BCC6544C22861BFFEDDF8F4BC7868CF161CBB6197D4389F7DD6D72BFA63C + 8648B2C03CC8BC6C541A7365933FA81CA54F6420B36504ACB9C55F9771A2D4DF + 60D1B9BF098162E1E99406751EECFF13B7F40470404D46AA11CDA8CE4CCEA3E9 + 89F97D9668D78387B95D15B8F0DF291925AFED12170F367D7785F802CD11405E + 5C329DE7712572554E1A44882BE3F74DD824D0354BD5CE59812BF26B67647EC7 + D61453221B4D519F21ED9649C9B999BD520BCDA0C96219E805AEF05A8C87F410 + 11AD6C20080A7884FF9E0AE24C4191EC004CE88C9670C376DBB50AA6EB7BDA92 + 799E8290AF6EC59C5BCA4A638964CEB01DC089A7AD680FDD5FB53560B294F7C9 + AD5C0188325FFE4A505FDB96BE5FF79ED239AB697EA17873A2098E85D866D7E1 + F7E6728C291DD13640C06950A11D46CC9EDB29EDFE8170CCE06D8E45CD79A0AE + 8AA1C260EBADAA6D4202F9BBAE285123D18412C9E76A6F96172299531D24724A + 2771F4571854B72A1ECAADAD32A7D511525329CCC9820E3C106008D5EC44CA56 + B09BE3B84EB4D634CF0AD7BC05EA009C759BCE8F99C7616A256A449CAB9EA48C + 65CB8E68948796C00CD79D62508C3A506EA3B3C534F2E07782C25C615D79FB7C + C27D7E652C578E897952A0A4415B14AB7594744077B71936800A100C1F88DAB0 + 6B3489505C6272F36510434E610D6B86621AA0A00E8053E2A52208067F12B60E + 05EEEBAAC82655DE9A30933211B85D8CD189D5BD03E002E412FE0B55CA0E356F + 46A8EEB8FE7E051C4D776B456165FA3673B206A16BCCEE3501B5104BB4D52ECC + 0CCAE5F5379BC9199986D92A9084CB2BDE1F7CF15D7E84E8AD4E0EB7BDEC9D99 + 76E99F5B3ACD84999A24FA6464BB3234FA39DBFA5999E8C7B278CB2B1D232BFF + BF92B2144FAEB38AED48547ACBF930FE23BFC5E1BA99A1CFB150AC2D7306E78D + 77D61E2B7F4EDA22AF8A43A79CE53D90023A27EE8229CC0843026BFCD9D45AAD + 29C6196824D038BD8357909C80223CE4D940C05AA88B0AC29C439283D718094C + 73191831274402847286BDC049B05EB5C883812490A15F790BBE1D22CE0003F8 + A02858FF57C587A744EB87656BA0E3B5642BFCC0A4C00D1E5709A2A04ACDE00C + 13C51CA70AA1504B1919985C9CB2BC464AF73F271E05467B065FE224AD123616 + 68E7D325AEB69D495B1B48017B76B9F1A79076DC31782DFD634A1D338445270B + 75F79529AC50ACD8B05C9193BB9467E4C7643AD7CF98E3BD658753D5F48793A0 + 43F15C8D6586D6CE7411BF6E9537CE37F7511A29AC65FEAB3F9F2925B56F8A93 + A03D228E2D22D1D4A9A36F9327FB6DC38D76D6AEE71108AF5B2047DB1C4566E8 + 95E63F67C51CDDEA73A3EF5D55F8515B7A43A7629EDA2A82FD7A7E507A57E880 + 71DF9D1A377F1D5FFBF41306FF918536F5BA5D7EA6FBC166CFC7128BDC2F9E77 + 97AA1FD38EDF0DF23237822B7C0343035810DC53C2FF3C5BA88C3C6B3C21C072 + 4D42FB9F30120D2D4B8C0261B45A2E7C29FEAD9AC8D48D5BABD4825F5064184A + A21D968706DEDA0CD7ED0E233D08168157D26036C8DABC62AD179C4173181194 + EFAF96F390B36C7A339995B9CEA812386831DA5E3F0BC5BBA3269C059A4E3FBA + 51C954E7AE4E6712864828777B01FDEDBDA6E82A0E75D39425A33E683B3E60C2 + 8B1E50D5AA52B171A67FBB3AC5F02B842641CF96103311E596E4125280EA9846 + 5E95E54E9EC401EAEDB6299AD89A1FF33132FD32A926970772F20756A5BAA1DE + CF33E887171CEB4809513E9EC31A6B14106486963BF2579A0FB4C9EB07E6CC0B + BCA017E2B4CA540E3A03B9742474166BED100294A434BC6F67238C8021128F9F + 7B70BE4CF28A892DD0FBB0E90C5B1E45630A215063976B315925E4EE3C8D66D6 + DFFC9B8EB9DF9C0C5E88A0BE1D3E343D5B9849A9CC4BA1665E56E4501A65E508 + F9509E6D3B978B716CC8D62493382534CD9C43D118A13B1250F82CD6601F753A + 5C3449078E84E01A3A97A9C5FA31B11FDD7BC2C9EA6517918DF49BAF43D8A0AC + 4ACE5BF97339DE10B20D8A797023B157FF4AF8C2FB0CCDCAAD660A4ECB3B74D8 + 3A6B9E224BC6F93091058E0CECF0D5CEC2628C0821850BDEDEE72ED381889F8A + E362512AE8CA682359BDE4C2E78C9956E56DAEFE9E1293825D9A95B4841D2687 + E2AA497D2EA1862C487EAAEE9C8A58BCF9D959F855AC96110CFA4229CD8A3A33 + C72D71D20067AB31D4FB9D28709C428B547342C7D51255C2513496CCC1364517 + 43C718898622A4C8836BC6248022A7F3686181EA26C9C67DC5DE5E010151F14B + 4EE2042150ABC809C4B6A2927FE95B6B82BB2627B2C84820FF6E2D09AC3DFF1B + 54618E055B08B50D3D5C829352787D952CAB93ADBF5C0450063C49863E053487 + 75057A79020B07D2160AE8CF59B5ABD6120A6BF0390626D3A989E19AF9BE3415 + 8BBB52A5E955527F9A1BF1EC2D2F336DEC05FD205E93ADD47603AA864F9EB86D + 701B96B0C9BE588DED1E9F4A59ABA509C5A3ABC4F51B2345F2A18D64E8CA1BA8 + 43E3E57B04C591867C42468D174A5D6F21B08B9787A058E1A9ABCEC37D95EFC1 + 935B0AAEFC841EA036D69F04A200BE2584B794548964028CC1D5C1564C497593 + B417C7B03022C0CF4E800D1A05F90E2E312DD57FA90D21B49275CD3A7917B603 + 2B53D6C4E53F4994EBEBDA29BB0E0C4A05C81A5D1E6326B7BBC9C1AFEC90A5F5 + 4C73D124E9FD0C67D2743597B818CB86F69ACA2358CD79C9B172A8D737C97FDE + 7DE604430B563B36BC566E30C0ED03BC3701FFB3E44CE545B5B56CC0E602EF78 + CAEBC66C4CD1CEEEDF0D5D550FD3972A913FEA748895E5921F78E0DC77F2F672 + 8AB42A3FC03E5C9B4559B2786B4D543F9B2920A0FB4BE93EF7002C6E20ED5439 + C623F8FEB4F613991061D563EAC07FF0C10E317F6E8C389B26A1DF9EE5757A15 + 571F106449A797724AD695AA0E3B5F3427A0846923CA3B5B08F1197BDCDA4FD5 + CA7B5D86D174F7044C5D518DB1AE9EB3288C6E88E00BEF4CED48B63A00DED2E7 + 4857B7B43FCDB4E44DC45A2A5490352695178A1DD889531361DBBB02B9AE988A + 9013DD49C8E4675D49FD8F18A2CD9C374B6FD434B7AC8F0256A1326D01130BB1 + 9A8EC9B182D59801B0DCAA4D86DF546F73FB94B0FB20559508B579EFCFB566EA + FE0272BA36B50374D051B59AE0E01FD463E3B07BE183574DC6D16DCF5480257A + C5B9B41A347940983FBFF5FFE569A76BAE67B4BE043C71F8B4CEB35C9728627D + 5AD13A93AF8CADE2D90DAD8BF14FDDA0A1650A3ACE6F7FEB068D101C3F53D8FF + 36FF8A536E8052A48AAF3645A75F30E72E894A5D50C7B2A9411C6EABDD5892B7 + D368B42F47FF373EEC6AA1EA98DB1A8F5B65E10F2FC70D93F34394E19399C743 + 2B4FA7B21C0D2AF7ACF19A1AAE9673544BF8020EE6EFA6EE0F66BA193C625C53 + B44E16015B219F7669EA8287088612795D13884996CD798EA4A77E9221D5F9BB + 1FD2D8F950A37238D3450B6AD91515FB4273CBCC595BE0CF03F13F1A2E4DD206 + 9CD85DFBDB22C2F9E14AC16BF5FC76BD980030048D40BAF79AB135B75D5D5C2C + 69A258E2A6940B5168BA83B02D94FF49B37440BBE7A5C90074243940189056C5 + E7677A5F659BC98D55D49AE9DCB62C153219EAC945879CEA4C7AB4631ADC14FC + ACC2F0BFAAE410FD8DA65F33B6547A1D3016B1A24778E92B9394078AD4CA681D + 7AA9757470D9747C01D309ADE416BAA63EF6DFE8D8B5ED27DB3399211EA4FD0F + 961B81B0C9B414781660913B160CB4EE9D3EA82F0284405D40E0C1081D720E48 + D943A1C2EE6AFE13AF15F87C21B37E51097960F451E6632808699C340CBD6D83 + AFD0B274BED7983377BA9F7471B616F752A39C366C1F5633B94320D76F5E27A5 + FD283DD2FB9835E325341E56CB65D03077453090FBFAA7C589C7941A0E412B4D + DD3FEB2E42480BE9E8236725DD7D642B339277FC0695ADDED537FEF106BD2023 + 3FB1D8CE3539FB2351A8C07E7BA90FE809D950966DE4BEC69C4BE92A7C78A32D + 67457CC6534D25363430D7BD2B1F0B61A65E57575B0AFEC17631A6786C8F1791 + FF253F3993C56847FE80957125D670F8D377044862CD1D34EAE20801EE355B4E + E3B5DDA796FDBB3912F85370A24BBEA776F7890219575FC7314B90999C32A97A + A84D9271926536F388C03E07F2C670A9C9DED2F0516787662E4B3A008BC73742 + 1D06D2C3D8D5810E753B47D98DDBAE05135E7B0B64404AFC8374365C54A64396 + 33241694AAB2EDFC9B0524CC171A203C84130E73734BA93CA7C4542D41C10477 + 1A401C01690614B0E0EA957D9012946227BDC1BCB231682718F2D1B5663BB704 + 5E6094B9BB74248F4903ADFEFCDB948CD16BF546D0E85397165627F7BD92F538 + 7D669E5B72B78DDB575FA2702AC3A017E442325D9D45031D413F85F30C517884 + 2326D228AECFFFE973F6320F48A4C3544C12EDBFB011A72C30534F2B18D7638C + 31358A47284263535BAF43F5408691695DC42C5DCCFB25DC9810C2FB4B672D2D + 2F5FC5CDF94EED35D1BFC403F246B5CCED4ED79E7D34652FCD8675D59E89522C + ED3B847C8CFCE8B1CB5B1AE49B72A7367CC24A8BE181CCED5AAEFB0684124380 + 7E610325DF3C9AFF142361A19D94954373B6130A99DC5DE4AC792085CA40CFFC + 04CDAE5BF1BA11634844DD68724D8897AE86761943EE2A41DAABBFBC54C684C9 + C9D87C63CE746FB8B94082F0B375999C314A5EB2D0EF5FF83B22029E6B0DCCD5 + E2ECCD1701AE983C5E305EFE7B94A33B5BB4A682EACCB274A7FBBA7B28EB6C1E + B37056B2E48EDA441172D2DB8FB3148932CADF0FB74B50C7D39D1377B6A4A19A + 2FCD4C31CC7365B953EA226E5F7AAF03D95483412E15A4CD91C8BDA03541C087 + A6410DBA0F9525D7255E53A5759C20D1B8E8C119DEB7B929907301CEA2385DA0 + 0BFA6F11C11D8F1B4971E0EB20FBB175B1ADFF434DC951B448D5E147106598B2 + 1D97E30B589E7B197CE634011C6A08AC771B68796B928F176A85169CEBF0E298 + 466266D41DF003AC61D6946DB9A1F3332D01CFBD3B4965245F18A767FA0D24C4 + 28BA0DC4491967B622701E4199426284A0292BF6D074DBD641642A75AB5717F2 + AE1A7473445F538A497FF3BACE3FA250567EF90300FE331CA28C6B7D0C49A77F + 59CD2BF574F85615FB05975D125A0001613CB257F698EA60BE4B864E9FB14575 + E4D15C4E68DF524742F9EFBC239A6EDC31E81BE63C8714801DEF071FE3B74D40 + 8ED986AF024E9E9FB53FDBB1E4BDEA67CE18070FDD3772C689973A5E3BBEE3B6 + 748AA9985B982F9E7DDFB653537279797CCCBE736AECCF7DA559D1CBFE811579 + C50A0E79C928095A7E7FD84ED587467731BEFEA1EF6E5D79BD6A17655936A7E0 + 8C951A2CDFFB876DD82C7EBC131681E17E18E1EEE9A9D2CEDBA9CE8212B8122E + 532526F4E3F9281CC306B6C9080BCD4424E56C1DC9E0242031D4F92D1BD70F61 + C2AA75FBD920A03C2F77F431A1CAA15669866181937D2F11E157DB0223CC8413 + 1B3A876A0E75EC8EDBB6CF134524E28EF27D730214E3CADAE716AFB20C568148 + A040985DF3EC902214061E3E30EC74409CE0075731A4ACFC8A6BC5FE4A7B0138 + E8B33D2515440410348218B10D987C6910D9022AF43FC6F8EC48A189DF111C9A + 6342E6E5BDDCCD627B0C0162B9053017D2C73503F5D4ECA266CBEF59407529BD + 2E6BF59336ED024B9D5A6DC496480E83A4E238172311931D6F06CED0D017ACD1 + 4070832F396F2DB9EAE01576BA249B9F208D7E6839ADDD86921F4EE1567CC491 + D57C3BB4F70BC5BBFA9C10FC29131C99E7695D047CBF558ACB0D98939D810E46 + 0EEA900B63DDB44C59DC45BD0BBFDF59466ABF7CF86E4BF3E6BAF466559B5BB6 + 1732AEC4E15C454A5DEB110116FDEBABECFFE9AF816C25F2F4C8389B9F1B37EB + 380EFC955D7AC0BCF9E8B2D3821C50EB981700595EAD17BBC11EEF11B49AF8A2 + 883D295E6C615C25C11DCAA9316E420F6E84E797E16918E8DD1A4BD3E16AD14A + FBE5C56BBEC4CC4C7478E3CFC14F1BB01B598318B42333B3A6458534D97D5934 + 136EC27F511D5DE6FAA66BA0004C453C2A349B25402288C849B47585C355888C + 9F4137B69F8F64E2CE16DF80A44AF3F8BD106E236396991930CFC7F8B68F6A26 + BC76F64F808C229E61A582D2D9E41EDD8337D84560791F5EA61F06C672C7A990 + 0C4F614C821C873BFE0156A1767ECC2FC0C58A96F71F4C9CD4DCBD8EB8C1DEE9 + 5389175C4D72D20DD3F1556E2A2D19E1B3E06EA6835FA38B14DFD406239BC51A + 4DD833AB7A1068145194C18DC15A0C819EBE59D9EBB436CD5D270E26DAEE6B3B + 76A7EB889F100C8EDB09A827793928A4FB9FDB13E6F400431CB7396019265145 + 9FBBA4AF7B7BEBDFECFB25E516016E139EA331B62FA5CB35664371D902BA4544 + 31BA96FAD508DE58AA5741C417984F5744A8AD297513499B9EF34BB19983B427 + FE5EA246D87C23D3288FDA3B831BFA661C6735E61B3F825F3B5B1059D78A2530 + 8D54BF7B9B3BBA18BCB6DF057AE2F8B4F56D7D0AB6BD0F7BE285765EB746D396 + 0E83EAC9C743353CBBDD44B85E05739A08EF0962FD9D80F2EDB70FF231571C9A + 9B41BA7D31B9063B4AF249973DE44E79910C1E13137935E1A873D89CF48FE4BF + 1172DDDF8A18CEF850A486561108640F0F3596BFA6361DDD45A750D5C278ED1A + 35269C7B999D88E0D03F1907E37B96BF6E9A67E0ACD7A73A8591BFAD8750C89B + 62BCEAE523530028C861D4DC9C2913A874B488A35502BAC8C432479B82EFAC54 + D12757C9142D2201C0D93440B252AE3840E9A155C3A1E4059BAD5BE3DCE409FB + 38792D63EEBC4E4E986D6BFDA15691E6A0B6FC4AA8E51541DEE483F10C3859D1 + 48235FF8CE93FA6032C532A3C30A706FE5B0849E869A150044369ED2E8840430 + FE90756023F5C210D9EF945AC9CAF981E7A140932145A7AD704B9CD6B911F94B + C338B714E63483974063B2C5750A41F7481EEDF3307120B5C7F9199EEB3CB316 + 52243EFA28D3B5A745DD8C283FBC4394C41B66772938062113AD1E786BA363B5 + 2C2FC1A9C26E064052D5E1013493DA857DB2193FE09727DE0A0A91EAEFE69E13 + F0EF8F2F47DA4252EB0DA0FB170866231015C21166D50CC2159F8EA632F87CAD + 0A35779BD2981F84C9006B9016EFBBCA1164AD243E2479CF6AD2FF5B2D2CC211 + 529E9822CF3BA2233CDA77EF197B5E5EA741EE64E46B5F0D2A1ACF10172AE494 + 177B78CB70F3323929B86174B847583A3CD38112EE3AE08EB67937A2669C0D5D + 2E04D8A77BE5D5A881C8A5FFBA546759E3008927989F82CAB5661C1B00032B30 + 2131715F993B0E1C03DBDB2B769F18A4910FBD319B9038E51550EAA4F5CDD5F8 + AD4E2223C5668FF4DA796F5D24794F2F0915692E52B0076963BC753B34A33EC7 + 33BDFB02528946D628C299E9C3EE084F7149E11123562E49059809003365A13C + 527B4437D1942B390F288C0FCECD6F14173B7A7F4ED3DE9E7D8D9DAB884D76D1 + E8D59BF0692B110967D1715888FA801E8E8476ED14D3C6FD0CD055D92B044F9A + B2B6AD13A2D2CC161283D7A41BA5648EB8AAA2F87DA099D0E4ECA6E2A4835967 + 3FC0F6AB7E0F78DABD0EE41F3A33DCADBF9B0FE731ADB9A67D96D71CD55CE698 + FAFEE3DCDD9BCCB838BBF13AD6F7DB9698B12F26A8369ADAE84FDCB1152125AF + 1601C5403AD04B7AFB3C7D4C42FB1F5FEBF04EA4065124970A8058C562E24F88 + 11C55C3BAF7C481388BB35ABDF50F3BD9B839FE5A4308D4F84A1405763504066 + BB426AEAB389D1B8751C02417EFFF84EC4ECCD8D9B7FFFAFBB8890163638B0A5 + 0A579096EED1FDD93D58B1DEE38BC892B8006A2AD3F5A40D722F83078A041F93 + A06F097C3198BC97D8CEEB40D3AA6EF4F12CC4F506D678C084F9294B06DD03B5 + E7A6D695C498233439B93E42F0C7A5950C9B2E3F8BBE896018D606B36E36FCE7 + E5F7C749C7A4D94758D721AE3C51A25E000DE33281F911FF4D843DF31C02EAEF + 2CECDF17F63A6EA87CAEA2EB8A88D73CF38867EFCF12AA4872694B820380AE7A + 5B0850AB9573B3C82593475983ED43F18F7B07BC0363DAFD6276DF1A0A981650 + AA776BE2E976B91BE9E544DD7F5A63AE63DD7144530C6AEF3791ED490DD92F2E + C69AB15B0216266305D5E9F9B8791C15D6000DBDA6B8BAA8312728E4D4BBD47F + 505795480110441898022200CD6D430C4FA470645B074D8894297AED718DBDFC + 8A0E16E62390863D87979386B3904FF0E833147F5D83291C3B83099EAFF7C330 + 388315BE95E710A97CF00082F35F902ABC38E0790F5E7917CD5476DD95EA1837 + 43FEB059FA1AD57BFAEBCC1387488A43DA22BEE04F702168BD3B788A3388ED6E + D613F340DEA94AE94A1C343E0FC3D75AEF0C11D233AFB9128D05413AB3B0D7AE + 2A69779D6B6C6923CCBC10A94B5EBBC78AB6B19ED117A20DAD9DE40DFEB92495 + D7A67DB0E58563B56A7283B085EFD1E61540A1DEB7A02F75BCFCEFB2175553EE + 25E8E87123800F8685764BF9D673129D03F0E00582DB55FD94129AFE44B647A4 + 4E20359DFA915B895281CCA653C53B78ABF39DABCA9215C1DF0845BFAE9C177D + 8029592DFC82090832C4E6EAD424FC35FB8D97F2944FF16CA407E919566BDFDD + CAB7C167C9C6132EA06AB985F1168C4516F10AEA602BCFD4D61ABD82E046C3C6 + 3A75ACA134AC9F97B7DCB0A9993DEE4C0770A517453BB85009AACE0D099F8483 + 35571CF7216A4DCC89724122DB33D8829968F2ACBCD9038AE72D6266046B6081 + AD3227829607A4C2F39A3B9925AEC46988B0CA99969C244694C0E6AB9900502A + 5DF69058739CAE2D5D09E185AAC2B29C49DA9D37F4468435577D0B5ADF3F2779 + FC47D803E1769F352938F8EAFB1F5C9750FD720624415A9F1DB664D37CDC199E + 0135D3AE8CAE11293A5C9066E3ED6792969D9FAE77254363FFFF24982721CFF5 + CA18DD4E9499D09ED85FCCE82E1B6FF6073D132830F43A955659C82CCB6DD4F1 + AB7531826C1450A01777AB20CE346493DAE34A1E5EE99B013AAA54641205683F + 9BD5E81C626EEFC87E6603E2E6039B2CBB46B424E17806174458E7B31C975E9D + 355FCBEC3488ED2C4F522DF920CBF1D35F72C14B0779C9DA04723857333ABB04 + 143823DCBC57CB2A2B7F6544B87ADF51E22FD174535D1B4B03E9A409A9A643B5 + C4C42FECEFE0F4F43080E081701F2D5F17486C239C2F6C40AB75D2E1865737C9 + 6815130B61306D09022669FE48B5E9E18798CE244B5C140E319C5F91502A070E + 1391BF2D44F087F603F04B93318EA7200685CB2FD05DF3DD6E8A0D0490DD5D99 + 570A9BE433C76C8B5433C7A050AEA55A453DD2AB239422C09004C1C7FEAEAEA8 + 41643857F4E1E80ABF463BBBBFE270FA5B73AD38DD474D4802FF5C39E326968D + 8CD4D990342858FB8461CD53BF7CA6A57F307A81E66A814B4F8F7B215F611189 + 818D3351234311D5A3C7EF1D4F6DCC5FB472A3183001EDB9819ACE14AAB66E99 + 30534BACDD4E392437217E24F4ECD999CA72F710B268F441091519BE58C5C552 + 8382D013C44666ECF1C80BE2E15DA2E9C5461F270962C6D40C404F5BA80E6A50 + 97E9821894E63DE4FFB173D6B4144510D9ECE10B0E2CCA2952E6A9A6042ECC65 + 0DDA781F940FD312A3961BD5C9E6C9A7C3AE00A7117CD7442C39304368631A2B + E09B6307189FE47543CC6D4E7CCF6253E2B49EBBC7813D66439AA6E7FF728676 + ECE063F0F1D53A19DEDE71F11184F571596EECA9770FAF903AB70E33DC72DC23 + 85E7B089E54DB5BACF898C9F607B81977001CFA0E74CC6099233F335979B41CD + E6591075F9801C004ADF1454C311C5E76F32140913C1E28A4ECF62F471991ADD + 706138506D6849A7A23FAB2A73EE3BE29A1287DE8969F0A0FF4057D93E834329 + 0D4C2E5FF34EA2FE21F34CC60B2C0CFFC452B5A33E05D29372BD5AC6611CEEF8 + 870A0A2024D6A4CCBF972301534410575633E54A7FD2ED63286CBB35068C9161 + DB35F04956E93916B60ACA51F22FCFC25D805CE2EFA5FBAFFC045CAFF0EF7A3D + DE91AE233F1E08AF2A5779A03B2921BFC892C660B99FA5DD98CFC2C18A2E4B28 + 7FCD8479D479E60BF6688BD69EA5C1758096D57345DB9F8A37D25978D26D63AB + B1A7B98237A0865CE6A68FFE430F5C19093A8F2DE05721628E4A36FCFC109BAF + 6734E01B06057ED3C650A30BD8EAAD619F10B7BC2128BDEAE2FBA35828544E44 + 980B6C7B3D7C8EE6340059D4DADC6A832944B3CECBC6DC680781EB3166447D03 + 70D4132D384FCCB6D11B5279333236EFEC125751478D52F30AED377EAA6B43D8 + 64B5E210C88BC544A314BDB6D3069599D9A9C5B38BE35684D914E9C189F782A6 + E8BF3CBC4A4FC3821C53B37010E45A9E61A81D85D3FBBC7669FBAE50438E2F70 + 4AC70D7689BE06C5122AF504AD6464EA4AC1DC250EC95F6981647520397AA2D0 + 9E2B908AD4E7BCA2336199F842199426262394B44EBC89DD7DEBAE8E69FB5020 + AB5BF92B7947D8523FBA3AC6CCC0849F4EB1F330AE1C72F02267AFB30E32BB36 + AB4A4939C91A33632FAD72FC586391CBF513829B19310C698126C9D282E0985F + F9919CEBBDC3622E8296DD475206F85ABA55471847D693806EE5590F2F5DC5A9 + 5033869FDC619E191D79C484D7A2983C923D00409AAA53BB7410D5C0685703C0 + 8D5591E347C5BEA23FB6A49D2362CE34071D1F76E6D96093FDC66E182F5793B6 + 6D2F6CC5D488837D36DD1C8B7DE77912954DDA33A55A6D90C6C00E0AF54C7BC2 + 0E28321AF8FD21843F071DFF791AFCE86570D14A09DD6FB51E64EFA129F9642A + C3717F04EC9CD5F5DC9E263FAF3EAC63697BA02BF6B4C11F8CB2E9D8ECA9C96D + 27D47360727497276723D07ED51C28EBE6BE3F7012AECCFCBB7647DC672601C1 + 832714D1691F3C8D4B05B7AF6EFE790E5ED120C9AC7D5FCC05FEDB57EA04474D + 6FFECCA153587AFE4EB6B334E0E82D933C2FB7D57AE1EE551C0AC3B384BAA723 + 3301D4BE935C39A0020F0614986B9A26D10088F7D66AF27780CE68BA593AC5CD + 63ABBAAAC31B2FE59EDA231EC3E28D577D82 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark + /SALNLK+CMBX12 findfont /Encoding get + dup 11 /ff put + dup 12 /fi put + dup 13 /fl put + dup 14 /ffi put + dup 15 /ffl put + dup 38 /ampersand put + dup 39 /quoteright put + dup 40 /parenleft put + dup 41 /parenright put + dup 44 /comma put + dup 45 /hyphen put + dup 46 /period put + dup 47 /slash put + dup 49 /one put + dup 50 /two put + dup 51 /three put + dup 52 /four put + dup 53 /five put + dup 54 /six put + dup 55 /seven put + dup 56 /eight put + dup 57 /nine put + dup 58 /colon put + dup 65 /A put + dup 66 /B put + dup 67 /C put + dup 68 /D put + dup 69 /E put + dup 70 /F put + dup 71 /G put + dup 72 /H put + dup 73 /I put + dup 74 /J put + dup 76 /L put + dup 77 /M put + dup 78 /N put + dup 79 /O put + dup 80 /P put + dup 81 /Q put + dup 82 /R put + dup 83 /S put + dup 84 /T put + dup 85 /U put + dup 86 /V put + dup 87 /W put + dup 97 /a put + dup 98 /b put + dup 99 /c put + dup 100 /d put + dup 101 /e put + dup 102 /f put + dup 103 /g put + dup 104 /h put + dup 105 /i put + dup 106 /j put + dup 107 /k put + dup 108 /l put + dup 109 /m put + dup 110 /n put + dup 111 /o put + dup 112 /p put + dup 113 /q put + dup 114 /r put + dup 115 /s put + dup 116 /t put + dup 117 /u put + dup 118 /v put + dup 119 /w put + dup 120 /x put + dup 121 /y put + dup 122 /z put + dup 32 /.notdef put + pop + end + %%EndResource + + userdict /pdf_svglb get setglobal + [ 0 /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/ff + /fi/fl/ffi/ffl/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/ampersand/quoteright/parenleft/parenright + /.notdef/.notdef/comma/hyphen/period/slash + /.notdef/one/two/three/four/five + /six/seven/eight/nine/colon/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/A + /B/C/D/E/F/G + /H/I/J/.notdef/L/M + /N/O/P/Q/R/S + /T/U/V/W/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/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/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef + /N622/SALNLK+CMBX12 -1 TZG + userdict /pdf_svglb currentglobal put true setglobal + %%BeginResource: font VAIXHN+CMTI10 + ct_CffDict begin + %!FontType1 + 16 dict begin + /FontInfo 15 dict dup begin + /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) def + /version (1.00B) def + /FullName (CMTI10) def + /FamilyName (Computer Modern) def + /Weight (Medium) def + /ItalicAngle -14.0400085 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + end def + /FontName /VAIXHN+CMTI10 def + /Encoding 256 array + 0 1 255 {1 index exch /.notdef put} for + dup 0 /.notdef put + def + /PaintType 0 def + /FontType 1 def + /FontMatrix [0.001 0 0 0.001 0 0 ] def + /FontBBox { -163 -250 1146 969 } def + /XUID [6 5000828 ] def + /StrokeWidth 0 def + currentdict end + currentfile eexec A0B00ED5187D9C0F1ECDF51878C3AA5CAA3EC8DC423323 + 00A152553EC9C9C51591C81BB5A2F58753878D92B1C73E948BB360F467A7D593 + 2446E52E22935D5D0316634839C917AE2BE363D6AE3760363F748EAAEAD9AB74 + D863835F45718D23FB3980D0C645610BF765847F4BC5CB03391BDC9D40A6A460 + ABF0D95BB6A176DB5088A1068A0DFDC266C25ADCBEF3E5472E03E0D29BC6801F + A2AEAD77E33C80C0DC39DD6133A821B832A2E5715CD8DD3C7DDBB291E279785A + 8FA62A8FF0F384616D2ED3322FCDC51D63D20804B29DE55335DA44AB8BD7A7F9 + 299FE02A507936078A013E9ABC3F98283FC88BBEF132DD439A2F9254962434B2 + 35482131895D2B6C17122EFC89D80B3420B28B6EF60F26F526432DB76CB6D6E8 + E2A212E8B1770A722A7B383DA4E0622C2CCF27772D13FA0C00CEF2ED121B8050 + CB28848128BA372639D1C3BA224A9A1ADAB9C8F9A0447DFFFAE039904553ADBC + 427EAB27ECAF1752D17D9FB3E49881A960694E1980B8991578F0C6F6CD75C040 + 2A4AF8821F7B113C21CB1095EA7F62779675ABE24C743EB0FF1B52355479FB77 + 1A6666F10C531E66FB1F66E234155C7C43490B50F102F2587C51AE0F071AF5D1 + 7BF8F57CACCF365ECEAEFBDFC9FDE28DA49BAA4C389135240138EE56A1ABC6C5 + 538B524A2F114066E1DE309FBE7B91E28F70C55F44F0BAD93E61BCCA468003DE + 481B9643621B5896D59E2B3A883B04BFF2CE63A7D7C0A6D3685821DAAAE43F69 + F47FD9CFC284BD18239DF509E59C5DBCE5210887BCC8CCD9A4E6648F8181D710 + CF0E47E6A5AD1034694B354ED0EB84673E59609EA19F5B29C4A7AD628684C1AF + 62FBAF982C0E05739EE5D2F4803380F63351B330456D82D2553D2797026257B4 + 1EFE800CF40ABC0C39A4F544D5C2DE0C520E1DC5813D5BE12D1E448DAC215CBE + 4B10889493F79196DC79982000AC5E49AF595E521A3A788B7C24ACBEF024A902 + D4B0F633B6301BA4F01E325B2DA88BB19C475BA7698189E2B6962B605C2DFE1B + 248CAB7B3006E1A09894A2A217E74FAD39A84A3CE09CD350FFEB4FECCFE87A4C + 3925FB2EE5607EB5AF498F577A0656441CCDA7F5F5B1680C045E53CEB86113C2 + 06FC306E649C4A39BAB7CD0E3057923DB8006E71C5FABE2EB82630AB31A8E2BB + 5C885DB8BC11BA64F2546C89A388F6BB3BFCA79051647CFF73C6FC0E2C998E1B + 091A15C732B48763C400EB4AC62F92DAA8773892495C26D01D04D73CB0FC084C + 7744344FAA4673DC698A263DB15A97B34099910B853EDFB6572DD517B562F08C + 620310ACE659AAEA5C9BE7E962705CD265919595610F3582670C60CD1D0A7FAD + A9BC83654CF86C7D0879139D64F09CDC013B1DB1A3852CB2BFAF69B34B53F129 + BFBAF56DC5853D1FAD8CD13130754B849159F366D129D4CB037086D46878BEB7 + 80BC5DE0BFDF1925CB692A09535395DEC4A40FB8B3CEBFD40F3CAABAACA3B75B + DB7E81358140345361DB0F63E848E48547B1BF54BE23D4CB97A5B89C8E9FA5A8 + 97E9A75901E18C8B8226ACB7F2C9103A6DA3987BDAE47F0637E5583E4AD9DC5B + 9B3BE35115A4285D66898B4DF73FBED6AEA8195D0D8562390D68E939FFD23ED2 + C6212735FB1B3ECDC69058C63FC3865DEBFD5C412C8D1F7F7DBD54356D4BB19C + 9A0C3DDE8B43DEFD9C0B70CB67B7017A2548DD93A1F8068886CAF1B4DE0D7B79 + 5D2CBC3BD9D069053E32481F474DDA212BC875D59D78FA8C425229B02B03B8F9 + BEDD01632D183856D68E100B3E9B5157780B17F1966D4D63C8AD9D31C791A472 + 285397502B912702664A186ECD2B444F242BBA38ABBB520683DA3459346FF674 + AC6C32629DC5B3399DEC4D5F480AFE4B29B54E49A09AFF40070E0D71EF577732 + 05E4F7FEBF835713CCF0B872A799F982AFCA3C0A6F24BC799FAA503A74C1E00D + 4FE9B20577BF179E3533DF4513F86CC35396E7DE2EC42B39FA3E5F20B004FD60 + 5A04948A596E4D199E8CD1B76237ACE4A05F4FA4D12A23D3152BC2D0626D7F11 + 19B8891CADA321E45B5650DB0CB7658D30932065B9226D9B44F2F77B4051C0E2 + C8BAB8253F039D70995D87D18D266816239B7F35C6626AB2E34F59F1C5E31A2A + 66385F19D8E6EF957C8EAF8D0577CAC5C85484AF2512D760DF6C1955D794D063 + 3C8A68D9B0367591096CFC0CEB3EE2704EFE573960680DD9514C6B0C51378EEE + DB8D3C2F670E9C9BDD0F29E4E015B2BEE4A0F0DA6F63D99824153C789D98F071 + 512FBFB21E4C66FE2259591CD89437D6CC8F2E485F818D589D195FAFD6B93955 + 22F5517A8A88593D1D62E0C4489A43BA95115C97F44F6E6C50638BC2155F9D97 + C5E8A8BED14E3955ACD72A0847B5750C5BE978FDAB0262F049A1F3D4BB3CD4DD + 21DCAF0E9339EFF592025CAF6CF4C0A543DF46A50DDF2047FFE8A45D42B5B585 + 44ACCD8B1CB127C53A37C128157751CA0D8B5A8C5099335B8B61A247DF6A1452 + FA79435FB7056C44F80887932F174AA8EA3C8B79D2913F2F8618E567420A0746 + 6729FCE79ED3B25D6405E6330B8D816103D166C2AF74DDEAC264A99B1CBB29AE + 958F45E5B8BCFEC1AD517809F88D88A811F0B5E7C3606D2C896405D0CB158458 + 73F53D14BE3BAEC3C485F535A5DDB454170DBD01CF4E4326538EAD5A9749C9ED + 8045149C914E93B35E6A72C17AA44B82C52BBE9F3AC7ACCC2206B15C1F3626E8 + D7CA0FFC26311C98418023F6D5E6280E2717489920998A9275626E4548746C90 + 6842D1A04B0F256FB0EF14BF8739E7965EC1EE4ED41969EFDE296740B5F65EAE + 12B8A23650EA3D4E5F3389FCDA7885E3852608398E4C334CB26EA652223FB087 + 72F739B756AFDA47AB40E23FD434433EE106971E7D4DF8F46FD92148E679AC75 + 938B9286D0159206E5D099F066443A6D5E71618658B9624BF9CEDEEE245E613F + D1CD9C67E76F7C09EA96414E9E1A0376C03C98DDCD8B2BB1FA26B550553CAC74 + A3096D2C051446F3BCD9823F1A3BA9C65716CFE860B5B1284CA5AE8406FC26E9 + 46E3560B2F62FE5C7D4428B9C4198C6C5B691478D3A93E3A1C033022A538A8BA + F5BCA9CAE490E94B9D4BA46A32A2700E73045CCD786DC3E6C802CAE7DE5A8FD1 + 85EF5BC918B883DAA5FEACC1242530B5AF0D3DEAF6D97293ED2DD87F535BB79D + 73B0CB5AE23DD6D8A1AEE5C4B25317BC959F92C5E56BE2B315EB92E5CC5772AE + 02009406A6CE669E22A749162E17A6DCF275D477DAA23CD5A77938F432EE015F + 1A713F67F8A3AA63A7E1ACE5366A87F247783C8DF1CCFBBFA032AD35A5ADD00B + 5F7619A3E6A3004D52A87810CA7E065C240A4CBB39246697F344A036A2283370 + 1B46E9859F6D34E502996605FD3A67CFA06E10E1D5884AE43EB92750D22EAF49 + B33E71187C723F5CC16F40C165E2068F0C1B978E73313D922D11D1B14D7800F8 + 173E85A840094E5FE51EC7CA3B2228C64C91D324976B6C73F37869B51B246081 + 026BCA2B29FA10435286565A5A61B11724056F890771C7632E7CB60E80B7CB8B + 43D47F177E255836FF96BCE0B88B0451D0D614ED9A4264D9789D378D7B2B21AF + 049D40141A22E4ABAB49482199F17A35DC1C5A317B013D54CD5250FBC6EB7292 + D3C5F72D52FCDE01093FA61CEC30A1951CC0D1DA01FEDAF95326006803D6336F + 492A4DAC0B153D831C08EC3C6CAA6290A2AA08A880681975D0786196EF714397 + 6769539A3AD923C9234D88022216045F117A57F53AB2D16C88954D83F4107D08 + A18DB882CC9DBFFFBF00B97912D0956AB7F676BA79FD66D9F8367B40B05FCAAC + ABEA15941381FDF61BB750D52E76970E024B38E2AB21B72555A5470E5041FC05 + E2260C7EF138067945D6ECA295F45CB3079F39F7D9B0F6729C712606196108A2 + ADF7E3029F63918A812E9E3A2A8FE0D6C5CD1CBC5F0409A76C86A7BC49C2D23E + 2729F559D24F660BAA1CA2D5B91AA254592C253320F834737F229E775F7C3890 + 4E3D57F9FD9A666B55B5B3A3D34CD5216DF7347CBF42FE6E4AC6C417C797323A + A91FDEC5A7B5F27FC5DDC13EE2CB81F6975C77C0FF28C72B94E26FACEFDCF16F + CDDC4415A89F0B9073DCBB8C48FDE8BAD2E9987A3BBB1CBFD634FE59443E4263 + 2FB2679ED31CA89C148D3C4343364E04EFAEB276BEE4496988FD814E9D495D32 + EED156854DD4E317D5AF77133D35075C3F9957C4FFB0A215693EAB4D6274E57A + D48E124B04F8002438DDB39F300D0F2472DC1CEB9116D26648DA6317099059D4 + EAFD59C8AC70F9506DD19E112FDE84B6671AC119AF493EF04BF432DF02BD70D0 + 51BFA4C4402E551D1D5C9A733CF9F6D85BA94F5892E51F8DA598A438E24B015E + A1E1BCE64D313CF9A0363894696FC1E54FCCC00EF095DBD7B972402AD6508C6F + 04A0AE1E2779700D95963649FCB5F96E18B59AE8D50F588D50D398662F26F9D5 + 68364713D5B91276345FFB25F95944CF8EAE24E47B22B6F1323600827A7B10AF + CB5BE376097D6E01112993C50DAAEC61179799FC72340A78477A1313CCE5017E + 938E6E5175FCA037024454315E9FE9B44362C980EB08910C5263D06728992E9A + 16E5781F7168507C0A32EFDB7A85FD14EC74C3D937B6AA039F3A8CE200C0DAAB + 49C2C5E19F84936B7F294772EEA4AD517645DBA88C70300127223321EE734A2A + 32C09BC65928761AF0392555D21A61A986DCED2D1282382FA0170700D8B66E5E + 99C5CCF2E441B8B89C28A4AA13AAF7F3D8D537112146D55FED29C8D6B8CA7697 + 300CCE517257A492235C0F2FC2C100AEC70364A49A0946B42B48104B5C4F3BFA + 51F597161152C0E8A76837623DA2994C6BDA749615C7FD87C962DFB500BCAD8C + EFA6295D4A215D7434ECDCB1981815252E574BF0CE99B502C75FBDDACC16150E + B69EF1DF0094ED569C41666CEEC6E96E78D57A63D2B8830DC1860F1EBF0C0DE7 + 07F4E1C7188459A62D4ABC30CE2E35F9BACC693764A9583176CF2907CCBAF4DA + 5B158DFF60CEEB2C735F853676DFB3AF2176706653985059B9FCF639FA0E7475 + C67D5B2E7B7E76335E59EB8C9DC273053AFCFAB4AA8FE190553C7DFE5B57EB23 + 83627B861D7284D4981A4AA3C2D8C4F11458ADCEB495232B2BE22DE73E7C6DB6 + 956BF79233FE2C35458EF4387B65676BF8EBA18C5741F5AA3201FB07013D38F3 + 9A589C4A88AFA061BF5A3A0D911F9B12060CED14AA2D2E7582CC3D814139A362 + 55584DA5E52B09141FBEDC3DB0B4B08F25EB1E8AB54CE15EEBCFBEC06E432738 + 1EF054B8B033404C8B475E5AF247A0DBFF3E4E63935AB17088DEC20FF4D47FB8 + E0734FA0610995BEC1DDA053298EFB091F5CE9C0200AFE6D1A5C938E7987D040 + 521339E7B13BE7F1282B92A0B92B427044E5F7AAFF6F062AB9633D90DCAC8411 + 4B7AE0CC90BD33ADE82B1068019C47157419B536DF4AC68F8F5514043A7A0A27 + 088F7C2F4A4D0F87955F29956756D8EEEB5961358C776B2A7783A15AB59F97CB + 4E24C9265DA3AFEA7B82AE0C1E87692C24E15F33366F6D8D89C2A692610843D9 + E2B9390B7E582F93C52254D1A73EF021CB6D329AFCA450A6CED02A18DF2F72AE + C485266C9290CCAFE9A5B1C4A8D3C73B4A52F849EB9EE8848D68F2E11DC953DE + 29BC4D66BCF135804CDFC59B2E216C9994C66157D298B20905206BBEFA08B52C + 2554D0ED83761DDE5669389590AE2072CD1BF6236A2E8E386FDFBF83B6399362 + A58D3918A1734E46D0AF044464BF8B144EDC98775891641C98B16FAC3E3AD173 + 99E4070963B0CE0B2491A62C31F5D682F3D11E546781D6346062E6583852FDEA + 05D74F6246EF86958578ED04A817E87340C921C3372B9654E37A713FBD2C32F1 + B3A1840DB19D3FED4333D59F386255BFDA2DEDCA91B9F249E566D729CFDF5B5B + F8AB4E99E2B173A0E3BC7357287E8D0398F275ABAD79DBFE32559699F37DA515 + 34225A67498995E9FA74FDED6ABA77539D21AC9E4E2355594911189E4A262D4A + 944D940EC5524F0475E8964B23D2804C6642437A6756B6A8D0EFB9BBE2992E23 + D97AE6A934E2C019579F89139FD3A6FFF4EAD3CBC1C0CEAE7E9CCF478318A517 + 2EB7D1392B13FDD062DC999FCA632F7A2FD996F2BE30D710018AF82257371204 + EE7C35679FB46AA0A7084752CECC940EE76DD40C07E6E02045DB870750EE243E + 6E5E9527EBF06E297CDE848633658A64F3A9D1210DC4A4C8FC568B9055F4E16E + 7DE191175CD1AB1060CB12669F0441217A4AC2A8FE9234692AFE1270D2FECD4E + 6AF9B6275D63894DD49244CA19173623D525C3D61F0BBE4499143F4961371D0A + E551C667F61E56037D7BCFF4638E9A1C223BC4E04C82BCFE0EC5509FEE8287F6 + E2C0C4E7FD0A24229E464B59C2D374810D253902BBD00C70926164657BFB2183 + 0F128AA8863DB5B4C09A718334D3F9C178440474AEE29298DFB8D66E5B553577 + 06B7798C25324AEEB615CD95C25CAB8E10B45ECC12C3A03E0024C722E0EEB13C + F34CD19288A268913EBBC54088290F4D489BE6320E707A105D4DAE7FA2370562 + A0C8C7E97D71E485F23CC226C821826D1AF998167F23B917425F6CAA1D4F5DE0 + EE00DF327358892E09E7BED9EE129CCACF40BE8AE323378FFECA910AF39DF99D + 77F97A86F47705A0BA43279AAF60FC86476A17036D6316C97F59E9BBA2B1D881 + 3E056C23A6F7C7D4D5FAEDAF0F347E5B8E90F7F8A00F23098A3A4B15A0853292 + CA0F52AF7F0D0C635527B99BC738626F2BB8ED73C5684091B5BEB551B03450F5 + 657EF645FE019A00C4ADC1FB9AD1EC0B0C61BA52B9E622CFC5E3B31F6B6E05B6 + 9D3727D810DD2B4B62B9B7F97ED21175603900FD22BAE7F097C8764087329349 + B96B2A6D27429EA0905B00B62DA66966403697391F8A22D924F272BAB2D83015 + 92F26DEB46BD7E578709926D6C4E1576DC491248B1F0A5E7C305903E80D17EF9 + 892EAB60C4459EF9DE97B4D59EE00CB3FD109F179F01686DFC6B7FA8B5F5720F + EF981817A056B94B8DC22E12C321170FA7CED48215BD7BCDA35E02AFD0B0970D + B94C57295DE51991E90A86A3E9969276DD877D8536F5E25F46CFAF1A8D104C2E + BABF75253C142A2A84636B64652F53A540C2919E59B9518A300CEF31FE6C7D3A + EF23362ADF7654DB6DE72BF69489B21346D42EA140F9FCA11E52FE4CBC073CA6 + C158CE82C9B2544D350CD970082DA999916D9CA05F50CECAB95E926B13332EED + D32BFC296E3760041ACBFD9A62E1D9515BCDFF1D6DD3687E86715F516C8AE853 + 0C5658B95C961614C06F320EAAF29BB4E0AC5AEF35836EADA262B269F6CEBB86 + F2780C5422C5057CC135188993583AC64AA21B3ACCC7B86D11D96A477C0697EC + 16080F56A86A995AFACC3C27C3303AE10501455001FA3F99AA80C95D0AAF759A + 6ED0EB770E9C8A880AADBA62BAD160D32CCA10A1E6B64D7786704D3103BCD4B9 + C70D34C013BCC32D7B7F1B635FB3526E561BB2D8C4DC90EC0009A584F893574A + 6A40C106DB5B687264843822BB2718B991CE54154C5EE9B3858BEB2113A86F7B + CDA6083055A6A50D1D4DEE3EF7C119A1BA5910222217AD15753B28D873EBB857 + F6C0858EDFACFC931DEEF50080FE97689ACE70C4A43655F06029FDDC241AF4E2 + 942686B1DBDF5579F9481B1785C72799A190EA2BB82573CE88E6CD163CB7424F + A55EA559EA6541FFBA3AA2A0536B8C1B71BE29A1D6A996E0407931699FEF0F22 + D2BD43F9F4CFFCD4ACB5FFABA04970F9901DD9FF2F7F9887E0F52F6A35EAF59F + 452E67D24E4171F38AAD35A26976FDBD0AC2BD5FC8ADF0A26563F40E38088B26 + E19A043E20EDE5C2D7A894F6CF1BC8B087AF2218DE96EE074CC2B7681E3436A6 + 493967C8E1DB37083834B42F8BAC3D2F26D74FD6139CCF864F5DDB9B440EF30C + E37FB26385C9F8D314F18C9DDC38E7E4A5E517D7D56060C0ADAA4567AAF0712E + 9CAE4C72047F7E516E377EAF47D9B30BEB9F257D09395F7716EA7D06B03187DE + 29E73B71B0DFED924F2C199D3CA68FA6AACD3B045CF2CD3BF626B32394084B58 + 560921CD6E5F1898EB541D70D57176FCA266BFEAD7B5D22DB7644A879A60AB23 + 18343EFFB88EFA76FC9CECECB467EF3E695F7D5FD28B575FC5E5D755C9E8FC87 + F0B2E0905DAC22338CAF33444938C2FD998E4B4424649C312EE9DBB63FF00755 + 054ABB0A3E56C91F3B484938F415658B0CF3B91976DB521138B5EB4D4C747175 + 846C706A48723B14A2A31E739F25A4181FF1BC0B54ECFAA865739D29494B33C3 + E829CF576F731453D261A3EB5FD8519BBC8557D1F7C4F4B1F29335C95C531924 + 5CFD2617772AF78C5D14415E23CA16CB4DAA75243F40A252A1A3FDFC31B06503 + 0A3F295DF7435B718EE57810267594EA88F7E3461B83A3E545297D7AD260B79F + 65A7EBBB7FA49F0F19612C248AB3508DDA37D519DF2456A8B1BCFE3C370DA26A + 433C647FCC56167196E9A179C7ADEB1D16C1A339EA2DB3956CF5CDF85401F527 + 7E3F1165F6B29C76286BE1721400246C8C742041A2781E2B9DEAD4DF2D2A1B2D + F3FD131248FE3626374E1426F50F3A13BFE09384EEE3014B397B50ED359A1D07 + 362D1EC61269C1DEE51569E4C8F1908889E314D6F54D855AE99C37C31BA8ED53 + B39EF95097EA8907D2B48472FA112D8602323A1FE609A2992EE1C538EED4D4AD + 6744B6EA69CF32CA397A2368458EA6D2FD66F56C12398A40BB4E9B694C4B8BEA + D0D0665A76B9D7722FA7BDFAA7FCA268C8E6CE6B625F8DBD0FE4111239831D34 + 28DEC5951AC3BA5EE53DD1521D7AE1AD5C106CEA7142B671D30EECABBD1626B0 + 045F24602B300C12A8E1B18D6D242110A740F7821F6B00B8005349B70CAABB1D + 7A9CE8BE1BED9F08D189F566C0A1FD93B74A3F489D4DA2608E5849DA26A6134A + 9597AD62E05D052B544AB5A51E263671073CD18860E0CB75BCEBC55463EF645C + 5E82AF7E8C558C9A50F688D0FAF147565B68A5BD18DD7293F71161B8002811E6 + 6CFC9F58E203B74D0328ABA015A9F25055917E72BA59034C40BA080FED7FDB6B + B8448699BC0E141CDB36F711A5C0CFC1FA61F09277BB26E61FA777C4E9F0ECA0 + B8B2AF22D2F8CB593523AC94B148C2AA5BF0FD54317ADA219BBE6EFFB8C176C6 + 56EF79965C2391716D7DE5A6A78C85D738303EE62CFB79A741C522AF90699441 + A1DDF3873D5E94248788C3030A699529DDCCEF984BAFEA0A8CF3D298AAB59FA5 + C9D3CF42520C433D4E8A4E715541D923B8CCD97349BAEE3331A348D816753596 + B203C43E788FB27EEC0B8CF2E47C613DC279EEBA1F4F817EC7929FFD5692632D + 9F059190160C48EB567F97B20C5F943EAE79481C9943171E75632F2E3C3DB11E + 4B38495680386AB64BE0CFEFB9327F894E84141D4E0C0D7A754EACC1F5062A10 + 1BD47F8A939DA93F11DCA910CF652A8E22F456C021F0B03FD167B59B68172126 + 7E30C98B29EB1886137BAA77323355EDEA9C305D37BDF057A99267A3AFB4BCC2 + A0FEC99AFDC91D952AEB71BFF3C3B6DC80E030E9FABC9880ACC1FDD87CE06C02 + 765F4618AFE2831628949CC50F48A42182DBCDF73B6B6E247CD56CF745E681BD + FCAD4C93ED49F9096001AB3B42D79BD66FBAD718A2E9AF730C46256453E63BD4 + E0DD46A63621351646E4671F5016B5CF067316D026F93A8B1052C659575E288B + CACCAC45A4B7B75D82F46D527E96C9FDC13D584217BBDBF4C6FA355E296CD00D + 30A23C198582804EBD8029003B3E7FD13C82E92237A8A766C99C6ED9382DEEC2 + F626681393CADC562880B759D38E8B3D0C17E9ED7EE406F7F3E1B9CB60172C3E + 5CC9D19DE56AF7FD4363D8F7A4F5F0F8324D6618F314AFCB34D0194F33D297C4 + EA1CC5E44F934FC214915E916EBD8C2BD6F7614000777C2CC9599259624510C4 + EE3DFA83F3D47778838CCAC33D864EC80A74B790668678C9B6C84E7A960024E9 + B730E588BA5750470FA2B126AE39800DE2907DE5F38832BC68075F384E0F987E + 109BB591C6991714BFF3739D557C4F35D9AA131E31DDE5C43310CC8A9E39CC44 + 6B8E9F887CDF5B12987A309DBCE116E4E7FAAD03CE9435BEE38DD0EFE4687EDF + 0039F47C0D17867F4810520C55EE949B587A804EFE8897848F8F1EA0EE65B315 + 848B6F7F6B818F735AB73A9CE01934039A13A195AEBD78440097B8729B462981 + 2C562875A40DC9D3D02F79FD1CBE7F6DBF3DE4C982BCC4C24A8E10F3A3805295 + 4347F3AFB8083BD8C4F47A80D02B14D729278DDDF564DB24818EE5CE0C40FC7C + 8399F875B70FA308480B2F167333EBE09C721D1E152B8D2E47C8489ECCAC5E7D + FA3716A70E0EDCF7A016E6E2B1A3DBDF0AB229FD12DB263EF6245197802F6800 + 90622CB373AD152F5E719C55C132BD4CC7AACAC881C8E33F4AE3216FE3D75632 + 24DA1DE8D0AD01DFBE5E7B9FC64AACEB8F8A6B42F4BC3723DCF6ED7791927AA7 + 7B5FE0BD77DB6AC42F14C99939AACEA7E96B9773DCF64B182B2360CAA11C9C34 + 18F79CD7BA354A505C4F0765CFEEBB814D97560E8FB88F286D513201A67A5D3B + 4949427E72BB6AF882FD9557EECFA3BB79B7E4B123969FBE75025BA82EE9C686 + AB476F5BBF06B0FB041C36FB23FB87FFE819A8AC2BFDB8A21C594A1CB0AC407F + 880B18823F2D64B99271544D46791D86345B8678239601BA0CDE01BD8AB4F5A8 + 4941CAD19F19DACCF0AB150E4480667D9318BE27813FEA7489829977269F108E + AFFB2D8F6F1F8131BDC3939BB45313123B221D24B6DFEC6808D488DE4135DB49 + 27A8367223A2D823E3CB54F891F5DE465EE43CF72CD4EB3FE662913E245987AE + F28B36CADAC2C65564B8AB6A33D75DFE2AFB7113AB4B81B3ECFF1C846F70D252 + 5217D88B9DB1BC3CDEE0737DA1527A22740CC3FBF266A2B05E6637A78516B8DE + CF264BA66487E7AD69E74D23081FF6AD7CA682DC576787734056E88BD71AEBFE + 6DB7BDD51C6A58843AE60A5DBAD36FE5666A2DAEEBC9E29CD1CB9480741155E4 + FBC4F85D37290A691940AAB7F7323D0FB3244245031BD26C10281982C6192EFE + EFF891C7F504504F32F11165C866688A4C3E78A813BA4D6BACF975D09C4AD7DC + A638F8D7DB7CA8CA2A02F6C9EDEFB139F54D2225FE11E185A5062F8E0B924F24 + 1A976625C32A399FEB50A74CD8A44BF2B71478EC92CBC0B4B690A7FE894561AA + 34BE20A35FC685E74F3C31E2979D60405B983F197A48FC145063978C5E3C23D5 + 3768833D46FDBC2E2A170358E53EE745242083A262670DA2F2EDA94A1C642B95 + 4372C031BC2760450B44BA51F043DE450641F2E3C164511CD60CAF9832F65756 + 87E7D868BBB9E77823ABC71A5D7F0FA25D52967F1E50397731535002B7A5B7F0 + 8DE5D1B4B9EB4CB8111C92D222DBCA5EFFDF3FA79F9647A40046AA3037825D25 + C0BD51C806422DA17EDEB60CC3D6F849BFF906A31B86538D08518F5D45A2B3F7 + BB354DE622676629E3BBC8797741700C4D4B18AAB3E07E309AF4595749CFEC4F + 4C86EE3E3621EFF286F35BEA6576AC767209B0847DF10D3A1240EAE771816EFC + 201AF6EFF54F9BC4EF8BED68C344E3378462996DF1D42102575288579D5786BE + 15BFC361C79724033F992BA2CFE49B6FDE0A308B822033497FBF68A8E8999427 + 5430A85F367F9AFD5A07EC5BA1054DA5BD55238834654DA10E6B0FB73ADDAB10 + F87F0E0466B00EDB737083B2E1E369431E29C520AD4DE55AA8545AB9A44CA1A8 + 78617C9A845C55D9CA054EB4D9EFA7542B1ADB3C51F7A40D6AB3110C72B81637 + 54C06F9D73B3EA8DAD1CE061986EE8CE365B2B7510EBE5CF0BDBD3BEB90197B0 + F478C1C1E5D23D913FA51A4B3F8B08E081B80C1244D523EB68515B79749C6D4D + F310F8B6D7CC845D14641C834363B25F9D25288955EF17893B18E94650619EB7 + B90DB088E64FF909DDE32E31FD6CA0BE9DCA04CA8DBD1F484EFA712AFCA5AC14 + CAA29F3A689586B309E565B4B75808358F7EACECD4FA3A330CDC08DC71E4B358 + 3272701505D8FC901D0396D361FCF8823E2D6B21FD8A99B421ADDA6FB4984F0F + 3E97996F7148581FB5644C293364C37CC7B7FFB41325CB918CEAEE4461B21754 + A1301F9452552ECAA4D5BCBF9E1BB47FC5A32DEDE3C82AE525E93AF1464E8F23 + E4D79B9A9A4C52E11B9F1AC8F991E8ECE0327A95B0E526F64D3E9CA33D46F8A5 + ED0B0B73484915D889F464766C4562F9DB68F6E02AA938E483D85FBD4D0F31CC + 3A11226956F493A766CADD9D116D55929968389AE486DE8153447BCE4B9C1748 + AB049EE8366BE4F17FDE82656407A2E0CDD3C6B9478E520EC271DB6B3DD38CE1 + 1A53D43C53ECCB217F76C3B209B63A82F5620B68740194148C8BB9927FFAA4CD + BC1B4A4BFA3196175B07C01B70E2BF076FDB4DE73D1527724B997DDE30C1545C + 6B9747CD8A1F4A47DA005FEF916126AEE670C077F47AE22353700E1DEB65DEE2 + 1ABC09DB321A07C29B142D8D5F7A6FC1E4C4609F8EE64DB426344771217F8491 + 8E833A57C7E6FABC798850B7E641B9967A13669D3125606B52C8ADA42572205C + ECF5AE70A3599B8F5D3DAFF2EABFD945BDEBBD1E09D3ABBBCE17854E0234EB6B + 8BD99CC30C02725D03D3ACFEC98B749B883702FE3FEA2383E3A1108DFCFA256E + 092331153D634ED8774B262ED467B90DBE3D69D40AC86949CFA1C939B001515A + 5D93C4B1EBF6B5A746A58C690807D51D9B2C51D8AF832D319379026B79857275 + A918B20E3C72AB6F179AB072EA6932EF6289474DD90D1DC76E166B75C35309A2 + B75ED026E4B8FD5B4F5758E91B843D9255226443BC0019492F1AA76C7F6E8035 + D0AC32E2E4E10B2FA7C15D424F2C24AAB8656DBE4D93B7FFAA71B94D58DF3D97 + 136431BD7515002165D3AFB984517CCB64EA3E2D2A1ECE65B66225FD334B8E52 + F9AE94210DC1B5AD7D724ACEB62268305686AD4169D7846656535329020B78B5 + 8D903B6D8A4EAF4A4D34D15D1E952F306377A4BC2E63C494088D39CF1208220C + 891D4F74213ABDABBF5E2E83EEB243722766FC9B85F3922C53EFDC6E3C5D3FAD + 3528E5FA3ACCC0D54254C7A67F5BA1609DB2BB4826F4C41FD4C2BC1B350FFED0 + 5AE2616A5D590B14E62A0F0B89BFBDCFE54685E9575EE188C0A590D741FAF3F0 + 9121E6CEDD5CFBCD32F388800EB8AACA6858571374CEB69AFDC7B2375F09E3C9 + 4CD4F8D17C6ED8857B42F11902B0F52A8DE9C976B0314DEAD3A6259BBEBCB6CF + 86811939B90D1C0236FCDDE6C4C115B3E9C41B07345172F64BF1960CFB8A235D + E244F725F2EA97827D142C72C1EBDED319034162E868316B87786D7CABB008FF + 0C7D6B6F14455C5E48E4A625F0509623038C3EFB6A41FB5FCEBC31469E0DAC56 + 2C0F6B048A14AF8066B33F9A0B23AE35A71D6EBF2A138A409D28523C8849A05F + 1005671069E2384BD26634EFAF783A80BE3D4B43098EF36ED7AB9E73B4AEF8DC + 520D9F0DEC53420E82C7897A68C2EB59CD91E501FD9DA41F3F5148F4D3645B92 + E40DBE7F50198190FCCFBF4ADF73D4AD67E2E1C871EA93C7404FB8068946709E + BC872F1B07267124C1C6DCF80A960836ACBA9EA3783C8DA29FF09E6665ECD7A5 + 33E3A48F2215A3E565000DD161E731B1A1B3B8383B189507F145B5151572E7A2 + EDEC22B2847DD7BDD5387D27867E4D52F9356092003E4D05249768A0EBFB39B3 + AB7660E1D5B75C98AE866BFC060C8712B0BC3D77732416506D8ED23E34BC80DA + DAF2DC7C6E491AFDC16C9B1DE5A2F925747035F1D04A1F3E445FB51B5FBE74CD + 0D0070E82E45B38A387351BFA740D8AA70BA0751B11C03E632A8AB6606711BA1 + D11E0B2A02D80E444C1AE0AE278849AE0C239DFF6730DB28BEDAA12B129787E2 + A7B5B6ADF3604701AD8213EF3749D3C7AE271E5D8070DCC89A661BD2DB88D65D + 56667048D3551B925EFD5A6C282D5B662F46B9D95C3A7DDA15A05E66889D4957 + B0BC4F011C0AFD188C56936BD4717F7BBDEBA6C2A6C097CD6B3E54ACB2C12C59 + 9E7AB851FD51E6C1475FDE4EA1BD7EE0A26B0C7EF7748B3C7C15956351749B4A + D7DE61CACE22AE0589F7DD2EB5AC7CF3EE9F523C55553591395ACA160EE2DCDD + 5D35BCCA47EFC49F509EDF1ACAD935C0CD189DFBF9AA77EE1FF012DE3D50478A + FC83EA796C24C03EF69FDF7FA375DF807A6B7F49C23D16B007723B6F7B6B02E1 + 767F15E0154A2054FE7CD25CD21066F17FDD30D413FD1CD66C1521C6D296FC46 + A8DE5162551C8D27E91EF93899240A4DA981E4909736401773FA84B1954810F0 + DD3C47D581A9377DA0833C36403725D087B0958610CE9D107F74E24C7A1CDE56 + 08C40A2D68BD0F7F6EE1337A4ACBB408746F00940EB70CE9764B3C0F765DD85E + CA43771FB1D9578BBE0CBF45B87FAF22EEADB162597C1AC28A5B266089AF44F3 + 70BA8600773B11FB23CF8C10E19144BAB82727D10127132557579F1992F799DA + 268A0EE142AEC2F819513A0165EB50B8BF7EF19E46E6289DD15C6F741E3FFDD1 + E4BEE9B2982D9245CC21D6A76150C665D6C848FEBD2F3E89627401F845E1EB59 + F111AE9EF624CF20CC946D5D6A722C6FEDBF29BFFF0E5669B969373C6512121A + DB1054EBC97D3F1AC892CE0766A91990375A7DE5319CF8DB3B6732DC6314C855 + FE1DF925B9B190518032FABC79B4E34FF7256AA9F1297291E7C78F134F4C6DCF + 5A3ED903BA50DF537D447D3485D861EE30489706A1764AAC789EB91513DF5568 + A23FFBAC8BAE89CD968CFAE84518C79FFB25392B7A596E1F3C85B2B928582D26 + 10C6AE3E5210DACFA85C354E69F6718C1DFF8ADA420979BB65EAB30F65AE6CCB + EB890D22D4305B9D843DD680D29E3D87C4307DA287D721153EA56F05C40EB576 + C296D9215565D64DA00AB12F99507BB1AE30E0A6F6078E5DFFE42126A7CC7E5F + 5D656EC45641BA70082376F3A41D580D6DD877C678E352648F965960CBDBE67B + 18EFDADF4F3A80E2A28D175262706430C2D4B8AAD52B01145E290A1F6769EB02 + FF9533D85E5FB14265F60BF5BDF42E1DBA093104354D45FF4B44924BE9645E46 + C69FC5EE58047832CA192A315F181AC5F857E4CF30CC92670C26F909591B05EF + 8F3CD433AED18A74DB170CAD80061C2169DF14C36A9D6E3F13D86D7F79177E4C + AC322C906643EF055E2E052414A671EE61540D2CF6A7EE80FCC003E7FD6E644B + 7D17B20AF3CFA1FA2EBAE3DD0A8A99864CC3F51A00E140D9CB6924EFE05EF5A2 + 4B09069BDAFABEC8E63E02FA493DA6290A0635AC8E09D840724D87835EB62235 + C4A2458FE8EE5EC47BED27B868C5FF736B4EE76AF9C97B49634DEDA4CE963115 + 99A54BED595FD4D8A06618AEE09E93CDA6A21D6140FE3EE91D6B03CB1E6CDC5B + 895E7C59A97C67AADEE064A573F6784EAC6FCAEE3E25B91C8C1EA5D8C99EC9A3 + 5B7055DB22BCB5298C8F505E4A7E4C4A6D28B1F4C7BA90C355B637DEEFCE1C81 + 66ABBE2DD2C5160930610A9AA8333BA7DF4D514AA84E2A3BCEB95364C13215F9 + 90EDCBE2D93211709EA7E08EBA080EB0FD52829DBE8AB8E493F6694CBE891987 + B92018A765E34AD9B2A0647300FA405EA14BBA170EA676ACB75700AA4448F63A + DBDD15F4A2F8D95F860DBF91A470230FC081948C6525EB2B18C2910D36FAA938 + DADF468945C302CEF446AF690A50C662529ABDB2BE9E2FEF832C5DAB3B3D4A7D + 5F3F55F6646F43B6ECBA74CAF7B7B0B48AD6DF8C04EEDF7508F1E4C58F46E5E3 + 23B64621C34E734779B51879758DD4E5A2DC27A1B8086C95653CB67C8C4D5F86 + A314E0FDA3041030D3033C69FC1EAECB4A56DE9C02B0DBEEAE580774F2DDE02E + EF724E4CBA15F80994AFF1BF767DBA674E70CA342013F48E04F5588901D93C8E + 366B4085CBE0C0BEFA5055D0E8780DF299337057902C608BE3DDA344744C30A1 + B1163D88CE663C5B50E259F67BC380E95A7B9EEF5194F79CD57F42AB2133FE89 + 0635366156477CC70530A1F98C13970597FB7D97CABFBBA63815D33922854FF5 + 0CA64717CA0511205814684C6F0699142605B9AFF00B4CE21EF876FD7EE22B12 + 5714C141FA392DAFD25268C9025A9327DAA5E662B3DA415A341FDBCCB44D0957 + F879F15D76C6AC3D807C5AD4449EF1924F65315030EC5434AC24EB154DFB5295 + 2577B498F10A4A8CFE021EFA073FA5A777F0F792DC61D7CE981716DDE55DA41E + C15C834629A243F1AE244BC5C421F37509F99BC3775145B8683AC4FA10FADA61 + F71F8F48F58E928D0FE6E7E4D6A5E37089AF77E51C7311E8A0F32D84FBACC126 + 86E6516DA6DDF0242220CE77F5D50D1E6B6E6DE355430FC5CD920BF06C2223EA + 3C206D35CFD8A1F5988336D5334A0DB2EB34E20D42285D118B5536DC9D50B438 + D43B5FB8D69C9A5A4C8470B4DF3ECCD6CA58184ECB25932DE5ABD70FCE9AEB44 + AAAF0A59AC7FB023C973B8EB0767A381F9F4A71C7420BB46A1B8318862A8D60C + 0C25765F04FC070B31E29439EA218F6CD19914A1FED3CE31DCE0EA3BCDA078F7 + B42351214F924E97C1A6E1CA3189328C9950DAF81076C40AEBA4581803EF2CA3 + 44832AE617CC9C108BF2F836A57F39B03923AA72C25CF3C5A1D9DDEF6D3FEF92 + A77EA461D3D1387B723D51D293D807C0AD6B1322B1DFFD6D0A8B7FBB45AD468D + C7682D3638FD681C8DB04EA62495EE1D40731870E1330DE4686B6A1FC57FC0B9 + B91CE8620292D4933E105F8DB652307B0CC589C665032A8EFA520140A4816C9A + A1FDE1AC1339613563613470D11C4896090B406BEDB487A99FB80D59CCEF544A + 69D89C2975AA628EDA8EA3C3EE79D8CFF55B37D762035B35EEC0953B609A87ED + A07F15575959B7C1B3FB527B652CBA6201DFF49474F8A5E6C0533DD9A54E879B + 9E74D90F40DCDA91FEAA600810577391F63D5A9FC4A201E7E5FC1AC0E67098A8 + AA5177F97A8FABA86DEF04630FA5C126C250FD78A9183B03196758017C4920D6 + 3F6A0F9185CF839FE624687544B22D73A0879854B1F758998DBE99E4F93FC9F2 + FF197BAD05FC4A2CDC03513B7269355FB93E8CD3469167280F6A7B5F91499899 + 8717AEFED40CA8E19860B9852153AE823D360E93FDC613EC65636FB1FC444E6F + 453B3053D3F19A9A15C1B77C52A922AA1F7E0ACF2D33FA7CB717833F5C02A038 + 85DCE30FB7A8A959C46C87B391A424CDDFD3947BBD19AE1AD606D6778E096A77 + 61875BE860053B6BD6D6D72AA6F40DC8C5A87567A04A009284B5D849BCA59DCE + 84865EC18F6DC9155390E342A2D747EAFEE01DC2797246C74AFB72E3106CC1DD + 088998828ECA7D712E7BF7D072E13F962236B5535BED7211B93E92263338030D + 049D83AD6D65E18238F10C8BE0C840EF687A9CABEBB4947E8C29919E686AC90D + 331DEECF0E5D2BE90B2EA25C6845F41541D1DA8461AEB6DC615A2B4291183C96 + 1DC7124E60D90247155E4AE4219187D68F2F3D1943406B94439BCDC45126C5F3 + A37ECFF4968EA62C378B34DB8F147088655D97AFCB39BA340438439990358948 + A7C3F9669A4D1B3B55983B26B22C0A9031751BFDA3C5D9A16BB28A554D8DB5D7 + AF7B7C7B49355E12BD80978C685CB44F1868CF4ECC6C1853CB694BC7F614A6DF + 781E3AE91C5BAD14428B7DC886BF1F23F6B9E319FDB69B9DCD1F058EA837F581 + 8C41A19061716F07C5DB7154011F3655E6B1190A7CBAB83D61301EB86D3CAA0C + B67639D42ADE7BF1AD5E33101EAA2F73F7E19CB51737F8C64AEDC431A1B0A869 + 488FE881AADCEEAE782AF65472F6CF40C90BFF0727CC3548A2C464DEDD7CEC87 + 054FE75CC9E1E0A65E3C1AA23223E1EB63589D6E006B2E13297D2CAA20FBABE8 + DF414B064300AB340D964368C1F7ED0A80AE4FB79F9415F23D47E7D89C246AFE + 1C9BAB5B3A7C2B59E8AF90A4DF7B93A781939002BC26F7937127798774ACD9F4 + F6178D3B4AD4E9BA15DCE8F3A3CD1D5AA507C57E4845635FD2513501FADC46C3 + BA958F7A047E6C898E1B0F9F58FB711552699D5D967750BE5A1BBEBFFE1495D1 + C311346DE711A27D14A8B79D9B3284848CB39DA5D0E391CA9EC58C505C4E79EE + 22C9B9F7D5E81A2CED453A60B50B977D75B11E90E179376F9DF1631D0A8EB29B + 56689236736632FAC0B9DA43821897B2821B0A92E232C4517523A2BED0AC52DB + BDF95ECD3701D49980F11E62E0BF5F5189FB837881FEFA9BE72F570688B0D9E8 + 3116CFE30171A91C4296D23008531529738CD7DA87D2368CF44C088FFD427793 + 5F4891E5CFDA269FB17CEA56F4A63E3E3A2B61518D85D2F47E354F1159D64C37 + 2045BDD8388231170087F183AB1A98A71165B606A2CE09324C659BAB9A68EB8E + F1185F6C81BF2AEE60D466007BFA3BFD1C63385A0F42221F1F8E09F7B100F54A + EA7A328D39572A4B5614A4EFDB8856851F86C428F994EFDB2E4D643D9D0B5972 + 8A9B103DBB883BD2376E7E5404464C66B22499509C540D5026A2D814493DE73E + 73C88DE0B93538CA4E1970A0E912334984F908E8BD66FE6A51FCBA8FE8DFA5CE + 4CD0205C1C31A9AAE0CCA8514853C4D3375B411300FDE5220CA1F4E3E935FD91 + DD095D8C953039B9DB8423E13A4F2938CD0FB4C28A0CCE35F32DEB162166EB41 + DAC441EBF36C720FBE78A82B730FC99E0232BF3C34DF77130BDBB9BE25CD84F9 + 9DE7858DAB7C069EDC0E52A7AF48F892F296A8B74765E0C1FFB4C556157A1DD8 + 36A4A0951DA6DF7C6F165917DD250C416989FE4B795A6EDDC238164405D3C589 + 799BA32DD84D3F95FC9DF4AEEEBDA45317C7FF1FB3B9A510E34C3D314C693FD5 + 0DDD354540F6AB9CA482CC0D8EE7525CC39FE02CC6119E3DB51EF35B46B0D5DC + C782514EDCEF236B049E3A2F3CB58F1C5C7BA576CC872A1520769EEF01B8487D + 06325BB9AB7BACCACAC78896CF5C9063C8E3170D7315872397BA90883E32E3C8 + 3BDE728C9131F17A9C83417F4232AA74621D7AF9B955AD7FF83D5A2A8863D0F9 + 0A38900B85E8131296F178663F9CBAD67EE24669B1019869D82019D21CD9A71F + 725F5D3BD402E595E04455FB58D3BCB8EB3175AAA9862673F34A3AF777179CBE + B779C3BCEF486D0DADA9E44D6D5250755A687103ABC95CA76D963158D964B2BA + 61A9B918CE7709AA1F8A6A856F15ED22404E4029579BC844E45132085075C579 + E7DA5042AB06FD248BBC19334A2C0C8F1B61585435E668EF31FE709E7DB66BB6 + 0CB50CF17FA3F62BA5556CDDBDD1D61C9A36A0204CF93C06A99DD5290548C3D2 + 52B1FB65B4485EE5F1D3BFBC8FFF7057A143FDE170455485B0FB59048807D119 + F1273DAA3909CF4C567F6247CCC37C6A0D96E35D376349CE34868BFA498FE20D + 4677758363362D6B0C1CE9580CA0937B765C73442A9856966490A9A125277067 + 5C8D4C5B21168023A9843EA4487D0FA0D3B2647331BF9E4FAFA386418D2F3686 + D16001AF404F3431D91E2387D37002084BB52C06B6C0910B8D6E7B1FF5C28E0A + 59DEA8A41626A75AB96F64B73E3E292F2149DAC76BEC2115ED1953E55C04EA22 + 6835C39ACB832B010B418F28B6220F9A7DDF0B13602502FDBDC16EEE0C2336AD + BDA9BFC3EEC9EE0E701CF563CBAC9750633A387F83186F25F3DBAC06E7C3A742 + BD8CA09775041FE8D14910C5B037FA8943810CB17E91FCEA33D047490D660415 + 288F7280BBB73335BC6AC13B4BC92E27343EE18A71EB8A6A2B0378EA5E437A13 + EC5CEED928B00A424A3D6211707675C15A6EDDF4FF8C7C568F61BFE91F22FBDB + 708D359524FDB63074D14C4B84AC9FD47AF72F4EA4EC55B09875809AE03AA6D2 + 8C58C1EDCD785C8F37A9657933C53E7063F0F672B5DD1364713027D624941B69 + 23CB7D5D429F902C2E6265EEC5BA2B5A313E408E836DD6ECAB0D489353B6B89C + 25A34D0264201D629A48C5DE98220A2DFADB42008C44AEB6ED79ABCC0D3FCE87 + 7C656D041B44239B800B3EFFD51BB58FD7A40296D04E3E14D38D90AAB295C119 + 836997418B3135A2CCD717CF08D804AA99326566149722707D2B29649BEEE85E + 4BBDB5E3291DAD9C61CB401BFC04B6749F87C98E08B7827D6600E864B8807AF2 + 5018B4A3B6BD85E5E1DDAE970980DCA4D892A397FA138FF7B1F110DB9D64B7B9 + 5813F362FD88E14A382708E03D214424EB5912A58D0E7AA3A9443E415B4B89DD + D4B86C1AE7D04F4F1E13F1509C91EE9CB6D22B518618F24006F6F41BA0E4A82A + 21337F1992921CE6621E407F7A074249D047A06569D813C296486F35CC4F273F + 4ED41FCDA04474808A868DA4846832802FCE9245417F8A02CFCA12535C202AEB + 700C392A2007ABCEDDB2A656E0D96BEB391BE4A99C1A8730758DFA165A5C5CDB + 48E37CA53A476C526516B04A6E77AF2809DAD758CCD83DC781BD0F6F415C42A2 + E4B1A41BD2FA4FAAAD79665E16729B17955901670C764B811E283A83A70731B5 + A1D68594CAC493177F3CAA5D103989473C67C06E7AD2472D95D416E5711CB49F + 778D452879A04F081EE676FD5DC5CDCB17FE5BFE2878CBF15E8F1E51A2B762A1 + 6D927D4C5451E7F2B55A8DDFA4872FF91A25875031264E1F4467AF7D5556B701 + D62105CEEAA8DDB37FFF684D014E08B7516D9FEBCD351D41639556018DDF813E + 538D0D35ED2D1CA9DB35DB91E60C52D4FB88613B4D0CCC6AB5040B9D30D316BA + FDA43EEC383C989D4B5CDB8BA222E2763A386940956AAAD89E69EF5CEEE485A7 + 6EE345E3D097EA0FAAD6687EF45C8ECB7952CE486E7A7278DCB3BD99E61704AE + 5DC3141A1412CCBD4212A6BB712F87AF79F7445576186350FEA5B2D268DA12E1 + A03338C52F4769E87603A35066F95BF57B09293C3C56E9D3F90525491BC0A0CA + D1492321A9661229B729F39237FF162DDDAE2CF20273E76CB446BB1046DD68A2 + CC604B484BFD39A16B6EC816B75D7ABC056764F837FB66BA444FA0DD2B84FA92 + 20BE382CEA729334886619BE97A2BE05D5FACB74BBCF0C14A9BA760C3406BECD + E2B7C36E1D3725592BB69AEB4F513009358BCA8A5DCF1F1BAB76BA3521BAEA04 + 5E65387BFE6AE2418CA1B4E0792EDC0D054249F749241AE4F67D86EEE0083086 + 142B6EAD4363287AEB292280CBA489ADE71D1E7D96B84F6C68EE7F78CB9240FB + 2B82DB1FBE04ADC6B543D542BA972E8DF92219005681276B2BC55AE01CC8CB19 + D513C23A31CB98219D5E88FBCE25B4F776929DBF7CFC6F7BFAD7475DE70DB59F + EC8268D4EFBBACADD35099119792FD3CB5E005F88240360DDA109D76386A9E0F + AE877A2506D9CB54BA02E48AF12E43CF89F56E8DAF0F056412B58C0B44623B15 + 0A5219A0205EA842496655549ADB5C9C25BBC06C808456790843199C26B792FA + 33CB5131086CF80F122907949A321A74F0ADB392F5A0A60B685B9FAD427DC7D8 + CA3D7A0C829DE1145B52AF7AE556E59E3FB59B11D9D5423F5870857FF735EB96 + 370BCE3F9445FEE388102B7A14D13CA61BC45B9248F39F1CFC7CEDA9EDE1EE62 + 353202C0C6414E473DF07D13542C1B0463D466D563F1121B39202843EB38CED5 + 582F14C1825171E8A8534D7DFAE2F1E0A2A1055FFD02A9AD2836BF4042BE53AF + 8727C1D57949857184790525E4CFE9FAF24C14D6ECFF944D10C665761C8CFA54 + C3E22179DEEB3ABD34010C0E7FDC965CAD61DBB611FCBADCD26D86D65A639899 + B0EC782E61AE34E1D6F7C05C98238C6AEFBE5C64136EF0309EBFB32874E01364 + 972EF25E4F367A4E8E3857766A4D6F975321A00634EEC3AECC51814696AC87CF + CF8F86547DC412CDC8FF14CB3686E3E622201C1D817500626CF13499076B217F + 4FDC7B05B68AECC357C769F823569693E30E1FDAC58CF4E05516597E3FB25F08 + 6ED15240E21370DA6D6E26329EE77FE66A84A5F1248A38B940F66220A70D8531 + 107DC86EED783BD4B8DCE17D6E95D1E7C99FD9477DE77FA5B3B9FA1542DD107C + F41C0DAD5CD6539BDC892E7EA2736E93F03005A9589F45EE7ABE2769C190CA49 + 2D18F7D7E5F55758E82EEA4D449AEDB6929FC356E71F0BCE924782FFD4B79493 + 0566F4C2F4D78D76928A3343F138ACFFB6132227C9F7481134F10E7ADCD870AC + 0E62204AE0797408ECFE6D157C1E7EC9D8B3330B23CDD862BB3EA900B11ED99E + BB0DA2171B5937C0CBBC9E5F6C1A3110821681343DD7C29D9386BAD229486B62 + 834B984A75866163AC8A431B8F17361568E830CCABE56E460F62FF394517AC7C + 6236E9E6B8FCD50B66B751FC94EB77567187810F1F2770C161EC5BCE0D4CA698 + 3B1D62DA9AF64A0A0F72E1D5B43D3B5CCE9A3033EC2DB6570A52A44CB85EAAE4 + C4A3A31C6883AA3D679DC430FBD6BAF040D49DB896DF909BBE2D61AB7D0F7F4D + 169E068FDD1C07BB68686556DCC732337D304EC9C2C7CD5A9EC36C57D24B1277 + 483793270080079D95C8B0A64BAF37715BF44D717D2769E17150C023EB1265E0 + 0D8E85B6E8BDB396C9C20030C9B2613D24E79960735567007260FEBFBE22ED0F + 87FEDAC76CA4A23A65EC68DD9F90DDABEBD698107FA69F218A8EDBD534849372 + F9B9D99077BBC5B4CC435C00C5E05B926372FA609BF5FC9D0CBA81E28EA12A9D + 4F72B5E1E2CCC5E1892D4C0C86FE18464A87F9AFAF74B498290E0AC45CEA3FB6 + A449CAD62B2AF4F65C5783A0658F9FCD260D1DF1B9CA70EC8D6D7A59F0BDF9AF + AD5AC307C5F59D6372443118BE4911643298E849CB18F3C3D118EECFA212FAF1 + D0D261E5E575842E5BA90657BDAD1AB05F02491A4C1F5C1A05B8D3530CC35C4E + 418D971DDB663C696BEC344B5543F9E228C4DD093B6538B932609EF1CB7AF1BA + F7D7BA53026C52A076648FF0AE7E824689F16131082459366A783E34B0758630 + 0BE1F2DA6AB5BC02A3F6E48F180279B32C40B46BFB5E4C69D1 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark + /VAIXHN+CMTI10 findfont /Encoding get + dup 11 /ff put + dup 12 /fi put + dup 13 /fl put + dup 14 /ffi put + dup 15 /ffl put + dup 38 /ampersand put + dup 39 /quoteright put + dup 40 /parenleft put + dup 41 /parenright put + dup 44 /comma put + dup 45 /hyphen put + dup 46 /period put + dup 47 /slash put + dup 48 /zero put + dup 49 /one put + dup 50 /two put + dup 51 /three put + dup 52 /four put + dup 53 /five put + dup 54 /six put + dup 58 /colon put + dup 65 /A put + dup 66 /B put + dup 67 /C put + dup 68 /D put + dup 69 /E put + dup 70 /F put + dup 71 /G put + dup 72 /H put + dup 73 /I put + dup 74 /J put + dup 75 /K put + dup 76 /L put + dup 77 /M put + dup 78 /N put + dup 79 /O put + dup 80 /P put + dup 82 /R put + dup 83 /S put + dup 84 /T put + dup 85 /U put + dup 86 /V put + dup 87 /W put + dup 88 /X put + dup 96 /quoteleft put + dup 97 /a put + dup 98 /b put + dup 99 /c put + dup 100 /d put + dup 101 /e put + dup 102 /f put + dup 103 /g put + dup 104 /h put + dup 105 /i put + dup 106 /j put + dup 107 /k put + dup 108 /l put + dup 109 /m put + dup 110 /n put + dup 111 /o put + dup 112 /p put + dup 113 /q put + dup 114 /r put + dup 115 /s put + dup 116 /t put + dup 117 /u put + dup 118 /v put + dup 119 /w put + dup 120 /x put + dup 121 /y put + dup 122 /z put + dup 123 /endash put + dup 32 /.notdef put + pop + end + %%EndResource + + userdict /pdf_svglb get setglobal + [ 0 /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/ff + /fi/fl/ffi/ffl/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/ampersand/quoteright/parenleft/parenright + /.notdef/.notdef/comma/hyphen/period/slash + /zero/one/two/three/four/five + /six/.notdef/.notdef/.notdef/colon/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/A + /B/C/D/E/F/G + /H/I/J/K/L/M + /N/O/P/.notdef/R/S + /T/U/V/W/X/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /quoteleft/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/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef + /N634/VAIXHN+CMTI10 -1 TZG + userdict /pdf_svglb currentglobal put true setglobal + %%BeginResource: font FIPQYP+CMMI10 + ct_CffDict begin + %!FontType1 + 16 dict begin + /FontInfo 15 dict dup begin + /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) def + /version (1.100) def + /FullName (CMMI10) def + /FamilyName (Computer Modern) def + /Weight (Medium) def + /ItalicAngle -14.0400085 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + end def + /FontName /FIPQYP+CMMI10 def + /Encoding 256 array + 0 1 255 {1 index exch /.notdef put} for + dup 0 /.notdef put + def + /PaintType 0 def + /FontType 1 def + /FontMatrix [0.001 0 0 0.001 0 0 ] def + /FontBBox { -32 -250 1048 750 } def + /XUID [6 5087385 ] def + /StrokeWidth 0 def + currentdict end + currentfile eexec A0B00ED5187D9C0F1ECDF51878C3AA5CAA3EC8DC423323 + 00A152553EC9C9C51591C81BB5A2F58753878D92B1C73E948BB360F467A7D593 + 2446E52E22935D5D0316634839C917AE2BE363D6AE3760363F748EAAEAD9AB74 + D863835F45718D23FB3980D0C645610BF765847F4BC5CB03391BDC9D40A6A460 + ABF0D95BB6A176DB5088A1068A0DFDC266C25ADCBEF3E5472E03E0D29BC6801F + A2AEAD77E33C80C0DC39DD6133A821B832A2E5715CD8DD3C7DDBB03FB0392FE0 + DD1B381E192CDDE6EC064726FE07A46ABAE08BFAA613B8A042D015EE7CE253E8 + 08727F73BCBC9B99270D557D06018142C27A7ED95D3AA666CC36583600E54C19 + 78353FB232E97BBD2C7677F7F482F9C427DA43966CF504999C21554CED6AFF26 + 2AADE446B0B09A001F7C1FDA17CC82E9DF8448F332E1E3C4EC6BDEE9A21F01A4 + 6957355A5D4161A2F21791D8BE95C7AD9D9855D8A3FDEC54DDC9CED857684258 + 0D8B1A7F8E4A0E8E70030BB0894D8BB181E02EC730C1C608F6F8C3DCB6396754 + 71C8098A84ECE5355044359C7AEC8FC864D315DA2F2DD2555CFB93222D149848 + A6B81DADB8DC2F573CBC0EC59E60E22D9648838FF0D1B51BE192858658E17CD7 + 435ECD414A961FAF38EC8305ACB95DD22D718BC9D52458651DCB4C745118E934 + 150F5359D098F5B1CF66AE559AD205A0B229705AA59928B998158D7F69E872BF + 5E25F60B1A37EA6313495EB4AC215F568FA93336508E6DA2378C2E16902B03DA + 28C776EFFC0E878833EF71EE519BD0AB1903A1C977FC7CA6FDACB31D317E1805 + 269B3D498010A8EB034C8E617DFC3DC42A22DEB72DE2A66A69245E40ECF954A6 + A5DB301688ADA8174B76D523290F82B936E795468F37EB34A675E25C0B8F0993 + 2A045C7A54F134F326859B3B1E7D9F28EC88A25180DCFDDE33EC37BF869F39BC + 7FC992B29322B03214B078BCAC929875C59C3F57A97074BFE8D49D9F8163DD31 + B3AD333364B573135187D26A8EBF04B025AF5CB9C32AFF88FE48D8A823D8B475 + B50A095BD4030CC47F07C088245150F99F101C141C9F878D17363731FEC3C77B + 8057DB509162011C8BE93E2C2CDB23F38FD7914BA42CBE20FE92BA08F688049C + 1F1B0C8F1555E88AE77D252E436E0DF418F4585F37C83B08D3F1F04C99F38773 + F564173A92E9B93AC30B30997FC321E88E3504D16DBC674F14B3BE50B9B26F93 + CD32403684FDB6ABE39577C0107889D2F572C4281BEB7197CB2DF3954C460C35 + EB757DEB84FA693D8ED0C2D10996B2D96F175150775447D7CF1EC86D2C9536C1 + B8208547AC119EE22D0E646311C85F9A4EE693A56285C73E1E4DAFE46B4E5FC1 + 4D46EA6BF49F665C8028B345D93385473E5CDBC1246DFCDC037D674D89829C41 + F27F3C6C5A68F5A1F248E816786185C03C63DC4FB54520837AB888D6A5B542E2 + 91BB8051CDBC99ED21DB74DB8CE076D69B783D4F5EC3A30EA4245015FBBA0C9E + 3F34518B6A378EE3424460EE51EC17347E7911527847936B4D9822A4D315E789 + F21B2D4A830C8FF50FAE16C2B494C88584552E1B0630D95E423718E8A35B0A8D + 3A4E12B841ED0C1B34DAB5BC59ADCDD2494381F2338433E2074531BEFA4A2315 + 50E115AE9544D386DB8054613DB66514DEDF0A7B574EF1340B5D8882F033346E + 074C0AA09596E46E85AD3682DF8E6797219B013BCB86B98EA8A01A8D69A2F2C5 + 6C290CDA67E8B347857D72F54EF379F12C00D11CA04A0587FD8F23956E15B67F + AF7895475DA986B14C07FD8F7CA525093892BC8051E75285529BE388E42E6591 + A29DC22729103F04C221A2AE81E3B208C4F994C44C6DD8D667B4FE5031638CF1 + 6A7724CF080DF3284E79D28D424A7EDD8398EC27064A2208D50C303A3D4B0F0E + E0A6A88B1F6A6825E15DF9184C0642335A0A6A389836A9D20D14744F82353CC3 + 91082723D8EFFEE2BF6F14823588F0EA6B4034937E8E3F0C22427C4F1E1A77EE + C366C6165661EB249F574E2E1D26E6C1BA1387DBFBFE8101DA39A0990BF84B01 + 272AF3B4187A3FB1120499AF820793F3C8E410657807CCD8E947E66D9FE81AD4 + 4151B9D5B2F182506982527B48A12020766C7BBAAF5567184F331E7E6D22BA41 + 83ACFF4BCEA590F7A69B4F037C6042572A6E2F0BBE94245862059E04D1D0CB3C + 969EFE3B99F28CDEDBE185356CB706C9FDBF2DB0F71B134D51F39A4983CA4596 + 394E1DB7B35AED5384F9685AE76FC57125CEED6F278547502048751630610A8C + 0510AA878FE36BD92D0574AF6A8A299C3F5829ED4DF002D4B31F9883A5FE783E + F2B1B055D82199CE0C9136700C563870F20D488F9E4184E7A12DC01182A05119 + E75888AF945B68E057699D75359654461BAC9D54B36B351266D921D069203FD8 + A4EACA03364DB63072184F2A4E2255332F5E031F5F0520C8116B1C361A01E539 + D36B431C62074DAAE358CF2815C61E6AE503AC6BBA7C1DD336AC9EC5D74F664D + 153F31B481501AB7186A0E420C718A1272207F526A33D60BBD4B9AD59DC2FE87 + 84C68C56D71B9E7970734883F19369937DBE8A3DDA2164F2D9F648CC7592B297 + 0F69FA5A32497D6340AB418236D7C683D0D8A3572853E763E37A85DB00A8DF18 + 7DA3DBEB505AFB435C5FDE554C6C78510CCCB9DA4A9D2A21D85BDB655410679E + 4D4BAA861A1373B30C2163163D169E23EFAB3EB7C3F87790BE9DE2629FDE92E3 + 3A01F97E97D2B8E6BF74FBC9A9D0054D7DEC2AB756AAF575A34D5B0F5D56BD21 + 2AA61EDF81F4C280F09A3D3DF416E248233AD031B740A6A20BC17E7F89D1800E + 8D791EEF4AAE08D1E4119B34EC7D8D8E6C5C5C2746D815DEECCB6315C864A888 + F4233992432AEA52D652E12E4642330180EDDA8A8CF784486531F3CDF97CED25 + C2E71D7087A6231872F4112BFBCC02D829D47F9E4889B7C3AAD055E4F18ED907 + 98E604C1C800539CBA0340C60468C5A4B195E220AD5FEB706B5725FFB0EF9ECC + DD4548D1A9F94AF71403E55F7B159F504927CAA7915A8877D39A01DFB072C543 + 51811A059288FA4B23FEC792B24308BBED5182A9C07A669499FD84F67C9745D2 + 8353836219AF68577DEA7488EFF512F427ACBDBEE3B0D4D82FAE55B25BC4A87D + BE14D73E3229BE56CB5808AC132A7F89E3C5D98784E3D621D6A3CE24F445D4EA + D9CEDA718AF5D0848564F3E2C6E060AA1703F4EBF5162B1A626602D64009D119 + 042E79AE0909702D6E11AA4F8717CF19712090BDEC8526E56489DF474E33FB13 + 2D3DB751BFC54501F7890144B6C0B05200C84117F8EEA838586C49C3A0D8B890 + 8EA48EA4B9647929BC8CD3F4A06E8E28558CF515FA8B66B466F8954952B03A97 + B0B90C47374D0AFDEEEC89A9070975C72DE602A1EB1226CEBE746191A8D69BAB + A8F58D7E5A7D08675E061A530B49B5876681F8495081C62D1EAA9CC701EF36C3 + 4F370288A0EB8A2618F5DB9B1E862D315CE6EA3B0A5D1E7DAE6AB82A142A2017 + 0B707186F45EDF7EA4BA1ACAF47CC11F62F254726CA6A18B2A5D63EF24705706 + 83C188817C031B22F06A0EEED0E312DDEE93142988BD92F561E3CAE49A53B9CB + 542AA0CC3D1496F442E5D58FF8CD6E293884E3C881DD551E687B720D4B72E4B0 + 11E05B46C47F796BFAD35868FD3DB4A59B8F3D8BD6DF579BF93C79715A5A465F + 41FDD3A32DE5BF49D2883BFC08F9BB1BEB8770EFF3B2DA4138715445339B2C47 + C8C67570896748433CA84495EFFF28F3D1F196F865207D73903EF92C75BE7CC3 + 80EA5A48F69C75B8B1AD4D59F08948FAE3AD9F0879BC56256987CC9BBDB7FB9F + 5B223EA47CF2400F6B791D85A24FF3E8A4CAC54BADD9A1DB03E4F965F9F91D9D + 18E9AEE2D686C070513B9568409465A5D5BADCDC716F3149B39DEBEBE9BEA08B + 9865521DC18CCB034618AE3D975B3986CE0BB4454C7B263ECE9EFF8CF59BC9F4 + 519BF1436BCAF02C2F8AB28A63F8714D75FE1EAB75A9EE7146B07FA75C2254E0 + CCE76A9C7D08D3E776688EF1917704DCE30B7114972F95B9953DC5EA3A9ECB25 + 3C22BD3DB22E4C1C0C93228CAB0982535C681ED234DD2220B2C649545E10B7FF + E5A137EADB5A1BB0ACDB568BCFB4B07B45378E5DF1934B27D4A1C1ACE16EF0FD + FA4476540CA33BE8A48A4EE9D81DB6E95A9EDA54400241543A60936042EC3AEB + 8F4E70A483C7FC98FB7C7E15918924589BA24475E287304FD822C7991CF98183 + 78F62685ABDCC4ED325035119A8670ADD991929A17CA96BA7C9580BDB19B9690 + A15B34D348B842DF04A4F90215B15DE33EA7A69600AB315ECB1E7C0FB69B4E61 + 684161D4B3ABE775B612FEC016681181FBB8DDC15EC75127D71810AB7970F47B + 0E17C23804460B6E63B7797B36C3F1FC43DDCFF21B910D31A197E392FF2D4FE5 + 127D2B3279023A83C29602B6AADFA90453508DAA3B6E785CB55E6A85353D8954 + B20B3D368C60CC59E5E392D3C73A2A9A055B6C5ECBBB620C2BE026ED14AA81C8 + 10A4DF615D1A79A1043FB5EB814A6BF2CC40461A009A30E285433104533C0717 + 3AC38AE3F99134E83A3A8D4AE2F729BF4633B6BCCFFB4D6FAFE043F8FB40F6B1 + EBAB299E816F346F667F5824460C4B5E411653BE862CC83EAE4F676E956952DB + 52D228F02D17E809AFD482B0F3F6C158053148FD3564C9B924EEE5BF61F3106C + B03352A0584C6EA6A67598E2050ADE83DC29089D3BE68D01F098FC6813B9A900 + 1E41DCB31F2A165796E04792FC1FA0400C33D08DA08C02350BF8B1B4724E2B27 + EA1FD0ECB4EDB1D64076BDD4275F66B70E27D8F2CC58E61E5B676609A4633A91 + 1687FFEC875C754EDBA818F99112AADE2F89C9681AD046F3F127EC81FA5D0BAE + FFD0F1E966A42524519F6ED4D475986D5968B17B0B03BFA6407E67752F1FE385 + 975E83610FA4007DEA1061206182A3E0A826D3157257675B664C0275BF8C584F + F8261F5A43343892C0BF3BE6A3274A5AD69DE50CD7172572D1682523E025FBB5 + 41F3BAAEF0A6F6E0C47AFF395B2B7A94E6B8E9BEC9EE3415E9C7B47201A62BB1 + 38C7C25A8E075840B7E02FA21F582778CA2F62C9638F9724577E9D104B9C9DD5 + A3C5430C07FE6F0DDF6081D3AEBFF2A4F835B4CF028F27DB44A754A26BE40515 + 7C2A3778F88C495E366AF0660EF7422C7CD7804055DD932DC78CE4053972502D + 2205050952717D9D086ACFCE47AEF1FDC14BF13C00744B77728E638052A9A453 + FC18DB6F2E44AF7B90F3ADC69338FA87423EC932EE76FE7BFE151045B29EB484 + F8F4629358AA33EEBFF134AB065911E802C40F6999F809014ABD2F6612A65E95 + 48360C550E9003FC22D7D6832DB76B262FB27749591462C64D7716D27A2FE4FD + E02FD2DB6AFE93414A208A5C5F88AFFB0A4BE687DBC595D36CE9DD35D61FF240 + B5A4E22E86F8649ACCF84FF2F0323D7192E5B7B5C092F11DBF04F164CD66704A + F463D202353EF2B9E83C25668E74A75C1640AF5DF04EA2A5E1C14070BF36F8F7 + 016816923F057C06A1DCB6262158C8E57DBA69C5544D4D7B093A1C537F509B94 + 105037CF27849708889E9E74777EF2DD7073DF74EFD2E4358115C4B1A1EDADC9 + C8FDA9DD7E6C9AC825DF7DAF64FA6F47371ED39F4767384EB8E0B86FD48C7592 + C9B2F5B63BDCCF0BB4168BAAA771E70E7F442A211B726698569DFEB4BE55799B + 2DCEF8163A27AA7674A528E981CC654B4A3685B6216799FD5CB14D081EA11AFC + CF44E49285C9AD52F579465860BD634C2A5854D635AC8D303CC2F1CB95B93D02 + 3509F89D4CA4DEF2A760BE9C3D51A4AFB8995860A30E9220E34FDAACBFF85416 + E03ED2460A81C15E2AB8661F2EEA1F636184963EE7D0DADA9323B3CDB51F628F + 1F912FA29E6E1CBAF34850F61A862A5377661F2E28506E5E7A84CAFFE37E31C1 + 560D4A7DE98EC2E2AF28D8FAF8D8C5A6F7D8A7A4985DC5AEB2C233A0401D180A + 326BB42899DF27265E4D7431B0A81AA6EC69A9A6FA884F4A5153D6B5623278A5 + 92439BAFB255673861658E6E45FADC942615A9CA62D50F5D4FC20ADE00BA9D1D + 043646638FD5D19FD6C95709B62E6CC8FD045003F24333880257BDE1B961A000 + A08DD1A6EB47D9842AA042C666387FF40E170FDCD4155103832BF1973D1BB5E6 + CCAAB9A61B71175098DEB773FC62B2AF3A2219FAA2391357EDC4842988EF99D3 + 54E370E0F25CC7AE81ED884F1AFD0F76BA5691A94F56ECEB553BB226F31C3108 + AEEC20B456453E6B605B4D33EDE8DA321CA5D32A15ABB4B151F700B1E7165A2E + 47826D415699018F3185E7EE3AA8885620B7CE564CD277ABF1F357C83E34A9B6 + F642431E5490D5A5606E7A67B478BC4A4C96C02B547DD297A7E404FC45B031D0 + 6376593625BBA7F31FB0175D9211BEEFF03280534E677A90EBE0A853BB24E1C1 + 8A64359EB86742EAF7295220263FEF3E33C36D45F9E146FDDF79028E95067EFF + 122EC7A9DF2B60EE44920C3A72CB2E24E08FD18A6DF58E350F874528AE2232C2 + 383E2367134701DFAA077BCFD16ADE2C7386E5A64569834A7195AFE745319FB3 + AAE7D4B1D6CE2A0F2697309F34A2C49C2EAA4E0C5CDF5529815F1E4BC0ED3254 + 7ACFE1C240FBBE0196217A5BF86C499C2C7B3AE5FF73C762022437D8592E7ED9 + E96DB854A5D7E8DFB3E3A8672271B10C200C397F1F07D989B3A6CA5DA89D4D81 + AADF2D60D8C603CF91C554FAF89DEEA2354AAF340E371C0F69B108B2AF8E36B6 + C81C942971250FD02EEDCD84C87F3968D589425AE3A02C6FEF4189FFF7AC0522 + 212BE4B1B3AAAD5D0ABEC1D30A80C28EAEBBF6CC843CFBFEEA477DE13A695297 + 6F0CFB6EF011A7A5A043620C360CECDA861E614E65CC6DFFDDF1A8D1B4E58D6F + CA57346A84C52BC273E4B9E84982BFCA927FBE39F76A57B81F2B7454710D30D4 + D1AFE26307E928E1997150F0F27D58E49B99D109928DA34C5EB225D35E36B07B + 43096A068535A1A41465B454E158689EA7352F3408F4C66137970F305EF648B8 + F97A5B80E27F135C82AE56DCCB3BD53397203B66EF7FDB39C14273D812F7DD5F + 4562092F9CCF0D989FE7E47956EB3D8E259B478C2C8C5DDC8BD26D10FD141E1A + 5B00A6E2F685CCA02F336F9FC81CD0FC98C4D63D9A3D383510A8DA828647E595 + 8B75E0EC5CDD3F706BF5EBFE353A7B8F4A4DA60AD51228C16A9270824FFDB375 + E2CFE7B61E9EDC9BC7C1320D74D32ADBAC985A82C805C97FA77C9D4B8AE5CA69 + 9F20F7B5F2DACB6F149F813AC7E5AF97047237387E002974381398A48079E5D6 + 419BC346A2D0F793C6D1594FBE29ADE338C10E289497E2625C5350329484FCBF + 39018B9637E674BFFA7FF247F99973751D070C045D7076BBB9187B70CF2C3E66 + 8E9ABB74C9233EC669916C9AD63DD5CA9634E6328E15B43FEBE405141C6E1DCA + 50E67F6C4B4A1CBACF47487BCA746D852E98290FA88C04102239D3E3D9703C0C + FF68CBEA59BDED3C0D73A85DF07AB032A43FC2D1F4D35D7D038D153142DBC1A0 + EED9E5A4133BE50D48397BEA0B03952482F8D035212DE6994D08AD62344174F8 + 54E3962FC8A4C0C091F0181212D0024D9BB161E348742A728A9660CB15948288 + 71EC20322B2DB31DCF18C44C32C6B5637C02EFC571C2225951EFD9F5A0A08AE9 + 06F1F2F9C4C06EF2E27CAF5B7A97E48C95D35A95C556849830D2F4CA620A7EF5 + E6EAFA166BE3F084BCB485845BE6DF494A855BA174AC0B55B85FEBA2430630C0 + AB6795AF1332B1D0FB701888482F78F6A49C5B61CF0A0E2A278F29FBA113A522 + D47BAB6EDC21A3CFA28E49221F0651E9EE730F26881F95CC748BD6A27F79E84F + 767D800685112B830480BA66097004250922F3B3AA8B12B0608F1F19AB52E200 + 4BCCFAB34662C4DE7CEE952D683C2144A79153BD29C949C17319430B15FA0381 + E398FF80B34D3A9C391575D2533F3FAED891C4BE5E13A39CA1B3FEB29EF5D4E1 + F19AB845EF5EA5F9888536B0EB6C1D18F594F34E2CC800030E7C0B457B02E511 + FD28AE057CE438CB576F6AB45CA4CCD7376AAE0A2C32B438CA2BDC6341E755F2 + 5D09D650C4A510DA99E70AAE625910A7553E4B7EAD838FA76EF1CB358A500196 + 3E7E295311D9482883593CCF0AA13451A8B36BAA1B94BB3366C31BE8CCBAEC07 + 7D56533F4A5BA70F86500511CFF3DEAF4FD3DE66106EB1100F97A001F6994577 + 952FE0A457A3D778C6CF392C7DE5D12AF847C97CDEE48444DF1D9953E2E67BAE + BE1F02A1F8CCBD41F7DCD8E082E5E205DE89464990EAF1F67F443BB5A17B4F0C + 2BBFB9B3D8E1F9EACDBAE057DC8A09A9D3197D7D25DE8CB5B1E5E313E1071164 + 5DD834A9A18656AA95E759718D06993CD20987BC8024BC2CFE5C460786BD214E + 753AB783F117F0E8E37DCB30965DDE1AE43C898FE0330790BE404C6AB16AFB12 + 5279FF433E62B1C6DBD0B58D3A6BB4D226141853530829FE3B0C9773AEE78C59 + 57F72D0653B3ED53B20A421D6245B936968F83BEEE8ABB8CEFC1FF88A2D435CF + E8D0FDAF311C7E6861A159E95E5EED7C9C3199967D229DFFBCD371F42732D492 + 9098334AF5F871097CEB16E59288283471FB90B4F932CBBF91FA7EEE255A73F7 + FC2CB770F8E92DB163BB3E7A6D9106EBE3008518F205CFFD67A2C289A4E1538D + 1D8FC1D44634E355F460768825E31B463DA5664DD225C82BA2ACBD77E55A1284 + A9DEFA491ED2718D062159A7B2DE7E080E0D034F9A02B9041A4F3DD12525288C + 1C4188565945DBC7460C6C40646D98E7B27A82C7646071644CD28C4DDFE0F26F + 3666CAEE4D2197B0CD9EFDEB955D5B7CB1E9F6B77F9E9BBF0C4EFFBD3375946E + A5AAE1001916EBABD0A656FACB18E31FF324D5B42C78F8087212A4613F37BAB0 + 61B1B1AE24FDFF8822CA71BF4D5A2E2AA1ACD4739007F885931A6A84F1C3BAFE + D49B1326921A338C62137AB24BEEC0511B3F5B4E8C75A19CBB90BE1084EBCB01 + 9722EEA4CBE87913E37CF1643D0B0F1748B509BD28F571BFB1920D9DC03E8F1A + 1C9094B0EA7D7A20FBC13CFB48F6F2579AB62CA0ED6C167CC9BA5317E21D2A0E + 5A44BDEF9EC4670D3476B210B2C017D586A3471C624F86D2B71EFC639D6DA79E + 41094A785C674506E090750C936F4D1CF5271E9F721AFCAE5C24F57C56937309 + C468C2D345A6F3962AFC12E35285F10B5AA80EAE4B9B9AA634905B061972226A + 1A9A449429CE05EE16A81FA536F44484B0D294CC7A41C9897F77FB897D448E2E + E3F745CB7BA3DA70FF0A6E7DC90FEE449238BC3B53FCBC32185C917FCBA1B89A + 25D795746C7999917E084D45617C82B8251E593989621E46203A5D1C5C53E546 + BC389DFEC6FC6806C474EDE71E26F4CB9D370A36A3F0D26863AA7D87B693B770 + 0C90BEFF7B01B6DA90F279471AE05E8AA432D56DDA4D055DD49812D0E304DE73 + 779B8AF62299B97805EFC1554FEA34DC0EF21500BD761BC8BA798EEBE8B4089C + 97BA03AA1FF2EF3485B05679E0F1087CF11CF1F3BA66918788CB286F59B92DBB + 4430F0D3737B8166446CC4AF470A0DCB1C1B73A6F03625682F14CE341E421C88 + 60DCA8709A5DDD6DE0CD6ADF17454DACFC184A58EA4A8673549DF56DDB58B05E + BE04659ECD851DC80D6FC9DBF020639673B89636517A9A3F927D208C3DF162F7 + 1464E6228A96C61466886F18ECAA988C238673BA17A809ED3C16951740D232AD + E04AFC55906489D629943DA9DA08B59E9688FEE6AE04A566687567F67CE37CFB + 21D9F2F6FE70DE0C9BC430C8B99F30AC3F4B8B39E945C0BC0233292E350D01DE + C60F42ADAF65EB0C7ECCD9B6810493F10D60764A2447C4ACA0B0488971168BC1 + E4F150B52864B7D709ED7A80698CF6D6259EB237BE6AE3DFFD4D2247150C61FE + 2BF25FE95D5219D43B93D8791B16D162F3F7B822AA8958DCC2FC1E49C9C2CF0C + 7E91292017C2B3B2085C4C9343E880D5B74956A83D5599478502CE92B356F8C7 + ED4F05941524C7FDA59A04AD1D678927B680B45E291FB6D9CCC41F4AA8564151 + AAD8B7D3581225B5C01F607ECE072E04C40C2B29E6E509D549DF5D390A3ED7B2 + 90EFEC211A0EB2B40A15C6F970F8B3E01BE5F9D4B75296731960321992B5796B + 92FA4D930499C606C7CB4A49F59A0EFBB8FA54D34ABA3F8AF31D14672986F140 + A43EB52C4EB833F37F768AA88623C9E0B18FDE102FEF901615791DFF1F83EFDE + 97B90E2866F06505C179A8485303244D0B134EE6D8303D01990C9477EB9B74A3 + C280D43997DC9582DBA24719CCD4FC4D1448EFE9067321E569214708AA885AC9 + 97E95E0E5251209F450CC440D5030DF5D2A503CEA20C13D174303A659FC17D69 + 195A82A2C15D02C3571278271C8A90CA4B501715EEC00FD48D05A050431D0666 + 3B4BB1B42C068F51B0728F64F6CD5E8E22DDD9447DC1009FE83FADE49EBF4AE9 + 4CC2718D12EE87360C68B6B81F0E3CC9E52A03689E0A0F8D34DEEF8D4AD12793 + D82A78F0BD4D7073C32946A211EC7E87EEF646F61DB2A1C29A62CB4CD90F5E61 + 59F3AFC22C2470598A634A0F53B1D55F548AD25F8B9C4FE14FFF08EAE20E3808 + 7736824AB55F129848992984CC7A6E0816F273EDC39AE6C5F2ABDE68CE1E72DA + 7BAF22DA8C69DD9A4A713FCEB0714AD67FC2C8AD727F66EA879632CC251C7393 + 97F0129522044DD7F97D31E9EFF78B87202CD6A25584603B97FF7DC695B51FB1 + A8750A8E0F4D62150160F1B0C5EB871CD30EFEF8C073221F91E917AD5CC9D7DA + 1A7443A48D7CF4015BE15ADFD88F37E16258708B70164A033BCFFA7DC08B6AB5 + 8EE118C7A906F6D9DC1E61A1AFBDD9E6E5F72DF792050C1D69E9FDC36C3DB741 + 560E243E7DF075865A3C462E38A8A3D18531B0D47E7CC9D7777CA52985671EC0 + 92A33951A3E5D1E3183E1AFD367BCF3645E9FC7FBCDCB87DD741C9E487927E56 + 32494F6F668E85D3BECDC8921ECFE5F38E2497584B519278C7BB1F5E288B9A05 + 8D355FC66919CC6277C3ECA66C6326C1BA5DB3BBA1BB2FA9E46E475880BE478E + 69E87C05722D6D602122095F2A4E5326DFB3B6907249950B95ED665AC979C789 + 4DF5573637F455B4F91FB337C5FB84E417A10829CC1E6F354ACD959395472AFA + CB6C84D2287F3B6FD43148594DA031A45075E5EDDEE757532A8A3BC0E3C8AC81 + 97029BD5262715740F71A7BBD9E82A9A9E6EC12B7C437DB4AC74E5768D2C08A2 + F5148E7C94B144E6C12A5DB72CC367D8678D4F73F67CE0F14D8F4E10B7C51669 + 86AB9860B6DF412A662768B362941A7B3C37743ABF20B4BF84B0627839705715 + 9A2B572FA785BE5516138D136217236E97B4012AD35FD2EC0B283B82CA5D1325 + 147DCF181CA15B06EB23B04306CC4D9248C3AB4F1A1F38E46C0A6BBE4ACFB62B + AC87B9B49468DBAB4F06A942AE100A50CB151458B977B5F25B0CA039CA74B01E + 9D01FADC383E97227A42F348861BB132C7F8D5896CD91A958A1C5461A407C39D + DF30CBE2ABCA6C271379474B54D013890F249E521F1696B4515EA236F0DFB6AC + EA5D0858DB35B9C2AC9310FDD9A975C4384C62B6FF380351BEC6E839B75063C2 + 652E84D19A711FB3E1F7F9E232EBF49378E327870492A4DE7F18922C8D5A22A9 + A620FA8BE231729D54F332B70C01894070C3E10CE8C86E9D6E14C2D2048AA82B + B00664F3CEEAA7000E9364F4C2492B5B3DEDF9A8F60DEF3DED8CEE41577A3C11 + 849456D5186ECA262AF6E5DD88C01E7390C13D19CDF592DFB7C501079717B90E + 36DBAE86ADEC94DE6A40E20F1632C39A3121F1E900FC37CB33ABC89ACB35978F + F05F8375D8F912444FE816047863DC225E8B5819CCBE9F08EC19221461DD0449 + FDFD289BB702E50F4120FC1EDCBF7C12AF6C4022E9BF61E3D041F21649B10134 + A9B1E666827E2F1DE19654CA8B2B5AE52FBF3BC82929F9CB204AEDB5CEFA365F + 3AFE6B52317FAE30EA9FEF95DEA963922F66C6753D889DC75BE2A3C54AA59D49 + 47E839310364D25DD580B30521465FAF87323D027F93B09325A1B1665EDE4342 + DB2E4AAD8059FD4ABCF92177195FBC362C09EAEE88F0D16323AC9DE9B1D3AB21 + DB8DC7E8C2506B462A4A7866DEDCB14081CD50079925DFF50D27457339AFA4C9 + 9D21FF458E919C71DF074C97443807CD2A95F8A955818E89C5F83D26B0A182C3 + AFE72949F0C2DA699DC8C3CFCEC70D489909ED8AC40B1B82EBD83519A96E1DF6 + A9C60E330680041157CF4A230812E2BBC5534B6EC3F46D5D94E12FEC28C98DE1 + C46A5B9B8D023A3DF3D0BFEFB790C5A8F78DCFBCB7CD33D77225A17CE5205CE8 + E90804BB37D7D36C13EC964B2F955FFE6016764B7D2C23842AAA05B242E8F415 + C6115F815EC64BEDD182A3A56B7AA327F13FDFAC88E96B16105139EF528B5466 + 019CC54893B8A7356728EA00985AEC1C4DB9B08C1DBAA3894048F039DA3CAF28 + 59826653586252B9BD97D258A3E210A31699B565A5427C743FEC0A6A3EE0B5FF + A5E48A42B2921C155C830F81A349C88BF4C0D2F3EA9984BAC9DAB67DD8F03EE5 + 0665A2805D65017B38C55FB8FBC5B29FF54EF7D94F7514309C2AB5822FBA006C + 52DE52B5E0E472E0554465ABEDA193057B579371D6FAC6591DCADB43E5BB1F76 + FE245637DF606180A6B62737BE574FF8BF4157CC0F05B20A2EB03C446F176C52 + 30D481FEE92CF27BB050F11189215E89AD9F181A02407423AA26E43C6CF926EC + 9EE9C6C1E4FE55A788DAA04D88D8B82C3FEE72E9EA9B955A1C4D6D6402A061E6 + 6FCEB4B1F5B9B21C12F09C2FF854A5E9F74447CFB0F2D78B08D251A245FB878F + 5B4DABF6232C7CB5B432785A3593C026759F197E9E3805E17E8112EBBF8380E9 + 57AAC6D9DCA0398C7B677CB40D60D64951A38EFEDD81868AF6DA7B95F93AD57F + 980C1845588A82ABB104AF8C9E54263F28C091EA2A93FDAA1FB369A7D2509D76 + A45F0E9AB08C15D994CCC402EEC9B0FE81A2B0B1E3108BB940ADD3B23634D95D + A7FB8E856BA74C0558D467D374B3467523A3DDACE40C90EFAA385480331DA9E8 + CC2ED64BA157062D67F1E939CD3DB737B6FEC8CB7A30677948D42E8514D34E72 + 40E03392499EE29514D2AD78866BBC1C43093467C3EE25C35910ACA0D32583EB + 52661126EFE8BE207EF9B1AFAC31FB16E5AAA7EA90BD7F721CE30B9BA13FA19B + DA527569E3F2BF2C2F5E46CD128FCC5781618A2827CB2F85D4203D64E88807E7 + 7D6B21A9E5D10FAF85B9C4DE345126FA7593B4576713F7A8704D1CA8DC8C02ED + D5A579173E02EEE35D093FB5987B5BF2C58FBDFDBE89F5A2CDB8E70564D67F69 + A04139EF208BB649D084C11CC96380D80060431B664B2A28D2FD012936A9F865 + BE970935AE31E2748D572A80CC5A1076EA376DFF0DDFBD6ECC4B2E5EA1427761 + 8892B1CA4FD1675433BB2FB39808FD60058F3597A800386B72EBF908570683B5 + 39EAAB6E4C1129E5AE59245C948CBE538B61891FDC354329B56A5BF19E2511B1 + 55AC63C407B3D99677ED90B817B65BE580BD69FA61824A94CE7A436C64A2372B + E7ACB60319FE9A2FC5AE881D1CA1E057C5A23006616F1F1B03472912A68E67FE + B4BA82EF84A255B37AD85D15E718E73C19E2EF9A3F06B5573835AE0EFD8E7901 + 0898F828948107310053DFFA180C6CEF114101AD54EF839EC46B07095D9AD90B + 0346FE320760599DB39E3B41A8364930C644C31C3E7F2927B7C552C948225A5C + 24446F8BAEB7F823D42D510C07D115D890A4B754AD2C09233AC591368FDA2C35 + 3BDBF82199BC66721BEDEABEEF34FE95E9C0051494CB76FFD4D1921058E9C49A + 261AF777CA44D758327E6AB0C963E201068D684366458D6CF45E3DAFA8C4F50B + 69F0642981F48DC7F6E62B96E2CBD1CE96AA776FB49738A5FEDC54447458806C + 4696F0F57D76E29AA3CD464B344B81E8B5FAF43DE42A2DA148AAEC1E223E8541 + 52766B7D5BFBF8112A3D2242AC4735AB6132789C4232A5B55A52DC99C2853CE3 + 10B05B7B0EDD7A27C4A0D9C41A5D8ABB366A07ECCDFB3462498EE7B1EE07EF54 + 380A264070295E208D9A5DC4F0D244D4D28E5E40593BB794F1D6A2162901FEF1 + 8B485FC14FF463B2C66B1B6020110647BF6A304C04B6A9E6540A0EA97698C02B + 018DEBAAAB9EA24D288A3F57E41283902460CC86C1B26B681CF24A1DF5F368C6 + C31C697FA1D2753F62AC9B68BF718653C3DF0532E01C9CAA86EAB2C2381B7EC6 + 4A5C6046E170EA12034B53250934B40291132EE4AA62BBE83E6FE140415BB829 + 3A8F5352E8429D1BD586E5A9FDE04E3EB023A6D95EB1BDBA0B8258D0B04EA78D + D3C9C34A27846E2E9D14E8F9A9606A812DDFF8918CF7B16565289B5E7E390EDD + D273BCEDB94BBE6C3729FF2949E5974EEF02743AE6658AA3350180FFC7706FF3 + 98ECCC904CC3C3B01762F40AD6C09F5490790F641815EA276F36456C12FAD554 + 62DF3FC20AD8839256E3F4F31D231FC32381A3A53E18E3E96999490AE944CBE1 + 28CD00D4DD97A06A315F38434FD68EE471D5456D75D74B163D4CFEE9C3CF0038 + 837434B8062C041CB246D961E57CD9328CBFE85145C39605EC9045226E0C8D76 + 505976AEBF9F60F3163AEDF8EB283770AF89CCA758E832AFF3FCE53469A6276F + B3B2C56573BC93D43AF4554F11922250FFA3C1C4547CF85A9EE7DD9DFE39132F + 73B62B74488772CD13A118352B8D91B5DC8DE890612764AF2BBC7E7F994F1D51 + 1425512D7270C4C79E78473584B75B4CFD68C01B1EAC652080798B4AE0E4E67A + F625ACEC2FCBB151F65F5B3CBA6911BF01A9A1AFD5290D2671332A4B2A841C8A + 5866DDDEF3CC83B7C89C5CD56377B3EBACC17A039B6D72B1BA24E8ED0F0BCDA6 + 10B1467CCD05E74094501C3642F513926749A79BA25D6A91B91D462C3EEB5FE4 + F8F7453BB2B791FB6D80328DE8FB64FEBC216F9CDCCDC06FAF6A27E9D75B3F80 + EEC6EA5A9FFE0C97218EC351AB141694F4ED06FB85412A4D4703187DBF1E32D7 + E2C4CCD0E8C08F8B4DC775A4530E10857E2D7E71D060374BE68918AD75C05725 + 5F381CCA89902D0F791D138740920050D0456AAA9D16527D1B05A0F3DC68DAF1 + 290D38BC29F7F6417B81E8D7DCA89F31581F88723020FAD40AE05F3BC56C3499 + C347788006996572BE7F2BE0A2206EBA626FC267868A4B32BF8D43A6339A3DB7 + 1F361462F466431DEB241B125431D3ECD55C508D826639AF0320039929EC8997 + 19006FB52E6CADAFF5A96D224DC0E57638F48E4D73E9056820E78A11A2C55945 + 001CD83C183E2464A917129CA690E54D6191485241786AFBB46F4D262AD56EC8 + AED5C3BABFE0414542AFF44567EA5E7FBF0379F432123AEB9BF6D72162F4886C + AD6D85342C1E6F236322198E499D2011DAF4F3FCAF1A56EF4D3006174F2A39DF + 692EAA54759391C1078B83CF097F0B5F3AD0D5A92B2035B45C61B65870F37153 + 3442EA25563A779E21B6DAF9C2A6C3FCF65B6782EEE850CEC4954F15D13519F7 + 18A466C1E456006761E3126FF0C0C67649BC9489BEDBA0524AB3D8820A241EB8 + FE34D0AC0A7CAE167B690DF4C3BFD93536CF89C18F0DC63B65C69AAB797AC5BD + E4609876C931A22702521F6174CA21B68FFA5866C43BD7DDCEAF8BE448530171 + FFEF021E332945E0DD8C063167D69C9D00A5E4C85438D07314CC12D33458C465 + F2D806E9765D04ECEC61955A33E1548D70CD6E59C1BCC856851B892C823C838F + 9FC5C8D096B2C35DE89700743F06EC0DE5B436399F940BA677E96253545675E8 + 8C30891B53258C41AF4AC36AEAB2A87A385DCBAD5FD6D75FF37F09B9CAFDA770 + B5661EFDA4DBAFD63A50C2AFBF6665E2FDF89625E18FF097FA16B52914FB505E + E97C7EFA247991535768AE1169B3045B7728072F1077A021A85F6C00910FB40F + CC9E57C10705D8721DA535CFF35391F7D7B5378C1521977535EBD34D89BF0ECB + 0D5C7719B9A17DEEF264B983DE1E485CCBBF78CC390D9A0544FFFED1E0F99D53 + D389259458F581DA423C77F2A1D24105E89DEE9ED7D213E325D98304D871D851 + 190408AE48B2AC39173220E7821A86E1149602ED20A8D8512F0FD3EC8DFFBADE + A84D03B4CA7E128630235AEA51D89CF8DD8AD56F0998F1D623ACFFAEB3476C78 + D2C1C93B064209CD1278B9C07833A0C6444670ADD306849D8470D1792577CABF + 01E0FB943F956BF154BED0288ECFE6D05126B462DE6DA0D4B2C44EFFEFC865CC + 4BE77D57BC008E44FD2C7494C9DDBCBE4C873743D5E7242250B480340EA291FA + 9612C8FED8AC6CE4 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark + /FIPQYP+CMMI10 findfont /Encoding get + dup 11 /alpha put + dup 21 /lambda put + dup 25 /pi put + dup 28 /tau put + dup 30 /phi put + dup 58 /period put + dup 59 /comma put + dup 60 /less put + dup 61 /slash put + dup 62 /greater put + dup 65 /A put + dup 66 /B put + dup 67 /C put + dup 68 /D put + dup 69 /E put + dup 70 /F put + dup 71 /G put + dup 73 /I put + dup 75 /K put + dup 76 /L put + dup 77 /M put + dup 78 /N put + dup 79 /O put + dup 80 /P put + dup 82 /R put + dup 83 /S put + dup 84 /T put + dup 86 /V put + dup 88 /X put + dup 89 /Y put + dup 97 /a put + dup 98 /b put + dup 99 /c put + dup 100 /d put + dup 101 /e put + dup 102 /f put + dup 103 /g put + dup 104 /h put + dup 105 /i put + dup 107 /k put + dup 108 /l put + dup 109 /m put + dup 110 /n put + dup 111 /o put + dup 112 /p put + dup 114 /r put + dup 115 /s put + dup 116 /t put + dup 117 /u put + dup 118 /v put + dup 120 /x put + dup 121 /y put + dup 32 /.notdef put + pop + end + %%EndResource + + userdict /pdf_svglb get setglobal + [ 0 /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/alpha + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/lambda/.notdef/.notdef + /.notdef/pi/.notdef/.notdef/tau/.notdef + /phi/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/period/comma + /less/slash/greater/.notdef/.notdef/A + /B/C/D/E/F/G + /.notdef/I/.notdef/K/L/M + /N/O/P/.notdef/R/S + /T/.notdef/V/.notdef/X/Y + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/a/b/c/d/e + /f/g/h/i/.notdef/k + /l/m/n/o/p/.notdef + /r/s/t/u/v/.notdef + /x/y/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef + /N695/FIPQYP+CMMI10 -1 TZG + userdict /pdf_svglb currentglobal put true setglobal + %%BeginResource: font NLUQRJ+CMMI8 + ct_CffDict begin + %!FontType1 + 16 dict begin + /FontInfo 15 dict dup begin + /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) def + /version (1.100) def + /FullName (CMMI8) def + /FamilyName (Computer Modern) def + /Weight (Medium) def + /ItalicAngle -14.0400085 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + end def + /FontName /NLUQRJ+CMMI8 def + /Encoding 256 array + 0 1 255 {1 index exch /.notdef put} for + dup 0 /.notdef put + def + /PaintType 0 def + /FontType 1 def + /FontMatrix [0.001 0 0 0.001 0 0 ] def + /FontBBox { -24 -250 1110 750 } def + /XUID [6 5087383 ] def + /StrokeWidth 0 def + currentdict end + currentfile eexec A0B00ED5187D9C0F1ECDF51878C3AA5CAA3EC8DC423323 + 00A152553EC9C9C51591C81BB5A2F58753878D92B1C73E948BB360F467A7D593 + 2446E52E22935D5D0316634839C917AE2BE363D6AE3760363F748EAAEAD9AB74 + D863835F45718D23FB3980D0C645610BF765847F4BC5CB03391BDC9D40A6A460 + ABF0D95BB6A176DB5088A1068A0DFDC266C25ADCBEF3E5472E03E0D29BC6801F + A2AEAD77E33C836B01D3632DEB22D63B3C2572FE1DFC7708120CAA0CA9B3F456 + 466316FAA7FD8AD564A34A1722B01919885465C73385A487D3448EE4E06C605F + 02212AA06C32EFB7A17576FAA2546223925319CEB3BE55C0C2E160B4F0B9291C + 9E6200A7E444A155ED0AA71B63C461DEA355CB5983D4A87920C6CDADB1641444 + FE736C3B7268161F02873753BBED96852391411561526A32554BB22BDF4EA0AD + 7398B6FA1FCC7EE83D5C45CCEE780E45974EB0CED5801D486274C73DF3B56B7E + 644A0174E13A3E075678599C28F8A4C9CB7E4C31663C7AF31AE9EF2C86A188EF + F2D5987C750066CD60FE4A7F04B8E20A9116BFD2E58FC279CDD270470B89AB5A + 32F1197216A034D427F51B3085F639ACBB3501EE7348661D12C5846573444207 + 293BB2B16730718E3988CE6A1F6D7F445121CC25AB95503EB12B0C1B0B1033E8 + 73787AFA9526F9DFCFDBBAF4367DA27EA9C9065B6279DF30ED4C528F83E249B9 + F3F203396574881A59147C8CC3BA5BD5E9337364A8E3AF12CD3B332AAE28EE13 + 70D1A09DB8D1AA56F1F13260FF5829026D2F4C2896052D7CEF01DFF0BE80B2C8 + 8782CE7E59C9B05CC4C64541FA6908B3A75CE5824D8A46944612EFC026F5F3B4 + AC54B1EE06B795DA9C9699B9A5B08681ADF41D328FA534ADA18EB1B2B5C2B793 + AD26B705391A345CE0D2373EA5EF32DA366A6506910EC59C24099D89AFA8BCAC + 90F4D27C98AEE228A4C95542C275B866913D09AD588807D071DFBEE024714B57 + 0D31E588E15CDFCA03DEF3F8BE5E00A687E9425CBCB23FFF98EB25B5C4C5459A + F5B81C31DB351CDE79AD503772B5CC973CC5077E9CCF6377EFA9B4A3E11946AE + 8B3E75F7714170B10E63D2401DC89BA063AFD5EBAB40F1B9CD4BAF922FAC0C2C + ED1E2CB6E07F0F916E6B402207EC015F6FD51953CDBC6D30ADB0960BA44F7428 + 1CF76D37A150A3230D242085C83CC43D62FEB0741E62D1AFBA8238B5289B854A + 7EFECC1BBDA25BE7BA78BCE17CEEE9FFA5CB566C913E65377C488FF94B5BBD41 + CBE10E0EA3AE0835F9DC46531A21A40378E2D23894521E8CD79D5F6234A7F693 + A2DB01998F15621AB2A749A6BA68756032617BF50683C6B948C8E5F203396574 + 87C51A50D5DAFA52BB858D805EDBADB33CBB995B9640F1F226DA3B688923B2A9 + E71E24643AC5733A5860A1D08C68A0F0FDEAFC736F9B42EF451DDECD9772A86C + AF7E6099EF9E393598AD814E384A9BE977A6A23237BB06B112574A9B80F3CA9F + 830F582EBD7506D415FE731711877A39884CEE9098023D3AC6CE583D45F58BFB + AF9AB6FD15E41CA3FAD69A4261DF6382BA4F9E881C470200A691CB11EA144054 + 71182F3BF44831B58103BB88C9BBB07A7E6E2FC9AB4681580434BE62065355C3 + 06CBD2D8E44DCA99960AA484A534301318F55EDD656B9FC59E5A3A29FC034008 + 1677DD68C87211B3F9637C5629232013677BC74114861931068D7D7AAFEA4A47 + 567261464CC35337FA4B6348CAD95AC679220E07761F916C623EAE66C5ECBF20 + 6C0888CF006992420F81C069CADD2B71DAF17FCF61847515EE9CF2EF0B24F7FF + B3942F385E0009512B9F7F93ABD5A88228BC8DD0D199D5E8F48CE721C0C73C84 + AA627351F6C6BCC97B5C722ED287D142D543DD3EAF5103DCF09D18145E2F5110 + 8FCC5A3400F8EC54E1DA2613C6A5A6568C7913D80E77515FBEF6F837F340C0E3 + 4B907096B149DD06861933806A8279C5D60E83E94A712D4FA0FC1A1A85B57FA7 + AF69F76FB5E5FADBFB9C55333B7FC492A583AB50841FD2628E35926A62E0765B + 63737CBB1B7E63960803CA4222174D898417B1AEF06C443C7C48D1B8DF489A71 + 45D124CBC0CDD03B4518BF7230393AD99CDB1196EE47B1EAE2C3580F084AFAEB + 14505F3284DAB995A3094D52341EC7AEB9B102A6C08B04A75D21057541883A14 + A2709473C8D0FB521B897B3F3ED76CD5BD1D1D9D40DC4D1C08A4F08AC16374D8 + 346076CCFFC6B26C9702DAAC6387BCED54E418B3A1B161F1E433E889F705454D + 43422680EE6AAC9C1D0DE800777E122564B12764A6068DACE34F9C66EB969B30 + 199376EEDDE3223AB77657E9A28A5EB38E85B013C021909D0D6D5D05C85C9184 + 1ECD20EA88265DCC8746F73C5D5E67DBA48820BDED9E016ADA6B689994BEE5E8 + D790BD297A5EA424D00FE43A4733840C429029E79289EAD8E4E9CE27F3982B93 + 4AC4D131B689A5A2AD0B9B988C000D19CBE429B6C070E25FB4E63D96D734A7E3 + 27B35F9E40F2F702E3E3D5B9365FC1BE0D64A7A1A508888EFDFDB50CA19190BE + E8F88841ACA5D1D6A6E7A7E6E69F728B0B7D0CE0614DFEFF8CA814E4A2B014C1 + FF8B84CA78814A002001FFEA6D83FE01D8BE8F7BD531FE4B5785F108D19E1595 + 972274175DB7957136AA99EDC4DA15E116C20658943EA998BE3E68A42D926E63 + 8C980E7DF3BFABFDC2F1722C63BCBBC58543E9012B2BBA26E896C4AF6546464B + 8CB70DEC97A68E46ADF40C543E35F57E745AB35AC8B50B4E552112EF3F558B48 + CCF2CAAFC79745B7F3112C218EC6890E49E0A75A6B90FD32FFC710A1D3BD3E18 + 54DA4C5A9EA99CC0CAC0421DEECF9E4910F1ACF8BCDE8862750F4A9C82935259 + E8EC5B25D96DB829BAB015A9127789C604C0F53D7DB4C65C944D30EE1A46C8E4 + 66B259AF826B4AD8CD0A0009AAEC2BE12A280FC87EFC95128BCED9546F8201C6 + 2386F227C0AA8FA6CCA1AC6E385C769C5F1BA3DAE30C29A348E6DC94731B1201 + AFA3254E3CF31E0F1D5CD93BC38EB391B32B9631C42477E755B389F478DD2A0A + 3EC42274C7C0CAD0D175A04D745B70D04E2B92CEC76628D6A15DFDD045847438 + B567234F83A1761BF5EA1B6BFBE16E354C9290BC01AC51DE7F93FDCF3744745D + F0428FC16AA8E529E23501A27E657379F1A6EEAD322D051C3A860A14F801EA92 + 82936A8071FA441A5EAB8D2F7CA34781980AA465D13894FC7806F63F89A988B4 + EB407389AD9901733C84182E9A5001E6689F68C1CECB3E61FA46B801FEC93965 + 764CC6CAAF2A5DAF2D269B6A5977682087C63BDD7E8E32903F6682CEA11C6420 + 0F20CB7A01B0B3D9500C26B3A51AA3836F6E20AA96C1970A799239F04A214EF2 + 73EBDB83C2C125FDD65E78A1DE985CE221DC45F9AF1B45646448D6B0F45AC61F + E8F5CEC04B8F8843C6BA5D549C43C94A3F54460AA5DF4D147B8E0DBC2E75AAE1 + 3E49629021DE288A56276704008C0E5A260C584236D161F9FA71A515740AD5E7 + 92A04158E44BAFE8BB4308BF691C35B253C6A66E4EF84FF6435948956FAE9792 + 6DDC46D65D2A07523A0199FBF21A8A0520AEDF0CF0202EA5474602781A67748F + 91E999F678C1CCCAD9919A743560C89FBF275A40225FBA22E0231208B942573C + 1EAA33F6BC1AC91CBCB9290FEFEEC749DA806A1CFFC226BAD385AD9E66C4E787 + B4343BEE339482696FFD7019EB4C22C7BB06284E634F73797BF668D16806068B + 1AF9639B456D57EE64230BF42CC70679A8293A6E8E4FD24A93241347A7C82495 + 676E5A48F90C0CAA9412DC212E0546F8E3A29EE8921E4C3025A44A826CFD3300 + 8207C742087352437536150A891804F32569158244AEAD8CA5EDA46D98F2CF81 + 584F8BF954D100E8EA8A86E019C9CD9A5A35BA67A705B8FE0900E95C819EDE05 + 58B6B5EC9371078DB3BF9CEA8EB7F4D823D066F6B8440147D48549994BFFE60F + 4FF6174DD944A1E5FDD198C7D976874612AD5678CC91D1377D523A724371F483 + B9381FCF46CCE636E8E0506EFF82948849F01E9059249B9BEA39B180D41CE6F4 + 3DD529241CC63DAE2CC6AA3ECE63197B4F2664F4B06E8F992904E63EC760CAA6 + 03CA70C8F1A255E50DC6A0CF564C4722B81EDCFD5BDD3810FC2321E84C9F5F3E + AA8E0B5E571CA49829F0538ACAAFD0B5E859F39EBB7B7432007B4A7879D91040 + 2FF28DA161BF8B1F4633F4347946FABD1BBA475184F47A5E0D9C669943D76BB8 + 90FBDEEE48B7358E1DE137B9614876F7F66EDF2A0E0D9711B1F9238CCCA4A750 + 2A9226E1EE24AC899AFEA9F3B453C477AEAA9D2F9ED67A2E5F78F6149C7F2437 + 3A51EFAAC517839B4C8C87545191B14E0F86E10F9F7327D9C2C9C7A3BEEA8188 + A5C7F1296BF50D62E1CEF81A9C8F4BEA8BDF0806206E7B2B75E89DDD0B15DB78 + 68DFE554606F1E252C4B0C91865D4DDE9FC78219A55F72ABCE8D7A40271202AA + 9ABB932601FD829D26F51B8B5F66B1AB83444EA3C74ACC622F97840A87FB34F3 + 761E2E0FDFC37B2A894E28868029F738EDA0E8005AB81B735B17BC2590DD6995 + E13A36BFC386527367B0B5D046FE0C696A23052E5729F39AF9B8F06E92ACAFF0 + 794A6332F12F0BA6E1993FA86DEE2FD16BC09E06215E348BA40D6A5CC3BB9708 + 349588114FD3F7B536CA987DDCE101F3B3F2F10FCE0449EEEE435D52100DAD82 + 27A520E213B46C84B0FC227C0814AFCD8B7A6C1423D2858575470E44E5C716FB + 2AA3B7588AEC693F20473299EFFB6D965E04BF9D1C559DCF98F1343CBEDAA623 + 00D2B862E51660B3B11378548518C1CD2EDC3DEA6AD450D77FCA1B6DB745F024 + A7D0083FF93951D75A974B12B480FA935D423D8721AA0FB1228972B71401805D + E00E853D930134472A06C8697CE27DC5558DCD1C0F2865A4B44F1A876B1592CF + 5D8C214E974AF3B441DCA9C57BEF4420E79E9D13042D5CC5BA3BE0A0CFC3151C + 85617AEC90A4B0B33E377CA7667CCC9DDCA9CED47404D9F56A51784924E1C39B + D0D9538D40A17852944E82BD1EAD93D22E13DE7081C2331FA5C247143E613E37 + 1F675FF17D10F6DE042E98350AC421DB8D1695C96B411EEEAF3722F73D15059D + F307C7EED44245844F83F22FA645C6EE0692CC0D2B2D6BCE74CDC426EBCBE9E3 + 4FF3BFB5CB33DB9A65E06DE6A5B5D137DD62EBE2A067191AABABEC1BA9A1DCA8 + 309CCE1CF8F9AB10DDEEAB0FE4ECB34A6E078F45325E3109B1198E3BCB7C5F8B + E44A82C720004688D47EB7991503F7CE5F8D6CE3D45C6D0EDB6533714B942373 + C424488609F3D8F8E39BF32E2B16797D364B508DCDDE450BBD56AD97A5BB5772 + 05FAB59F8EF4A4838C3C744DCD061746DCE8AAFAC4B53AC330EFDF99CA5FF88C + 779557D5D541654CFE174AB137FA6BA799262A4F5959AA6508414957603F7E23 + 10393595C4720589D63B700AB7EF2980D7246B140639354C92F0CBD274538B59 + FCD759CA6689F44BC23DF068DB3F0C7452106F7A46B2E5171C0ECAA5DC634BF3 + 33C39D024DCB4B24F97171C6DEF5949BC5B152EC6769C16F441EA426B78D2C78 + F783585E21824EE2CE3510F5006E423C360B241172890065B3552B791FF14D49 + C1FFE7CB5BFE29FC83B1DDE74941506D3829260EE4A585452C08A1A635D7FC0F + 42513EAB5FBCFEFB7D47BA8EB2C57661514FDCA02F074499160B7982012A4233 + D6A2941AFE760E51B448FCFD97F347ED13C3013F2446966667C5FB34740C644F + 9FA246B8526816DBD0211EA91C9B8681E72A0099B843F822FA91F4B5DC3BA592 + 0409D66CD92A8D607F44F8B07C55E6EC30338E28ADDEE75C0BF5323037FA21A5 + 44A21462E26BE55D840CEC94FAB6B6CF7D07FCE4B0DBC1D804E85F85E662E9CA + 54C22E89AB08B0EE3A39D90291A31D586466325452E6FE2E5EC8125B1B43BC50 + 4A2013A9C86532BD988F83EED289727171040DE4EBBBD3B5C930FBF5828D3FD9 + C1E5F0453ACBEEF4DB011F2F9262DCE2ECDD07880E5EF3EDD5C7BEB24686F7D7 + 1C9BC2C28E3E5AEBE272B81D6E150D38B9D1AE798A381891F56390D51DBB42A7 + 159248E9AB3865EEC539D1DF1CEE291854B2408D55514285929B71F3E911CEE8 + 025422CC71A733C61808608F140619673516B50794AE5A1E75CE0B97FC028DF2 + F0DC07B1A08AD38B9DAE6A0593B9120A3D429C784920405594AFD972373ADD25 + C5A2F4FA50E61F18C5F6D15932FCC348BB066DF3B607EE8F66E485B837C3485A + 320618D8A9255C4871BDF9F516C122518A74611D4E51C59034AEC04CBF04DA08 + C755B7FF3D803091AABCE8737A751DEB92604F46274186284BD2B13BCE857F4B + A7E6E30A0A073A7D82B7ACB4DF194768064AB474EB0242E50B00B8C761D33F86 + A4A6E366FA941D75DCECA7FB55B6F4A0B011742630D832978A39CDAAA1BDFA65 + B752759FC735BB4244000C3C4C59DAC7EFEAB33488915818CBDFA43483DBC531 + 7DD556008E3A8E9383377683650417065031F84349931631AFA9BB68C544F2DD + FBB10BFE85FA8A8A5CD3DE323AC407CF6765B00F40E4C764678BAECA8BABDD9D + B86FCFCC87AB6E421E066CB77A7061D067DAD36FC940753E6B6EB061C98833C8 + C24FCDC74222B128403480A688916253E0B7558A802BB1A4A2C494D9EBE01071 + E640AB02F5271B743A8A569C14BA72D3B87C7A14873B74F524EE245A9CA2A678 + 0003027D89B755935C1CC7C09CE1BB4FAEE218CC38736618FB1AA74F86266D68 + D2118B736FBB0098123273B0613F64942297ABFE0C3AD798C219528082235438 + F7AAC8581037E5C3AEC9E5BA2FB7D60553C2E05F974BB5345FAEC644CDD4C4DD + 4AB100CB85F0F178D7A50E374FB9ED26D2C0C486FE01FD993D866AA98AFF07EB + A851B6CBAC0B1B8ECE984BB04DD5E844770E63C22C686150A47CEA29EEFF8436 + D7AE810430FBB4D35698382922048E72F60BA996C2A35A32A3048F48E6AB4417 + D8A06BC5E534D8FE838BE486CF2ECC6018814C11AD4238509DFB67C1DAF230F7 + 2A5B12CAD0F06C3CCD23C93C2D61649AB1109169085EF35C6D881B867A8B88D1 + F596EB789CDAF41AA3D1F9F491787BBA898D3C599989023C0C61F5A7663CCE71 + 21331AC7BDB3D0DE0DE2B45AE199517189D834C0730360CCF8BB673AD4DBDECA + BE242E78FF73861C7ABDF04EDFF5B82C3EF02C186327D96892DBC23FAEC44B31 + 7825C2FA487D15EB0EF196799B6DDDA8FF52A7D672B8E017A7FF8292CB7BBDC5 + 048E44FBC2FEE95C2A7AA16F557F1574AF25436F5192F647BC2F31EFFAD93405 + 1CF1F6FACC83C1F5E8D682767741EC0F89BB3D56E2234CE559CF3879EBA784CD + DC35F2D94F291A27B85D7AA3CBD48E2BE7D3877A46470343ECC3518FC3DCDFBE + DAD5C4BEBFC5B1E986B6638728B36AA717E3846E9A1E8284EA34A1A430B25E08 + 8F7345E3E6831494F5DE3921BBA0F4F62E26F3AA31B14918C30AE7027EC1167B + 1075EB6220F1EF159FD8B22F667F8E9B05AB49C9EA48A5D2DB77F25BF49E06AB + F224ECBB341DCCC026B31B2EACE837F831573A34EACC3231FCE4C0BC46C6408D + 797B9D1AA9E1F3D02722217FE0EEFE8FC39D44B1AE1F6A075AD8CB313D16657E + 228F429C2614B79BC21932997889AC83F124595025CC963DC8C28AE73BE7DECB + D00D541AEB01DE4E9D1F04A2B13ECFF0E7053280B0EBB954FC5575D154E615CF + C3C9056C716D9D3CFA5665957FB25423CD803F414DD1762A8987DA607C39ED9D + 7C9411860C8A431BF3E6AE5FB2340781AAC5EB671A0EAC86ABBA87E616A1242F + 063A827717AB23559FC5E860E14B5A1973B0E55471EA524C100106FD27919FF8 + 508D2660F4EC9AD403E595355B82934A5F06ADE717AB6B0B2D451B77B11AEBEB + 90B5D5C18BE6D359B1996DC45A98CA5E0B54D28BCB1F69D027B31CA3FE2414C1 + 488BF1B280F1ADE3F70DB9387B493530098127824041408CD49E812599B67419 + A6CCF369CBDF772881E026ED5DC8C13336030D8C01EC89F3FAF55225E561B865 + C7425197841EC4F8A938BC809960E6EE30E637C027658297AA2BC619B385E9A7 + 055297D50271E4D5AFF3F1033E56C39365E1EBC9A4DF5D4655CADA3048022CCF + BB20422D9735483D21AE80A03021CC39983BF6F13A2AB45FB9414B5A480684AC + CD2511C06157692530C5230E534E2FFB92FBA8A99EBF75E0373C400C3B48F9D3 + 1DAD485839EF7F891A062EBB1C6DD02025DA482C0699B2D70D8E516F82CE5963 + AEEEB595F1DE45442F5F6AF5BAFFBD7367AE64DEFE23BFB56EF1AA787D984D42 + AABA6FB3BBEFBA371EBACC99B4B9ED769400120B884D37DB61B88EFD75B564E5 + FBBF04120AD5FFE1121AE159353CF77601A28A379C48E14489E6D6A795661FFF + A123E19CF810AE55EDA1CA1170EC2D37BBE57DE52B027F0B1910127C958DA14E + D6A48C2DB01A721EB8B6417E8467B7CE9021639E3AA1BC45 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark + /NLUQRJ+CMMI8 findfont /Encoding get + dup 28 /tau put + dup 30 /phi put + dup 59 /comma put + dup 60 /less put + dup 62 /greater put + dup 67 /C put + dup 69 /E put + dup 71 /G put + dup 86 /V put + dup 99 /c put + dup 100 /d put + dup 101 /e put + dup 102 /f put + dup 104 /h put + dup 105 /i put + dup 107 /k put + dup 108 /l put + dup 109 /m put + dup 110 /n put + dup 111 /o put + dup 112 /p put + dup 115 /s put + dup 116 /t put + dup 117 /u put + dup 121 /y put + dup 32 /.notdef put + pop + end + %%EndResource + + userdict /pdf_svglb get setglobal + [ 0 /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/tau/.notdef + /phi/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/comma + /less/.notdef/greater/.notdef/.notdef/.notdef + /.notdef/C/.notdef/E/.notdef/G + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/V/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/c/d/e + /f/.notdef/h/i/.notdef/k + /l/m/n/o/p/.notdef + /.notdef/s/t/u/.notdef/.notdef + /.notdef/y/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef + /N698/NLUQRJ+CMMI8 -1 TZG + userdict /pdf_svglb currentglobal put true setglobal + %%BeginResource: font DHANPH+CMBX10 + ct_CffDict begin + %!FontType1 + 16 dict begin + /FontInfo 15 dict dup begin + /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) def + /version (1.00B) def + /FullName (CMBX10) def + /FamilyName (Computer Modern) def + /Weight (Bold) def + /ItalicAngle 0 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + end def + /FontName /DHANPH+CMBX10 def + /Encoding 256 array + 0 1 255 {1 index exch /.notdef put} for + dup 0 /.notdef put + def + /PaintType 0 def + /FontType 1 def + /FontMatrix [0.001 0 0 0.001 0 0 ] def + /FontBBox { -301 -250 1164 946 } def + /XUID [6 5000768 ] def + /StrokeWidth 0 def + currentdict end + currentfile eexec A0B00ED5187D9C0F1ECDF51878C3AA5CAA3EC67F973A7D + D910BBCA8FA950CADA53428ADA87055C66C84903F07F66481254896782FDF2A4 + DCDEAB2999969F5A6734747823B5041212A1A6A3CD412CCD0EE61173E1EB05DD + F2B7DCA21E965DF4EB09D153FA00AC23728D25C5DC9BB0A1944C5671068B302A + D0309F99CF5211A3284B39D335A60C7DFD0BC14ACFF2B3C123318746D7569FA7 + D46BDEA41DC69B6A58BCA74053E0E96130F5001892B5C44092C0A7D79CE153EE + B530DA55A4BCC30F48027C64AFF4F47B0FC51196BE3BECF3C189A5768669274B + CB1E24EF3BB152486BDCCEEF89570A6987460D4A8D66381F13F17D88965E84A7 + D5FA75A6A25587F91EBCDC6AFF9FBC6A222B6C36519945846077CA2DBB85B220 + 02F4E7A79D8009F1392AE8231FE67A5E70FFC5B07CEAB06132F03161C70DC644 + CA23347D64422863F96C724BBCBF3EA083F50E38FC9372323A5B2CA056B23122 + EC8063D227DDFBAE9BF721A876562F43FBB4FAE5B9D2835A8138D0174B589F44 + E62E253C2B00EBD75A74EB4C802FEC30CC72DB97CA3274C3F16B5EAE2D9996AA + D87E4B38BA16A4A36E8FE88FA9DCEC6BD5DA8AB64FE71A783F0CD6C5BD440543 + 1E1C9A5D86AEC3429814290550663F74AE581E9948E74101FD5F517E6B11EA01 + 66B4FF39E432907C71226839C0E9181C1DD477B7D4229418EB7BC3A9A4928BC2 + 81A1F02543448FAC91D921FF9F80BFBB0807A8D569132BE304F7A45C1B210495 + 186459CD6C063678367D5A48C95B1DAABA4A07987E6C1A55D62EDAB4A0B9CBFE + 2AE30349FFA98395008358E1D011CE987C91A5E83DB0909303F37A6EEFEE3943 + 982C28602125DD9C4552440A832FDFD857CB2F47A96FD93ECFE8A3901332795E + F5291A690EB202EA57A1CAA6B342890715FB239CB735A39523505B24C1D62D1D + 5E17B9A469F3FD8DA893C4935A8728C89E3B2F138183ED84B589DCDE04FF9715 + 0F85FFB14F8ACD56C5EC816EBFE5DE695EAE4332A454612D7C00118A934FC016 + 9BD9048287FB708888319568CD0851F70D1482699DE5D5FF3F1097DC4691A922 + 5FD9DCE733D7560D6269C7AA1F01857BF9B53501290F349DBAD3BA9E529C9AB4 + 09132197B918E272AC9F095AB0EA30EBECC3558C4F826897AFF13C65ABA09411 + 894390CE7C17EF011FB8A5521697FEB4FE848D6C3AA6D9B591E7C97199ADCD06 + 463767103516A95579EF4BB032141F29AF2CE3B416648CA77B45452DA36D0742 + F9769D89C8810F0C95D045E85DA049018E27F77D9ABF996800554AD065994477 + 7D347A8B6443BD0650E6FF0A0071364536A5D7905696D5F5BD1025D13AB23F1B + 8F7E6CCADF709D604545015AC8DBA9697C293DB3556C05BBFB11C9321ECB5436 + E269AB9C85DE5B538B4D32634958B51D0261DA98DC47B536A0ED8295EA6850AC + 547536985063FB5F07085B0A32EE47EB72B863EF83E56216D2CC3CAAEA31FA11 + 3FD879805539CE27A348CA105FB4FF932F53C0E616CABCF70D688F42A0B96205 + E13358FBA2FACBBAFB9E6389F572C4E9B32F1206BA3B5D1BDC246B2266512438 + 1091557CDA217699E25117828EAF45F7802E53B42721F5914C58DEC81DEB4369 + 1794DC2EA87F88AFC2748FFE839B8F209CA73DD72CB33711CA2D45448278D2AF + 088203000C0D8DF1DA2EDEA426C755159CB4B1DA2D4BA35EBE1AD5F7F36C8F50 + 38586C48F315269121912BFD3E0DE6040BFEA81A6E39DB5D41F16542F4CAD66E + B0463642E166C98B05CFC675FEE474E974E3A89746B6484E8AB2BA034579E4A9 + 5795DE5D258A6A5A9E588D2E774D7F43082309278BC49ADC64CB1C55D8BFDC8C + B7102C94F286FB740C2A24C09AF7476F12D735A1E341A5A86FACBBF49773C0DC + FA84513D828E17D727FFA053C45E87018A760FD2E6A55C257D50C459E7E9E80C + 356E72D3A4703538995C9B1FA30475E8E3E7D1C723184C5466ABD6091E894FA0 + E5C8585D60EE0C3F081D2F5A56E816D3FACEB0F4E23EDC5DF569201EC94E7E8C + 0EF3883C84864CAFEB4E48DABCAF6EF6CE4022C120D722EA686A0F824C5EC84D + DBA74F2E3266008079C3F02F7CB428D4EF49E314D319A3BAE50BB00B100575E8 + 6AEC1CECCF6B31BBEA224B0110DCCFF5CCF6BEB1D11D15BE7DB593DAA887498B + 7332736F691C427F67E8EA7A797394FCADE91B58F6D9B451612674549E21889D + 344DEA225204631981A8D5DD0E647A19612A91700EC60452BCBFBA3A9B02193B + E5B3E6E40C428AE3BA686BB11EC359D84C50F92BBAA47721AC2CD812FF827556 + 1D4B5BDEACB9781DEBF3AB36B564D7C98E624B01E35611A6951E176F81FAABC8 + 80BD0591FE9C75940E7CCCB7609C23ABF2F6FC6A88E0A4721868AD7ADD46D130 + BC3D9653BB23C7F9B933559715BF29129D452AF26AB9332957526A23AEF81416 + F39A3B5BB3A9496A6BC70692E57E9530A3931DB7590F8576736BE01589DDE0E5 + D91FB32453550B1F4DE28395179E5239C53C78872AD917BBE968E6DF2F92A375 + A74961488E0CDDFAB6C61594B29E8807C757AD84845D1A6C7163E6634BAA34D8 + 1A42E90AD3F23C8788E69E3B76BE800486766190B5902AC190BEB97864C0D127 + C5D12E5BBA097BC1245024B0E1E2DD36E1BD12981F45C267AEE9FB92C179838A + 2F80A4BCF64BD9467E660003C27953DABEF9058C7ACC0320E8C29833BCA93914 + 50E89C2DFDBEEEE19DE9A8B0D1D365AF570BDDB3F6F8F5A6F8449DF0C38C5BBA + 686A7502A6C289762D3314CC2C8F95EEA71CE130AE54DE3DEFC6997AD535D15C + 69F7C853CE18B202ED428A9645298FE20CBA59766F9863868B2788599947DA1F + F11FC1B4EA046D46F61D381ED9029C74BD46E493857957F231A25EB8BD2ED927 + 2481AD695DC027877375D8A12FF08A41B8998895BB016CA9508A5399DA698859 + A1E30950EDF830FC5AA90BA3000140186BCB579277C7733CD7D705D9F2272623 + 6134CE73C51A1ED30E5A2D70940C95FEEB287DD7347C2EA8E25F96B1CA0810D6 + B7587CD059744BAA1F4BBB946A793FFC0A1330791E5DA5876B58E92104A04E52 + B9574362331F4F0DEFCBB1CBCEEFCA434E5FFCADB2B6003EC70E29EFCF7C81F2 + 0EAE94A2B9080471731B65B2A40F225B6CE9400FDC0D6B6235852F03560E42F0 + 5132D94550BE7398F74FDA30324F79A1F73DD056E1A13C62B13A0D6F0B0BA4A9 + 71F4D1E2F31AFE3209A8F6E57EA441B212BE91FBD1DA8C7E2E287F19275EF0B4 + 31FF8EA5E703F9CF785C020EEDA9B9294EAC0649ED1FF8DD47D036714A1B8CD2 + 6942CEC1A1C51EDA0856536E415B90E8130E6209625A8DEEFA06FFBBC5F0D263 + 97FB710CA4D49C62DB0D736D15070CC287C4DB9AEE1810ADFDB6233DA96EABF4 + EA62D430EE3F45967F81278F2983425F69EFE29749A5FA594AA367FA36BAC6BA + E89AC82E46C2C0B4D4CFC0B722BEBECD56E3EEC789BA541D263D006ADF152463 + 37B7A04E09FA06410B4E2EF9D97F09D5399F3597E554E1DA332682369E4A1F67 + 952328AF7A0092B135B4C12AB93425B47AEC936879FA050FF491B83B51AA9746 + 9889003D33865938A72DB7AF6A231A6811CC528CF2768BA3A69729D50D0A2CCE + E58629D5B384163125E8CFA786D3F6D128E0D1592EA9C140B8C81A03C8B74C28 + FC86CACF363004D1A495EC653356ED4A5EACB461DF7B92D1A0DE6C846718F107 + BABA6D6E5B42468F6467F88997713795E1099F030B04E2973D14E48CFBD2FCDA + 4B96FE338B1EB23A708B4ECE4CB298F9125AF131F3336722E224C3EFD41512EC + EC305AABAA6E978DC0FB905430649D702D8EF84859E3C7F0F746D24A518423C3 + 5DC666E5684281A23C87CFD38B9B8A5DB728A304672EDBC43E23EA30DA1BF110 + 6A8E17C685223928E645CB86C0C4AB4BB2D148FB2009B0442BA5D299508355F7 + E1C19DFB4B194304F9E7871D70D3D5098575A925F33D8AD472F1970C4CD5AD8C + F0AF5DA840721E5B70597664CEFC3D8FC5CB1E9FB11CDB78CCD43E862A3169DF + B48BE8C3575881B3AE059CA374F4D3CE64085203F34E396EDC11955C4965BBA5 + 1DE15E614E8938AF960B224FDC89D0620D42489E6BF6396DA684632DEE4ABC30 + E8D78B57093B5621613F6C2C11A6BC7612D2EF4BF73C26D1A5D47F14F39CB62B + CAADFE44637260301FCB0CFE2260A661BB37E42D0EE239250CE8119DC1F5F274 + 460FFCAE381DAFDE54D9F0670D1CD72EBD544DC894CA477ECC29990E84141B39 + 9FFFCD4097F74BFA04E4B96A3889351F893923C9E9D40A3DD6766318349B9314 + BD5CD3085AE9E4DE951C62489FA8DAD7BA62FC6AB98B97948168483CA45352CA + 2BAB2DBFC16BD0E316E7128E820CA2721E720A340CA31B5C62C5968B6A413869 + CA02288ADE416678E76516763E64F92C2BC8E39EF7FAC869FC4811A52F448769 + 7379F1B3DF9C74345F204439A666CCCC9D4DC2AE3F7CAB38012E805F49E11435 + AADBA3B678AAC721F09EF76070B2641018A53CA0D0352F48464532CC5439289E + BE309413F7CBEF18844C26F265F8E213E6DBC444D10916E3D0ED334335C47769 + 17DBFB3661D2444BF5E8ED52FFC9BBAB5316E5974F7889DC2A1EF1F35FFE615C + 3D437F656D6D44A2CADDAF164D2CF921EFC0C614A9C69A6F76E27A2409DDBFA2 + 4DD561E9440862396703021E07CDE929528E9F5D1187E3F9582757B2182F33FC + C3E2434F0FFFF5C29980BCF565B359DBBA15F90EC8D97C4D60F4891F8531E4F9 + 144919573FB5B42B5A5FE331485C8DAF20B1CFBC6EFA2DAF41C331C3D9947379 + 73B3E62DFED1B06C4AEE9845B5988F842ACC8DF14E0E2C70B04ED1211975AA30 + 7015516B060633931463C9E535440C5FF8DDFB229B23496221A2EE717675D652 + AE1C9BB58A52227615FC74B066A80E4B1BB01302A72C0CE5FB25BCFFEAE699E3 + 6F3AE122F010F148B245E52EF8A06B2D4140CF84E5E6D80A4CE40AB8DE3CAD62 + F95A9E38B7303C5AC93B4B3204A76AE14DDE5518CD4713C5919C4F66B38EFA3B + 041CAC831F29FBDCB067E2B11A8A3882C7B3BB580C7D5D653E6EBA2DDB896318 + E5713EB1173450E3019570E2CCCFBFA771D5FDDACBF271945C130EB378C4208E + 5DE6C3EBCC5E070CFDCB38BF20834064C021E875965E44E0B461408EAA166166 + 71B1FECB173770E7444D0F0286C5960FAD970358E17AFC96D8F793B511CC44D6 + 4F2C9FE82D9C74FA8094C93F58F6F48DFDBDCE4B4124BE771EDE367EFCDEBD4B + DE4943C92DB9FCC9BC8BDC43BB693F2647F41630AF783297D72F49B00E902708 + 860DF21D56446A0F7DDB4709D15734C9706E144506AF1096E6F60F63D21847C2 + 8BA91B2952CF09D9273EA79C224A9A2BA374212CB0CCF512B4C506A12578F714 + 94AD1CD0D4D2B7583ED9AEADDFA687726D9AF4D6D0A0AFA4DAF0F445748958ED + A04FBB81DAEB8E91D7BB10F88A30DB04D03E78724F31AA60A3B0A095B7FABA28 + 8B1CAB814547E46B2BF33BCEEAAEA9FE0A769A1C4FB433BA0ED5D7424A59504C + 0DDBBCA9992276B06BC3A568EF7C26ADA8C44C642718CD4966BF98F96614A536 + D88DF3E77390D878DD610912FA68FFDF5F77CAC32D93FB498A80D0E3952FD459 + 6E571998A1BB4FE07B8F98F54E7B0C4E303784C61DBB6B1552BDF724320E4B27 + A48E5BE1D85AC4F1C47DF14592C0D0B2F3407C669519DB29F1088ED58605FD72 + B7136744517F03D1602D643591612A26863AC1ED71038D267A33821260753CF4 + 6DF84B0099F489AD43B0E24D2E0B570801800C144A0056CF198A7F4934BDD1E6 + E458E5759F3FA15A389B47E3A6CB669B8E2B2D8B005B0FBA599DD7573B967C81 + C6E367DA13CF0791198A7DF4C249993ED8AE5C0966072374F341524C6CE64FC8 + 4A9B2DBC66517CE489CEC88933939A3D270F6AF80D8E4749C68941EB913313A2 + D0ABD174A3EFC446B37D80ECC3F9B575D20A921809EE85EFD73ECC4ADF8CE03E + 71058EDFB165BAAEC90C07057B8B7E21B37B2EBD5F91D1B264AFE8F876C2829D + 9BEBD541558AA6D731F2C5A0DB1EA4D33205C28D7EC624E2C8637781C1F37533 + B07C282DB97822403F30EDCADC84DB9E43BD25F8F6E0A8D5B47DE933B4594A3C + 25145C73312A134965708A9795B1E691E5FB56B109A16135049337D035816F80 + DE83360E59ABDC8BE09B579F4B5807CBC9A9AFABBAB1DF243F3C451F4CE582C6 + 40E3F4672A265A0A3D717DB1C9E74253F9B090A2C807478EDD1446171304680C + EB28E31CFE9E25F28635673AF7065C39399139DC46B34012869CACFEA6ECF2FA + 8D7A75DA7E7CA05381B715243A500E7FC40BF174346030CE863B9D0B7EC8EB1D + D571AACE2222DC60ADCC24D3E092D0F0EDD53BDEDDEB376B86A1894CC223F8EA + C2E329B724CC42727EA808369D483F5E7C1F9CE5A656DEB1092216A872731793 + E84083A204842DBEFA8E7552BE2592C95E09CB7C2F62D634EABBE26997841585 + 3C297A448561D71143D48BB50B6FB09BED8E9ED726E4ACC88EAD8C3F435943C4 + B7B0FA59F2EB10C85BE459B5CAB814F5332975A01EC099EF021DCF4D0A87998B + E99C593C538C7FD49A44CF6CDA7B5538ADEADCDB44BFC2DB51AF0F20B7FE4279 + D3BFA3EFA5EE52B6B5A06B547E751C4F8036AFB4837493730C57124F711E6A6B + 0FDF06F112A536530D6390F92DA685935A5BECA550B8EEE23ECA1AE9C19F8100 + 73F38AB3E648D9B11EA0BEB78AB691DDA9350E2C7D940C7C673F1E44A16181BF + 87E9C6BA070F4857A120B43CF02F6167F370755FCE35DF7A2C05B11C5A8F567E + 95F01C7931F0F3AA241D13E41375D124EFA99D4104B84406BA9B7CB2430F7023 + AAA0168CCFE736A6D63C317036575B76185D72C3F613F33965BD8CAFD8F00C6F + C73259EE2680AEF330397671F0D9E35E285CD9CACA5F9D03BF0ADF1DAA82D6E9 + B025EDBAFA2A46B43F805DFDA06E0C558C32381C2C46A0C6CBE97F9B36C5E949 + C1BFAB9FD1CF91EC69534C82CE51CFC79510EB18E966F14663D2C8BFF48981E9 + 0E984E51AB2BA13981A3365AB24E090131C127418EE3F0782E78B8485AAE89FE + 27F59A29B951363A1049CBB73BF3C7CA8A66AE8B4032DAE2AF8089637321284F + 03A777857AF763240F7577A3BBB7898A161536AF2E26146E32169461CD0CD4C5 + E57C152E301EDD801F29BF27D0003E4BEFBD51580D8428EE06F56621FC620FDD + 1BC1EE42BAF0EFD922A725B6F75E2525A1FE794C3D539B92CF1D20DEEACAEC0A + AEC4B010C560E3F9B88CCFC7C9610F9413C46D7B7C1316468DFAE8627C0FBE87 + 25C31AC13CFDCBC938B285A3CEAF1A6D263728A3308F09520A28E0CD6BEC2DD0 + F9154B2D19C8F1EE34A42760B1A122C2145891D0B08279ADF7926FD48BCD3011 + EDFCB3FA9B6AF7E9E652E3377D11DB349A2ADFD10B69514777E262AE5D579F3B + FF25B66624D1215E846866CE3FC861929D8F197AA585EA996CB662EBB2434244 + 556302C011DE78214D62EC77E9953E54AA293879701A7D57DFD657A03B93031C + 7F505CF797E23BE271547EA39413E4AA0BE526C726B353D09045B14FC64DECAF + 160151A8B0928F2A7F51AD429020C930CAB07081D6735F1880754CA32A98FDA7 + C8D0BD9495C7178497DA3E15C6A51AB0A5A98C5B6F36F666865966973F860879 + 4A1E6A3B4814E99B54AAA5F2D998C7A52F319FFC46007F703E32FC26801487A6 + 70B59061B58442010D2EA3ABE3487BC96BB25C388A8843D949F46F9F1C80BD98 + E73C4F05A2EEEE38794CCC4FFE4439C96DDDB8FBD21D4E8BF8491A8911F9D359 + 68B775489028DBC2366DBC2B5E43F5E66E5999F2B0601D5E8CB41BDA16644BDE + D1CC47830C6922C2E98B54CA9D8E226AAD0D4489B21519A66AC7C4E2239FE47F + F3466F45002A92AD0F120C728A38BFBCACD77C690FDBAF9F183DE5964C0F6D46 + DAFDAB1863D0FA061C5DFD7613F51DCF1B84E25C596ABA2BF130741CCEAE5AD0 + EE61C2BE7CA4E06E1163AE8E919A3B2B19C2444BF955E38790F4A7D24E2438B9 + 021476CC6FD498FD2B7E9DA933C8689C21C22A3198A33EDD56E5ECEB1C207B83 + 879D4AFC6C63214D170D422983B15BF24B2FBFC324B1F16FF682B7EACC6F7A71 + 8433736637BFF81AA1E29D8E0AC28FB09D84C4511F015F87E9D1DE0CE94A04FC + 9E0E2A31D20F041F07DBACA352425A0D31A211B693D8E28ABD6BEE13BB1855D4 + 6935EF5A70607D4EB49938903349D873609C3B98C97A4587803507B55245C010 + 69ED2834A0FD9F495C13BB54DFD2F6FAC008CE81AA2AD791883D346EAD0BF758 + B5231DD85567E2AD4CA1F652F831D972AAF5BA868D5C39A9D34BA08CCCDE767E + B0B7B693D55C8EE70A4D66F95B04CBF4F1187B6453A2CEC5C8D9CB39030A8F7F + 1C987C1D39FE371E958388A802398CC8B74A899070E79072B1DC241AE0E06E52 + CF4479E957F80058601824C0C01C02256C840321A22DCFA85477170A7E8360AB + 9B797A65053B60525E747ADD97154ACF02E250AC659034AEC5829A0D1D684AC7 + CCAED1A5180D17F8F645B01518D42304226FC3E56FD2E9A055B8C26CABF81D97 + DD8A38E9178BB25564BCA518A5662C6403FECEFDF8E2FC1CDC5DBD9F80599465 + E1235E0FB2043AC97EDD94A1CCD80E53D19C490300E6749F5EF3EBE15B04DFD5 + B8C1075B404E28B6DD3E95AF97C0F8A301E10B9DF6168F12C544ECB11E8871F9 + F88F6CE9E769A12E661525E6D0117BB62602E7DAE93F410CD1F15B5E77611276 + 1D1399663491F70A62696F63A3C127721B737BB088D4BA61973434F499C38B06 + 100308837AE0F70C5F5CB8216FE5FF52B520CE3147F35825D71A3D1E8DDDCB02 + 2D8C8197D8C39D583E59A42AD252AF5FED708FDF25BC4B504960BB68C8CD6611 + F32D53FF82390AD38119298B64D40AFB371BBDF2BD1DC110A771804FD7C44F93 + 308BAD2667507F01E7414AE9042902803FB364B4B11E531C13170056C950C55B + B3C900CB0C9629D056F26029E16B0C9F932E349308CFD86A1C7B466DD80F49A1 + ADD24AF9D410B357D5B55CA4F600B9BDB2873A1C373DECFDA3F50766EB36E824 + C8256B9F60FF1323440C703CEB1135141A828F4691F60E9722608007748C357D + 8C83097A6E7DBC025C6EFC748730105D3393C222FCA2BA0B71F5419DF9C9A022 + ADECC987F0F315A2E34A56CBD1C5D1E0D1D8D69F3DE7328EB3E5D4AD776F5B14 + DB01B7F153BEA128FC0A56CC1EA7B43FCDE51701567CDA15E964B2CFF3CAA397 + A576E3F29CFC973C185AE3BEB5560A7D35E8364F34290F9ECEA518E276831B61 + A86C4338BFD2AE5FA8D75F48B4186AEBB4EA9FC98D0157EBD30CEE3090F1D8BF + 07EE9DA61674C632E121D1F1AA67FF5CC4B7413F3DEC4BDC39F1A14CA8D90A59 + 699B1341DEE35242149A7DE450EAA6741E09C8D9D3224E1A20D8E84EBCC35317 + 85B51532CA1900B091B87D16BEF65CD6A14332F9DC46531A21A4037D3E8F7337 + E74C258FF46D6D190E6CB4D11C58FBADFDFA5E1B97848B540B368C203821D5E6 + 753441D3EA1FE0607B227487211781FDD7C3886895C2CA9BA46313D9E69C084D + 2BCF84B8184F9094F6E290454C68EF3486F92689B53F2595935BD64063F04564 + D404F4755D5BC66397F750249D640F0ED56E8FD44A49B227CC85D56C4959435C + C216A1F0E3BF679B07DED0773B87A9E1BD2D23FE66A51D1CBBEE38882644067D + 46CBB83A29D6A31173901288863B34343664DEE8F9DD730EE48FF3E5AB25B815 + 7E9D9539924B2B2428C929D69E60B3E6690191988B8667ADF9555F49D961527F + 6C2DA3D59A638895644D3B53C06CBE9E91F2CD00AB2978F72EB66DB7B2B68248 + C6753245AFE31828E9F58B17A95337276043BE24FBC9FBEFCC96D32418E8E812 + C67C6CC3BD74CFDCDDED665B68A01F42F6E6F69EC1680D7BFCF7A2F139C461F0 + 9A336B45A8C07D622EB62734803E7C9EA0B92150D259AB50BC91D487F4942047 + C8BC8A3F54D05B133BC73F72F2B314290427E41AC2CC09A46D4831D3257C28E5 + 874FF2429D03676908FB91271FB7AB3726BA8CFE4609FA3023FAB5008C184412 + 6D427475357045F5D2B1AE3A72C6A0A49A76A1D8184D125939A5F47607B734C4 + ADA5B1475E17F9B93E6C4BF0620A20B5A78501D28A193F310B4296D35048F304 + 34615126579B8CEB31E95EEF9A8111B21BD14170A1F13BD86B4BA2BAB572F8A5 + 794CF29FFE113C6057E353AB9443C4377BA03E457E1E84217C5DE1DA60291C44 + E9F588D18949AC9D10668321568FD4F97C9D70DDFE376886A5AF6B6B2FD2C20C + 2794D0042BD56F28A713C75DC5FE982A064DFC678CA4E24C23E86B05D00C59FE + 14B2DEB4BE71D856A836AB0694E7A4DE0D4C8A2E11E16026AFEB3F2C2D1F7C16 + B1963F1040879438256A1B7BB9A7A96231A5E1D34B753B38227C481D9848949D + 5A85381ADEB54DD10A905BF585A5BA2973ED6FA2110ED7587FF1156874325515 + 66E4BA9C62C7C912A88244310B82E3A619D88B5AC02FAAF824CE98E7ACE165B0 + F3E6C619A2176E026C7B8D0716E785B926EFDF26CCE73770CF6CF4183C16DC96 + D3125E0F4BCC38878ACF0315D34B9136DD6F06B76B81950553DC529A95AF60D8 + 6A50AC212A9E882C42DAE190EF31F099C1CEBB1FF6DD2152882F5672CD2C5CBC + 92AC8DBB7EDD7EF83E7E88EAD99772D23A22B7D0F1172B72A87A37482CF51563 + C00E4788FB9F253CDA3F7A1A229D38502C7405588E174B18CB11E83EB1A8EFDF + DB08BE83FC91E24B53605E8097F15EFC1815A0E54364F2491EC3E45D5F1EC69B + AFD35A69E5C55586DF4FA7EA9CB7CD1B448FB939461FFB0E0068DD7367893D52 + D94EC07B976F302372C121726A655613B5E5947CFC9FDA475075ECE288BD4FD2 + 3E585486B550FD18467B568B652CF941C63C08303B0E9F41E889B6CEB6E7ADC7 + 4E1F715C61818FB1E84F90665236BD31E21C8F8EE53F50BE93E8CF633836063C + A29B15F9210CD93E31F19B373843CB29E738DA0FF95762333EFE3CBBF09DAC77 + B0052CC3BC95043681CB9CD2FA7C2F3E090885F02EF5CBF3584E097B251697F0 + DAF09875D52744B9C9B4921D79F88B773C12A88BCD6F72B10D4FE45602520A7C + 3D4F5928E30EBDF05D6B8E7C5E1033F15428ED07C84EF1A21F6B07A59C153F89 + 423A58DF69FB354D8C93F0EF557D59BB9B42A4659F337BE5847DEC3A4B85DC86 + 3EF52AB2E69A893E535FA63947266783FD37557E620F4C3C6C90CE4807229E57 + 16FA6050088BA1281DA3344DA9405271F88BAE492A60270D241DED4A5A15AB9F + FAC4A794E30AA631481D2671B2C02316CCA7957A4C2698000FE4191942B3EEB6 + 350CFCCD120CFF0F92BBAE235928A5A407922FA8B6F1490B7506DF49E9A51933 + 09E70E154349B1F51683AA0EF2D875F36FD3EE535016C8043D38DB401D4D7ABD + E9125726172DBAC7F86B7CF1B422D3D49AE6031DB1C68C57F21E84030FE48CB2 + C58781847C8DC28505F3A9C9C1D4B7B56021DBAC395618E9F0BC8AAB360069D0 + AB64A516F74E0ACD44572F8922A4EAA6A930511554EFD9BC94F90A6A12EA72BF + 1A0757ADE15388B36B1E84A5EC67287941E0B48BA089E857FE20964013C005A9 + E8C68F34A462076380B1B69F6A18FD3F39E202647F3857073610439E4FFF6705 + BFDD998321C70CCCB34DB214335C73C4A2928A9A6281CC727F043E7A0CFC05F3 + E9AA7FB6DDF98EE8086958C73E6734A0F2BAD77EF040FC1EB70ECC1C822D9A67 + A8E88594D265839155020B3C5073EB382CCD4B1C5CB6869FBB6050AA1597B9BF + 99C875B13C8044930D91749F1392A36C0C25CAF8D2F2715A16CCA6FAA896943D + EF0B7A36C0C78C22E5E34F40F962473AB228DB0B9D081305466225C44469BFCD + E220F2B89A5B8E96033CC8045EA69F5AFFC4F2FAF3E56DC6C33DF3D877C881FF + 4B1491309470E55489EC83AB4D12B3ADD0CA6BA6085607FFD67BF1950099C157 + 31976CD24CBCC88A70E0BE528250C3AE3D17AC22E16922C2A949421A07D64256 + 403AAE244547575C6AB1122031D3FD628866EA6ECB69192E15C1138AB212698A + 033B570F12131AD6D325639C4C390A3FCF18B75638AAD31128605D35C21CBA0E + 57914161A8D7F8E9CA5FD6E274B7191DBD764E5AC19DC51B71A2B1861A5CB73F + A8E6AA89892FDF9DE5D233E17ED5B01582A877E9097E3009825011D2A47D2C1F + 1BBE0317FA6C4961CDF156892BA8F05DBA00D2863350C8DCE7C1846EA18B4360 + F58CFCED11EBBCC1AF5F8AF66164DD85CE0ECA7B21BCF91F118B8857F77DA029 + 3206DB06A44192228C3AE1DBD6838201A4BE28E37843759D4641E6E225E41A99 + 7E82B31070FE38683008A070B77B4005925D58CE7FBBD248FB8992CA78E36111 + 35A1F35C06DDDE6451C100D2F9DC5355CF83D846A0FD2DF6D9D8D7CD3D21423C + 3B7666699E8210D0BCED88A40573789718C8E1580916AB60CD9BAC919B817C47 + 8AB86F2810BC92D0F65D8F05553EB2F784ED89048773A6851F846BEBB4052C10 + 7AB14F5FA450A3FA16A32654FF0E862BD8EAFABC9B0661D2CC9F8626E932E31B + 52E4D9DA7C140C638DE3EDE228265343CAE1FBCC34D35B90816F914F7D9D95D9 + 7C74EC08A25AE513A9DA0F7DB81F412B6B405667D7B39197A3BD0389AC64CC1C + 36570E0E7EFAA6D37035CFDB499EF047B7FF4565EFB571103DAF121956BB69F0 + C6400847F95776DA8845D5D73DC02A22800485F1EB1849F8BDC359E13ACF3B33 + 67BA1F0918E7C75768AF8C52E668EEF90ADE48A032837BDB65EC5E2B7B76A362 + 227E80A20AEEA07867576DB0A80BC8984841D19EA8CBF9A4C8A3F50753E393C0 + 3C2DAE403859FFD6429C18ABD065334A47812DD97780466DD7CBECBB053C67B9 + 8EC763B4F05CEBB8B1DC173103C1D3BC67FCA92915833847C277FFAA5F9696D1 + 3EC6D8B4F66BC19CD9FBDEC6BF048E639BC132DC91C5BFE7DB4BDB08428D884E + 55780A57F58B68F6285287BD8B17BA68A9E237BAC3397806C7911B75691E4801 + B08FA6DC4F532029A5F6ED242C45A43F4C468F16D82B190386FFE3905F2C6AA0 + 6D85412750F3F40F5F3359FAB75F634E4FCAE3862158AD8AC02409E64E74BC39 + 12527298B864200A708E1C4E95DA6746EB9FAE9D9CE74AE08A1F0FED5F106654 + 87EE5A98147E82ECAE62F9F582DD8DBA5BFB7D55E48CD90951241DD42594BFE6 + 48591E358992E86C4A75E201D79311E6DE54ECF2CE2C89BF28A660A90AE79121 + 757F2CF320CFBCF2B3B4DE3C354A9E0B7E21550CD97DCB20D0A2FF5976E531C2 + E5B8BD46DCF0BEE753FD59C8C1F1C410762C810B7C2EB559B51EEAC00DAEAB27 + A976A87107DB11F2DDBAB8B80D238FA69183793552082697E3AAAF1F379F6553 + B0DD85A435DBB1689F49B71FAF76396046F620FA976E2FCDFF9DAE3DC7A77C79 + 2FE6F863012FEFC86219B34EF246633D0614370914B7469D35C5C30FB00D507A + 6C766B02F2CA9F97B991E55D49D073F6AF7BC9D1F44B8B7C3A49C29BDA2009DC + B4E844EB364F9F3D0D8E86417950ABC8467FAD0D5E62A11E9172E0CDE1DBB2B2 + A1DE014DF5DD5C8FF478DCF2B0D452A6EDCE4E6FBA668BDBDD0583DD06D6BD2C + FDC6F5ADAABFE00269E510A9E580EA44C8CA71301997D583A2CDEE32045FD4D1 + 526F7C3DE2685CCEA1685753E9AE8CDF517D06B6004E88FAC423F8EA572429AF + AB6E83DE6989BD59625BD28119061151134A1EADE46850ACB2A8973AA09EBEAF + 5939048AABCB7EFA4993E146CA2A65534F69D97FC46C9F583FE1DAE81BBF2C67 + 7589AB656E2DDC66E3D5ABE049DE0B73CC366FD130788579463CFF2B4CD96D44 + 16EF709EDC05453014442A931B737D128CFB8E965D32140CC1E09B0BBAEAB793 + 87A2BACEBD1CAEA1A47265DD7DD0F5E844D9FF0054C59823D525F390A53B6496 + DAB52E2CE5A3F2A7096A5EB4B37EAE54AA4D7739F626239BC4C96FC066E6BBB6 + C482E3BBB0E25DD1DDF2AF218B81E9B7865FF1F7E4D17E24AB06AD30236B59FB + 43F3132EE5FF62711E14FA4E6CC1C9617930E7159795B249E82BE8450F2EF034 + 75B4890CD18B3FC803AE4F1A1A45C8D9148DA8ED9753F756DE3E730741028BB0 + BFB1E867FA31F5BD619BC044B8872ACF9663BBCAC214F1F7FA38415B20615F38 + 9F848E7D73DD6B5DB59D73AD1B89073567AE38205FA3A2BC252139B2EB7A84A1 + BFE8AEDD29C92272024EC65F6F3CAA9A8DFA6D3966E4D9F041AE1044D069B491 + CB1E3D330206F6B1E4DF71C3AE1B376048303C32CB78F9F56E1300ACFA8DBA56 + 445F5DAEA5A844340D37F3F385C40EE0D2C752E8D19239B0401B48579CF36BBD + F3A293CE7A66E8A9E3DAD67E674C5C06816A02F812450D4F55F4073480637014 + EFEDCDE45C004A9E656331A223153F6AAC6832E8D3EFF1F8AFD5DFEAAB888589 + 9384909782E3C67B8FE9E78641831A472CC37554B68207CBD827F691500DE7CB + E66C5313A7854C56561DB3B60A26C1E1C61778BF0139F5B7684D53FB9091D24F + B190DA3889A59F92D9B789E7E6C24C939B5E7E9065662E26E4EDEBA3423DBE8D + 489D29C8B8E9379895DB3D767C38F5303868B77BB50AEE421E21A22DB06E2B88 + CEE12FBA40F6B3E43C98234648DAC13310649985E72CD97D869FEBCA1DEB706D + B2331BE4195504272021ACDC65C44A854B8991EED12D04CE9F9FAA62AD5898C6 + B68C3E7071C5FDE733580D3D75CAD1BB91D37636E308DD5523C96001CAEC8176 + 7C3DB670F58C71B56CE5DFFEB839ED6DFA0B8A6F50F19AB740D7B978B6040CB9 + EF8CB6F68F69159CA5A9716A5B51D8A4E7D12ED435496B45A1DA8F1D7D8870EB + 3D620420F4C920E4AA3FC0434990DEE85BED12D882E4B1DD1088BA80C0BE9048 + 57B3D16681B4268AB6A546DCD37ADB9D0E325F550C527C02643E1AA2E556DE06 + B7AD05D1907AA4012B46E6206EE5C819C08DCACFA7F434AF9580DD5238087997 + 3CE61C507A54272BD095B1DCA40FC7678AC59D451B52857145BFB0CE9EF86316 + F4C72C0FCBF53AD6212E6AC05D789833486CEC6602AF9BD546E792D5A32E43BB + E840A660F60F34B75F76F2B9ECAE9EB8EC59CAACF3F200B7953BBE00DF8B5D17 + 5103445D5A9FC5FA51A5C498555828E9371D334747263DB01ADF4BD9440AB38A + 190CFDFB28EE392D5CFFD4261A4EB41CFD80F17A400B5FE24AC1DBB8C32AA409 + 8FE4A40BCB56CE9432C3B999B8984B5C492B0E7EB356F8E432AC06F01780A37F + BE468119C3ADBACDADBD4B7DB7C55153F09EF87D67DBF79AC848D09BBCEAD70D + 3A77EE1A09A89D8332D5AE3DE27E4DD67A32B4AA53E39487E313B6AB9C188691 + A00463E2326312BA2D265F6249E657C329693D58B0F2758C9D193072B8236229 + 7882C7DC16AFFC681FAB2010D8BC3D756F1E301A7E2B1037E3B656A7A2AE95DA + A05C4A8EDB71910DEEE5D991BF8FCC771393E5D97E982D037B1455812CE998A0 + 9285E62774642E65DD6E342060ED98BFE6FBC62BB385EB75D729B02CFFCCE68B + 2845652ECF91E647D28A53E0E2CDE741DF3A3793FD0253398CDC23B6C540B503 + 01BC3A9AC41FC42872146239EB1EA676E285EB0F260B4B6859B5601B618C40B5 + DEC0D33271DDD692BA312397C506048F3FAF6C8C0118BDC20AA51D92F2770FFD + 850C06CCB3D131F605F7575FB865A610422111D162F94F4F52E75B31C1AA25DE + 75559F719B9602C9E41189C74FE36F1D5DF4D40B48187B1DA27A90C95666D7C4 + B42C703E7BBDC4350A1C2E16157A0EC5AEAA1B8D998051874A01D3C4BB39FF81 + DE6AF81BBEB1BB9747DB983C53DA7174A757CE21386B99B0EF0D3F070AA248A3 + 7572981F564457C71B481EABD5D208ADDDA272460A4CEEE69311B6F83FFF6D90 + 7DD06AC9B47170DEDA661EA5BFDB12CE9B9CB5EEA415F1FEC1B1AE74B0AA5804 + 93031D878FEA4BEA8FFAD6211DAF7C9FDE2E6B5CD925111752B47C3B57183491 + E73B7D59B5510D0A0CC9D191546994520BE4EFD61DE729B241C4F3C5E5EB5948 + 6FCBA689CE2C812E1E9C7875926B9A129FBEC48ADA38CD97A1CC0D4B8FE5B060 + 5ECA262AF6E5CF7E49D9D600567C0F007C9C8BE868A2291ED62DC1F2594E539E + A26ADDB27F43B575D7044BE21F81EAA6C4EFDA9F7FB1AFA2FC70AB4F1598F87A + EED6DB7DDF2B2856ED10C629840200363CF0A777B89CC94B3B6DF002A1217CD1 + 77E0F6352C8DC9C4B62BE4841CAFF193FD2B50A1214E37197A4C8F2AFAF3597A + 22EAF2BD6E0DCEE2542D6B02067D0A3288A8F5A71B3971B58D6F987DAB45738E + C497E3BEE4CB2A7B7DAD78D14AAA60621B859BC67FB4FA61184A9FA8063164FA + 1875466F + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark + /DHANPH+CMBX10 findfont /Encoding get + dup 12 /fi put + dup 34 /quotedblright put + dup 37 /percent put + dup 39 /quoteright put + dup 44 /comma put + dup 45 /hyphen put + dup 46 /period put + dup 47 /slash put + dup 48 /zero put + dup 49 /one put + dup 50 /two put + dup 51 /three put + dup 52 /four put + dup 53 /five put + dup 54 /six put + dup 58 /colon put + dup 63 /question put + dup 65 /A put + dup 66 /B put + dup 67 /C put + dup 68 /D put + dup 69 /E put + dup 70 /F put + dup 71 /G put + dup 72 /H put + dup 73 /I put + dup 76 /L put + dup 77 /M put + dup 78 /N put + dup 79 /O put + dup 80 /P put + dup 82 /R put + dup 83 /S put + dup 84 /T put + dup 85 /U put + dup 86 /V put + dup 87 /W put + dup 92 /quotedblleft put + dup 96 /quoteleft put + dup 97 /a put + dup 98 /b put + dup 99 /c put + dup 100 /d put + dup 101 /e put + dup 102 /f put + dup 103 /g put + dup 104 /h put + dup 105 /i put + dup 106 /j put + dup 107 /k put + dup 108 /l put + dup 109 /m put + dup 110 /n put + dup 111 /o put + dup 112 /p put + dup 113 /q put + dup 114 /r put + dup 115 /s put + dup 116 /t put + dup 117 /u put + dup 118 /v put + dup 119 /w put + dup 120 /x put + dup 121 /y put + dup 122 /z put + dup 32 /.notdef put + pop + end + %%EndResource + + userdict /pdf_svglb get setglobal + [ 0 /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /fi/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/quotedblright/.notdef + /.notdef/percent/.notdef/quoteright/.notdef/.notdef + /.notdef/.notdef/comma/hyphen/period/slash + /zero/one/two/three/four/five + /six/.notdef/.notdef/.notdef/colon/.notdef + /.notdef/.notdef/.notdef/question/.notdef/A + /B/C/D/E/F/G + /H/I/.notdef/.notdef/L/M + /N/O/P/.notdef/R/S + /T/U/V/W/.notdef/.notdef + /.notdef/.notdef/quotedblleft/.notdef/.notdef/.notdef + /quoteleft/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/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef + /N1025/DHANPH+CMBX10 -1 TZG + userdict /pdf_svglb currentglobal put true setglobal + %%BeginResource: font PRCPDV+CMSY10 + ct_CffDict begin + %!FontType1 + 16 dict begin + /FontInfo 15 dict dup begin + /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) def + /version (1.0) def + /FullName (CMSY10) def + /FamilyName (Computer Modern) def + /Weight (Medium) def + /ItalicAngle -14.0350036 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + end def + /FontName /PRCPDV+CMSY10 def + /Encoding 256 array + 0 1 255 {1 index exch /.notdef put} for + dup 0 /.notdef put + def + /PaintType 0 def + /FontType 1 def + /FontMatrix [0.001 0 0 0.001 0 0 ] def + /FontBBox { -29 -960 1116 775 } def + /XUID [6 5000820 ] def + /StrokeWidth 0 def + currentdict end + currentfile eexec A0B00ED5187D9C0F1ECDF51878C3AA5CAA3EC8DC423323 + 00A152553EC9C9C51591C81BB5A2F58753878D92B1C73E948BB360F467A7D593 + 2446E52E22935D5D0316634839C917AE2BE363D6AE3760363F748EAAEAD9AB74 + D863835F45718D23FB3980D0C645610BF765847F4BC5CB03391BDC9D40A6A460 + ABF0D95BB6A176DB5088A1068A0DFDC266C25ADCBEF3E5472E03E0D29BC6801F + A2AEAD77E33C80C0DC39DD6133A821B832A28C5E08CEE6416DE4AEF5349B075E + FACA5CF9FAFC5D181F0E28DA28D0066C8C517A9FA3BA8CFD79F6BF8E6D413BB6 + CD114D039B32EC438B5D98C00EFDE01390A5581181E4714914A4A965558C7657 + CDBC51A5E6FD2A7C4423E8381AA2258278EC813F0C9CB8921E7D9EA9E6A7E196 + CE393F94AD1124BA2D992E9A350C60F76FD1F90489C5173303B3677908F1E3CD + 990ADD159E88D50400AFF196E850B44AB1C183C8211D52E51A1851961AAE7B31 + 66B5B72652706B29569A85FA75D6D2A88EFEDB1F56018E503A02835BE3E89BB2 + 631203116C4A564B03178015522FA0E8E51AEF0508158C3E2C500EBFE7403B52 + 2BC73DAD0447AF0D0DBB9ED89FAB02EB50D9303229027278B5E9BDD0F37DABAD + F82B2B87C4CCAF1E56E74989162538E595598372067BD858A3AF2FBC16603658 + CDAB7BCC8C444DB95ED4C0B180B939473A89619057261A1378EB275A4157E3FF + 9DA4343A9D1C632BCD2E96ABDD1A5100D76D17402AFB9FA3387D5465D25E16E0 + B4E15E2BE6996B8605D732B85367CAB3F59E3F934FB2BB526EADBC3048799B13 + 93C72C992C4F3F0B654550DB47B7F1C1D9ADE09C71711B102C7E7EBA881A082F + E40253C0B3572316A68299B9EC6F3108E35A5E51D98BB564AC499363BA0C4209 + E35C0B382A1784D5591B6586D0276709C2988F281141E117B6E344F6C89F314A + 58DC641399F55227E0AFCEDFD6B2770C6E9AB6440D0C8A89096A5A4C21CCFAE6 + EBEE6A6C3E11A293CE94A7928C73F46D0C4EDE7EA83087D3E59C8BF59AE380C7 + E66CC43544300898E3DEE80C7E690A173568ACB6C753CAEB09E05E9536301CE2 + CD6921DA60C52DC7B20ACD80C6B32C25E107740041BB122BD1220AB6C3C39662 + B3BB7BA06F68172643AD27C85533086F1C6127FBDFCD9F61BE40AA54052D2C5F + 77801E6A3A55EAE3D9A9FA3B7F2952AFDED9E9449DAFFE84F1453FF8842E0406 + D0770CABBEEF7D96CB43C338A418DC61D23514557D69141E25F2176B4420A581 + 361D93794F5D8F8423AECE259D1ED6C9087A0AA4FACFD7E00F96FEC932963F50 + FBDECBA46C31B251A1BE4899986B8BB909367E40137076241B487FBFF2ACCEC3 + D28C4EE8B354D76059983A8EBB92E8A6CF5A73B5FB538ADA58FDADF0A1E84E67 + F09E268E2FEB7617362AC35D85D9936AA1308CE06F0324E539AF7198E034D3A8 + A844BCC32FE838CD8F826CD36A15F81AE0F918CE6EC26DE5B32B6B11F250CBB3 + 055311775EB20943B10B4F2D48BC584637CB76E9D5511F377F0720DBE5AEE4D6 + 2E7F2513935D17C66D3B93C3A17EDEA2FAFD6DC194F149B902F5D0A9F1ECA072 + 99C72B4425880B47A5F24A3045C89113E78F4EA411AF85C8048FD4665469B025 + 814B18D73F7400E58A2216BB0ECE75EEA9846FDE0681397A6A683E8C16D23ABE + 3D591FB4AC5817C9A8D5F1A478EE7A9A7A1A5ECBFC61EF50674002AD4572D0AE + A6DD74ECF722A7F5D89F733F4AD6F5AA2B719DFF8209DA156052EAD30D252C6F + 36A19831F4300E64D682DE33139A830CE3D18741866CC399A048838A9A6644FD + 2964251FE94321298608083E0E949A34EC921C322C2B096D94EF1FD35A5E63A9 + F7AEFB74F3939A4B66782289FA8FF88CE904D2966E1D8B93EB3E22198085D5B8 + 3CBE20E6D2E78AFAE76C1026C46CAC8E891FC0A6B276E6C8F437F2619B4893CA + 6C2263FC6D49B49868122C3DFFD393A339AB53B3437965E531508280A9F13E8B + 087E09D011682F3324CE32786CACDD0087393A041549E88D648ACCFEE821806C + 0D03218B0BD6AACD2D7693270A65A65BC14212FA4DFFB43B7D287AFBAFB772F0 + 5B15EDDA8AB9FD3EF45FCA4EBF9DFEA0FE230CF6D8CD72DC8DD619BFCEEE8D34 + 4D771D35660CA55DA424014025289554F5119655AC33EE567E14782900435046 + 5DFBDDAEDE9F699350C43CF60ECCCD982B154EFE0973C4CE1AA4CBEDA8AD890A + DA2C0126F18E43D7E0BC1BAC15954C51FCFC0ECAA7EBD2ED3E77AFFFAFE55D21 + 70DB1F0F72138F0ADC9D3F971EEA38CBDB80A48E14345EEBE2BF013A4DBE331E + E7770B20FF9A988186A52855A90958C6079FF1830CCABABF2C54596F89360709 + 3D9F16E01004FE4AF3CBD76B117DC654D61C1DBEC7821AF36266CC6FA4878846 + 55209D0882F8478AD9C9111D9F8F7381A7AA8D3F632A4A92B080C9F17EC09E87 + 29815FCBE975F6AB17612846D35E039109F6D6FF1A28F0CBD2B32EC84FB8B825 + 089E884ECB1A5024741535351A0D78ABA7EEAEE7C20A7FD81C271B303F775BE2 + 533A9390B453965B32BB8D41B047FCDC1149E2A9371C49B321C60D038C0BA382 + 3CBC4F263828BCA5E541E35E2F61912190E96A5072314A78EF564F0E91FEAC3C + F21C57EF9CDD63A1A0AB4EDDE28E918B87FA15DFDEDFFF3B242F6ACD5F08EE82 + DDE454DD6A27DA2DF540820119069B0033462C54C08880DF732EBCBA416E02B2 + FBCF677C3AB8D4B9823A5FAF5F505631614414B61FFA411DDA078E081A6F279D + F48ED63E261E769BDAF09F49FCF3084B2BE5C8AA6BCD82EBAFD4FCC8606E07DB + B86D94F3C9B13F3019A7DC4E90ABC5164EC79BA3284D589B7D91EF1C6C5328AF + 71F64CB11FBD95DCDA54837D8976E9133DAF8E1998BCD1DC0B3DFE31EE38CAE2 + 74F0118C697AB384059DE21DB846084550F2C34EBDFD811F0A7849FBA0956D9F + 7A76798242EDAC7D98ECA19E7F6F355C914ABE727B84CEEF589D8D2F4EB7562C + 6CC5EF344C6BD32C5C55A46DA91053442CE0FB8E1F540DAC1427DC828CDDE8AC + 141D1724CE8B107543CFE8E46D710575AA905BB045389E202A965C58915D0660 + D6EEA170B7EF0BB44AFDFBFC62F780932C8BA060B53D4CC3EA3D05229F15E3BF + 6EF77FFE2370115B8432C9DD0068C0E9EC667B4ECE736A51749D68D8AA35598F + F0C382046B9D047378A90820850621D6FA2DD1A211F9B7536034AF52649544D0 + EC3D636F56DD71EFD5593D79C658F5D09D0C57A6A8AE3318992BBC02CE8B14BD + 0E97547390ED19239C98B79024CE5261AC90C8F7C8FD4E2C7E5ACB1A0DA8EFDC + E670A4AA0CA3C3C497C37F8E80B32383C69CBE4B6EB9EAD755138334BAF3EFA9 + 2D1CC8931B9964405EADC399D587FEA1BBCACB7D0F1D8CDB150FBDD2892A7AED + 6A54E0A72DD942CC79DB69756AECB571625FCEDB246483C94AA727147451D8BE + B02B3A90480AB73F50C5046E98EE48C1B1FCEEA1745E4921BA4EF730F6F6F1F8 + 67AF02367A46CBD871F0059BB3AB55CB22C029E922912145A10930E15AC17419 + 5EE231AA90163392F143FF5B4D4D5D39104BB0DC6B65E4876D6C45714CDF68F6 + 65393EEE51021283C7697C33EA9703E57F62BB918751D221E828298B6F6F54C9 + 53F4DB90CCDB28C4D4A2BDA9DC1551212DCED0FF5448C29EC209B1A722FB5404 + 9DA9AAAF236958789480611A8803092EC76D0D0528C8E6C90624F306917DB09A + AA3D07E51B433E2AED9837EAE9B360CDE129C3700D2F6E7390703E20DF5FDCFC + 60310C64C971C05B021427CF2C227D2102DAA39E4DC16876FFE30A80D281FF56 + 0C582CE89E8EBB3D04C7BA2482F612686C9AA0958C19BB37D48A2FDF64D3F8B0 + 9BE8E22BA28B7B181C96021B1C95529976A0151541E8F27240B1A33ED4492528 + C6D0C1FA2899D3E9E9BCB29D9173BDAA96067B1B79C807FF4C09315D0E2AB52D + DD2387E4AF855192BB36A7432A46DE3C93C9DDC1B5646726B9E2B646EFF6C92A + 550A3CC8AF66E8C33BABCE9529C98E0DC9D69DF262317F2ADE5A78610E6E50CA + FCFD513015307D3447A7F0031EEE9C75E9C11A728D3731336728CA17B13E6C40 + AFD8D52C6ED8962082E607F559B9E46295C6C29C4E93C7B4E3BBECC74E48219C + 5AB1E33261917B07234D20A40797B115C50B947330CEC1267CE49AC1BA322733 + 18AAFD2917B82840677E4033F0CB628BF96C8F5952DB5C514CCCAF1B510417E6 + DB4F6FEBE90346CCAC0773E3FE1FBF95416B1A0CBD2484C88DE92932A27A723E + CEF6D2A8E2731CD8EC3F6E9909D74D09B12F23AE6EB4FA637FCAA3F32CFF888C + EB59CADD2F75C6995BA490B6775AD87B347E63B59C3CCE7E700649182F + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark + /PRCPDV+CMSY10 findfont /Encoding get + dup 0 /minus put + dup 3 /asteriskmath put + dup 15 /bullet put + dup 33 /arrowright put + dup 41 /arrowdblright put + dup 50 /element put + dup 54 /negationslash put + dup 56 /universal put + dup 59 /emptyset put + dup 91 /union put + dup 102 /braceleft put + dup 103 /braceright put + dup 104 /angbracketleft put + dup 105 /angbracketright put + dup 32 /.notdef put + pop + end + %%EndResource + + userdict /pdf_svglb get setglobal + [ 0 /minus/.notdef/.notdef/asteriskmath/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/bullet/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/arrowright/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/arrowdblright + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/element/.notdef/.notdef/.notdef + /negationslash/.notdef/universal/.notdef/.notdef/emptyset + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/union/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /braceleft/braceright/angbracketleft/angbracketright/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef + /N1028/PRCPDV+CMSY10 -1 TZG + userdict /pdf_svglb currentglobal put true setglobal + %%BeginResource: font MQZSYI+CMMI9 + ct_CffDict begin + %!FontType1 + 16 dict begin + /FontInfo 15 dict dup begin + /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) def + /version (1.100) def + /FullName (CMMI9) def + /FamilyName (Computer Modern) def + /Weight (Medium) def + /ItalicAngle -14.0400085 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + end def + /FontName /MQZSYI+CMMI9 def + /Encoding 256 array + 0 1 255 {1 index exch /.notdef put} for + dup 0 /.notdef put + def + /PaintType 0 def + /FontType 1 def + /FontMatrix [0.001 0 0 0.001 0 0 ] def + /FontBBox { -29 -250 1075 750 } def + /XUID [6 5087384 ] def + /StrokeWidth 0 def + currentdict end + currentfile eexec A0B00ED5187D9C0F1ECDF51878C3AA5CAA3EC8DC423323 + 00A152553EC9C9C51591C81BB5A2F58753878D92B1C73E948BB360F467A7D593 + 2446E52E22935D5D0316634839C917AE2BE363D6AE3760363F748EAAEAD9AB74 + D863835F45718D23FB3980D0C645610BF765847F4BC5CB03391BDC9D40A6A460 + ABF0D95BB6A176DB5088A1068A0DFDC266C25ADCBEF3E5472E03E0D29BC6801F + A2AEAD77E33C80C0DC39DD6133A821B832A2E5715CD8DD3C7DDBB03FB0392FE0 + DFF893455E2C3785748902E5F51526A31E87B129BD404665F66962F76F87E716 + D8768CEAC96B7838DA716A3801B02A566FB190B2D18AAAA483EC2E7DDAA6C439 + 4187573E61147AEE121694FD17E60BFA0AC761448989E5B615E965AD3F48FE15 + 7CAE71F20B2E95A411CA9DF845F9C8FE7BFB6B3E3FAA98B0540A3B53E3185F96 + 87D534990A6E163E1FC27304E0954BCE660BEF7E601CF70F12FD03F289129A78 + 6B2CDD508A21B611B8ED332C51FDB1BB2F7C3D6A621058D23BE6102BE695AE04 + FA463AFD26E97B498CBFCDBCFD214496FF8DB1A645DA19486F136A513E849E01 + C1FAC6FDF8DC82CB950BDEFAC7935E402C2012B074BD61154BB1CD0F4FF2FEA8 + 7ED70CEB6C2117F44043307FB388261D3F91086DF86483BF910FDFF7C21FA525 + 0EB83EB00E2A1A3BB81EA51C4419AA3A1622DE47426C749B391A05CFA96BFE23 + C59220385CA33EF9C3862EDD9ED33D2227E0C3DB290205ECB2DC4667D75E67BD + 5B37A98EA401CB8E31B1FEC6FC365E21EFCEE0C6FF600E6C168F4949CCF075A1 + 747475482F12FB0E4C2C17043454953ED4160FDE2FF91352F06775D037E0BF26 + 8A62A757DA274B1510C191866E042C72D4559F00718EA3E77049FCC8F510803F + 7D3C20BF5591DD5CF6B37DF87E2F43FEDE038A30F84551C0B7A40D9027156633 + 21CBC04262E9DE4D630F82839CD877527E8735E7EB487B342CDF257182A2D37C + 843FB895F0DE1D34D749185BFE6BFFBE9A4543A8AB6716034F729901643FA184 + 22E2AB3A8A5077A0587DC06016BCC787F9E7AA842627BCB048678F52F958BCAB + DF339E1D9219A975F09FF5A170E2D8B0AA7E161D3814FA74547899EA683AF6FA + 42BE1666E63AB9B100946097D6E4819A873D4B8048BEE1A699FC94396F9096A0 + F39C2978A816235EEDA67A07E184AF0B2A0FACAF79DDA7EECB0F12BACB916C1D + D30E2C73A7926B6D43C80ADFCCF251C95E5049ECC42173358B49375DA672171F + FD750A6142803F8DB4F310625D88B8BE0A9AC588D24193DA78296BADE10CD73D + 0A67BC60AEDCA3E44A473E3F8B2C98BCE800658821C4C95D6D7A299AC03DF892 + EC95864642DE21B2D1E8DEB74C5B76FF914D62746AE4DED312BB91D49B20D3DD + B81DAB1C37D2A0121D2F88047C3EDE7325FA30D7CDD0E5B79409B9F984CAE5DF + 51DF0D0ACC3DF31BA9AA17E9D316169BB0C3ED6BE6A02D2AD791FF55C33223DF + 7E35F0642B29D76701BD6D89AA119A07F7F4366D28FDFF61AEF2024D74086C21 + 0013B687C09BB2A2D5F6F688A34AC49A800482A5D9337C45BFD43BF3CE245C6A + 8C0B8706AE4F5BF1501890756AA2691EDE10151B0BF1F12FE6AA17A4D303DF35 + D1581C18CB6F36D7229EEAEB126359B24DA4BB5A17A8F52B42E7EA623BBE88C8 + 999629A80DAC83C4B3623D5F20E0B03FC45270978E0F263A6520338A20076B61 + 74432FEE0996AAC7D8A1C0583D41857AF0DD8277FC68596A75B5AE33E89C454C + 4E91E4700A081058A68A397A862FF100607A91B7C8ACE72F415A8500F5A3513B + 934D3B30C4AF4C5D2C5FD695B2117CE4CCF0187A6C10463AE48C1509420F8E2E + 7483B78648A19D5BA7434E042121DDF33270B1094268537B5161B3EFBFF6F50C + C5BD2F96DAE1F8274FFEBD46CDDCA4D7D6AB6250250E397DDE2F4B0D5279BE97 + 4EED6A78ECA0CD5A75F309082A940554DCA6E251CC6E908ECDD0A9E83BFB08FD + 96478CCB0FDF900F7A51AE5C7BB0C5B10F86CD8BA15099DA633770FF34913AD3 + 118FD33A7B3629BE4F3880D375897554A3DA469B2ABDC591C681B3F5B59358A7 + 8F06BE622D854DE80455228321082444EAB78E74F2A88E817435D813DAEB3525 + C5ACED38C4032DD6D913D613E72EF01E1876FDF0B270B3E4DFA7FF76C09BAE85 + CDFECE7ADD3AA2F16ABD79C96D1AF67FDA12B1BCC327657B1BA223BF49A22AD9 + 297FFD2EBE5655906953F54BAB1EA8470DF774FE7C3B6EF074E8A5E71F536B1F + A877BB4CFC2D66404A8FFDB76A9E40B013C24072A097B4617CF79D085E9BE7F5 + FC504AA1DC24A7E5304E8B115CFE3A1A3B06AC7E69FAC83A5A2E99244FD85FC2 + F67E4199AD45AD4FC1B5E915C6F936169CA84952F006FCF1E999635EED5A72E3 + B2D276BD420B6AEE4E68091DDE6022FE3BB1D0DBB582DC827F8D4C1249C323B0 + 003ECC1DAFDED9CE82124A7E1536DD5413806B0979CD6355BDD3CC88B672B008 + 226721F35CADA41CED0A94F9D178A0290A948226FFA4DE4EE056DEE1197F1506 + F23B48B1425FED4401816E2EE65324A63E40529F22FB79DBA4C5479F3A95F79D + CE37C5C9C744B9647C11035F2A1237C333596A82BE13A799B68E3F190EC33BBC + 40462D8505836DE3498DAE886ECBDB7D3EA6203C1FD394D00A497E8E2C212159 + AB5BD40BE1E223F3307CF8D61FC4BD268A3177B45737DC987EA3CF827F3AF2C2 + 8C133A85B0E2B2AD8E297EFF46E6713AC0E3F66A036982FE0157FF0779FA7682 + 7BD6C98C9628027D1BD3D43C51E59238A2FFEDE7E093BD140FA3D1E076195188 + CF5D5185D002020E2332C5685777B9B3BD63AB0F9F842A09BEDC27D19C5E0C6A + 992C33E3B5A6C0A8D056F672A9F9F1AC12DCCBD956E2B113B8781DBD252E31A3 + 472AF11D0F5C179957CDAD0A982EB4CD9AB433115A1900E7A5B6F19E96D048F9 + D3506F9C38157801D6AAFF7B4655F217DA1757EE24D528D0667AB6752D1533D4 + 1E22420E5DABACC067695426174A25795C10DCFCDCFA7B2003CABFEF20E8FCAC + 437F4A40570507E6727CE3918D6B54531CCCB619BC413AE5454E19EC2E5C2885 + AA1C4C8FA66A73BFEA9764BDD0DF40CFD7924870DB8008F129EC454B5A9F9213 + 235E202DA8B4EF29F1B3D2A80408BBD2386C7063C083966896DF210610CE7D6B + F8C0831BB0FF21B5647427E46830703DFED2D639AA6E9B61F90F3676950A9977 + D2DEB4017B83874F83845355F60A7607CE1C23E3F17AD032946DC2B834141512 + 69244F6129DA07E4437A37A2C8BD18FB8E86B69A96D52B597E032B8D2A5C6093 + 72597253D5AA9877759B9B39B7F0D1178A2E15ED5A4576331E7B4ECA29FC2688 + 8E46CF565EAEA26274C4157D37E067AE899203088F64E4DD43482FBB7A8A8F69 + BCBCED3F25ED11E894DADCAF1A41AEBFA8323B5FDAA0EDAB60E8F4AC287EA2AC + ED7B1880795E7245E0433A32E14731261B960F8063608C60C08D4F44A0BBEAC2 + FB160BA4692CBE2CE5BB50BED4AE1E18579B9D44DC641964ADFA052E5487286D + 865AA2394B6C43D254FE5ED3A443D9C9A6BB68FDDCA7DC287AD04DABC29A2AD7 + F294CA17DD49962E5171169E3D94CCBE332D867679EA3221BC4656E1AF105484 + AD2831FECC3F3CE3535409C2BDEC418C7767A33A6F1D462F1AF73DD40FC9ECC6 + 653BB8FD0E5666D39230EE9642ADE43D8B8929C8BE07E0381E41CD1A213FBF12 + A32CD277910CE904E6933EB94367855146021529939E360F79D3D33AED51D01C + B1413444D6F7F8B1DECF33B69F8B72C0389E0385B85BEE689CBF1DE9315DF122 + D9035D8793753F9214348DED4B0F0279FBF609CEFDDE0449AC9B9EDA3CF56BC6 + 0DD2AE46A1ADF5A72A902B790BDA753E40BF56054B93610AE1C001D548B95EBC + 404E72AA5481A3EBFEA060BBBAEED6D2E87B6E54764E3CA81C45F5AB0900C96B + 8F396E4902509E5B575BA7D19624C40AF27F2B58B7034C2B85317B107BD26695 + 42E25E52B52338CE3F0784DC438A92A4CC4E9006290051686CE97087722B8677 + 4DAD3487D501ACEF31D4B86C353669796E29E263C937670B85BB0222DAC57CA6 + CC431FFBC7650E0619933EFBA2D40401AB947E7D0EC6B67326090B1DC25645FA + 650D22885CB75FCB4ECCBBCD6A957003E8603FEA3E939C66B66BBFFE51EFD9B1 + 12B7C8F3B48795AAA449810709B03B48C705FC8426FB23E386D9B5A9E3F7A572 + 91555DD34E909F3C11B94D6B049DE53CB12FD1BB04E902975A64C3325BFF24EC + D6CE1233294B01C8CFE0999F8ED95F29B77EFCB36E8E6775DDD1249CC627DFDB + 918DA3A1E731DB319F2344B7F4503A23225F400AD1BFB8762DD023F5535BDC17 + 92538A5171FDAE8253384B8F9AC5F519DB95DCF74F7204BEEC308A7A353F2D39 + 2F0DF5A1722ECEB952C15C0FE8D7DB065A506F1CC0DA9428C133826B9033C1C8 + D37A0A34649E1C95751302BFECB2DBAABF839473F59E0B04F2FA8F744E41A688 + 05DF6E95E23A9D08372D49237C5F456592B65E3A0104B315C0F8D5DC74935563 + 4972F160F660A56911F998D024BC9B0E6552C9F70B2C36EC358803AA1BF13BAC + 4B62151E9AEE46D58CE1E7D3F7F691AD90A77C4A2494B021157C23AFA5A65816 + 5B5E9DBC0DEEC79EC8431C893C2E91FA59E0650A430D07D8632C6CC76317C674 + CEDB4B542D356528B6EDA33B916B883439CE46A0292DF49ECECEE02FAED270EB + BDA51006D6C40D9E428599FA285FC7CEB312591D5E620A4D34F1365F58E3A0A2 + 403D1BEB2245E2C6780072B096840925FF94D86F87C96584060FDC9DE02D0588 + 4A5E96DA4545B618B01761974654481740CDDD05565D5658CAAD6CCB40878628 + C87762DB3E5560A59E634D446810A0FC493B10C1638417076D44A12BF0C1976C + 8364D461D6BE75FDF2310E78CC355845FBE4A4F52FC65F3634ACCB8443240098 + 4FD413BACA442B4E6540117F9A57E06B870AED66BA2CE7BEAAB91CC099D63F15 + 0C9F42CB6643EF3BF94DC8AD9BDEA33D02789D1AEDB38C5D4422897FE4007F9C + 7AEBEB66A89FC2208F913CFA415F165D479DC9FAB101A09A198C5AEDBB172A02 + F23CD45D8663A1E4A1AC6DFE8B5231DA54ACD7F747C9B935E1AFE09F74AE5F45 + C42F397BD6F3B0A8202CA635F61AC018DA8A6C69C4ABAA95D7E0050CD4517C1C + BA5631193445B141472F777073EEAFC07824BB95E2BEA33D247E5CE33936ABE4 + 775D1B673D6CC7837FBE272476ABF6D1762E0F2D7123740E7E5BDB480DE524EA + 568FC43A56D559E6AA6C38B060EA1C2BB6DFCC7E8EAFA6F4495678A55F3A122F + CD01BFCC86868C7A5B428FF2027529A5115DC662253C81A293B445409F7C78E7 + 82707B72E130691A4147070E671707FF6959A768DDE353D301EC21726B9288DA + A21970F5742A679B2AAF68DD419B86CAF69DEFC88F1C2BCF47A7DBF54008865E + D762D697504F8BA1C2A1A4C16061BB7977FF783D5D31F0EF37E07671E720D9C8 + C73C3AA062CF59D3EBE62EC8BA6E2DAEE61663F761C0AC199FB7F72B1897C6DF + AF84845266A96AFA592997DC68368FA6451A492322295BBA8E7EA140B34992AF + 7CC1ABBB91A2D120AAA3B1A9E08952BB49B55030C243CA705D65081E765BD4B8 + 4284463A32C06A9414C01FB67633ABAD04D6EFABBCDB981A661A45782FF4C418 + C38F4E0B2646067C69DBD92F5EAAA47A6CC7C1CDE9EFB249E8E0994B10760EB0 + 8CFBED86EA38CD3E47D98536848BA0BDB80F99E93CDAFEDD5C670888DE933868 + 01D0E58A142BAB04DB1964BD05E67966A771223CABB34A267D89E1AFDE87887E + 4C97E034BA74D7D620053C3452EBA14E5D5DFBEEBD8D209DC158F83A99BAFE3E + F74AFC50F580A040C3509C37140A4B3B7646B87C205C2AA16D152A5EF214CDEC + 87B8F04ED7EFD27C1EBC425FD891E18E3E874A2821A91D7DF80DD39B2335CBC2 + 8991A14770A2FB9C717C14E657A1BD9543735EC67C0B1C928F50243C995BDA39 + 666ACCAA6B66B1FEB64041ABC5DF0258B10260462474626BE72AF1F063C43543 + 4C992FB57401FD73D6746E4BCF2AD22C7773C808BB4EC3344F4C8867283311D6 + 1FD4CC6B1FE00D9A4E8C8033F3A6CAD66ECA6EAB73825B75AFB316301885A249 + 30BD9DA6A83ED8F943E42F7F56698F1C4205C4E403BE220BE7CC2940C866955A + B0D1A039841D95073AD200F047A2F3029C3B2004CC4A1B4377E55AD9F88068F5 + 32B220937E2B3FA6FC02698DD662B1679CA825FC7B3FE0400F69519C0860CC8F + FD5236B9DD21ACD9C4C9858942D00EBA8D31BED05DDD93624D0C652372F19218 + D00A2BD70C3EE160B5B63F829FEDCDC5F1775A216AF8F9D2AECFF045C4E9F884 + 0045114578162084F621AC6EBE6FBE289C16ADB88B9DC5A5558A35B30E5532D9 + 36ADB841C7B5860B1B6FE1D21718C8DF9D911CC8E57C2FD1C4FBFDAB9D45EB90 + E24040E324DC7AC56B7559CAF065C6AED553B9D582D13E1130DC8388B6386E6A + 9B56C35E1773AE056FF0D3B846BBA4171FD9A515F28AEF0E2CE4DDC4819B9FA2 + 5F252BEDA8DFCF5DD1B5197BE840E9CA64A2E241D34FB0B8398A068FF2CD4D09 + D08B1775DD90BE3364321AB05FC653632D7FEBC0420808461EA03903E2366BC8 + 5C8718A795E7DC45125F88C7A2007592F5EBB27E3E34C8B67E76C31E2C73D869 + 6892494CC5412BF6BAB9201AB75CE5C9632B4CABF7F695EB6A8E3C98770A0EC3 + 521A69425A66F8EC6B8E4AD96E30E6A6CDC63B499A847FED65E487DC9587A3E7 + F577CD75D1E29244238054E79A29E1307445D098513B32F06D385A989F2ED021 + 754BC81BACB2EED6F7B229FA3627C2827D4BDF7D01D08EF84B193557EE5AE4C4 + 2D2EAC3F111810ECB8C37B68C54FDF503120A10D399EEBDD95CAF13D662BDAEB + 91B46D8F33F9ED5ABF5A763954CE224B6116F8133929757DAC15DF652B670EC6 + B8CF2F1859DF67E7EDDB77820013F635F9F3C2862DE6BCCAC4F1697B2D2EA96D + 7B5A52699113488071E5AAC89A46A3088AAA324388663E033352F157D63F0AAC + 05A95D43169F2B2E595C2FC1F5C4AF0DE06DCB7810A7A1F2ED8752013D3E0AEB + 5A77D0471A7A78BDA6566965C89FB6982364F6417AA34FD6BE5D30959B1537A8 + 91060C8FE63FA6017F8B51EF0B4BF16578D5B2DD69786142C218AF84BFCA8458 + 2F9D4E62239067B82D7071C2FC40C9E873C70B8EE14431AA09AB3640624D6C31 + 4A5E64C70710CCC037496C7E9891DD85EEBC875ED2EA06E24CD09EC3EDAA4398 + BE5E0011C6EACB9B87A9EB3C9D916B85B6968CE665362484A5A03355659A8DA8 + 99688CDD5C34CC5935D2E41BE13DAE46D3900356890FB3C8595534D0F5102713 + 87214966AE95706B007BA1AB5EE6CB5BDF77FABD184732FA055C1E1A34BD904C + 04DFAD444E17BB947BEF751E17902F61846981B3643C25A8F0259278150F067B + 31D230FCFDE21713FBE24DCD4FEB4DEC82C8F37CEAD34227D231F795CFC2AE1E + 4AE54C2365854CF096D1DEEB714727F7FC9A95106794FE09EEEF6732BA533251 + 708942BE0E35F91A78DE5D72C2EA484906AAD8980375E18E0B431D35FD4D6B4B + E44C714608F61FECB72AF4DF00F28F6C7ED44A342556225A99C10D8DDA5CB5F7 + EB4F55958D4BDC5F94EA43B7DC59C186E76213544611DC043C6264138BBE5DA2 + 1600C18732D98DD83AA21B3CB3D2288043C4950A6255E0035EEA18E746CD0840 + 6CDADFAAC8389AB00B5707BDE315CA2772F97B6FDDB89B6A389344B7F9FEC300 + 7906911826F270ED510259302E78B58B0B8CBFD5B5283E91A4AB3A17F10CB6F4 + 0D7914744A747858DBCFF73D699AFFFE84FD9659045A84AD65D809424A397468 + 6A56947CE303FB87E440F470124FCFA29A81C0F48DE4FC7A544D6F2F0487E3C7 + 04D9368310823A7AFEA5E64F96D46C601770C482F55E515761AA411E5366ED02 + D19EB99CE2210B7A0A486CDE090824FE3DA041D260510315405971E9DF527F2E + 21ED82404ABBB94DAA1234706A25F90E49E2780D4987F56B651F2F4DCC3D9139 + 9484C9C531928D7819A1856BA66215C54670C1D811892A19D38E1C768095D6B6 + EAEA78BB832C7350A282B476FC6130CC4ED672934363D537E3F910A832389F91 + 71BDEBD57A48FD96DD4A942312BD163030F7740F558766AC695F7E305D32AFD6 + 14A4A94E4C18BD9600AD1F391424D8297FFA6E2ED90D59BD99CB8AB372F186F0 + 10E6962D5E8F78893E1694BA46C532F95A78B70C39C3F297272B8664BAE9F84D + 2E5467AA373BD8F4C7766112DD764251EEBC782C9122F94CFFD1B188BB47ADD7 + C39EB7932FDDC7F7E40096D9E060C256FDC8BD8DD78A0286B4C1FDA86E03A213 + D3444239ED6306226948FE8046CD4CDE001A42FAC0243A50ACF34983219998CC + 3AFF28DB3DAA59961CBF4AB89D22ED5555E8250F88B3FA2BAA97E740F34C95B1 + 884BC04394B88666AE060569F855E62255096ADA52B847745AA0AC22BAD83F35 + 9FA892430098ADD9E213725B2E9B83D47B39549604F1CDA76FFB67987462D710 + 899242959795ABB37288E0F148EADE97ECEBF1A58E728416BD0494B2706E589E + A9929A2404CDC71DC4E31AE5D1972253FC044816F23728177EF2067E90C0F7C9 + BBE8946068BB0B98F776B53DD586D5C9A622302F05EEF4B3878E96250F2C4D56 + D8153FD899D9DEEE671B1A32AB174E319371BDE66DA866066426C71775509676 + 053214EB994AED0FB363475AAFC2EDF9D5239630597763A1F591E24B89BF4BAB + F4F4512C0713409CDAD39034BEDD5E42E3EB637600E5D6506D55198CA2F22354 + DC228F670893F3120E6E36310DB1225EBA51A3399596461E2C402AFFB982AD2C + 69DA46C292AAC6B77F01B7997260C52AE1C3AB0055DE5FF92D7A020014930E69 + AFC46C207CC59D122C3ABEC656541BA1BB7F7A29F07D867686DC635590B088C6 + CDE9EE4DAB9D4F3A9AC38B1FC3D5483B89D3225DC6CF99E28A28DA7648FA8C60 + 04208B28A2A80B74A9E13046D09BC859F16CEA646C5BDB439705605F7176A286 + 1415C2D493BE1D799460B3E4117B9092925FD83FE6A6FAD8A5E1CC36E76C606E + A7B8EDA36D85E551A5AE1F012C1CBBA47DFA7539D112A926F54924AEAFFF5EF4 + 3DD89E2B9295FE48FFF74DBB08C32CCE5DE72FA8598A62873BE3581A67ED3E15 + DBE720A84DEC7EEF623C6886BE9BA9B15C5C3A2FD44E96ADC6967C6BDD779CEC + 13B24DB5636F41C70F90E715B64979969B70A069EB3C7045D10BD2B1D5456996 + 9B670F69EE6CA442F10E398D7FADC6A9114A52487E98768ECE9590C800D25A2B + B0E0D203DABA8E852D6BD2A7615A2CC31BCFFB2C3B07AF9501546EBE38999F34 + 7872B421D063FD2D298A2632EBABDD54948201C5D545B10727F2AC219813ACD5 + 688C7DC19607E454D9C0CB8D3D6102D7ED97BACC05DECA36EACA466E4AA9F1C0 + 9A49C70BB18231A616C5BE9315014F53F8FADBEA6400AA046DA2908C4E774E93 + D84FE8BCEB64C0E4761BB452022664D0CEE9456F562C9189A7AC15B1E33AD8ED + 643B6AE7804FE2CCF494CB7478459F3237C7F2FF8D4F80F61BDC9AD0AF0BC2C8 + A41F2548FB6260BC16C5F0AC8F7F6DC3ABB90E9822460A1892E08D072390D5F0 + 045ACEA08FA60AC326D304DE6A222C96F867808A9203E60D93385976CF7C3A73 + 3B2D1B5F2EAB36658D4F537B63F60BE2EB934CCC89F433FFAC7B79A6E0511F89 + 83EC50113C2949E187573BC5694CD89344B36D1751D9585DDAAD04AE9B66E923 + 095443B739C6F66E21E2700E390CC9487B9FD1D14930A10B87CC2405985BD728 + 27E590222D91BF46DA810F75474CA703A853F3011EC439FE53A288C240BF9D39 + A1805C8E200CF32F9560F2F4AA96418F304A5DBECFF42CB3838F5AA3721BBD2A + 74DEE62FC1B6DB22FDC4E99166EC5443F45C9DC70B323E6C46C08913109605D5 + 01346006868C15CCBA6E8B67EA1BACC4D568D4DED2DD1005CF4993B3D959BDE5 + 010F486E38863CBD0687D85D4A002AB7E8DF383DAC720ECB01817A38F730C94C + 0481FDBDC1531DB0E23BBA25C06A8F14C426A9CDB1E135183E8B9618AA457257 + 6F3C5F569449B21C75988FFF6647491F3E9B84A9E62501897EA27CF8FBC2DC16 + 6DB2FF17890EDDA5834B4DB38744646B390D4B099B452AAD9B4A05D5E247BE85 + 5FCC745ED30EC514C6439AD2AF0CE6DB85E3B34D0AFB1AD36DEFB5C3014B88E9 + FCED6084256312DD4C8CB1A25E842A2B7225C6B5BDB8F97A17CB971E5700E693 + 6156CAD4BDAE136510C37AC42166B8BFEFF40B5CB8541CB78FD6E6A65607FC27 + FC173A779604117A8788DE36C33ABF88092A5253F4635830ACBF671DCD2D1695 + 7CF8241FFDD5CB558B7A7F791BFC7A4C4996F943E7DAB9E97FDC5B5A84B3A14F + EB3254D9E6A659C93D9800A0DC0B0CCCDF0457EB18F9773741543AD6D8D20931 + 19865AFB45FCC14159066B6BA3AE5CD66D46B9ED103051CF087297AA5A156EE4 + 3A4D08DAC777FF59170FAB4C956EB60DC1CB92286F1D10AB31B81F35E4007402 + 34F930EBB3E2EFB2F4295E296B4C554733B1C238ECACA9F5DDF5276FDCCA8887 + 63ED9B3D7085D2346FE9A9103FC9391801FDFEAA020F111FE5F199CD3BC3BE38 + C260795154079C70B68B859958EDDDFE8C74809BC32BADC8C0BF9F73D5804F63 + 1BBB5B67D7A3686D4EED04C7CD928742266BC094B4C36C23530025B43FA003C5 + AC3D628A901CA6E882B03430C3D32316049C196BD251ED2E5BA1DAE074466B0B + AA9EC6F0DEE9B3C8E0AC8D2C78B47BC52CFB9BFDCA5657A8D9902A1C83351096 + FE793E5D2BB5EDDFC49573743FB3AC98F3A975A9254F3C60BAD6FA7C0E4937FB + 1C7D4A6924C79B72D96DA5D7820E9CD34DD1ED9C7F5B1ECE1FFBB0FAE7F7DC05 + D8272BB94F873901E13A753C890E66C3C3F09A9F1153809B570FFD9E7C84BEFA + B912596DC9EE6B6915B21AB5F68F446B1B8DAD2EB65A64505C8D0A49956B0906 + CADA99270F5F07960745F6EEC09678AF236E742C2C0AC0BEEE264586607E7C88 + C4A60099D07194D357D866E457FD01B93E7188DBF59A624A6118BC3B77D1DB55 + 63CF0C3C233F2B5ACEBEFFF64187606B802E4E3279A0260DBB5AA4854FE663D8 + 98FEA9E692774E5600690795840A30ECB28D67D618BADFD3CEE6FC8BADA24FDD + 8AF75F25D37840FB49A35F784DCE9B499E620B2B06972F729EE3E0E5D36073E1 + C44ECF98ECDEED5734B1DC7DD7079C1BCBF688DDB82D023570092457AECA017F + D6C58EE2F2BF5AFBC3025F0E658A77DB40969E41D01B1291977095F11CA58E83 + 44215F42776B8C09ABA6A490BACF3F1B93BB0AA756D91B6E010EA54D0295F2D9 + 9EC9EA76B2D294AD5597A149A1F00CA7E986959FCE99012AD8DDA4C79FF13E56 + 9AF034A52B13DEDCE4CDE78023D5F70AC38C284B6593D62F640A2F4D743CC402 + 3C7915AC96BFD74930B5179D799C32F74217C2822531D8F4E3CDE28B67D8F094 + 2FD9F96B1B7A5D37725A3BD8F0B1A09908B852192B77DF61B8A836C0A9D5AB06 + F2ACC62A6F779FBFC0ABA8E3B518745656C68D2B67425F0E054E8E28A8091ABE + 90464E52B3CBB9409BEEDF5A69B14896C8C8EF632CC55637DA765FDEA112172E + 8B4F5DA1C0E2E31738BA3D326AEF7E3C52FEF0071B194936A936C6CA0426FB02 + 3A06347AB4E27C1408B24BD619E219940E816F4DC57D987D60A432A2CEDF5FB3 + DF7D16D805CC2940EB3E5BE205A6EA2F5A344F28D848A877C67D9609D08A67C7 + 8A9B174BD92629A1531062BF8FCF953AF38054BF27CDBF23AD66BB0354FA3713 + A3C4DD6CF7A13C6629217C36299B722EE6477B503BC010099BD65E85F6C7BEF2 + C5D0F9DA55E7C665A5B91B6153C53B558F12B3EB304621C41A521FE355D9B828 + A5E9C0CE8A777A8BC14188E48314F499FB4EAC58A5A6DE10AFB6EE0D48ACC552 + AD55F52B5211A7598D220754AD23DC950FF65DC2FFCFAB950AEE5BC8A80A7C35 + FD5AF82486985EB3171AFE342C35FEA1AC2CD10DB32DF60BB3AEFD01AD7B57B9 + 884B00B39CCBCA5FEB6160C89478FC996D2BFEBA11BB0D88176D340F5E0FD5E6 + 0838A22398B176A3A191D8900DCB7C98BDE93FEA9BFA11F44741DE0C98F2F486 + 2CAFDC49B34E7655AA94A62930572D686E4BAFEA3399F57AB8EF09806EFFB05A + A3E9FE5CF281BF79CCE62BBCB03B742D287CF11AF0A3AEEF76DBB3E162226219 + 0146DE4E36C5E02A8CEE795F66C5C91DF23216C5224A2B2DF0379BC129DB9727 + C16B0F73AF1E4C1098869A59A810E11E9F065FDF27A24F16AFD401A2F9947928 + AA6599CACF6E8994C71D44A3F02336C8DDF0447CBAC23C6ACDB70E43925764CC + 5FF51360523CB916D51066E95F5243B30B974795F59655000DFACC9E32EEC5D8 + 97CA2977DB9AB04E73032133384DB1180093BDCAB4A6ED0776D4D5AB47953671 + 497E9AA4199D4A2D507E1CCC9B8447D3D7DB7D614C21EBD686FD720670E0DB3E + 4FE05AAFB05CEDD5A55197E468B06601AE3C185803EA505BD70C95DF8ED90F93 + DF60B47121AB5D3CFCE17259498BF091F5D99FB604F04D703B71DE98F05E9C96 + 172182DD45179BDEF317D4D35E6C9F1F68F3C34E1093945E159055ABD306F8B5 + D72189189B2CC44C404CE83234C187C3C4E7F14F4A731B99611D94EFA0C4C790 + E9EE13210F9AF73D6F7808EECFC0FC1B46FDD3C1F3B66D151AB51CCE284B32BE + 5675324CDDDD9B8D91B5C719208FA75B494C0EF79A7CA6765C57BFD4538026E6 + FEE41F58B2830AD9E08E1A3BACAA5C592D05AABA92C78C81A4910404B4A5EBD0 + 46E8A6B2B239E906265FBFB94E72AF4B9304A48EBA7D953591BE3C34A5D86CA8 + 51D3B6869B4FAD8C07BDA2DB347C8F5C5AF0ED2BCE8D68CFF13E07408A03E35C + DF5D95BDF6EF5DECFA5E9DF93C1109E1A82A2749B486C8DA70F2FF907769A025 + 06DCB8D8BDA6A8F60A7F4C82140ED6ADCD724B30A3F66F68E8ACE93B05D7119C + 577A7011555987AFD3BFBC79B2E0A24416640A1B3DFD2AE4F1F9849D47ED80B5 + 96D1CD4E41FFB7ABC6EB1265850DCA468758A014F0758592AB8256E7B30FD6F9 + 79BD2AAF59977D87BD715D208CAF7ACC4B4E33F3D91824AE5A900B607E4E791C + 0B8B49D94FED67F999E27394C96AEFA388826BF9413E52C2A8681981B77469F9 + DA2763144B494C1AA1D9E383DAE5051849D7DF60C0289B0019C641C3A1AA9E32 + A1832E586B6BCD49C9DBE48E14582151004E01B825E31A181B78D4BC0C7AC010 + EB43CBDE04A9F6579197C6E953023E4FBE3149B52BBF7EEDB3656EFC66A68FF5 + 9F02E4938B99C4308ED4C9B9608E2967CEAD79941EF5BBA1C18C387D6F840570 + B97FC33F7EEE70F889BB455F116590C242EFFAE2DC46AC0FC07F6B9F2D2918A9 + FE6E701D4C7CFFA3B1A50AC56F7D72FCC7B610B52200A97480D73FD8C2E52629 + EAD00BE0462F8965BA0420D7B2DA5A72698F29A72BF7ACDBA706953CA96E90C7 + D64662DDAB9F8D9339A5502F378C9BB3FC0501BD8B6732890854F4C6043F0397 + 3B7D5F76771E6B0C082803695A34EC72E3C81E15B36E33CE4115E5AC970060AC + 4AB7E894F738B168FB22D9D3108F0E40E8CBF07FBC5F46BC3394638D95877B05 + 177730C28934F621616E94564EAE8C9AC23C5CC1DA0D1D99C44E4BAF77284AC3 + 33920697279DD5E2E91A08A1FA629FC054DCF2D0C28B8E23249DF5D1F2A219BD + 2E18CF8D182A0F0DB060C8BAC9ABF000C628D5DF5630A6D4D867C71BD5B40492 + 4B5EC2B062D10E312536237F011E034B24549D1E7C716F695442CCB13CAC3E37 + B88BA25F556BC1D22239DB89434797F44D64738011B18540BF22DF7A78263D2D + 826FD437C89B0B7B5E9C66C048AC97527864B440FAB04E11279351DE8E355626 + D7A941C03C7D1BC747B28B6A1B7FF6151C96086B702C5DCFEF04DB09108EF371 + 40F17BF45C0485CFF07654CA43F6EA56EBDA5C949F425A91B782DE630EF93193 + B74168116B691640CE94F19391022747C7C2316F379B970C67B5B8239B403CF2 + F1F9FAF19EFCC61CC3798F71F41FD865630ADA8CBBC5801D3C3583D7A2244184 + 16EFF79B92A7AB6B3B84888A736EE53C34B12CD3213FF110E4854F231F17EA7F + 4C5538D5D119F15A80272A4BBED07F22567275CB71DCA754D089BE54283FD583 + E5B3ED891AF944E7597865D793EC95D055A37EE18A9D1E19707A0B8F9307A1C0 + FA60E629995A43681A77F9C1A76326E07DDB51BCF5DA26EA701336D73C2F4912 + 4BC7A7DB357C2854E595B61A6328CD24662B5E50A03ED2F53F7B2EB8CAAE1798 + 05DE328642E49C7A51DAE2CEACA43C05610FED56805093CA101ED1B389E4C833 + 2C043BC65710CAEFDD47B424E97F33DC346E9662DAC54B485E3A6366E0AAED01 + 17F82137F21EB6D7A5328B8681B5A371DB5CD1906631C34A82DDD17B75D99E7B + 569B7CA272D6546D9E47103A947D83C8A0BA42B506E1BBB182EF209F691CB8E3 + 7C7B86C2158F08B56CB14899BA0C6AB3F848321A06E0CB7F6CEBF75BDEF0FE9D + B3AC2061031ABA5E2AE2A1798C19C74F29ED5CA74847CD093A63EC1649BF8F4C + 80326DA9D6AE967F4419E2CFBE6B61D2E82463671A1AA4C2FF424398E80F565B + 7B370EC3E44BA7EF9CDBE221B869C555EB0F4ACA9290D5FC34EA54D0B2CC37F1 + B7678B93B821BD5E73B919F7948C47CACD89B31742C792F4145909CA6AEBB380 + D72F1D513062AF27E9611D01710CC608B0F11509C0C134016B7FB3321EF67891 + C45B20A4EBABC915D521B684B404DC5A61421BE86B95EE4C23827FEAD8BD32CB + E6178FD395F1678522B0DA051CB5F7D45256DCEF387A978F3466930E40F40CF1 + F29716F85535877948A92C5A3B4BD3E8611D80C88451A9907DD8264C73807C8A + 4A + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark + /MQZSYI+CMMI9 findfont /Encoding get + dup 25 /pi put + dup 28 /tau put + dup 58 /period put + dup 59 /comma put + dup 60 /less put + dup 61 /slash put + dup 62 /greater put + dup 66 /B put + dup 67 /C put + dup 69 /E put + dup 70 /F put + dup 71 /G put + dup 73 /I put + dup 76 /L put + dup 77 /M put + dup 78 /N put + dup 80 /P put + dup 82 /R put + dup 83 /S put + dup 84 /T put + dup 85 /U put + dup 86 /V put + dup 88 /X put + dup 89 /Y put + dup 90 /Z put + dup 97 /a put + dup 99 /c put + dup 100 /d put + dup 101 /e put + dup 102 /f put + dup 103 /g put + dup 104 /h put + dup 105 /i put + dup 107 /k put + dup 108 /l put + dup 109 /m put + dup 110 /n put + dup 111 /o put + dup 112 /p put + dup 114 /r put + dup 115 /s put + dup 116 /t put + dup 117 /u put + dup 121 /y put + dup 122 /z put + dup 32 /.notdef put + pop + end + %%EndResource + + userdict /pdf_svglb get setglobal + [ 0 /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/pi/.notdef/.notdef/tau/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/period/comma + /less/slash/greater/.notdef/.notdef/.notdef + /B/C/.notdef/E/F/G + /.notdef/I/.notdef/.notdef/L/M + /N/.notdef/P/.notdef/R/S + /T/U/V/.notdef/X/Y + /Z/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/a/.notdef/c/d/e + /f/g/h/i/.notdef/k + /l/m/n/o/p/.notdef + /r/s/t/u/.notdef/.notdef + /.notdef/y/z/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef + /N1305/MQZSYI+CMMI9 -1 TZG + userdict /pdf_svglb currentglobal put true setglobal + %%BeginResource: font DSLZCB+CMSY9 + ct_CffDict begin + %!FontType1 + 16 dict begin + /FontInfo 15 dict dup begin + /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) def + /version (1.0) def + /FullName (CMSY9) def + /FamilyName (Computer Modern) def + /Weight (Medium) def + /ItalicAngle -14.0350036 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + end def + /FontName /DSLZCB+CMSY9 def + /Encoding 256 array + 0 1 255 {1 index exch /.notdef put} for + dup 0 /.notdef put + def + /PaintType 0 def + /FontType 1 def + /FontMatrix [0.001 0 0 0.001 0 0 ] def + /FontBBox { -30 -958 1146 777 } def + /XUID [6 5000819 ] def + /StrokeWidth 0 def + currentdict end + currentfile eexec A0B00ED5187D9C0F1ECDF51878C3AA5CAA3EC8DC423323 + 00A152553EC9C9C51591C81BB5A2F58753878D92B1C73E948BB360F467A7D593 + 2446E52E22935D5D0316634839C917AE2BE363D6AE3760363F748EAAEAD9AB74 + D863835F45718D23FB3980D0C645610BF765847F4BC5CB03391BDC9D40A6A460 + ABF0D95BB6A176DB5088A1068A0DFDC266C25ADCBEF3E5472E03E0D29BC6801F + A2AEAD77E33C80C0DC39DD6133A821B832A28C5E08CEE6416DE4AEF5349B075E + FACA5CF9FAFC5D181F0FF680355D326C9CBD45B6B2140737633E3D044B58CD36 + 3EE47BB24EDED0140CCD03F64551279737C5D839B510F851165458311A754D25 + 5480025AD3C5D23313257AA4635E7FC74993AEE04551E452462A2F8BA3D17F6E + BFF1F56C2B23DF455BFC6BA1CE2F4AC21804040DA1D25B402E182FCE0EB32408 + A348E0353F7DEFCF477C46E9C61478E8C2AB235520352CF25ECDDA99635E1413 + AC5C136B83C51593197E9ED75E0B6EB82844B199D201A4ECB649EA5FAE3AEB13 + 87A0C43F0BD8D7904E4F617210923FAAF6EFD143C917BC8B1C26934FAA6A2B86 + E1E341DD50BDB8220F1922D048B01D3F95941D4BACDA1E6EC6CA93D2BE0013AD + 7304C6ABDDB5CD27B12C452CEA316ABB11D58048AF4CA6D7422946E7E07EFF90 + 553293299313ED628428B6DA58866A6652FE3B18F62CBE18609A1A92B6693D40 + 13A0C2F3DE95AEFCD0CB975EAB93B42D3E1553AA6D1998BF13869DB9B61E5DEE + A2CCB18E314F384A0791CF9EF1BF2186AA0034E4481BFC95302E4FAC364C8BF4 + F6486CC0569A107BAC545DD40ED64E1CA9CC0D70B3E677CFCA4AF4E6E9EB84D3 + BE8013D0571748330CDE7A12C8812328338A3F1D3968F6364CA13BB768D5ABD6 + 98EAE87AC5FCF45F17E80A1FCD1A2CC42D690D07160CE02FEB08B5B9053EAFD2 + 109459D33BCBEF981C96471E6497C768D5FA0225C2E762E526D6F82E6FE7BF22 + F52C6CB2F2B9706A976FDBD0ABD2EB1756B49C877AB904464E5FB4E0BF3E5BE4 + 9E8369A97E3F4B45BEADB99CEBC0F7CA7067A154193BC633A8EA6CAFE4C496C2 + 0435E255E1EDC9F9A503C1E2C6E60073A74B683AA3563666157047065942B3F4 + 0156507C9EEA4E70950CF421750A66353736C5764EBD26BF49A38647BA103BD6 + FD5A67C05FECBF43D40421169F54330DD22003A18AD302D75CFF694EB0DACE2E + B50AF4A6CBCB9296008E1D3104C2938A1ED4CEDA6CF0802CED463F9CFD00B446 + 4EBA1038E3D80BC540ADC8B9B7C1973072BAE502CCF726AAAF3E8A085C40E3F4 + E0DCA3FF9B33CBD5AF09484E06443AA01D8B4930D3B953642698AE3A8289B5A4 + 14CBC0755BB16575D24AF0954D5E8A81600FDD69AA09B38CECC6359C49B092C3 + 712BC93105D0B1DC9DBF78A6774895644C0CAC9D95B87CEB39DB0E52FB0CD433 + 391B6F4E7C4967E11D7BC76F842DCEAA010A144D87E0E918ABDC04610ACD2B67 + 27E2A34E824CB1FA7D7018F82F7EBB39D948ED6BFB87C1A08869F6936862DA1A + 9729A050E1521B5FB40AF9C1327A45C0112F0DB50D462A70A1880D45C57AC321 + 2D4AC01FBFF0EC6285B0CA177AD17B7027DD4B9A766040AE50CB764F0DE88A53 + 9356DDCDF8FC9967B389F7A1CB45E4B3C3354DF9F134F5D28CF8112905CF87A3 + D8A495EE8868B8A0F5C701F45130DF192C7B30A1EBB010140F5F4A042CCD2DDC + 8AC2A138A2599E3A875EDAB17656FDEA13900E4C1A2A52B6B3134ABCE76A0FB0 + 2EA5E41A3204B12E6B7AA81C7AEDB067AA39C538EC7B3E1380CD1620B33B0534 + F8C4FF8CCDC44A9342B0515661D0F9D6CBCE63CD0C9BDC24F24DE7734D6AB625 + 8B73685A7A78CD12C0A1A2929A9DC3D55E929A4206583006C66095F71E340B69 + B9D50BC3F2D37A3437A4EDF1FE2B4F6B03A3B8A7BF563FA9B6AF7260C3C9BCD0 + A10AC0040955A9BDF3E85BFBF2C242B2E3F0C4F0A82351CBADD4153D95A8FA69 + 8C8829C683ADE2090A18ED89933B43B6B81BDF1ED8E32E0D1C641F41F33AA44C + 7750D3B30C96091008D4A84E1EA1BE105C89783989BC0B7B19220E57108D0A45 + CC167296DF261EF00ECACD7E3998DE59CD60BBDE9C20A4FE266D785FA81A7046 + 41FBE65446C294934007A32D5B219D39165DF6DADEC91D4FCCB07AB96AFAEB43 + 70968025CE5CEB8FD909609C4571953DAE0ACD8AB304F9D041AE4E0EDA4511A3 + D9F0DB573D9A0A8B1C0FCCA3A8C95A80A1FE1AE104E5EB3DA9E8193669DA9544 + D8978276441E0509E76EF282F363699C7FAE3C43B92FC9F39320B4FFD41DD2D6 + C44D3058E8674293D640EC3FEED93CA3A31D005A1E5E7F263C14690D3728BADC + E2F006D5E32D93F0C30B8B3113F4926AB71C2C188263B3178BE0BA288B4E614D + 55724566488588F54DDBD23DC20B7E1E59AE6F2F14C1CDA39530A113B5B794E4 + F7CB6349221F0737005E9B920D2905F6D34E2685669F55CD9B996204BA820C4D + 92F99BE05B9D446200AD3460AD8C815BB5A1F8BF6AC483A2A38F53DD075A1393 + 92B83D132827BE0DB14615B9990A87FD54ACB57E2CA55BECE728C4EC85C6BB1E + 480FA10B8256BE448872019715D45282335BC778C3F38B8FDDADE19DE6F78E40 + B0B9D30C50053DCC10B06A8D917CDF030A5F5AABBCA0DD43457AE67A59B0F6DF + A7BE84C5632E433AB53D31FEDA824BC3B354847975618F9817E24980BC848249 + 6F306D6828A5A93F74675696F4E7BD184A4E508344B63D7D8F1C0067ED91C87C + 09B752DE848788941441797856550E438DCCB2F62D77509A8A190C1DDB512043 + CC34BC3FADC21DA2D73A1F97C48F4A2EF1168514DBA958E8311FE7539FB26D96 + F7E2910517951BF62A6210E299733CAA6784E63ABC48A4B3321F87FBD0A6DE75 + 40E3C775DAAC3B2E7FA5D371F83A9A36AAC484BB9F2FF5A2495AA1F62A29AEC0 + 6C15B1C0CEE6E0C574D4DA82313957BB5979CE71837772128D54AB80F3069D73 + 03B8BE8B50EE23C471253F1EFDBF67660D999F1F04EC10FCF2D5C15913558EF6 + B6622CAFB7D9682840E3C724083718E2C1EDA010536A8814B203B2C4CF47D823 + D90D3E1ADD84CE6BBC16472A44AA2F79E013FD49F0BC83E60D1EFB43762510EC + 4F719C2CDA878076C96B2B6153705CD162C5BBFE0D3A2AADD33AC1912EF3EB5B + 1422C5295391D6A5CD93E045D868AA99CB64B2DDB82A432149CB99E41DC989EB + 86EEE66E7878428B920ABFD90A023E9E3759683837DD8323AD8BD9F55D0F8216 + 078EE7AE82C548F28ED6ADF76B21B4E703E5DCDF5F482CB87074E993A6A61073 + 5675E036B92AACC09FAF2AD20490301AF7EDD31141660FAEF2B44847D9653341 + F55723C879A52AF71DD82821DAEF66C61568C3DB5AD0D45395C8363F576BACAE + D5B6485A4D3CB9F0BAADB3ACBD15108F190B1CF67791EE75C7F78D1CA8D511D7 + F0D88DE81EFEE90F7350E21BD358B97CF4F7F0E9A2904781AAC6A33290B11525 + FC82A53A4C999B1ACFE0A359CB762031B3E5B2CF6F0D8944072DFAC091F5FA72 + F69D4A3FAAE0599ED50D83A921993BD7D9033E69BF268A0B7D8D1C9A7E3E1602 + D11B428CD03E1227D14A55EA76EEDD64D6554CE71F8FEEBF246E62397CAF72E5 + 6201DD74C1D44E4A9CBDD888B302BBA5A432A56FDF3616817D96F04DB483C8BD + CE679CF44273B013FB0D0B4C860EA6CC665199DE5639FEB42AD10E5E51F40E56 + A9DAB7AC7378976F31ED534DF06541BFCF7FDF6EA50071FC12785E040C8A46A2 + D9F58F96E82C26F801D3DFD6CE84D76A4702835B0711EC5304FDAB6D563E1792 + 438CD3EB787C041D3605835F175A2C4DBF6967BA2DFA397857B6AD7343360705 + 6868F5787C48AAE7F8FEF45892F7411C1898F756B81EF4DE3B565DF1511D43C4 + A776398BDCD7DDF9C45FB5FBBBBE02EF3BBA55DCFD67041FC8545B4118C041D7 + C9E396A4DE59B26EAA4CF492CB339FC6FAF9D5A9B268497E19B9849345A08FBC + 65E032AFBFB714C40F7E9C29968DB54886E0D758DBE5610F8CED2B13DC860BFC + 2D56D496E57CEB37FD07ED5AD39F2202C8628D025440290A518D595B + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark + /DSLZCB+CMSY9 findfont /Encoding get + dup 0 /minus put + dup 3 /asteriskmath put + dup 20 /lessequal put + dup 50 /element put + dup 54 /negationslash put + dup 56 /universal put + dup 57 /existential put + dup 91 /union put + dup 95 /logicalor put + dup 102 /braceleft put + dup 103 /braceright put + dup 104 /angbracketleft put + dup 105 /angbracketright put + dup 32 /.notdef put + pop + end + %%EndResource + + userdict /pdf_svglb get setglobal + [ 0 /minus/.notdef/.notdef/asteriskmath/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/lessequal/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/element/.notdef/.notdef/.notdef + /negationslash/.notdef/universal/existential/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/union/.notdef/.notdef/.notdef/logicalor + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /braceleft/braceright/angbracketleft/angbracketright/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef + /N1220/DSLZCB+CMSY9 -1 TZG + userdict /pdf_svglb currentglobal put true setglobal + %%BeginResource: font MEBXGZ+CMR9 + ct_CffDict begin + %!FontType1 + 16 dict begin + /FontInfo 15 dict dup begin + /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) def + /version (1.0) def + /FullName (CMR9) def + /FamilyName (Computer Modern) def + /Weight (Medium) def + /ItalicAngle 0 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + end def + /FontName /MEBXGZ+CMR9 def + /Encoding 256 array + 0 1 255 {1 index exch /.notdef put} for + dup 0 /.notdef put + def + /PaintType 0 def + /FontType 1 def + /FontMatrix [0.001 0 0 0.001 0 0 ] def + /FontBBox { -39 -250 1036 750 } def + /XUID [6 5000792 ] def + /StrokeWidth 0 def + currentdict end + currentfile eexec A0B00ED5187D9C0F1ECDF51878C3AA5CAA3EC9EBBC6A5E + 2825687306A156DACC32FBF734087CDFC35B78DDA68032BCA38CA8E8A340AAA3 + 002A0E52D0B9162BC68AACFC0F14A1C933363A56EE460EB41CE8C2E9EDC509AB + 9E0462B9F619AD944F133AF072E5FD1625902963260181189070C40FB0D49A96 + 50D86FB0AA90098027455AC2354A299FC7BFC34B4F1162E5E9A3EFD80D6240B6 + 9378BB4F6F9C33B910EC9F1A2CB9EFF55282DDA2B7E7C4B1FF6BBEDD12916474 + 7C47C4F0B9730A20110B972C6E3B152D541C5EEFFD9815AA1D2A5396F0EE6FF8 + C72686B1CA6ED6692D437E716C93E5EBDC25D177D5521810869088C82EBF4483 + CF1349D650BC7A3ED82F6200B951EC10D51CE055FB250251F145BE449AF13C79 + 02F01DD7F72846BD10BF85E225F0700D822F22759312EAFCA3BA4678DC12C440 + D16318569431F937B147536900D06834BD3D8D0643C68454EA1F89B00E386442 + 14B149305E2B3EF0D33D97CD1F1E4C4985E81A993D03D0F39CC3CF66EC190EEE + 68FFBFC2E24C8B5B8661E71A7DD0A9FEDFDA391080416E38D9E8A3F70EA8B8FC + F70A29041594A28910EEF6C1769161E0E02A8F902706ED21B26E550303E6ADF6 + 9925AD467409A586145B6A6BE5A63EABF3507AAE3071354FCE6D17A363156EA7 + 220DF5CD4FE98B167BED43DF96B2722960EDF8D3AD9A89D0F064FA22123A7EA7 + A903FCA4AEB38868C3833780157E1F5FDAC87D99DEDCF78101E42BCA7E8F81DD + 5C031E196D38AD9119B16DF1C0A2369436BA65C707DCE6576642489815F83D8E + A74D6EAE631E3CDFED5F72C83B3B82F2C60C2124656624B6ED75127718AEAFC6 + BE37BF74B9DF069C008F681EE2260E8D32D7E11836F8F162820F321E0674FFCE + E685C0C61D476DD619A7D22056205F7F37418D1316AABA88E4773250E6B9C025 + AB588C7FEE1F1AF12D17606D5AA03FB91B8134A25A485D4C947243F8DF256653 + 7EF2E3E10DABB78367155B920086E36CECEF11C6BD6C8FDF6764C3303D01C77E + 40A9D9DD24ACDA832A8D3FBFF9A3105842CA3FD2A58BD158C2349EDA38188CCA + 9053ED256C2454DD02F0ACFE14ADA50D2AF05A9A1949A0F767CB5548BA937E1F + 4519B5EDE5F5EFACE4335FB8339AF4BA62921AFF21DF1CA43EB47719E2678E4E + 4072C8B80618FDFE1EE3948B3036DBDE5BDEFAD565A7E3E547A418F6F1324230 + F7E73F0CBCF216F62B57305920F1C8B4AAE9F2262F99382870E6C2353BAD84E7 + 929CDFAB7EF31EC79ECF1D0C7F0F8E5905291BA8EA5AC7E54F1CE6097792D7BA + 127945DA41A4986BAAF0341F74FCDD420108F5443F1B399814545CE8B36F8589 + 59BF87A8AEBCA479C507DD2578357FD66483122DC7B790CC44145865D2CBCAF4 + 9A0F4AD57A3DDC0CFF74AD7451BCBCEE9FBC5F45C17B8A29C34F0AA219C38873 + 47D19E3EF7B28D6CBA4DB374A19AE081D429D832F5FB3B6BC5CCB99C1661EBA7 + 0A0AF086E811DB04D525FE10FCFD2CB4F795AD263492539A45542267DA248CDF + 8D97FBA73C819736B30F1B2EC83D7E426DD1BB598AAFE3FD2E35C4F17D7A588F + F4FDCBAD0F41AFC7F249F4629E1243C596AE8030658FBD8B2B8CA474D5F36C38 + 95AB528B7A89B4DC77CB6DFDA12E419ABF738D848A044D510AD53E9FFB59E80C + AFAE9A5D29A51177FFC557D1FA51149DEBDC2E013CC10601911CEC2A37F550D9 + D37D3B0C8D5EF3B3341C1C4076EC190CE471D86154EDB70420D3B1B6C4160C4A + 094B6ED21188CCA51290CCF28FA304FF97DE7DB708AA27E5DDCA003594E3C07B + 1654A176D7F3EA1D94DE31C988905ED733313788BA7AF93436BC0A9635147481 + 17AC6C4CD28838865D0ACDEA122915CD8500ADBBC289180A06B8E8E6883760EE + 666EEC7BBB04FC41DF12153F8376C5F3CFAEF3119804B399F7D7275D91FE9511 + A3B9A78C5A7CDCC7F5CECAF4BD06BCAFC861F062AAEDFB3DAE0A9DDE074C23BA + E4677959982C1C471BC9ECF54EAB1E8B7C098CFDA5FEB60567BE57FA0BDCB040 + C9FE917659F073F0C6FA0033817FF3C2E1064B9ABA4192BBFC2D115402EB2793 + 0215D0A3BB26753E46C2E39CBD2B0316EAB663403CC5B348C084DA477869017E + 559DAB742C2D55DD25F0373AF1430FD6C4DB31FEDB542384DCA5E51E2A9F0BF8 + A1DFCC7F41B85C23C53711F8DF15A54D211471B01E2F313D1DCA40D71CEA5289 + A4B69B7F430FE5DA9FA9C9F030A70DC1F3621F759C959A9DDE323D312CEC1119 + 8C02E3403AAFCD2BB78AEE598768589E1EB5E4E87692BD215035190BCB5F17B4 + A5B8B8ABE422325AEED01EBD7A64C86AB1F17014EA10805FD58ECE49DD0E7178 + 45586365E31B7D408A946DE721582A64D862055798F25381DE11EF3F3C036F16 + 31334424EB84402A2F87A0280F7A484D1AE27E2D1556CC5643C621D9D1F59D05 + 275B5B9648F8FCA023DD7107DADBBC21D3A89218F2D1D4209317E395DA4E0C66 + 5535A267589174CF369C0A2E73EB7FA8CD5F126A305956EC69F5A344970103BC + 86EA3490351EC060FB17E28C6D1258D7F10758C7F655D6B17DF0A7AB32EC07E5 + CED529F20745AE241A33E5DB0CA360288D3AAF8802A5279F0FF94AC81761EEF5 + 6C1DEB86EF631F1EB282B2473CDEB4D1F73832390DF73510B1C7035A59ECAEF0 + 5E0A8A53DF8E65F1C25DD8090B737D95DBE91B0E14191C84B0957221908D0BC1 + 8E8DBAE942AEE42950E8F76481AFEC7DE5DCEB00086B5EE2B76EF7D4D0728D3B + 4579E8D69A8CFD1E7A06C880F537C414DE4C8EDBB2943BD7FBD7A3CF27C11753 + FBA30D8CF2A1BBEC407968D21D40F5304EB151A95CA25F217AE60EC5CA09921C + 01B8371EE65E6C966CBE805768A5DDFFA4CD2D002B23C08EC379494ABF972950 + 593180C4B6C81A493D6213CC79AD4CC327F553A3E0C7323E8BE82AC20FB222E5 + 3F9888E7B58C82A47724EEC1E947CFACAE27FB7EE85803D2D9692F469AE1C286 + 342C06D6EADD460F7A57E19BF6CD52CE77CECFB01337549CE43F940065DDCA69 + AF0AC64661687DE9744BC2E453AAC2E7C55995A53E881B6D7341766E9EAC3E77 + 825BBD3CDA8D9A0158F36AB03F140C5F5AFC4904415867F527B699E3F2BAD5DB + 9B4A381B35573CAFF70E6F26A43825334EAEB19A3BBA5D25D8F84F5AA4CED6F9 + BBADD624350A05494636808F61D0B860239359974BCEEB0447BDA60399564940 + 941CB16F51741B23F37089A85089C87223FD4035B731BBBC0563E070F5CF3DAF + 78AC9BB88BFA7F9B8E9F8C91DC8A27B623CA6BC896208037A93E208B206C23C5 + FA761D3910DEBD07BC5555A936CC86C06EB188C750DA343FF9D76A2BF6CF6A17 + D9D23C69CE516B0985A546065D5C4B4DE95A901463A493E34503A2C162CA5632 + CD292DE47297630B366CADFB2C84B3E5831FA230DCABE89F6DBD42AC5CA3F738 + 5A8D686AFFAC5007F1DE41A561B2399759052852A9B1FA3DCAEC2EA9648527AC + 8999BCF17C21ECF285F1489ADB2403669FC6A0FD5531981D27F17CC229801665 + E3B671654A8A7CA0A2580C77967E4376DAEDE5A8EB59E062B9975613F2767B99 + 268664ECA8CC7218E6BFB3D396B4CE8193709FEBCA5B2C879EA2A92A2F8B1C06 + 5B16A3E3C237BE552754E98DD11B5F2EEB4DD3BCD1952E7BE87EFB2F89CCC12A + AF3EF04F8C2048A5BF554145E9ACDD25A9D65EC2E1D6845B369603FCEDB28710 + D8482708DA39DA847BF551B9CC34E2EE629B1A90FAAE5C4C26919CB251EC6514 + 05BF31E2E4342FE578F7D61F43AFE4DFB6191A0D0CC7A078092F6AE0834CF2D7 + 3A6A55D683808E33CA1DB76FDF3B0785D4832B29DDA65FC441B5F79A1884F53D + 703AD0059ABFD790A1EE8793C0618435E8D9A964C6AFFD56A9EBD28ED2A853D2 + 3640A96F55741A67C7825FC4D9E38D5EA2475B13FEF02409F32A4EAF9A165EC0 + 812F091F27196D6538F452E4B1FC88C2C9E778142E58362A0C7F502B549581C3 + 9A86F33B8E5D494D747BA3E9822E611B332FDDA91DE6CF7DB2B9483C61F14D03 + 4CC513B2348C638CC2AD433229B262F6C97A3BC6B5A27C3FEBA301F0DD2C0C60 + 08D9599F209F3F2D8E534439A61BE5BD460CF9E4F097B2DFA3F799628F0EECB2 + 61F5CF37FC97E32A321C9F97363D5F4530F2F3EBA4EF86DE46C7C3744AAFFF5E + 5679636B09FDE5DF81B4ADAA8736D506085F17A8DF9E02D7253D7522FB0C181B + E62CD1ED994C3BFBCD6A155CF104D3E5E7CA0A1FBC69828D8584E39E6ED8CD90 + F8B42D377DB41B7D5DFFE38140D39C5796F910B8CD8394D2AEA1AEE1A26A83A7 + 623EFEA11AF0F7E9302BA69E079C9BF60BB084018261839C4A4CEFF544997C13 + FB88393CA2DB4FE2EFDDF70B23FFD46074166824242487A323CBEA71339064DC + E30CF560A6FF4C7CA4C75CCE5C3B9FBA415B58F26742A6E01F16B59CE4F959E4 + A1011971BD90D1B89A8CF0CC80737EC66A572A078366C4F2D11CC980866C35C3 + B2F20D3FCA5EBF538940F046BEE43D3D41DEB7726D45A8DB6C021AB7EB9A1EA1 + 9D57F9A6119F38CE9813AD7D5045701854AF6A23622379DE63CEEC5E64F175B3 + BFDEAB84BE28EA1F30A6398DF8D6BE66E731FF9A3E5E471B089894930E746E3C + 2971D6D2CF0F887F73B63E9E0FC76A187940261A32200EEAABC54FBD5D67957B + 9E5A9BA59526EB36A02E986F76DB8251EEA3D592AB5FC993722344F610CF5CFD + 5BBBDF53BF208D4E6F1FB840BAE7493967B713A261CB11646333E10A6C56D872 + 1398FD394080760B3E51E6976E103D7C724CAB89326DD6F2D90A923EDA8DCA5A + E671FCD5E45FEC394D7AC0CDACD42BCD7DEF57D77CE6DD9E6E59624520E608E8 + 1D0F8ED5761F08390967489A500B250C71D56C0B5EE54D1FB0CB8BD148813CA8 + 2F1049E5A73C78ECDCABE8104EC925C1C1C18313504EFAFE113C9C1DBAA42534 + 44803BEB0BF4D043EEC73DBA9A46DBB885A9C94B597F65D2A9D1F3736EED2944 + E57D4082425E1A44B930479497182F564FD8B14417542269466E7956CA2EB300 + A53E889CBEE547AA31EC084CF01FE76C2AAA28BED7D961E19D03C2F22D4DC125 + B8F5E1B0E6DBC1134C977DC02CCE75916716F0D558CA98531CD1B41F923ED0AE + 07A4C881AE5E7792C8E9D1C96F084FA1F21DF0402B3A76F352CD2C2C84F9138A + 038A8B6884E0A96F6113755BB5CA46B3BC001DA92D4C79A1594A2777EAC9FDB2 + 20176A7E38BC3DC5ABEEDC622422472F75365BE458B026E032EE2749BF4692BD + AB96498099922E4A1B317AE363618C66CA8D102F21DE007CEA151F1243832194 + 71C9461FE26CE8CE2C2A60FE23CC4A6D9F77094DB56990238FC1FBABB87FC2EE + D616055F271F0CBD0E1A37CFF2AF4A8186ED7D89E817301CE82B0E9DEB48C8C8 + 9537FD0C5CA7D045FF27162CD005687C61F1DD7EE4C227EA51D57EE9492DB8E3 + 0A84C35F9FE1835E071C01FC25750BA4E57A51730243B17F92B238DA934244AA + 8B4E12E6E33752A706807AC7A4B5B5129B4F40745858AA050AEF5EDCE4301329 + 78DDEC6AFE2859C90684B84ABC01CF762E7C0F9B1B7494E1B8629DDAD2A907BE + 87664865F9A9386A822A0DE0E948CC9992D35F7E1F1888E2D79055DE50F5D2B4 + A4322AED668140EFC0EE560A176A7C29639F48C7423B84F99B0774C0F63FB07D + FA4DC2F4743A69ECAA4F69CDA17111AB37B9511A23EDA5118E747C6D940741F7 + 49F0647FB3FB1E7945806BB4519C582C59ECBCEC7C55BC09DF4CEADDAB404804 + 82785D126CA0CFA51AFEEFE31767FF713A0BB8015690F3D9FF21921B22E37CEC + FF738B4140A08DF46EF67F3B2D975F4ABDB6647F53DF90D2881DC49757FC19E1 + ABCC0866EFE2DBD809A52B557B97BA9C8EA8AD44D9850ED45A7C19998227CA0E + 796E11FEC1EC3AE86D4F7C1CF38DC22A5774EC83499E716A9004906CFBDA9F53 + F6D7E09E0687CEFE417D5D70AF56D6C414C203D18356632B485388627EC70666 + BB129C5D0B7DB8B89D9E27D9A77B9874767D0CC8A058D767BC5296EFD6A66CB4 + E01D966591ADDAC31382BAAAEC5953A65454B386484B088B3C94C37777AEFD51 + 7F523BF9192E89FDCCA1FC3F24E7A4C9DBB4568935E9CBBFBA8D6C4A5894D815 + 9435668BF1087D74B2914885B583FD968D7C773E5082635B62CBF603D614BA89 + 9BDC27757BA781E1CF2455D7B54DC4EC2337A4C501A9FB806F38165F3F953721 + 954BCC4C685CC80762EE2197CB5371FAA4BFCE47AD09FAFE5270074E23C1EEB8 + AD94DBE73A1072F7EE16160D7FDB48EF535D7CE937DE0975647D394B477672A5 + C6DDA02986674E36C41F79B60E856F07F706CA6BD7137B551C4AE4BA70426588 + 19C39934D1C58EF904CA18B912099575EF1A97411CF492709C23AAF0AB05D371 + 2E35C18B435B28498A26357E46B140F4F81661CAA6E86BC39296AE92AD024DD0 + 64D223ECD6D87CF9E7DE12B8A7298D08807A3A1C84E06D069A2C737290B054F8 + 321B1BBA8013A2897AE9439788DFCE9A1AD0F73800EA4AC042791B39B81FA628 + A1D86761D29CE290D2DE9B64156D1F47F23D7374AA7961C833B7E424E4470294 + E0D03116D09860FB27F5E3B6044F5242795AF0ADBA68D8AADF824474DC497144 + 225D97DAD58D297AA7641BCAB3D339A577F9EE4C93D1F87E197CBE6241138B3D + 9CFA4FFB2428E91B5AB88416964DE69CB4495461351A4781B2A7C5CDD46C7405 + 5523908C3ED6E332F9B05D3C42010C92DDF6320FC71DBB6887D98A3062AF2DFD + 7CE23F0BE99F1C7797EB082AD615D68EE0171C83FAF60828BE8FED23D66D8304 + D76DF12C808AAA07E200E45B8EC4E94B50ABA368C118266E61811F208E347A77 + B928288ADD76D7A5455EE3F4F4DAE9C17D053B12DCDFC2B3DE47310CB7452953 + 117A36CCCAC3525B61D2CB6E741B1437971342E6987826C24503143BD6A29562 + 33133A6A82CF76A8A018295773205FC810B8BB739601409076A48F69FF7F3548 + CE93E29CA2E10428E129B8D46ADB9624320A0A46EC79407DBC819025343F0AEC + 7D6B0DFF189182E0D4EB43590677D9DF58708BFDD0B57DC41D8C11C96AAFC2AB + 683B465720975BA965B96AACA498699F7E065A63D169A0A78D4CEE36FB48C40E + 93E85D7BA61F81366FEF456EEAF9CF970D2A3DB9BA55242A393ECB07D6366978 + 528B60ADDEDCDEF8D4A320039F815E9ADEF31CD9D4302751912373D7447F4157 + 0F918F0307CFA720BF1C1B121B71D5BD336547A58880E18EF281EB1A86E0C68C + CD1E893FBEFF30445950AA715EF3C92B5CFAE59FBC18B5D877D3F6F1BA48AD32 + 500F4AC497890464594128CE0E9B4C54C6DA495D42BD1D023243AD2D6F2CD894 + C4635B226524F5A7F23815A0D12EFD3A5CD982CEA3CC6D8ECECBADFA425E6268 + A37D274205010978F9B93635273598EDC76AA612E533A3859F6CC93147524AF1 + 7B7ACC0DBCEC6DA28B7B3E5775B5D0929DAE4AAC025EC0C16415A09FEA6B166E + DF7A719E8B5AE53AF8934C8D8DB4790CE8B3998F4139D46FE20951E8B02C7C76 + 090F20E1B66AFE95CB3FA320E80A4A953D7E355FB86C5C02DE31E5063008AD13 + 0F7E19E370FEAD791ECC10E8638124E4BEEB2BB8D5B84ADCD09D167C5CFF9269 + 83E73072739318E85B07E524E08B55AAEF2F9D06084DEEDEA902679472D1E2B2 + C470E092887151B2D511A99B693BFA069313690626B527564281390596FD090C + 57FA0C4381FC92918DD6CA6F078ECCBE20A089EA5573373F95EBE85D25BCB4A2 + 1471619E0E12E51DA29E464BC051F2F585D36FA960EBC16ADB04CF38DC12D378 + E9F97CEEF672F5F3BC05F25B82723B211A9601216B0B7C06DF44F43CB10C8CEA + 952F9BE182C59B067CC7C66A1BC32DDB08ECE2BD89F285473D93D80AAB0E4E52 + BD28DFB16BE020EE0C1434300A4A6DD90022843D8C0C4C0C93C9D316B97CE92C + A6EFE78B0764A21D68AE3FCFB3A69A803DCE5EBC33527A19D66B20688F139AF3 + ACF9B38DB1379ADA41DF42AA1B88FCF57D9D568FA506D43BED1769C5398938BC + 531D7307F5445496B9F4C7EDBCF4345830CF4C8E2BB5E022AE2D7E4FF0CE7ACF + 461ABD5E82818D8DDC9241AB1609FD1E1069BC798E60D8DCA381357887DF32C6 + 0D94A690CE27AD1A6B734BD3E25F43A75F2AF190B0F1F89132584131669EF07E + 57B2E013EE5C23B2B6129A49234FEE1A4D6A7AB904221AEEEB2B38316D939D50 + 7538F888F59B6CB2C03C22D5E42D396232093B9A5B1A97F4208082868D1F7C76 + 7857AE0C92D3F7E60229443B0E48D7E2A18683DE367F27397717A5DDFF9E4E30 + F2A4448BF4FDAA348D1697D86D2213BAD8F6BC939CB972042931F83A22FBE4F3 + AE0DA395C52BCA921F2DDC9150E02B8514CF4AF472EA3E0C9430AE3CA6B8C9FE + D2EFD83B77A1E96AC35D12E97731E534EEF3DC60666DBD84F273CD790C666CC4 + 782A40452C9D183B01802C99203E5F1EA9D631DBE4A46829E908627D66EDEDBC + 180AD0DB4DCDA7AE642C9904ACB84035F57383D2CA5E523BCB5D4C48D93F6C7A + D6EEA2A5494CFFAEE6C007F37182949593C90BA7F67BF19BE56ABD9F1177761D + EC4F900F7D483798AB5AD1E3C9ED7577BCE51727D3703D90D119AA3922512935 + 677DE17DD702C980006494D8BAED6A787C1CEF5EA5F16903062764BC2E98F1EB + 34062FD716A197B9608B2DA1D84DD241FFA5C8BA00E3C9398D607723085C984F + 40FA726F50B6356F2108EBFF06520618666DFE88D71D6A6CEC803D3EC666E192 + DBD4495F33A9B64A36D8787810D1E33F1DF4C6CD60539CD03CF09B20A6C63FD7 + 92690D461DB3F05071262C304F10E27FE323395470DD73D68AF19F381FF8D817 + 783EAD1CFDB1F520C9EF09DFE236048C43C6460D730651C2E3CA673ED2BC5B80 + 13F69EB92C4D86A656D0E652C7D8196064AB0D7D33FDCC1551E8C94D54F80574 + 0A51A16C807938ACD3E264144AD80E14B15270C09BE3C1D1F7CDEFA8D94A812C + C42AABFDFA15045C7FFFE81D5BE9FD09A75187BE33960A7E39960EBB0232DAA8 + CC267932E49DABA26ABAE32C7FAE86325CD3E864DF9590F23BF4E61A8E6280A0 + 5DAE42307198C89FCDBD0872140FB80EE1CBE675D1A5961331412BBE85956482 + B1DC4C55C0C4A361C49E4BD6A073591C8AB679CC1F5046D772F938CEEE546AE3 + F60978ED2466CE8E89D8BDF0BC99DFFE6F0C417571DE11F8A2BBF119673174F6 + 4ED22B358FC396D06E8E5247A34A809C6507E68A52F600F775F8CCDED9B69660 + 68D37BA1988DCC1C0F90165E8A9216D3C7344357C9BC37B701DB0034DC981057 + 9E4F1EFEC02BD523887B60823D85FB6E591282E8947F6CB934FFDD7DE34537A3 + 99A64C238F2FF80F57F965AFCF026AB050CB46F2DA4217DAFB014727625EF8DE + 548D9F8E21054FE8FF6F243EDD23662486BEF81442B36277BF42AD0C08F143BE + 2FC5EDB88E8F37B29F6A564EC6F4EA169A1D740CEE74D2642270900C853B0008 + C930D01EFD25344A36E212084555B7DAC0EDA9CDF266E3023A74E9E7EC56032A + E1E754EAFCE5D0D1FE85C6FEC248FCB9F7F8389F0781F32D5543A468443FC4F2 + 267F2DFCE38B1B7FF3E02A1E1508B85E03EE83A50686091BC849B32BAD913E2B + 4596E474135BAAC87ACF6BBE6529350077143487674BF4A20290E1B65839DBB0 + 0EA22B0E533B01A386F85192786570F8DDC835D101DC785A2A866F515AF8B280 + 3D6EFBEEBBD4960E5E68FF2DD503A8EB427612A45A3C7A857357A62B5886C2F3 + 6261D2D6795DCD6F2E05656281E49D518EEAD3F058E6DBBF0A6E1597A90FDB5B + 1FAFB4E885FE7F6A0488C4AABDDF589170C819879CFA7500E5F2D260F517F414 + B3F2F6343F34BE0B7B3216DD2EF2C742534F11BC372509FB9A511B16AAC90896 + 0AB993876A8E9C94CB1C14D1D44CD1CE7350A4FCF015CBD616C9F3DDBD0E18FD + 304A6D75AD86A13379E7CC9843788938CEDD671021CCAF7A02481E4DF2B29D4E + 0D85651E3D458E06DA4CC2373B6DECCD34193EDDB3D795497617D33C5FFED782 + B66FB440DBC8B1DB6839D5F9BFE77D7E608B8567401C8828DE58C19BFD618B5A + F1327B13910B82D3FFFAF8BFFEFE231EEDEE48A80EA8E7D89DF9E3445D0F950C + A9BF5B2F3CCD84DD74D0681502C9861ACFC83138BAB9BA905F99F22FBF65832D + EBC9A8AB4EF444530964AD58794EB4134FF09E0CF31D4AA3AD05BAE6AE6E0036 + FDC6B1862A68CEBDE429FC52A80B2E6B10EA3D2398F24F892BA68BEBF4E4E13E + 5DCFE2D42FB08927807E7DAE3853C746161AA29DE8A3D9A42FCCC080BCC3290F + D153C2E53879F782E8FD5589D0CD829CA378DA272B767B30FF0888C1DFC9FF71 + D58E5C6799448741E1B9E32BBD330A378BE802D59DB97316A1AA42AEEAB3ED71 + E47BB8680A5BCB2A74E0B86BA41E634192DB963D30CB4E3FC0CE17E25D64B823 + 26A7608027DA69A6601D52BBCB45A35F540799A64E82C6C6DB999268CA86826A + 62FFA3FA2DD5C12F2C5F7561476DDD5EB9D41994FE005871A1901B0B80DAA56B + 4CD679638F50AA281B3F9FC2BC10935556F4B14EE96EE5E588BCCDA4BA7E0E14 + ACC9FD87AD5212A03656104B28C7B73F7D31533EF6C90A2B71FED3E765761D95 + 8BB4E3047E9E060AD7864FEDB8601BD7C7FAF03A2C493D6B632E21B71FE7A4B2 + D0093F690538F1D82364108B75320E2744862A8743D7525A56C86B942C325C2D + E5F777717F00D45168122804477840FD1DD32388C4FBF9A93C5D781DA3D010ED + EE4730DEDF3B8680D7D07C98BEEA813F17B2028365F42D2E241115D615DFB898 + 53132600C17F4CE678B1DA20FA8E8169497A21F008D66EDBE50223E5D0D7F055 + 05CCADD44E6C09DC83311294E71D9532F8BD2946194135A06DE80C8D5364C8C3 + CED34EC0DE1ADC00FEB35152E1386458093BC32FC04FE6317D0AFA92DE7E2053 + AA1FB5709F038C1D9A4BEAD0B0054C5541EC9B8AB352F1ED59A152A19739B4BA + 0E16007A7E984426E02604012E293482F69A4A4A2FF63F48F56F0CA3CE84390C + 6AFDDDB6F7818BB3AB9457A9BF9062A54715772865409E8A8034318047935BB5 + EE4BF1261757AFC704F13AAE05F4CDB29B3A28C694113904179BD2A373D49B72 + 0BCABAC8511C4E633952E98272056FE4B6A73C2AEB60AAC7E65231429398E81C + 71937A78F2AB3A97B31ECAB3C1123AE996FFF0F4CA04921131E52568E82EE869 + 2317DB4ECD8A8FE3EFA3888AD94D98EED9488710FAB3F7600610FC46E320505E + 1D82DC5B4F16E927DD1CA76D65BAC98DBA69986A5C6791C7E8A074345C04D861 + 8738F926001F8CF8BDD67EF35ABBF4D3724049C1CEE7F8A225B473397973850A + 50BA6158E34B1D66DC9B919394F51BA14D1CE0F827856B9E64127C56709D299C + 2D22B43F9D70D0AE98B94EBF66F7E11590C53B9AF237E732A83A971A73C5EB58 + 07E0407FBF1746A80461B52F5648106D7EF2B1055CAE30C7D1B88EB4DBD7AC0B + 31BFD32CE11CDAA5534500C9C06E722478563ECDB3E9CEF25FEB5315FF24FBD7 + F3A05C725BBEF6DC8A5EB2A4CFF6CE33876239A4E17E1E89D31AA09B0D03287E + F1ED9C2F2BC45C7BB5E44C663326904A3F4E2BFC03CA18CE770F6DFF64C9BA95 + 50D0FF441B53250274BED23D14F26A43E8ECBEDFE730B01AB5DCFA3C3A086BC6 + DF61F2C11C51D985C967389D3DD111B107B1C616678B68C832BE1B5007AEAA92 + 7257B98F89DA93D6985EBCDDFD91316DB09D4FBC9422AC3644C74DDB51F1C667 + 84B0A922F247690FD0CF5BE6BE11588ED3FC59E5F9779D2E58F959ACE447649F + 407008B533F027C455D1C9903AFED09036AADB20882A86A6B0E4852D73EAE914 + 5CF039E85DAEF808053F753CD4F118ED186EF893FA92BE3BE9519E58B266DBDC + 251A5BE40FF25925AB656BC806B8EB75D65E6C88C974A0A08282C379EA8549C8 + C07E2EFE299A6B18286493D5BE26F16073EB546F5EB35F23F3FFB363F2D6B268 + 035724BC75C3BD58BA69201EAABC99F0C10B51191A45B2A2A3D591E76F2B0615 + BD5552CA1D2E4DD2D5CF204DFF89C77BCF452DEC56C3D814A2D4CD59FB5A9ADE + E9153BC696326920B7C5F805E2417FF41D9AB78E0AA0BDBC55A1811DEEE52452 + 32FE61DCD54F1D705BDBCCFE28C131C541480FD18FF8BC7516BBBB5259A202CE + 2925C664ED72B6067B063E16730192CB81F54566A91DDFA1B37EB32CA8A36EFE + 9EF53F1302967C69C3CC723B20322697F66C79CC3ECB0C49C056111CCFA26EA5 + 496FF47CD55079BD5A92F51A60C6EEF6D71DB0FFD2A3CBC84CD3382C852DA190 + E2B20E77C02427A2F967761896D8C0FEEB870A6210D82D5C763B8CACA63113A1 + 10C0B2171F38AE7460FDEE4C0E500B875A35A56A1EEBE7071D2BC711EEDEE5CA + 5A42C750F3A61CDB6CF84E7873B66DB7970B478694E8E7833616BF51F802AC96 + 7D6DA09537B78E7A1EC9D5DAC2AD7B34F505E455E5F92079C88EB8F6ACBD3745 + B831F10D20BAD115926B714F6F58689F2F9BFCA33EF9383C1FD0CC556B02C544 + C6EA4282C79847F41BD85F61E707E10BD1CEBE506894B52A7D29537D60EF95D0 + E6C5F5A276064946B81BFB39FFCD6A925DFB753CCBD36DAC366AC8C2B666D3B7 + E51805823A604FAE01953E070A233EA370ED19121771D8CF1CC87C75E23E2665 + D42195C62797B915E3A6942EF5C3D9DD6D50D51D0C16C30FEE209160B5975CD7 + 9D2177735464B32C13A7984C32FEB333D8B95650983DC930A890215622264060 + C2C6946F1AE955B864186122238C71A3C81396F3A8FBC79C395913A38920E2FC + 7BCCF06335625E8ADF21BA09365FAD3CFA3DBB6C8554AE8C292F042390A51421 + B2B952610771E8A881616D07ED9C2B5EE52F55EF2588FAA2C86B054406D1450D + 6B00F390F120C9E6BC1AE481653E310716DD5ADCA5BA9F90693BEDD15302F302 + F931EB81645883664721FCBB4C28BCEEDB91B1F69DCA91810C6A7F67B94C0E44 + 103BB0AB62DB256B2DD17FC71525F6F5FDA7794557D2E935619104D44FF077BA + 92F595CE6E250329BE86375DB7E387F65CD18A7A085F1471A8D21D0B740295F9 + 20922E6BDB3B6FD3A38174A672F3C62631486CAB522E66247F3F9D00E32DB7BE + F746C8D0E08B80F2E7411B440311B122B435CB40DC2F970FC803FD040DD8D840 + 308045CCE3CE2845E45FB4824319327CC5BAEE486B8565C75664140ABF37A523 + A7B30C0BC2DBA6357377141439ACD946173B9F98647AB85D42810DD93FEE3E0A + 42977E37DC584C36B9FB5D352FBE276C0429BBE77AD919D557C9070708207888 + 6C2380B21001A1AE1160C2C3B7985E8685EBADB065060975F34F46D99FD7EC6E + ACF8CB690B70AF814E40CB9863B42041860ED7000D87FB22D2EED1A103A8187A + FFEE06BF143F544C2857EB06DF06B66DBAE5917DC48B133375268A286CD38E12 + B98D8ECD7268EE8C38EB5C33A0C05CFB138A70024D65B791736856F2D529F23A + E41B205070EEF20BFCBE963F3F034E30CE5A1384D49F0C16E03337E36C125667 + 8FFA1230221577D545B73BA735BC57EA23A33835E1AC0744F7B9CFEC4481A367 + 3891A487944F2CA395C70751150876F39BD6D5104A5DD92872C692375F7DA784 + 3FD47B36AA40CBAC339394FB461180E029F1E8C20543DB28E8EC9C2289A41DA6 + BFB9B89CD8CFABD48A8AD790929DF0CA7009AB9DDF917A2564E220BFEE2F33FF + 1F3542BE4B9E4EAB5F81CF9E2D4CEEE180D71DF67F5DD28F5DCD2DF37106A73F + B8470D5FC16AACFBAD58A29F51ED98997E12E59C63E3FF7521A137E32028F54F + 2F722E53B63944094B0944FB7818CA4D17D2A6817BEC7D13E0D479E1EA048B14 + 8E05AD1B565B84DFD4BCFEF16913ADE68F454CB6BF1B91F4E60E80A7144E330B + EB2093DF7ECC28A12F02B08A07B161A69B95E50DC5AC7BF39DE18B2BCA3CE2E6 + DC1D3DB5377E750E2F58B2366C3B2122C6EEAEA9231C81326EEE83A60BB8D784 + 56C390A1993256331B80EF57157F6AC41CEBA84FAB4113D422D1B07CB5F537FF + 51D87B968C0789902124B364EC2608E255FB400222BFA017F08343D5BD4FE4C4 + F834A85BEF9C17A6081F3987B7823B6E423CAA762111898BED290C3A0107C3F5 + 2F19494A2B74FC532B88F4CB788A8C42711FF7275709F0D2DA97FC96932AB1F7 + FA2DEB1D8271F758A5CF3B1AFEF8F5D34AA7292AA616B867114B4189F6663CD4 + 754363C905FE52C3E0106E283DA7D0B0F6B6AB52814CA191250F60238595D183 + 98429EEDFF0E4976FDDCA891580398FA691955E5AEB77610419420BF4BA54F49 + F364C690FF9D777F5779BEE9ACA9EBA73814E66CACB295380C465706A3789551 + 4E2345EC1AC3C0DD8BD4776221ECB1D4B1C215CA76141D0B2D43CA23988C1473 + C84810C6D0DAB5BD8E1F4300D21B73EC4EA0553B1C292CAEFDCBDFA1E19BB737 + DD0F20D7A926180534C1D593FB5972CDAC2267E2759FBBA3C21BAE36A3701D5D + 88E9EF6240540050DDE366896838E66201B18E158383032CA0C4B3F8842676A9 + 00B5952D1C3B68722CD4316F62ED1FC610FB1FAA71565ADDE80DEE57CE0FEC71 + FF734AF2E18732FC91478A926821F0703994F7F4DCB6D05CBB5358E494A6EB52 + DFF85AC8725F922AA54908ED4B83BF069F0C171DB09CCBEEE3C6118964B241A5 + 8F61B575945B592B2B8C213B6B0DE7E94605E258F1D609A3E601EF5CB1A7C3B1 + 30B62986857A4BEE49225596EEB0390D4E530F8811C5449BF7CA73835C0B0832 + 286C95089ECB56A94169970A4C8AF6F06B55FDF42161289404600BCF975222C5 + 88BF2935FF4A6518FD4125ACEC9E887FE8AD10FF6EACAB30CCCE425F726267E9 + 5C16E2A45EC2AAAC0C354979D3550F098A7799379127DA46FDBF53E333E42390 + 789F7DE5E84BA3EE694D28F719A425E90B37647B3D37BD96C99660F6F0EAF0B3 + 7D9E92E01CE8702BEC0B35A81371035186E78F89FCEF3D25D0A49968217796CC + DAC317C93ABD64C1656AE48245941DA1D463E7B92EC0795D2B23A7D9EFD3440E + E4C7F1F0E3651F1918A95DFAF8A874EBF4C22FFDB92B4B2D49C1AF67BF3B009C + 657DFBACEAC9D05D533B264E95FDA953CADE85802BACD5EE823E966FAAEA8FF5 + 2E9F49735CB05708E72837E1659F3C3635BA3B182CA5EEDF84655C3327D37CDB + 8B709E288442D82121ADB27C5C043657CF50139E8BCF9383DEC75258C48DAF94 + ECA67B2B19C9D5A41C086096DE889489A593EAEF808A839323A6ED8FCC81B8BB + 10643244D82F741BFF0A53EB67181B78B0B045F964A4F9041606ABCAD2CD5625 + 3D231385DEBC4AB72842446F2D51323925B72E26FD830B3F2180DB6AE616962F + 89C8AECF4ADE8870F34C5BFC92B923DD61141BC026D81D07DF202D25F75D368D + D10557F28A8CD8096FDA56EAD64A528DD5AD95292D7C77DC4979A7FC2603A8DC + 259ECDFD72FCB416490CF27AFFB9228D8990EFF75575C4E1F7088B22BDD223DC + A40EC615A9A0982932959348EAC502B0316C09E0079C783243A86F1E53AE4A59 + C617927A3B211CC769ADDEFF7DF587790622A101681363EFA46841803C4AE086 + F59F4610AE6100ED4976DC8D99ABF4042C2CDF6E85CB20A0218CEC28D714A9C2 + D9671CC06AFA72F7DBEEA90C0DB53DB8F1D0346620F34DD610A1CA9F1BB8513F + 2171AA38EB0507391FE02DB90B674E138BB3A5EE2E872B1D5AD9D44F2084A7EF + A7D4C32F787D449C904E4582DD29BEA36471B6ABD380F1167D1B1CB1D48373FF + 0B69376FFD5A1086D159F3B08B29BC0179BF2BF2435743E16E79362B779D987A + 65F1D3853C26580CE8B4EC4BED1243BF7DA711C29B9C35C850B977BE52BD5A14 + 2B7B5F1DACF65F7BB0F39A7D2CF69D347F7FB0A58FCB3C9AC9F09B8DFA6385B3 + 5D17863D1B42B7110F4F61CB19E0A74BE28E11A4385B51CFFF4C8E2EDF247F0E + 84D3E489151201ACEFA209E7C83E3862201A21D1F9D971D774EBA0C94D76699C + 115949E85CF09F130437671D1F89C60C360761C707F48FAE58117D97A6AAE9EF + 163A1035A37E24F6014F3F0CDE3E93A1AA0D821A49476111AD5FB890F9001F8D + 1C5CB1CEEDC057C21AE6D9A489FC94CF8912DFAF742DAC33572561E070A93476 + A4BDA5FEAE58493704ADD83D8398F8431FDF22DD0CC49DC88F6DD699D8958B12 + 96F340297DC89C03116B94A52EE8A28AD245ABC9E692102EAD57B37D2B831CA2 + 252B61348742ACC299B4BDD82CE0222FC8DF90849FCFDAB5B188F3DD8F231253 + C3B8ED5F5531DDD585E7940ADAD248EB4222291CA487A10716C28CE3429A1AF9 + 1B002DEBD549FD4F84C804C2A232E8C027A18FA7AAB44F34E58AA5A8ADF7EF66 + 88913A7D142095AFE59BC1FCE7926458B50A1CED5CFF644E2F5D9072222FDD3F + 481C02B9A6B59BED7BBB3E68B69127A8387633C61B74A9A4CA2EDD4F6F1153F3 + D94D3C99E051533630AE2CCDE410B73162470706C511B690A4D90750CA1CE854 + ADD3384C397079E725EC7698488B354F570F6B8474D16CED1B0DD5B56AE3CF66 + 1C644102771A89ACA9C75152B6CA431E56C44F4838E873239CD4CF57995EFDE3 + 16C45F718FAC40462BA34A7550BD53A6F3BCC5A95FC1E241C32348138F51BD73 + B7EF10ED577B8C3FC0A0D01CCE3FCB368439B2A04191DD9D1DDC3C2392357D6C + 85A144EFC7CF417368F44ACDC147254083CB4329D20DDE94DC18261FB8277E62 + 533B1BAA2E7513675AC57DF73D9CC3EA9DF7CEECFEC00C87A0C7DEA734E37BBF + 5D7B31E3B496D7C89D003DD62ACAFF1E0D57990AA27783B7CD61D43B9049F684 + 06DBA9DAD7B9286ED52D82CECB9AB231AB90677ACEF16A3958235DE198218045 + 658732F0FDCF75AB668DA047614FC2BC8B6E232E471378D265187393447D8BA6 + 09C4CB416A6BBC7E52D851D62361F7426A82145E49C5399597893689DF333459 + 58B72BD1E6F30BBBE099B66F859640E10B3D5710BBDF553DD0DCD50FFF55ECF3 + 1F07098006F43EB93FABD4BAE95FCA2C33EA272F7658E23A0A57F750A10AAB5F + FBC7C5529BCFA0A36B2295542167756C78B1623D09052A0180AB6162AD88900D + 42826DA0EA0301C9069678217B904E6456EDB4BFB8345CFD642D3EEEC90431EA + 2526ED64ABD8FB8BF5803F3AFF8907417D56290B713F0FC974802D66FA0DA36D + ECD0789C164E7E879784368A98BAE4732F19126CB3435B93ABB337A4BC37A026 + 5CB5C211C58EF755571E2549682531EF063992B58B8BF7FECDBE8E9CE7DE2CFB + 2EA2570EE9DDF78333117AAB25AD63CB6D0D9585C823EE2071CE17DEC964CE89 + A2B81D2A39048A75367EA069904BC6533AF0CCCFCD330D357002F8BEA2AB1014 + 5953D1E4C653470905E999D7BD6A11473A7598292A21AE862E2051993D485300 + D5704585B91A9EF76E35D8A1E2A96C0C543AA02BFDB93BFBF6B8B756C46A086A + 7D89206ACAB8950C9491556EA0AF4E8121E350CD8E32F3FC836FCDCDED846138 + BEE2B13A51CB002686789F81789DC1806610E5557A3A4F029DFB71B303467CDA + CF292A54A579B7A52D040248BCAE1F6C41F94F0414991F8AD80CB3C4ED1FCCA3 + 00B3E237A03DEE54815EACACA2AAEAC2AA2D7FEDDC0CBFFF7AB84D9D06D3754C + B2FE5C5CE4EC0A2AB7993472B43136338103C8118FD3A17C6EDC90437B9F029B + 087BA7B07A99E736EF35DC0CD6CC2B841B6A9D99D4B8F6A399763E4B52AFC9BE + D607EDB7DB69276126A066894234EFB58BA247D684A210F59FD68A4493620C75 + 1CA11250D3961E952D68D2B0556AC94D39957FFDE1E8BF83E1736B36563ECB74 + B9C91C59F116C1A23F9F147A4E66B14DD42009FFB42AF1D715516540D6B14FC7 + 08D09E3B887876036CBC18A9EC09E6EAEF2058F7F6ED1E21030C697F1F3A9075 + 314F88D04FC29C00E2EF9767B96319165E441894F7A229153A2125FE9CD7FE21 + F59A51C518D21F84B41B1D08FCBF2385A1085D018688E52BB389AE0B1385A385 + BD9D22C713470C9D38D31AFD601D38F27B78AB10D08624998B808F0A2B9C4C8A + 00BD953E828B26B7CAEC96247D8433EFC9E88956229B97AB7ACD42C905B2CAB4 + 894DE949B23316354D6847D1C912F2CFAFBDF6DC7583C6157259EE2AEFE28F4C + A5C05F33930AD86BEF25C66F2DC241C8C9615B0C93095CB8E07BBF592AAE8737 + DE5360B04915A2A839E9A4470FCD2F9ED11799B614B8061FC60E028B72347FA5 + 73C0B4D951469815248C7B97EDB1CD7D282D4B6A697ADF5018F521C97C0D7E20 + 557C68E414DD9A711CA668C11E7E54B3FF9A663104D691634F17F46505171715 + D8E19EC300EC9D7ADE0B7AF4E7F84364F90AA3527E39CF1C7859B65BEA055C5C + 1808E6EA1FAD729567C92698F563825F5FCE0B8B93921D18A949D1604DFFA4EB + C3403E690EE5E0409D30442547DE498C0D44F160EBDA8C01CE9A893D689508E4 + 42355E2D8C5C759825CDFD3DF32445E23B39075B3ED8985A3A669474747E66B9 + A94579F38CD1A34E4F18CBC693923C370732C918DBF46B9A2F4EA86E29C8D945 + F54FDA6A408C4C4A4D3A7E1434E36CEB174E8DD357B8D46C4A7A9C5AF38D7422 + 7017F901F1C973707A165F98D1DE47E5405083E75851B5AC1C2E13D0347C5D0A + 712F83A48BBE88ED230F3478903C557B8BF1C09DEF13B6A8435B778890AAA177 + 43FBB8A193D91B2DED7EA16DFD3EF50AA2BCB0F7CD660336E3573D79181526D4 + DA002C91D4C777A520224CA803E95D351F1D975D22E7C5E56E104767CF524FA3 + 2104ADC8586A541EA4AC9EED71C3E937F29A8733F0F188F5B771F10020D5166A + 6D9EFA1CE9EC706E7095D7B09EFBF632B1E9AF6B1A9016786742BE0B6A25F1B4 + 865FB4A11BCD1568A63BD45E039E68537F6C7A545407B34998BACDA12EB17AD9 + A028EDFEF55C145962DD7125E8D1D62CDFDB95B1CFFCD06C915FD7D04590E518 + AD1EFEF7D2AB4E18EAABCF8FEBF0C85C36AA36BFE1C84A80EF63F46D3DF93314 + 84397A8B5B533592F4E0CBF4BDD933FC2A407FF744740B0F4460478B5B376506 + 863F31E8E82A2A75BF7B9E78FA3A47766B70AB01996511DBF5A9C7A1009E11DB + A86B9CE31E210F9DA521764EB667B95BBDC501CD4D1809BAB43115081D54E11A + E4E86F2ACCD5985E162B80963A94D55D04787CE4A7D67E78F3815AC490889D87 + DECEF376C0CBECB93BB8944DD48B4525151A2F4065F7B63443262B9998D3C699 + 6FB96D981231036F212813124777F83BFDB4257B50D758A2F659B8ACAAD755B2 + 18FBDAD75FBEAED1F03B4772FD5336DFF906550EF3AAB9E46C0BF4CF7461CD8D + 0097F9055459B909A00A2FF6EBFE463DB1D267DE40CCB37A91E84E142E92EC8D + 5D6F98299D0612C3471D04D945ADFD525D1204C19295BD6620B629D5A82B861A + 4DE7934182BAAF10BB2F65880516E459FE1BFE93BBB738F2DBC22401714CDD27 + 6D0CDF55B4627FA110ABAD4B7DABDCF9DA4005CECEB34E80EF886B70FB1BF8E3 + E2771F107D1FF153BF123B3025DB1A59811F1E961E643CB90D718F2A2622788E + F4CCD44965417D9230AD6215980C15229ECF6336C3AF121CB6B6421F10BFC137 + C0AE6086D2C383553488DDD456D307702FFBD066C300B11F6F9A2D8E27A37BA7 + 8212BABFA9F65DE3E23F15C00EEA37C50405FB50D018546E587D6BF88E4EF2E3 + A543A841DF4788CD7DC8D24B24848696C21F8FAA9CFC91A4DD636FECA3B3260F + D3939E72D0DE479A4CC53EB89C46F972745B708E2F78D02A8CB3FC1CEEC3BE72 + 84751CA65A412ED6E97517481008E30E2AA6678A2C3EC345F382DE0D199EAE0E + F7D8A6320AC0567D6A53CFB1B2822DDF4699EFD61DBE6E44E44C03D15AB96493 + ECF80563302A8A7B8237302CE7D33786F3812E14C679B8DD997434A7FBF535BE + A190F0F5DE84F3AC8E55702CC0B537684AF357A9CD224B6900242FF65AA5C3E7 + D48450205D7624187B0C1B7ABE09C6DAAA12326515809BC7B11937BC3E0224F1 + CFF08C489D4153CA4673296449CE106E6C927B1788E8D54A3E08F3B16AB6B2C0 + C42EFDECF38C65F691F492025B48A1D4CD0002A29F12C4CE8938C38D888154E1 + 34493F1DA740CA4A8F6F734F38C930896E9BE481FE18285B00216724B6FC9677 + 8AB466FA8259F2D8FF2D3BCA0F0DAF053E3A4679598D5020C0F7CDDADE7E2D0B + 8B43EF91F47928EFE4B40339162AEDF39AA5838D031FDEEBFF52F3F3D9E6B630 + DAFFFF9D2CBDE1200B232E411805A4762A460A89C381F5DCA55CC6BA4757473E + 5E5F1A8F32CE01BAA02C9545E33F194D92BEF3F8D194D76E64C6967E65011797 + C80C222D66FEDCD7D00842F8E703346D3FBCABD3CB79E324100E96F2E87456C2 + 0B7D1777B0192E6A2EBE86F5C0AB0D19B6FC49B611F68AFA4A164AB9CE064959 + 55DE013220CE6D69716BECAB6CE1D06771ADE65E5FAF1E4513EDF4637B07D301 + 292E0B7C7FDD168C8ECF8C2F5677B30AB376E77E5E5BFDF52092CDABAA01CAE5 + AD1FF995490C499BDDD6134E564693B9FB688F1504B626902BB6565DBA0A60C9 + D36089878FA302E6EF24D44F8E0E978C76A2E34BA26006046D111B05BAB1B897 + D62D7FF0BBC543BDC9DFF8C5D94A45E439A59874BDE6A78C82C72BDD4E032969 + D11D29E2DCCDF5A8C630DA5386E2CC7B30A4960267E30FDFD9CE58338BDE0BB4 + B539FA3B60667DFD760C52F89CBD36B6610EDE8F9D15B333ED5E138299E92299 + 2B733BC12A7313A6D476F22B01B5A4843FE4B8C787ADAB0A2263EFCF6CB94903 + 1E9E33C499A72751DD667AD7AE3C8DF248FA635E0D0F4D1CEAE89961250B9A57 + 235A890D455F4CE8A43BBBD52137D71CE717AE17E1DC59635E147E1BF9AC2CF0 + 13F63C630F39DD767B71FDC2DC5882AC7F7BD039AD24F7BD5373BDF2516A3728 + 4FFC43ABF716C58E8A5A872355E3FEB3BAD78251EBA2162500E8B976CB46597F + B287F85285F84D409FB47634066D26322807210AC1D94FA6B52DB4DB1F2F932F + F7521EB92195285B02081A586FF95654D8208BB228E0B16D96130E22F1441D70 + 1CC979F17181EA67170D9C32A9B672E05611299FBCF8CFDB613C9C49713984D0 + E6E23C59C03ADE68213D8F3A95B7D2FFC6DEAC78415B6D7758B73833A046DBEC + BEC157565CF020A24319BE54708B1B797ABB5BEA817861FB6F1086F538D01463 + DC2ADA7693C633CCB366046602EE84EB8A393A8B40861BB413142A21EA5F99D0 + CE5C6FD6FB4945AE066B0EC1BD52D345EDDD38B73EA17A5D5FB1065798057E75 + 6641FCB555F84FA42C9314962DA05016AA4A838371A518B9EAB93FDA63C8DE44 + 62072291348FABE5692F0226AEBA0745F3311A4BF60908D6CEC2B4398B069BDA + 17514C904FC5D4D7894B5C6BD22931A8D2EA5B58C864B5F48391747C53543280 + B578225F2A0D1B81081648789585EC3D71F71A25E508996A92B18BEC5AE3EE51 + 3A81BB07F4DE85C32075CAECBB053C67B98EC763B4F05C6A7CC6F897DC0D1E39 + A3A58D24E7BE8A40AD1F0637F27627B088234070EC4271926712A1D9488182D7 + FAF23C81F55100185DF58CB891EDD9E8809DD2259238EE7897D7FB4B92C5EE6E + 333B615FBB149371B8EA1D337AC6F28BD6FB0739CC3BA6A457C54BA10E270D9B + C285E1C64B9D5116CF69DB2D2C889EA3EBAD55EFDC4EB436276B06204E7D6CFB + 9CC7901849E107852CD8B8F13DA94B1FC1F5246C2ACA09D642957B + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark + /MEBXGZ+CMR9 findfont /Encoding get + dup 11 /ff put + dup 12 /fi put + dup 13 /fl put + dup 14 /ffi put + dup 15 /ffl put + dup 33 /exclam put + dup 34 /quotedblright put + dup 37 /percent put + dup 38 /ampersand put + dup 39 /quoteright put + dup 40 /parenleft put + dup 41 /parenright put + dup 42 /asterisk put + dup 43 /plus put + dup 44 /comma put + dup 45 /hyphen put + dup 46 /period put + dup 47 /slash put + dup 48 /zero put + dup 49 /one put + dup 50 /two put + dup 51 /three put + dup 52 /four put + dup 53 /five put + dup 54 /six put + dup 55 /seven put + dup 56 /eight put + dup 57 /nine put + dup 58 /colon put + dup 59 /semicolon put + dup 61 /equal put + dup 63 /question put + dup 65 /A put + dup 66 /B put + dup 67 /C put + dup 68 /D put + dup 69 /E put + dup 70 /F put + dup 71 /G put + dup 72 /H put + dup 73 /I put + dup 74 /J put + dup 75 /K put + dup 76 /L put + dup 77 /M put + dup 78 /N put + dup 79 /O put + dup 80 /P put + dup 82 /R put + dup 83 /S put + dup 84 /T put + dup 85 /U put + dup 86 /V put + dup 87 /W put + dup 88 /X put + dup 89 /Y put + dup 90 /Z put + dup 91 /bracketleft put + dup 92 /quotedblleft put + dup 93 /bracketright put + dup 96 /quoteleft put + dup 97 /a put + dup 98 /b put + dup 99 /c put + dup 100 /d put + dup 101 /e put + dup 102 /f put + dup 103 /g put + dup 104 /h put + dup 105 /i put + dup 106 /j put + dup 107 /k put + dup 108 /l put + dup 109 /m put + dup 110 /n put + dup 111 /o put + dup 112 /p put + dup 113 /q put + dup 114 /r put + dup 115 /s put + dup 116 /t put + dup 117 /u put + dup 118 /v put + dup 119 /w put + dup 120 /x put + dup 121 /y put + dup 122 /z put + dup 126 /tilde put + dup 32 /.notdef put + pop + end + %%EndResource + + userdict /pdf_svglb get setglobal + [ 0 /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/ff + /fi/fl/ffi/ffl/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/exclam/quotedblright/.notdef + /.notdef/percent/ampersand/quoteright/parenleft/parenright + /asterisk/plus/comma/hyphen/period/slash + /zero/one/two/three/four/five + /six/seven/eight/nine/colon/semicolon + /.notdef/equal/.notdef/question/.notdef/A + /B/C/D/E/F/G + /H/I/J/K/L/M + /N/O/P/.notdef/R/S + /T/U/V/W/X/Y + /Z/bracketleft/quotedblleft/bracketright/.notdef/.notdef + /quoteleft/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/.notdef/.notdef/.notdef + /tilde/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef + /N1156/MEBXGZ+CMR9 -1 TZG + userdict /pdf_svglb currentglobal put true setglobal + %%BeginResource: font HMTXSC+CMBX9 + ct_CffDict begin + %!FontType1 + 16 dict begin + /FontInfo 15 dict dup begin + /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) def + /version (1.0) def + /FullName (CMBX9) def + /FamilyName (Computer Modern) def + /Weight (Bold) def + /ItalicAngle 0 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + end def + /FontName /HMTXSC+CMBX9 def + /Encoding 256 array + 0 1 255 {1 index exch /.notdef put} for + dup 0 /.notdef put + def + /PaintType 0 def + /FontType 1 def + /FontMatrix [0.001 0 0 0.001 0 0 ] def + /FontBBox { -58 -250 1195 750 } def + /XUID [6 5000767 ] def + /StrokeWidth 0 def + currentdict end + currentfile eexec A0B00ED5187D9C0F1ECDF51878C3AA5CAA3EC67F973A7D + D910BBCA8FA950CADA53428ADA87055C66C84903F07F66481254896782FDF2A4 + DCDEAB2999969F5A6734747823B5041212A1A6A3CD412CCD0EE61173E1EB05DD + F2B7DCA21E965DF4EB09D153FA00AC23728D25C5DC9BB0A1944C5671068B302A + D0309F99CF5211A3284B39D335A60C7DFD0BC14ACFF2B3C123318746D7569FA7 + D46BDEA41DC698FF8E70859812B9B1D5C7E4FD37F567E45F827518C39376A886 + A804C346208D37664B1B9E94DB1FB2E2EE9F9F1DB367186382AAAC9F88AE0B1B + 76F3D577A495E8941B2845D58030749D35E037421D0230B441A6DB6739BBDF37 + 49E513B83C458A2F479149034094845A0217568A96AE0FBFED42200A04A734BE + ACD1049E4FEE31CBF57271EA9C50A6D6F2588F925B893FEAD10ACDA35FE01901 + 0EC6C95E0A8D1909719CF18BE424923A5E97CBCA83D0E9FA2E2B627102A1A0BB + C73765638DF307B219AEBF3180F390BB5A644B65A8D199E0EBF2A091C90F8282 + 7C82551BD15383D45F824DF454C29132C8313A271C1FEEA9969B53A588974F25 + 26D812B7ABC989EAD35DA77CD5DE6A44095276595EC77CBCED9A47D960A71EDB + 32F3BBBB6D12D33BDB14F5E9567BEBAED5BB249C1C1481F77F4B9ED3FE37F48B + 557ABC692B33ADE26EC2C64CD50F41A8A5C65F8C97EB48DB3583C9550A1DDFD9 + F99C3EED99AC68AFFE056D1AEBF7D7300672B552D688587C4FB0E3830D9D0A5A + 2955BFF38FDAC51E14E67E27F1804A51F01D8E10443AA01D8B469F0AF01EC2D9 + CE22D4DE2FF7691672C0F7628E61F7544FC37DB45744FB303ED3C790BA08D8F8 + 05A7EE085AEB4B7C01F8EC90D39620EC93E5EFBE1276F6D6F0843BDCD9C70D9C + FADF3AA79394ECB16ADDAF4AE2A56F4E1079E6CDE0EA9AE423C4D797F8FC3869 + 275D73E1405958AF2ACDD5D294257C727A27C7D0753B223806724B8EC19B5912 + E3F5B47E235E80F627D5E8E1818AC4D8FC32C7D7D865B21EA4765F927ADCB560 + 6DC143080EE8C89B4553B1FC78A733D7EB1FBCED63E343F6D430DB701E9DF36E + BCDCDBAAF8A5D51EFE50D0BEB09F88D1B906BC5DF62503433C2C7EAB205B5D98 + E3497D9F793AE67BA584D9A90BA70B5059FF3AB5D45BB267B8CBA49F94A2F473 + 2140E0B04A7E7077E6E2C63186220E0C18EF9C1ECB58B87ECB463533330F14EC + 8D0C3FB7F01379423B1BD5808D87D38A41F20AE37AE6B1BD9BE84C6B85C47874 + F74FCF5E0FE9EDAD46595DA14C0C956E1C5D3BA80CBE1733440D300F2D386818 + 8A66810170AF2DDA32A13181AE78559E9209CB3A0DC3FFAD5B0927DDFD8E22C8 + F6DB6346E17437FF4846233AA7C51C6E53527451174B4B66E53835DB1E40A96E + 7B9B39F2A72FD7773DAE524E6C5FFB0A83997DA659F478C42E12DF3DD66A56C2 + 8E4EB5F8A94140145C70B566F98C5AE7B68E1A2E609AEC1722F43DB828B395A2 + 14FD378C0EC1ADEAA41DA50B406C8CB502A5FE3690577C62999E7AA60818F68C + C2BF4DD9BEBB9DBBB29B3BCD103A43220E509215A7BE77DD0E8A5A249867F275 + 506ED882C8B42ED48C692B3E67B2C476449355AAEA1F36B696EC48559559E94C + EF989748CE24A3FC5E3F5142E963E719CB621766DF7872B9AAEF3F57AA48F317 + D69BDA3EE68AE3C6AF5556553E1970D4693AFC4360BAA96AFF2B1B975C847417 + 17CE5467EE6CFEC9E06C262721E6D07DE3A5E795074CF9389107624A584B5407 + F14AA11E81F404F9C885147C36FB0D0EC286DCED375000E018189180FDA0EB54 + 9D808D11EDB5A3B2127DFCA63766D211D2971F46E787DDB2BAF677AC0C106A96 + CDEDC37D0E29ACF5E46AD65596C873AB332955A0DD05D406902B30F0393794BC + 8DC65A4163F0F845B1EBAFFE014DA242AA441E6A952A6C41888884E6EDAD7BD6 + ACF4BD137B9EF0BBC7DBE0B1569C1A1809E20B28C3A852D86741B6F6E5152BC1 + 3655F35941D9753525D556B9248FDEEDF704FA8C1BCA2D3B0DA038EF7C7D09C8 + 0B6A18007107D9C8613C2CE9A0100C5C2DB8376FCD2ED9CD7120E59836E627A5 + F364B1AA118ED7F8B4A5BA9DECA99C4F145EE30592BBDF3DCB5AFFBA7BF37D90 + 6DA38ED459D8AE951CBF06F1AD9B6D27D261C05A24BEF54ACAC22F2CBB53FAD9 + 6249CCABE1D6730F7C311F9496692297C2516EB1E930077558260746D0E2F1F4 + CE41BE98097435FDA35E1979BA27EECD4785007B6C6991265CD4C1B04F7D85D6 + C5760B3C78605BE86C1A1436C20A3650999907883098ADAAD051B2EED293FCAC + 5E3E9359ECEAAF9E88BA59C4D1CDD247E6E204D576E9BD8B81B391D1F4007D35 + 4062A4610AF74FFB53FC852E3CF2456BCDA2801C3E63EB9F5366438315E53C43 + F73CED51695F7643CF2DC3B41457751B2592508FB195C9A2AA4D65D805EB7545 + 28E5FC494E40D04AD6F13608B4F25918E18F78E4DBD61D4B8BDC039B86451CFF + ABEA337787AE39A604F8F6AF84AF65C6A44559FEC7434395C8ACB8805E64674C + 642C3637D9D3AEF40C946E3ABF28F854F66C9583089AFF1F50F0B10B1C7477DA + 8F22571D9980173C214505A75FEA06684C221988823DCA77F18B033A5A5C2E8B + 22987F3AA1738B5D3FE43CF99C1E2E4D5AE3548F2B454A641743F977F9A9980B + 0CDF94F9A0BFE50FA9537D9CA6F25F5EF0F5C08F516131F82BF6B1BAF4606C34 + 620EED9F7FA891FE1C430C17486D67C72CEE0AF611883E3D88E090970C0968A3 + D516CECB50D77A95F58F28D35E00D9ACC0284C51C688E722587082C8FCBC2AFB + 495E0911C83EE08D36191E95ED17C21F922CB385436B98BCC5933AA7359629B2 + D8EC0FA4E19B0ADD5435B1A96258315CE23C2AF50C9BED5CF656345C89BA5038 + B35F37D492F41F91C0600DFF1C7E6DBDEC0EF82380F76A1C20E05A7D64FBE86B + 2F70A1CC9C5F500D60720AB8293482DB217671F9F8CCC6BCA752E379B38BC1AA + 0180EAA7A70E7D01D7929CAF06CF59128C9696BDF022557601A437E6DFCFB703 + C605BB34B9BD560038C1750FA2407EBE8B1C9BCA03F064C09D299B1190593CFD + 72BAABFF3901150126146EFE8507B4DBFB6489EA0B627C8E2D148A9B5EAB6D14 + EC4CAC9B497D77E75DDA9118E53A9E0B72F8A7DB4A6D7D51B2D44F6321F513C0 + CEBB05F10B05B255DD98497F8F8E5815849F5EFCB27CF45E31667282B38C85C1 + B24A496F86C379D825AB8DBDCEE0D9A19C5C9065081F0FD2182D3923E42A7DEA + 859C603A7EA5953BD84CD46DB68885EEC32B890B7D394FB51DFDD84577204836 + 09DEAA427840C2EC3E5ACEB081EE54A1ED1B0DE4A59B45A56FF973C0034C395F + 0DC44983D9BAC574701EE64547404BC9FF94BADEE3D9AD653CF47FE786E5B969 + 43AAC8EAE2FF1ED87140B0D90668FBCF0FF5EB44AA91264E09E3356D01FB1379 + 090804CA225763922FB6511CF4EA176CF3C7ED0ADA7C413642FB1539ED8A474D + 6D690632C2C4C1785B61062E193EC9000C73864730A177EE4601B3C98E2F38D3 + CEE17BFF87E5042A9BA216C03B1D0932F90A3AA081124774D9A39D7FC5578636 + 0AC6B440ACB3E45A8DDA9A1544A15522BFFB743CBCB0D2024188F274B3BAE406 + 710B40FF78650ED05986A8356E9291F430B567E574F19328E390147AB2180207 + 0A2AA8C61709C0D452B38287AD7BE96E1AEFB1DB1193CBE7B633EEC7A6DD3E31 + DA6D80CA63BEC7B5C8CD6AAE4820429936C8A1974644B294E2AA25CEC1671FC3 + F04271D4BD5F046E1D9063AAC6F397F593947E52F1D26CF4992FD13BAB3DE257 + A9403FC7569E4B8B3324B811DEC8C4F7FFFB1BFEE80111DF7AAA8E4E0029D20F + 4554B344C93D613A7334B392FD6F9270687CA6F3BB5919410B67E16ECBF68833 + 482428C70FE76A74C917B6E615963F4DBFF2D6A5F4DF4B60E2C9A5B655EEC6D0 + E02E0F54CD380D995E3BF8311C65A809579F1291C051681351E4AC8A186D625B + 509746F9763EB0465CADF112318F5A31CFC8C71A50D846F180AEDA30BF09BB0B + 1CA67473C5205B50F2DE506ED3068A8F7018CE8CF237A9CBF239ED133151FEF0 + 1C1091FD9A590293C07CD1078B70F7BC6D28385102A5C51D700FCA589CD9E7A8 + C52ACCD05F608FAA6A5D34172707622660CCEC12CDAF7C73079FBF7FC97C7821 + B55A0CF75F74447C7B4422F810C34DD70593E7768E2D47D90BDFA52AB1A350D1 + 960203E5C56B71DBC622ED092B21E9D5F7FAC6611CD31B55A511E92821F4E8CA + C16944F44799D809CFA3FD75DA73DC011B1DFAA32D38263D8F3ACCCDE1332075 + 37DE3715B48549D53995BE3378F197AEE1A9B60445ED5B5EDB04B5A4DC9B9279 + 4B253B7CF97A38986F670B38E9D6CD6917755A0C17661B0F7B61823A77698627 + C44E925972C041A1754529B4EC814C67369E0BE6DEB18C30E1E42DE5F0C5C50D + E9BF5C8B9D989723B2236AE35BB1D48CFD361AF7F89F0615BF91C07B07716746 + 15E033F4EC68B21A99D7D5474E60FD33C2F57D0C8BD74B52943BF501C93DEB63 + C2975F9561DF02B86F480C1331DB856F53B2A1144764FFC49FEEBEDDDC8F3A22 + 4CE8A2630BCC29752CF38EB7C2E5BD1BB5FF63AEEB292F5A1716BDF3B0E714BE + 61A518E2AD51884F678CE72C57D0BD39A9AF009DFA22674BB5CBEA69C1BAB3C1 + C4127DD4B8A175918F14FBCAF11CE6D55C269BEE95791DA499A9D47F016066C3 + 342F19C269FA573088133EB82C6971EDBE3949C9E6667157DBFC8D90EDE270D1 + B610E2D8B0AA7E0D0651B8D69169A2744D63EB97FAB362967B8AF56089323DDF + B6F0B2A61DD146E7FF0F2F3C185FD135F41EF4943F4E9E50B4767DC7DF4DB636 + 6B893AD8B0C1494F1E11B030453CCE0B61905A2CEB63854B44BD53B874100B37 + E294E32D74225A4A5FF745797D1D96E0F36D8BD5AE3F22302B18F148769C9CFD + 060EAFA5A094744A48EC2088FA4B1B409647FE68D7A8C106484B753A8EA6D42C + 917A600F0E955D8D766E1BA851DD55D7B60D7B3E5B71ACA546696FEEB95D622C + 2044D8A534C6B1CC7348CC8EDEDF03DB8BD332A2E59EB146F39A196978264961 + FC3A1FAAFB56B0D37C456EC3EAB3458E84F9B6BAE384C0C469E1F6E5402965F8 + 3B60C00C7A9DD644B295D2B48C6480893F38B549FC6FD383A12D836E4F7B3994 + B7FBD306194CF23E0B0F6C25A125AEEB37EE0FFFED64E7D4EC709C7B3C25B502 + F052693703DE54894E7E44788AD44056129D9C5166975F86FEAD39413DAE9D84 + 54C35D2574577065F39DEA9459FECA22E60EFF2FE29DF7A2084D175144622587 + 31E1FAC744AD43265E5A1B310E4695653BB1EBC64A62EC017927443120FABB27 + 094DD0BBA8D2FD11F9886E0720734E8A98DACA2236F68B2A8F2EF90424F53E4E + 96D80D90BBD098D8E8EE66BE3DA61EAAD961683FACF2029CB4098BB5D0A7C0EC + 2D82CAB6F0364ABBA87CA64DBD354609A3564FADDA604A357951DBFC208D6D31 + 6839A92AA955388A7E9FBE9B894FFF9401A6E6A2D3F652E5EE5B3DCFCA674EB0 + 7D657F7422D1CC1D7DEE38AE555F05AE590F6D5D675C2CC746B16554E9930DCB + 0BE29BF59850808DE1EBE83DA7718C0B2F0000963EBA6F286AD2CF60EC166B5A + F6FA1142388A945F3A89D43A2E48358329D7FF1E0ED36026770655E97DEEB51E + A0623E936617983CF7FE22277BD87DD85830EDC57B7116449461AE8B507EF669 + AF6413BFB69AAF2682DB51955E0D1BCAD16EEFF4756BC51B84B3DBDD4B8E1485 + E32F614B6B95E97F22D98A92F6C552E076FB283D47272A7D73EA25B26A3F3CF3 + 8CD06FE20977F4E37C42CEB8F8854768025CB534CA514F73F9204ACC97E5A474 + 07034A16C909E92E86B5A5171BD2C13F82C7883D43123F6A76226F38A6223724 + 3E2FC3F02A688E4907B3FA3019EDDBD3B55EE2900BA11ECF62CEFE5CBA6B2537 + 656F96FE960EF9BECA15B94C0CBB3CC7804111031F150233261E6FA71FC0C963 + DBA158C62FE8B7EC949DEC10C19E7C82DE68F8214426856019C86D839C3CD372 + C86E54DEA7207537446268F6D4A9D42B176D5DAB537A74BE2F0C9373A9D4F4CC + E9D9D488FE006E342C619947D5A1741F69BEF8244064E449F46907EC14630B96 + B1E2CE37961B443AA9678EEDC00F5943F60CD361EE02F449956387B2FC032F2D + DA73A466911F1223D281091402425586C22A258B649E4F33BED8575CC9FAA849 + D8802C9DBADDA9BAA81A59FC767B6475066348D0AA90505688818E79E48A3758 + FF69CEC4FF4510E52AF6003D8A8B51F26731AB9A94BA1326A344B8B899EFEB9C + A3A01802E8D79279C66750332ED080BBAE96CF7886A986DABCA8CA10678DE8EB + 60032F1F444E88EDA8A86B057D243E21B6281729E960A1129883D917DBFB1589 + 9E856E7FEAC37CC3A7BF2794343A17E2E38AC65F6663CF1B5F15DA1D5B29AD6B + 5C19B2533C253F6CC05666A3DD0EB037B1E76AFCE84A204430A209C528D12984 + 0CC086AED7B6034F5BBA2F5C1EF7286B35636AA5A5FF1882AA0C4598FB403BC2 + 89AD2C9EB46FE556E462587C2AD52C61BCB6A0CB229837E0A2F052A99D2750A2 + F26A68E695C683CFBE6A542D4BE7E7C7E634BDAB2D91BF918AED3ED4132F020C + C10FAC6DA46F7096D48C43C01BE03E8F26AF083DE677DE8B5E282D66073F3DB6 + 792CCD180D0C57FC91E696BB32C060692AFF924C76BAFD2F9E14C95AB9C48A02 + C102244480179C2786EBAD083102E1137DAC159EDD861AE9CBD36B799B86EB77 + C744A048C41655665F4C0B3E62353A95A9984D7C95977EBCF976A8CA9DA486A2 + A351B2DA623399C4B6172D86F38DA6153AE5675A26E2F0C3A6E8CF2273BE7269 + 34416C4747F1FF76F7A8697FCB14CDD52D3A96FEC5F65C4840CA339FD642AC86 + 1D8326CBD07646016D252716A2605E405EB95CC5EF63C20706826664EACFB13E + 7C2A465B8B9CD286B5EC4890FF8D785CE43BCEF284EC314B13D4C18516122F7B + 44F5DA66F5FD4F749ECB9A4A1AB93E5F50DCE6AB0DEE59DD2D0161B0DDD38619 + 93827DEF9973A92024C934B0F221C9D42F7593743721FBEFAFA8DF2E11355281 + 63D512E3984663FC98327E813687161EB25987CFDF6681E680D633D0447CD8BE + 92994AB826B71091D5171D95DB09486C4C611F7628D964585B4A1E5F8435BA85 + 96E25E1EBEE1F2FE57064A613BCD5B68EEB5DDD20920151947FB1203FFEC9CED + 3F05D76F8E8C348B41F5AF712523BAEFF4FF5F4DE97206EC1CEEDE1F3E630B69 + 12B7DB5735BFED17C22C97C5DE69A63195CCECD245EBD30B22B078994E44EEA4 + 86EA3444BE6AAAD56E6FD3C3BB099E1817C012B7C0ABC4779F141056563757F8 + D6B58FC7CD83C873D5DE5E4B615F0433157FC26B786A832DD7C4A893DE4BFA87 + 64D121EB6639970AEF45B51EE7BA53CC201F6FCE97671F46E3D31AD68C39E1E9 + 0D9B34D5C54E1CB3C3772F639005B4286E8CD8C783790295D18ED8BF6E3D7372 + B205434D4AAE34BC137685C5381418B0D6F0210796DF83AAB441C6B8C5DD170E + DBF418779DB43E631E5D7EDE65CC3C1FE9505A72A90F5F24D2AB2442CA6DEC12 + 58102905090329D3F67CFFA395B7E0BB92DEA38C21D1CED4E30D5ED7DFCAA2E5 + 1578DB3F6064765246D8E6D7FEBF8CCC1F1E0DD043CDB772C554893FB586096A + 87172E768400712CDA090E07A7FEF0DC65752641C94107DD2C76252C0DEA4E43 + 38D689367B2371C9A0B8D5CCFE918A8AAA9AB5092F34DFE4187508026CFAE033 + C7D8F88E1C0F27A410159BCAC52072810E1F01D58D184710DAE81DF1129B604F + 9A7F0CAB003C64E4C97A69F4B3C99A48BEB14F3ACFCDA2074DD8F9308744B919 + E35224621A258B54B4D38877AC24CA62054A9B4BF2557FA346BD7AF0534BC10A + 0E0AF1F18D6E71CFFC871DD08E5156E1954FA71E82993A82CD54EE122E860805 + DB8B3555B9092C886CA24A7881CE0CAD2291C32901E73ACA3D3581555A4058DD + 3DA90547C91CF165D19A8F294CCBDDB772631E8D07BFF98C11197717B26D53D8 + 564A6654575448BFEB4F4D52E292552C01D779E7862CF155CDB6A958D90FD69B + 9D6FCD4813A51F7032B095CE463AECDFFADCF1B970D5517266ADAF5029BADE2D + 9A2E13E8CD333ECCB15E9F7AB4499D6400F6F949DDECBF947AC9C1E6342F7EF7 + 908F430E35044FA4B058098FE71F86C60402964A5C88443E0D3903DFF27131C1 + 81D852CE3E3393D567468F1659DF33883DD1D51CA7B2A34127EBC7D1684E871B + EBFE84CA0FC6D23D35ECED2AAF64468E58B1554A7E05E9EDB74CB818CEC2A947 + 60F59A5548B3DD40C5D1D4DAFFD6080238100544DC704D77E7819E0D74FA35E3 + D2413EF2EA3EB4493245C63915C499711D99D28FE33F9AD8D8F9F821E8B34CB1 + 452927E964DA149980FB70A89DA44042CEE46DD972EE6C5E79F5691B9D7A35FA + E37092E64728B593F2E307251AFC5293F50F4D381FA920E0BC92EB024B43C5F2 + 91DDED02E9AEEE4A6C86C717A77A1EF0EA88A82F2458BC2BE94DF7141652AD56 + 62F820E0E83E414ACB35EEF1CB956FE2EB1BBE00F9B4E174B9594D0B1F8468CC + BB5882455610432EC3DF1193C2E40EFAAD8B30B3E6A90552F8785B0B83FBC7B6 + 1A6E9957C49C43F364EC07E72725F7E9ED83E026DE052733AF1A91EF960BE486 + D6CC8C2B6778AF131CABD4A0548B71E073E653590D87CCFEA6653196DCF9340D + 20BDCA7D8994B76BC38ABBD641CAFF8E5BEB7E5BFC68E80B65D676E2D448E14C + 7E90EA544E76D05861E3BBB53C99355FCFF05CD36F9674003828511637BFCA32 + B23765A0646390557B035E58AE78425F0AE0EDA3A339FE5247E033E8CD7CBAF4 + 451045DC4D9530ACCA119C5C1982679B11DA8858C5FAF137624FC562CDFEB490 + 43A38BCB76F72D8B6DE3A8D2E5158580F42CFAF0863D0035064540D0D19D8A24 + F52CCD49068268EB28D9F00719727BBCAA10D4E4FAC0840C84816A798D0F5E50 + 1802E47AC557568590328F32BE1D44286ED03BDE83C8EEEAE4CCF54027E0BEE3 + 71DA7F4FD418668C278303F2C9FB999D95BAF4F6CA8E10E900A1A7A71A7A0A5E + 238F52A94B5CF1C187DFE599A8308D165719D9CC63C05936261B21E781103567 + D4A4100AB22DE01F2308D7FE6D1243260007CAA76B677BC99CC75648A470140B + 2AD4C247774D6D9E90EE670A8045CFE7C4FAF2F54180BCABE21A7871558CE022 + 5C0A8BAF836BBA3C56C857A8C9F75998E232EB243EB315F5986D609E4575ECDD + 76185FD4EAB25FC63EB4CA1498DDF504E24AA44FC9A5B316356F9068CC6FF9C8 + 209F3C429FAC2B6E3D738F4FBC4501B24ACE543ABCBDDBB03B672B9344A02C9D + FCD5E3CD01063B6CF3AD1CB5F127F9F8876F3273390A35EB89960735F1C57FB3 + 258B85A9D3312AA33B3069FBE166947448AAA7E9D3C3EC6216F94564F4874C40 + 8D9C22EA718079C7CB1E67E86BE17E3F604B78922CB03D9CA83FB0224B3818A8 + F9D3ECE6830A26B7FAA4B6F86D3E28CB34A5A8ABE6A498D3FED35C51B46424CD + 1F04BACC51513ADFA0AE19237AB49A646147E277B6811733C4B13A2B7F6DB3B3 + 50F3C04A7E8A94CEA70F68DCB99867784DA50BA59A50AF45A637C8581DE31F33 + CE98AE76374C250A3A80B8D17F113511E850AD6415EECDC24EFC90C06233CFCF + F1D59BBFB5CA638DABC0AF14311B4BCB6A82F51384BEA951F9CFBF6C4B9E2883 + 496A747225E849A4C7228D1D92954AB5AB5EE100902B551FE9968845C86F6194 + 7CC942DA2496FED186EA3F09866B644B1D0BC27411510861AFCF815DF95D33FF + A6350A6775ED4BC43521FFC6E9E82F4A61E06102F505EF7ADD42082A7E569B3A + 4A3AC9356933F5377298DFDA84D08ECAE812B3F790689540433F27E07EE75E56 + B672654F3395F4647CDC4BBBC3B4BC7132262F9853BCBDE727952C142C354704 + 5BC5AF22F6EA1738CECAC67131310BB3426CDD5C23004D77E270904E3812FFB2 + 7172AEFA720AC3B8D4265D576D7B8ECC58FB8732C0245DA285BC0D33C522DC5C + 18E6C1F5FB99353669406E3771B92F97DF5D5C95B5260E71BC9E393783C6E7A7 + 4EECA0FC2F3E9F6B19FA2C91BC90380BB3C93E71F56E80A5F3AC228122FBBB77 + 87B0B5B3416F251DCB2B3EDCD61B02EC5E5CD6E12BC4A734226D7A0B82575C8B + C8CEB49C0257F048AD9B11A3F67AB05EF575062F7221339452C4FF25BE362DCE + E3F16F0780EEC5D796941F16BFE0837C3B9022B7770DD15FBC27657EE0580647 + E72DA00480967DCF24AE1113841C6DB10A7D857BDA040EFF6725BACD91469D3A + 0F6129841D8A9EFF0EF6DB7B81232C3AAF920B84FD06A7FB707964A8D5566E4B + B03621534218C22A625355B72ADFA8D3A80F75468E398007EB30DF1C99F86E00 + 6C2B8AC03E710D1BB13434073FEF535254A2862ED93157133B76C5F9CD70B09F + 5E65673B03B9C07B1B7CDD45592AD4534028995932B3E032CC82F8BBB9B31A19 + B5CF3A5B8C72D3BECD3FCD9046F2377F2F2803E1BEC2AB02C81B8A74F783E871 + 363608038858889867ABC618497F5EFC37D15C5BAC7DA01F0C64BC59851894D1 + 43D3B58689E6048E253A521306599C86506E39756B9E80C0156274FE7B5CF10A + A66A4B52853A24CE982FE4F3F6010222730CF63CFAC15BB2D5C4E391BB9A2696 + CC99D8FE7A51C6B0FA6C89612C7E4D29166C44245432DEF32FFCC1F22C2FF06D + BC895C508099C040B62C7C9B999E303ADCF50CD4E3F50A750C24D3063489A33B + C8FD877A49514E77CDCDA3FD3FA8C7BA28B6F746A280F5E719FF1AC4BB062B3B + C96E96C08D052C32A413E214A70655FF80212DCFDB57C6D4A4D860C54D396751 + F01C1E8EFE6A389F575779DB7ACC1E853C934C4EAE60D1065723423472CB1641 + CDD28B7F40EFBEA2F76CAD2088A6ECB572FD25D774804A4B4E77EC81C413E28C + DEF21D18DAAA07C591F11AB1B9633A05C94670FB620DC64929D9D86CC14BFD50 + 2C6ABABEBA1C12F7F15018FDEE7190704A4CB77B5A024B03B6D2C406B7B1613C + 2B4BD6DB4FC532EFC4F37F2493797757A06279A68F60987002D7C9DF96298FD4 + F075024456D4C5AF6848125F4E9ECEDBE61C3BD50F034E24DB160C4C53825619 + 239A5BA46A2FC4166F853660FA42B8769D3A6ABBF731D8EA2A93E4A3B52462D0 + DEF11C54577A97569B1852405A097DE3476039DBE00A0E951DF742705BC7B436 + D257E4C80A79102D4538769C07E6476579C83B2BD9EBDAD9316BEAD68A7F90F3 + E5F6F31E0DA2AFB2A2FA20593015ECAF512790AFEF9E6DACBD1909D148AC85E9 + 6FCCF55355345F6A76D19D39867B9D6A7BFD33EFC8A6872916C9783490513B96 + 16CE5AAEC694DEABD2FBE48BD60D06AEE67452FC2C28B106CECEA11239E45A25 + 1C34B5766AC73AEE99C2135FEDCDAD1181343BF842C2C043168B597AF319614C + 99953F53B8A0D1501C625935EBE93035E53DF673BDD3184BDE5134C1391C0CD4 + 6B249BE16A975524EA74EDF8C6F765BC850C2CAB6A0086B728EFF8DA12F06FEF + 2B847C3FB4C715786D8E152BF4DD1B3DEBA0D881DD660B50AA2AE1D3BC4B34C1 + 8459A4937081CEADF64C6271EEFC0778D30852517B1F1B1B793056E00EAFFF0F + E3B66C4152D76D2E8B85413A2DFE33263D7F12125E10FFE412C7BFAC29276CD3 + 902C9BB6BDEB2B676DC2A2BE76BB3FA4A4F3DF3FEC7370C4BABCBD5D990B7A3D + 95CF137597BE9F92FD13E22A476959038B211BCC8C3659838301969E11F6722C + 54663EDA7D0A678035DF58E2BAF72323AEFB0AC32E5A9874C3CEAB7114CDBD57 + A0E8417E98B060DA0609CB196FB83858066CA80EAD18F2C33383E8773483CACF + 6C94352DA9902078510619BD3719BFBD5310D211479B6EB1D96DEAE2D34A2080 + 8CEFB6281A4EFC20C41A6C22640D7285F07E106F9575FF4D3B2C2E2143CD3699 + 76FBFB16A91ECC8E758FD5D1D68AC8FAF7C667D4FB06F2287FA9F20E7373F474 + A7F1A32E6323EBF74BF8B9DA81402A12DF5539463ED40C09D2E234999E40C523 + 2A2402088BC0F79A323F310FAF95C3F598051239C81F0CAC725B8371EF8EB957 + EC19494E1FEF1442A40DA9EE25BBB4DDC755DE01FF1516D6CD6676EE0C55AF71 + 0807659F35308C68EE31E19229388D5E1B03A43425C4006637EA47D403896719 + 76C8838D8ED2C244D8C1B47BA2837FDB5E6A7B548B1347DDCD329C6BFBA42921 + 7BE4CBEAF086DDC5389629532AA03E745312A23D3AA977F3EA49A37DDDB69F6F + 97D7A14EF16D5A12D276B6C34028386286BABB8D9B37537C1E72D9950630D329 + 9DA3DEEB0EA843CC5E248D4836683855DD4853E89322B479FD4B5FB72CF54FA2 + 754ADEB3F12856A8885337B9E09C4D0C4BDC4F3F7C8A51B92563CD1F54AE3711 + B15EEF93F31FC51CBD5BC323DFCEB02E65A1601AD2DF1048FA551487C57EE8BB + E3A6E97D1F9A1948C53A3CF220ED8B7DDE1FA1E56D2D7914E79ADF3B4B5B9055 + D6B55F280712CB7FED0C0FC47B5642C4B8F46489C44B6C288922194A38E28241 + 19C4BF5CCF809741A0223730AFF86D7468DCC6A9C5AF624AD50EF6B83C777CB2 + 958FD9C1D362EC81BB97C8E924317AE8EDD4A9B64787B584927DDA14AB4519F4 + BEB6E294A618C5EC487DC585D9E39AC6D9E51B380041B7 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark + /HMTXSC+CMBX9 findfont /Encoding get + dup 12 /fi put + dup 39 /quoteright put + dup 45 /hyphen put + dup 47 /slash put + dup 48 /zero put + dup 49 /one put + dup 50 /two put + dup 53 /five put + dup 57 /nine put + dup 65 /A put + dup 66 /B put + dup 67 /C put + dup 68 /D put + dup 69 /E put + dup 70 /F put + dup 71 /G put + dup 72 /H put + dup 73 /I put + dup 76 /L put + dup 77 /M put + dup 78 /N put + dup 79 /O put + dup 80 /P put + dup 82 /R put + dup 83 /S put + dup 84 /T put + dup 85 /U put + dup 86 /V put + dup 97 /a put + dup 98 /b put + dup 99 /c put + dup 100 /d put + dup 101 /e put + dup 102 /f put + dup 103 /g put + dup 104 /h put + dup 105 /i put + dup 106 /j put + dup 107 /k put + dup 108 /l put + dup 109 /m put + dup 110 /n put + dup 111 /o put + dup 112 /p put + dup 114 /r put + dup 115 /s put + dup 116 /t put + dup 117 /u put + dup 118 /v put + dup 119 /w put + dup 121 /y put + dup 122 /z put + dup 32 /.notdef put + pop + end + %%EndResource + + userdict /pdf_svglb get setglobal + [ 0 /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /fi/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/quoteright/.notdef/.notdef + /.notdef/.notdef/.notdef/hyphen/.notdef/slash + /zero/one/two/.notdef/.notdef/five + /.notdef/.notdef/.notdef/nine/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/A + /B/C/D/E/F/G + /H/I/.notdef/.notdef/L/M + /N/O/P/.notdef/R/S + /T/U/V/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/a/b/c/d/e + /f/g/h/i/j/k + /l/m/n/o/p/.notdef + /r/s/t/u/v/w + /.notdef/y/z/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef + /N1217/HMTXSC+CMBX9 -1 TZG + userdict /pdf_svglb currentglobal put true setglobal + %%BeginResource: font GYJBJV+CMR8 + ct_CffDict begin + %!FontType1 + 16 dict begin + /FontInfo 15 dict dup begin + /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) def + /version (1.0) def + /FullName (CMR8) def + /FamilyName (Computer Modern) def + /Weight (Medium) def + /ItalicAngle 0 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + end def + /FontName /GYJBJV+CMR8 def + /Encoding 256 array + 0 1 255 {1 index exch /.notdef put} for + dup 0 /.notdef put + def + /PaintType 0 def + /FontType 1 def + /FontMatrix [0.001 0 0 0.001 0 0 ] def + /FontBBox { -36 -250 1070 750 } def + /XUID [6 5000791 ] def + /StrokeWidth 0 def + currentdict end + currentfile eexec A0B00ED5187D9C0F1ECDF51878C3AA5CAA3EC9EBBC6A5E + 2825687306A156DACC32FBF734087CDFC35B78DDA68032BCA38CA8E8A340AAA3 + 002A0E52D0B9162BC68AACFC0F14A1C933363A56EE460EB41CE8C2E9EDC509AB + 9E0462B9F619AD944F133AF072E5FD1625902963260181189070C40FB0D49A96 + 50D86FB0AA90098027455AC2354A299FC7BFC34B4F1162E5E9A3EFD80D6240B6 + 9378BB4F6F9C300E5EF7BC558969907B583EDD5DAF8C916767D08EB8CBACE45A + E97DE422B942588C7A9C988EA7DB9AFA8443B83DAA733B430DED23D044BC48DD + 41CD3329B44755813431C67F85476E93CF1831BF85FFBDA2B3E8E47574D58A3C + 0BDB86392657FE58D31EB9A46568936CFF9AA38783781CBF1569100AF518AE17 + ED503B824603DA7B89F83248CE14CAB35699BA1EFE0831D7AA9073D0F8318A65 + 00519D90C8AD5E8F64AC91767FA56FF1EA8E3DB37C64207C5D0FDCDF1B82A0CC + 7CC1EE1F7E8348AFF28CA7D668DACBABDEEE354F20A3601183B20DAE22287D4D + 736C1E6B320D49EAA30EFBB0D9B2AA7F3802A26BA19DE02221EDA0085A926C9F + 2710B9B37288582A0B780D097C2C639814FD40E00E0E956CB2919A8081674B89 + FCF0FEA7DC083B12223B8A28A8412B0365227CD787ED6388B5DB172D0B96A64C + 0755DE7D2A1CE0B4147A72083F708A7129EDD9E249765D7E619525BF4A3AB87A + 48910FD5D4E46ECB17037FE31621CB5C7C7C031E46214F8D3C83C1D285F106F2 + 9936137170094724D4CFD368518DECB656B4DD6833F4B8348155F79BF7222127 + 1BABE47BFF8D22EF15355D92EF89A183898AE4569748A52F964D316AF2E8B25A + 1ACB5D8944669A0B950363A339E9E47018702F9F320385816670AFAE8641700C + EBB71F849D1DB3F3085DD3F98E6645989A84D90C942CCFB9D085EA68186FFF5E + 7692655C4AAB37CC2868E6917203CF43D33C3B4547266546FAE833C678E73389 + 8CC5BC975B552E3DBA9882AF51FDDD9C941BAE5F55D2D16830F6361076D9177E + E560581532AF31A66B810FF3E509EC5A5E654917572F36EAB8575B978C957BA0 + E88DBF0B935CC4943CC6EE042080B4D725EF283B5E054E9EA8DBC347A1FA4473 + 8A3F8E19A602F02314C9365CC6997B3B4023FC81F35027723F6335426B685AB7 + 44AAE629BFB039F4184F0F91B4F319DDB2E8972384A56AFA0948DB4A5AD401EB + C216120EC533132FE5AF1418AE172C8BF995D24EE0C6BD7DAD8466965902FB11 + 4AF41B1D4E3452D1C302D037F96D3A42AD12E5F0806CA1EC8188DFCB311B5C79 + E4CF84883674A1DC425AEB2F30E2812B6C74842F7002B033656E170F637893FA + 87007FD0E64D7C74DBE37D238A4CB00CD49F488394682075DCD5DD193FBFD068 + 636C9DAF09F6EDA12D5EA5F926E2E8A7CEC01244D18844A9C98827B375E9E78B + 130928298E39FB9EF36015EBC21E1685E517745BBD57974647ED1811B9D2EFDB + 5D6A3206562F76070333532574B8ED73EE948FD347B3B5D2A3636D7AB8B0DD19 + EA2EA2CDA456DBA69777A8CA0732FB0F83F396B9D896A00307D0B4D4AF77B1B9 + 214F1A817374BC4EC59588AF36A245792E26A9C478902434E28CE0505FFD7F1B + 2AD62BA0904DFE15B86482C5403027FBB116216859EAD1C5EFCFF1421FC73F10 + 26B0DF749602F20384F0C82D80C40D8FECC349A45F91D0826FEBFB8C2F82AB5B + 71227C7A4EE2F11EBC337A06F36E07218149C68419141219B9CCC81181661BF7 + 0E9D1951982B8565FE5D10DAE2C643135CA41E527A7AB7721226A09E5C525230 + 758F5510EBC943E46F4D99B85E25330906BDC4DF800EA654FEFA492469F5AFB3 + D7A8B01B6B286CCBA1B774D7E8FBDD90D026E3D52DCC265A5A093C9A8BD670CB + 041C44FD21815912F9D8B3A50D67CE1714B17504DB3AF1889110BDC8862D1260 + 22B8A46D51A686DFF65FCB35F823C1EB10F54F5D727BD412E05AFD5F234CE70D + 03F8840E259B0DA74BBB38505AF59EB64B3F0F1B1A989AEA0B4BA62E9792D1DD + 936000B58CCD938417A6AC6BA66B091FFBB9D423E6A770D29E0A46C5867F6F6A + 1E3B08A41FE8ADE9EAA692DD062E714260E87944C69FBE0C13E3344F6E531D9E + 93F9637927189824AC9D41D981AA2E81F350C0069C76824A84D8C820EFB1E747 + 32A22759B4DAE5F56FBCE624EAA7614362589AC8E442F6A2916155EDC2C87949 + 20DC08A2CDFF940D876C739F28B0F5277A7C707BB4215B5755BE502C8305D0F3 + 6A249FBE44FDEFB84F6533B78A8005DC8A3D77E1D5E870FC143E984F65463EAE + C072827D23F409B40443AD2E244CB6B49467A50A4252D00709697063DB70996D + AC72176D19C71977E1CFF96B19E0B10EBB046991BF26A432B47950A6236B8F78 + EDCB2CD9C09BCE78D7576F6EFB6CC751237FC3C540BBA10EE9623AC7C7F41734 + 99ABDA2C8DE8D4E4EBC4C951F03124DDAC37FC4FBE4D3BE648429295F33A3455 + BFA5940917A3F62C0748C48EE3DB4C88745AB3AE31D6BA98573016A3B293577D + A7625BCBA887E7E9DD48A980903A267A186F1629097C2E4834EDF1AB0CFCEAC8 + 03BB90DD143DDA805833B3A558326FA8434D8DDAA289E331693325B1EDEABF23 + 4163AB7F5CE4C841993ECCC2FE696F9E51ED51F3F069295C4F23286613495994 + 020A5A8BBBF8D127BEE5CF66C0E3C901D2DD8D3B531FE656F0FB27AAD8A45796 + 19F52E7D5C6799A627486BD130FE49B69BFDACBF52C2929757E7F71E3EB4EEB2 + BF8350953D4CAAF16B523A04FF821DE6536742D79B02DBBA75000D4802AAA166 + 111D7D54A18C7261F30361E2F05F9700C72A30CA6D44130B76D808DBFCC0446C + 152E23A4C49782CE7D8FD479B9A319BEF1A23C76F95BB1A3D8566DBF2428B47C + 3625D966CBD181186260E76AF80DC50E6ECE262BA83FEFDEE59FA674E2276942 + 6DB96EA3B530D175D4F786C89384BB58C17E170C9D5A60AEB963A7FFF873C114 + 86395E218E6D3B5E5F7C086B907703A8AC2C99F35B97723621A175F0C89C271F + 3A059588954854C1247A38562EC7D58280C28AC77F2EA6437BFA609FD1ED7220 + 98D67D525EBD743FF6942B08DF07D4B9192B0F70090AB2F94D025451CD68FE88 + 7C02B76E826C81963251AC456A79D451D786BB2FCA5114BDF10C9F46967DA172 + 236919EB8F765C37DE5F6D97451B3B50EC59D8B1617EEA184B487EE26456BB5B + D47FB072F2DB6370B218D3E0C1666B8244B2D7CE850B5EB6C8A706C964908822 + 37DDE45CDBD62798DDC8830E2B1200B93965B9A036F2CC7A42FB079A3CC13C27 + E4890660E3225566E74A7182E44922C8F22C48D18E0CF83F2FB25FDEF4230C40 + 197849DC275A3DF6C0009BD777C27B89EF452F5C1A1313AAFB67F2D4B89FF478 + 62B0B7E6BE4A8A56A69CC1B06D2EE6A9A846298874B482B6A166C3E8DD2E0BCB + B94F873AA82DA83E9E57E8D13F4020A044FBDD82F0F39B4867371F5E9405AD23 + 0776C157E74465A0C078A4FAD6D6D80AD54DEFF9B1760AAF50A80DC373C84454 + 8DC7524333C071018E48E3BFB12C550E70EB54C01B7B00073392E36E98281F94 + 724D8F3DC5EB25F31F27D327E296BE62CAA78AF37BC23F95D295CF515C266175 + 9C9DB58B583E156AD02E0E0BE819854C877CC8EE72D90374A4E35450E1D970B5 + D5E5FC14F4DB626B68AC27344546BF1817722F06DEA95A77F983C721A8283F7D + DA3535E2BCD83900C2C0428797DAA317434D2F7443E1E0A27467CD71AB4FDBEB + 5651787FA1785B9F9C16913FEC08EEA465649C6EF45F90BF75A024424F231F32 + 20729D0C8AED886928AE1EFF7E559CBF93271AB73AAB6779A55DBCBD5867DFA1 + 1887F0AF4AD28F32C9605562146A5D69CDEBF31690F47A1C24FBEAF652C8DA36 + AEA74B02AA2EA4134D458A48F83D0949CD800B2A15E33A1F010C0BE8DCF66A34 + D7671E9BF8861E9587FCE0D4442AD0CD5E561C3820672211DA4F29490F7B2F9D + 24F2137C5C5975AB560DBA278EA490804CBB53A5A1AA84F1192D371981278D45 + D2F5100B1E1B76374C8CE4BF79BC6009759598B7E00203555AAA4CBA2DC6F18A + 7B9AFD1E371BA61C43238E85B4BF531153E54754AFC60C01F1F79C689933D32D + 2F39065B4FBED4D8C982EACF251CC384BE535207B5713CBE6E463BA39A2AA7D1 + 4F6FC435912350FF2FFE1C6374A05558A47E8BD8B817A6EB5598AA097DF3A4E7 + 11ABC5C618DA29C0672F2888620DD4CBFCB65F6456A6B18BECC914126DE82E78 + CA361FAD2AB13D0378BF9CAE38C9DAF968CF024E3F575D46EA00433739C630B1 + 20CB13EDF2AB3DF82347C4689E22D0DF1A93B2791CD939A0661EB6AD143A8EB2 + 33824081BD22B585FAB0C9BA81F5625FCA530301BE007D4B9337B34AF0D1BBFD + 5DB096F4CF06D9ED18D455E7D56B7AD2507F659223A8D6435DB087866835E144 + 9FA59148BA632A3FEE9F5C585C9E7B65E8A300701E11E313A06001709EEF61E1 + 6698514580E66A5AE924D06CF47F3122519BB0E25A2DA80C37952DA4B310B70E + BCA3CC5A0DCDA87DC555842B5406C2F0DF7D769AEE0C6343ACC0EEE0C3CC3A36 + 309458EB45309C49A69590DE0FF953147DDCEA4E8276E035DA734433C883D32D + 3605D6A62852364B70616DA390AF42860EF9A3E672F6516BB9F4603B5873D12B + E685643A0904C92813B6C5953495BF740F6507FB6E8666F525155514D94057B9 + CF1C04CF28CA7C4BD58602D3A3661663D2B7E339CD5CCC78B3C3C8FD5D1DC2EA + E093F51A2527A49F53F2D202A8713D6B821E82A66F17C337E06DAEA445A63E53 + 89621E574D023C48683AF5ECE6E8D3CA0E92A1C6A63BE6DCAAA1F867B800F3A3 + 2003EE09A2058C7F6A56A766871E8AFDF6FDD92C0190BBC86755E50F36152D6B + 23338ED1DABA200F4B339A2D9B86BB00C1756286DF408B233ACAC7725D522699 + ADC3DC028197A64A246051D55BE89AD11FDD81361E15BD49D4B276242286486D + 383D701D4F23511E7D91DEE2D5147E324990FCDB674A07C14FDF255E5C0D9E9A + B7D2BDE3069B5180A83F6C91386655E51A383055FB946A35ACB2596381632E30 + 99599C307BA5DFFC3705135219E828931F19A1C2B553BB18BB51A775A908E7F2 + 097965C2DE3F9275836E9D4EDFB21BD8A3139A9AB16078EF133A786CED9909BB + 27997FD880828C132E55B9538FBEB922AA4E863C96B2A5BECAA490F8FC2E0FFE + 1CB0F554AECB721C74B4B8AAA542A52CE3CCCB339A42D3EF69282B9A3D74C3DD + 11718BC0260767C21237E772829F1483EC21277D16E3429E5E6CA5DF3A740A5F + FCF4AB64BF80336AD6823948C89E35A3BDBB671316A19A385C85A0F2BA5AA7F8 + C390ED083DE207E263363A422A8DB1DC5FC4F73A8F46EAE22B35839C87720AB3 + 465842A1166039AB8BA3881DC8FF0956D8EAEA80997918B99ED6AB033F64BE00 + 64618FD586154E666EBC872E7C798B4ED1F3BE6A7E0C291C5EE87BE3B2594472 + 27D736DD0387133D4EC13739F988249E17F62E33090D6B99509794F206DE4995 + A8B51BD883B70DAA8422F9705E8CC729BCDF234B18445B756BF4C02ADD2204FA + 4ED2653B89DBAAEC398770C935D314FA40596D7A6CD7EEA10B97B22E77737125 + 74F27FC6E6093DB644084DBC8A46F6B6439950F479641C0FE42571D357280F0A + DE8313D5B03B1C621CC4EA43BBD378FB4D8310871B0E7368A8E34E868A0A14C1 + 93EAB5B24F66D1E579453E7EA1D1DA7F4B58C34AC475C81BD299F59F229F29D1 + 9E99A81E0FE113DCBD8148F3897E0289450891AEB44EB163808FF60ACE324152 + 6CAC7BB11539FDB8CAC33E2FB4E0831863A3A90042B052F56E435FA409A14FA9 + E283BF4E8665797BB9DD2A52562BF629630C1E35A4D98FC67341277CFC408CC6 + 92B879746E636FFC6FBB8645D35CEC4C1475044B61083B94661C976754AB984B + 86A292B6BB41094032A81718FCD6079F31DCF7D6B3A8798BED95B5CA3E66A7E7 + DDD19815DF2FA855A3E3568EB7DA3BD6FE8261C84F50B45431D654DD5E0BCB6B + 4A5896193456604BE2C2D3C6507EE901A460536FE34C6419E0947D35EC521275 + 626282D401CB34B541D6FF292CA567F85AD6432A036BD0B3E08A31FC42442A8E + 8FFBBED51395A9A9F1369C664E0D361C8ED11CC36A77D15D340BB36B197DC725 + A66692AA6EC7E3151197CDC3241F09C0F6B3904DA5D7CF85E06367893E440096 + AA84FC728BF910004238DA3441C59E934A40CAD1C2F92BBAC5AED7A24FA934B6 + 272EC8331A3D81F349ACAD6120659A33440C8C0699F5DBED613400AD9DE81CDF + 7C5DC0EABED35B21839C5BBC52750BD15CEEAB9B82720E010EC8380A5A98BF4C + BB2A5871592489B929EA462638A8368E9F58BCEAD73F4B1DB22390BCC8E2402B + B2F7ED01AD4D2C18C81A593C7A9AED854BBB42B45931702345CCB025ECECA367 + 58FA800F0599EBE444CF0CC3FBD4695570DB38DD7E97A58EEA73209BFDAD1EF3 + EE6CE362493ED2D7BA9181C3E65ECF36E66D05FE86850CF60A34561C675EB401 + 8B5B946722BF53DD54CDB962082306D7802584C00AC99868DFF7A261C2FCB3D1 + 2FCC4270026DF000DA13C90AE7EFB2780A4254D237C3AA8D2450C432C99EB92B + 3516CDE6CBCB078C4D5F4180D1A130D2C868220C4D3F685AC85EB6E5A17931DE + 966CA60E9FF6BF9951647F1DCD5FE87C4319D78921C52BE4825C3DA7CFABFAA6 + 3E92EE1A7145A68D935E6107C8781555C9B8228F18EE976769DE2FAF97B13E55 + BBF054ADFC3E76D24749E31AFE80862BF687CE8F66CD26D71615A940AA813613 + 53E3769D89586EC66CB0841A1F5B2D2958689200BD156707E3DD6819505827BD + 545799E40F86A9F5A11EFC84243DFB1B89388555D7F7F9E3C3B251923982794F + C7F484AC49C2871BA46E43663926E249E5193640DB63E4F32EAA55589D6EDE68 + 80B690C8FABD15AE11D06624A29ABE57E6367FDEED4C798731A38A5368D1760D + 2E732C46CE3773F8705749BCE76D94AAEE026923FA934B1C5DE5EB363B6F7DEC + A1A3AA0AAB9D735E42B542577EBD19D9ED66E4955A9359A4EE18397B5E0E4B09 + 8ACA2123EE54651BA149FC1CE6D431C2C16BB4797CE16963F5048D8AF8A56761 + 915F96DB1268FF7C3E06F45D4B184C7C47003F37E7635441138877CF8A9637D4 + 2167B988F36C4E55D2D7BA16B1C6730EAD2072EBD84D541F1C52BEDE170C1373 + 8F3BF1510A88EC22A103023D84F53D50A03694CF8ED2831634B338AC08AD0F9D + 86D05DE8554156ECAB2D65397095A09425687AFB4E231358D53F57E1F2EE924C + 8AD603E2A9AB0C1D338254E0BA5D5E5950CD273BE6F3162EBAA5511C73791FAC + 8E561E21F4587345BF6746C2FB6A89DFA674EDD57AED7BFA796175AD796C2072 + CA8A71351D25D2867152FF1DAB7B0FE4BE7A860DBD2D93DB537CEAEF9E2EF3F5 + 6AE0F719016CC7011F93278050C886E9563F2D7674CD81BA7DAABB3238AC5B9D + E38B1CBEF7894025ECA58FE913BAE170A05133E6CB97C78C355607EEE894CF9A + 2F0F2CAF201B1F2E0F53B69ACF4D32D59CF011BF39CD8DC2B0705406C6F02433 + 3757AFF955BE1A75EED80195C2850F1492B3399430634C2641011686007D5135 + 2B157109B44F2F468945A840A0C692E7EACC936439F52117334423822B5625F6 + 1BE81DB2FA97972D696E92B0C46E83E0F1F0C02DED9419CF5049411269ABF986 + E17FBCD707F3286D3EFFCFEC80F3DC4E54C9D5A92E4D680EC2542E2B39E874E2 + 643458B2C8066E5FC89E4649A66FC7D896599E6E3D36EC0B67647D08487E0D7D + 3F64C3482A35AC3452A14BF5855CAC126516EE0D62317BB0810B79E53B3F2CC9 + BB695E50D3F83661A732938709F03D5586F4710822CCE03D7BC82B544D25147C + BD5E8B1BFCE86E5FA204F5B36AE58FDF3E7CFFED2202B35EDEAD6FA15C595292 + 5247419E72F44532EAB5E061C81D252388F5EAB40F0282CE20AE7234BABD41B2 + 5EE35B221893A6EB2F1F688CFB0547E4B365110A213B00A2406EE6D46AF766C4 + 4C6543049A2758CDC71A293CB45BE500F55F2EE8B13C6CF7DED8BEF155DF9A78 + EB33C5C57586123A58BD23363817B3449761189A54006A4C8227B514781BD205 + E036716EC98E94D5E64707A3796DBE06EEDED2D0792801FE911105FCFB578BF9 + 5701D473E3E48BF725489278F25CA23FA74836E8332A229772F042E5D05D1A74 + CBD740116DCF1A6D266BF3B0FD9D550E3695859DAA022F3FE2B174076D9316D7 + FC6F07C6CCF45E46DA23CEB40C0048DA30A807967E2255F586E210092B79A046 + C5EE55E9B8D6983961AE1932B72FBF9BE28017DE5329048D626A993F01E11D0D + 01E28D6C713B2FCA228BD4D96D4D29FFFDDB692DEEC375B3A831DBF923A05425 + 891B60A2EFEDE4B0487CD0818F022BE1216B8504D1EE8C325EA0530EF5C39EB8 + 1641F4FF610AFE2759698C9D5F092BD0C7F4040AD41353F9BF05377825EA84E5 + F32398AD8F28B17428D7336CE7D6E262F77742CCBBB0F5F17CAEDF2D86F9251A + F5D918A493EDFC88A484AD454F46BB738A9ACBE7A2BDAAE649D2B4481C06EBED + 52AF0B5241652D1D8830A1B76278489AAC20682FA72986C7F0FDF6CEA57EBE89 + C1F86E2E5394429192172344FF64D767E31F640182508204F9DAEA2BA4260DCF + 873879ACC727C222B06547FBB3A1FEF86AF5324620C792A903D9B6F93CF38615 + 624B00BB8ECC90D121BFB309E253F8C9E4184A90E01B550ABA1312F4BE23110E + 32B5D9013B130A6A625294E4D7CDD2E36CD39AB288A597C1CB1EA22F7E5C5205 + 5C8393DE3542D7B33D7EC16EEA2B7B5F7EC236CD070272CC52708F949E926643 + 8863659E8C1B7CCD102CB7D7A10C40983703FE540D0D39A9B676BF3BF365601D + 1C387732B726889D5598FEDC506FE9D6E54E1A316AD04F523DE2150DDAF737DA + E8F853C6BCDAB80739F06FCE0FA07BCBDCFCEBB66BF4C9E6F38AE12656E35159 + 28608B27DB281386178176196D1F9A582849EDFE014B273631ACD963E9A1D8C4 + 10CBDEE04AB05252DF258B0C71E84021E07C61452E4673E540C85A8ED08958D3 + 9E6A3B1C50B0C71F6FE57E5B98BE1B2E134F2A4512E7D7A3AC9B7E7C6B2F45EA + 2322F464B2124500CB8E7D082E07AF4E7ED37B894979E4F4665DAE68C49CD748 + 777E3B81EB991B6201946B2A4C7E964E624E505EF04369B02BFB11BE8A19AFD4 + 7F95AF9B978B7D9F54010BED5945BAC00223FFDB24BDD054791109EA39769E8D + 75C0A68B1CFE49C4876AF0575E793F903E26725AF63C9CA861A0EAD876AFA7D3 + 1A603B82F2D64C25FA1131A48FAD6C785162A693BDBF0F67D6B72F8576819009 + 51DD21ED86E8DCDF46051A54F65CE9EC2E6D22ACE59CE6F4531E8BB4A47D8C53 + BEA133ED150F508E0A4E8AA03B44C4F322D314DF8E2DDCA909C357E63BD060C3 + F73D770D8D209AF54C2903CAE170CCCEB296586C616B460EDA33A3813826AB3A + 82738264AE46D47505C65E5EA04E2B38D2D26F97BF15B251BFEE98EA54906738 + 656A734E549339536D0B76472013A940E80D399191937EFCE09D821DBA2F831E + 8D69335A161B198FADAAD4AF78BBBFE5EAC3A556EF42C375D134A36A8B402D67 + E43F6A31309CDB525FACB563411E707C2CF0A9D8E729B350DC5AD4B10ECECDCF + ECFD6DC57E7D93DEA7EE5C3FE47165BF505CA084D5C014224EF865C0C09E3A06 + 0233E06DB9CCD620FA0C91F039ED4B151A8FD2649C849B39E100D9C443359993 + 52F761B23D0F472EEC80857C4C07C69B281695746A8F54968056B846644ABC07 + 3D6BA063FEE06B310EA3AA05B4A1AA01B90E2DC88F51D51778D4C08CC83334E3 + 73925D61693D6E75C2F4AE16B991FBAF8EF0C391E753AB270060DC6B012D07B1 + 68BFA21291858B01BA698574C3BB396F32D393E1FE921E7C560ECE903360077C + B0099C00233E27848938C46469BF8381D1D06C2BD1D3F533F589D895D902BD41 + 0ED1D7D57A512557FBEEDC1556493882398D6536503990384AF005A543C19EF8 + E9644E1D0C6F9E7D5746E73BA029B2E964908C24A302472A2CDA3FA20E319FDA + 27E49F92343B5CF3E9FDE4E011571CC5ACA48EABC0E90B065E167FFC5465D5A8 + A1FD0CA66585D3A312DA7ED62B3A4D7003097F9B932EB980C88BA1B02A758E29 + B879AC8FEE53F51B999B02C28562D7FC7C7C56863D7CF12F49194C88D9E7568B + 99DD44A1BA8AC19F948E67FA682304E26CE2B2B06442474A8A9961B9C7A98926 + D040E45F618CAD451DC13D3CBE3DADB91F170EF1554C1FFB2C018DCDB4FECACF + 4A0E2ACDE8517B3423804246F419E5772D21C665C283EA822A8890C581AC5F25 + 8B50D507E206DF38DFF3F501EA38F3506D3BAB776B9A74785B30AA32E436767A + F4CA6397900568433C068B82D7211D9759792ACE2CD619A7E597FAEF66D170AA + 8A64E2EE98D3D3409AD677B7CFC3DCA9DF048A7B3D9E6AAA54B1CB9095F98976 + 9F638D8A0862DD684BCCF35851E2123A4C9032FF9D516196727CF733D0998A49 + 5911EA153C01BAC464810398CE9542A8E836F070EF94193CA1C0553180FF03C5 + 0A36E40D8175771559A8813ECBD17A0D8429E84106CA18458A93578041246266 + 1B8CF5B6B357869557F4997A0072D52F2523AA0F50212DDB21296AE81776B5AB + BE1FCD135B6E281D30C32679B901149C5F3BECFD10831CDAB888F38537B406F8 + B095419FFD669827B8BD57A0EDE9CC512DE6BBC9516E631A5A382DB1290CAE5F + A624631829F712E8ED9B8B303511D39BF40EA4E9952385409C77B72C47678F8B + B508DC1CCBFCC849591AED02BE49F1C30BB9BE62FB114A52E2C9A879BBB2817A + 4CFCF7353FB08F402B6B51B92AC9CD5BABC03F86CB26BDCEE2A08CB74503064E + 2B2E8D7656EB20769DAAFED86344E6B042B4ED0798713A518BD7B9D19900AEB1 + A9295647BD7928D4918CD5C01949F6C397CEE8C553F9346E1EDF1CE29516371A + D5823101440595AC8FC87A30D07CA05406947DFE3A5E308A3D0EB82BA0002C6C + 075AA8BF525EF361219402D0D5765FF55539F96A3C10B085B74628211C0D8983 + 1510B0B981BE8C69AD7E9484D2F6B388B1C2C37B0D20DA3AF0512E5B667965F7 + E3B003C10C0BD6635D418BC233B382A34C6931655EDE8BD5AC66CF881518B821 + 81DF07C865103321D92D5A326A484187D2C303F72AA58AFD87B44D35DC2DB886 + EC0D70E9A875DB62EF86C1319198B9F21951CC067021055982DD55CDA6E9A42A + D201C31D5C686D236D1CBDAB895637E49ABA0D27302A2CAFB4A30B05DF72616C + 1820A4FAFE41D3C49FB8C0200F4C14F41A40ABC0B31D8F7C1302E01D45932486 + 33E33F5A7DA0FC36EBC1023338E7F1048202D9433A0738D43757218EE8137D6D + 140B46A44D66B71041F60F5E919628640B7AF2841338A4D143212F16650DEFBE + 549D68D0317B396362A6B598E305CF41B76E964D1DD35AF5B71E088BB9C41201 + A573BC52AB9DDD32C56B91561D12E3EDD6372C02A58D4C1A8556314CFF08A347 + C76EA7D31D73EC058ADCDB729217B4DADA51BEC30BC6B90C06F15552C5F3ED4F + 1F9750BEE455F2FF861B946873F6F7A42B9C35034B83A3B1AF7671577532012B + 9EEEA8843C4E0C4439DC34AFC0EF629F70D14D8051C11D23F9D78323C50839BE + 1B71916CA1B55AE32A2F4B7930818FA0932D9DCDCC082AD9F8D773545C2823C6 + 6843FD12FCFDB71A7E433885C881B8DC49A7E30F9CAE2D882D092136786E3596 + B24544035F77308B8D24C856CC65CC3018EF3C733FD0E3AF16258C25FC500459 + 7F44D67811F2C406DD03FC7838B4712E109FEA0EC43219F7D554FA6C6C56EB6C + DAFFCC173F5D99B325AF3DD520B76C1CAC849E3773B2441568BD4D2B45C7CD6D + 6B58F409F6DE64F85D6669D4997FC57CA0C5FF08F84D5DAAE9F90A146BF9B52B + 3B657F2756B7215C3C820FE5AA0D27B8AAFE281BF518EDA74B8870908864C580 + 1AE9CA3203ACA42B93DA2FFA85D0781B06F3524111948E25ED0241DDCAB17318 + 9C161CC562CEAF6C4A7A74A725BC79160F6AEAB344ABE49D7D44E528E120FA49 + 49F160EE9606879EE42A19DD9CBCBA34653453423D00809CB93B02519745260E + 568BF5A80B8A31BF0395A2CCFE2040A0346B211E273D0541CF56CAE168DA64AF + 83DA3F8C19D93995F00D9E0272AB843F9CE644EBCF11711F7C4F4EAE69BE6005 + A323DDB30EC2797DA3D94A874813BD6FBDAD5A70F20FECF8AE09726A1E8F5D9C + A565B47F9F68A673C429F0BDC2D14887080F6120BE453589C2655C258A6986E1 + E494C0328AF40BC3DC2BAC6918C0B770364A891D04BD81095A2939C0813DCC92 + 0C0339CB5AD8F8055825BB3CC73C0624DA7A86CEF545D98CA9E3E39212071F99 + 70EA3B397EA4B6A4DA09BCDE5B5ECBF1EA715CA2B498AB8F29FA49FFAEB73ADD + 23466E7C5463128EA7AC8C49805DEBC19B7940B81B896D3A3B9771BACA415915 + 00BB990361DC22871917B100878721A179637093EFEAEF114DD2CFC78168F194 + CB889937852E83BD465E3C0AD160BD12D1AA74885386BC360EC38B7BD146ED92 + 060401DE5807FF6C3AD026380CB3DCE02ABE3CA97FBAD242CF3CBDE70EB92573 + 8DE95C0BBFC46813901078619F9261563D9DC17401364A2E5D5A4B61427016CB + BA029A61EB0B96D9638DBA58D9C2D39C04E1163E7E0BBEE617C6773EFAC90EC3 + 46DA44A9B24B8050F7BBE82D2390296D5DC055E3E393A2076D5A69569F8AFCF7 + 0907139A7A017440B0C0A318D24A8D34010AE13E479487600A36D167DBE56A4B + 79C51301889F1DBD6D429291D9490BDC2C03123F7997DD97F6C442751D49B191 + 6A80006D24D10CECB46A0D7CE373F840E590E025DA305A6BD1EA86EE8F04787E + 5845A96343D40575FC3EC211446AA395D9050A928C6BB7833366EDB6B0F8CF48 + 9BFB72122BBEEB35B184D7799F527CFEDD2829D5BE3897783AC37DB11D10B940 + FDB3F1768E9598FF8A91FE11D8834D05702364128D5CE37E8FED60B6A13333E9 + 1A9168AD86D5A443DC70663857229C593FA9B330078ED9BEA299BAC2784A794D + CBE128A2A687E1A5266DE34879A578A75D71C20415A7F31AB4DC59CE78273CF9 + A4A8F61C5E741F9CF4E7054CF062725FFBE5157243090F60E7C58438D4643F7C + 53A48E5A48BE43819E50E1D1DBEA8252398CF9ADF263E557C30CD42655663E37 + 1233BBF7510825C408D52596664154A773DCCD8451F7588795420E3AA2CA242A + 7F56096DFF6AFED2E60B30F08102456F8E10D875A03C68B3CEBEC1631156F739 + 0B79445967E9B5981E413467402F1A51A2668D1301D8193A6DB66ECE0392CF55 + B5BDE83FF1473FB66D2CB2DB9409995DD5EFE39DD69E1D85EE071530814090CF + 93DCEA938E16E35F247798F3A91939BA4820EB9150945E1A6579FAF9E4122F34 + 8C7A73620319A5E64A7170802B467C7AF85783BBBED3FAE3FF80DB7ED05BFAC8 + 38FB161731564D9E05D1FD02CACDF8A9286B04550BE5DF31BAFD778F179256E1 + 33A8E2B28C23BB997B794A519AC2154263D9A3E57E45D0B86E2FFDA0E67455B8 + 44E533BB9465DFF1CE97EBEB09C564B83C317159A6D65400D670C4C1EB7B54F9 + 48A701B53950197C0A14715D58FE27A40E3A1B523558A620C28A9A28816BE702 + CC109B1D11A11E499B6C6F092652147D161E6F23D57CD670E0FEBC1C690CF0F8 + 528EB292B84CDD88EA02A8D985A85198735AC407C986854E0049DEE3692B58C8 + 21CA69DE162F904F0DBA63C8B384E06E154A4FDBE44FF0A9DAFABBD6FBDBC6B0 + 07C1B205535F407E605CBB6762E8C4A628B43E2BBF2BA8B7C3E42A9EAAEB5834 + 8BED644C4B93C4018E8CF5E58F2ABDEF4D14B90BBCE4237B9C52F1F545855F46 + F1AA8F6A68FA3C69FDE3A002A887B3EF8AEFB4BF4D0F2BA5E332A89D18E512A2 + 1C259F54D00EC2C3B2594AE2EFB5F74EA05569C9B15D8C3E084D8B09F3099B8F + 2273FEFAB29B823339A062828D3A9207FE7F057A29FE9C02000745F49AE37B08 + 0FF43F828CE05387F99F1696F7AEAFD3267572871475A01A503A2CA01BF7AA81 + E45AD0F8C7909AA0394A7B3F6C9BDF850F191BBD805F05485994004455D9AF32 + BD9C098AF54CE5D8743E2868D9AD4BF2430C8CDDD53CFBC8A97E86230A95D3EB + 1C4EC1F1451A6AC73C57E2C350AA30593FEF6BBFBF8688C1D77C114CB12D4154 + 57066D23BE5B7FA12AAAAA39486D62E40F968FFE8665688A4C8C0C3C1CF9336B + 4E08A8A1FD446735116E726B04955F5580A7B7143248C7F51B299C3C3CA3C366 + 7A899FFB7AE9C3BBCDB73DCDF31983F62BB299B28B0A7EFA3181AD8C3A12D7F2 + 3F565A35CA1CA4750F3C7F8A44403C1434CFC28AF6DCE712B035C4BC34574AE5 + E4EDA7934914AF8FCC156C12F00ECA95CA516E70A3418F1BB91DFEC858B7B779 + D787D8732DFC7FB0FD979E7C82F073393AB0DDB0BAF05C85C388F2A2FC1776A3 + 51B9C9A85E451C9AE1DB13B634D7EE3EAEE5B716993CB415BB44823A9993CB6A + E62FA60AE88C6E9E31BF9B0E950A24E706ADD7488BCEF6F13D612541E7ED33D8 + 29148BB537E4E0916C7174670CAE051D63714C550AA40A13ED7CBAD37B4C49E6 + 2A220AA10DACF7AD187DC642941D0597884188B96465A3BB120A8C177B4E27F2 + 4F2F9775DFAE0AB68169A1BFDC39BD68CA6FA20D32B7E9186DC90F7E527A3153 + 9E4C1D3BC953DC693C642969CD3482BC4C5CA98B6C74BBEE9873E880DFDD1B55 + D87FDAA814DB1A4C713B6891F19D0DB1A94F6D085C0984A1B421C9FAD6E1F9BA + C1F6BF93D687093E8478CDCF9AA78775ECF092BDBFC5692E6CFE28E610365D75 + D3B87E4FC841C0E541E55244570FE9CB8CD690B3E6DED37C1D7EB0B5C7C09EA1 + B16AFC56676CEA228D9DEBBA0B3EC1752BBAD2680886A4A396660DA707DAE963 + 6D11F9CA1F52865C4EFB777C670F34637BA2F24322E8109FF9E3BA4D5B33BDB9 + 1B8D5724EC4189DB526E8DA1819F3005BB0B51F2D4D5A5000166FA6DDF4DBD70 + CA63A397AD789FA70A1A1FAC602F5AFCE868C3BBF99DE5136E946A8B000D9151 + 5DFCA55D7D6D38D121EF6CEA83B38359B4EF65240375503D2E75E663F4FEADF4 + 9353FD3240C8AF6A3CD5CD2840A92502896BA5C843F87395E140A74D23AFAE1D + FF61D3219BF761E46DE41C3E99D261F2BB15A49CA1D963E22C2499F06D339C0A + 64F2E1EF3F390E1A5C0A5A1CC67A94D9A753F185B9036BD7493BF8FACB87C490 + A9A77E837B74D146B67DAA25D195A79F54EF752BDD5CFA98F28DA6EE78007A15 + F6B4724FAC5F50686F6029717A087B087146AB2FC465BF5B7424607C9DC38860 + 441410F66ED444F76FDFB96F0D469617122B8F1601AE60D5562AE7DC204D55C4 + C844D67FD858ACFE12DF4FD4C0912B14EBB2B3D880EA3978A3C9BC000127ED59 + FEE1B67CB71E136E39F1270CA36F552A5970D917619375812B635DAA14C2ED78 + A2E02F026D9B5BE97A61BE93445438DB19B0BEC456308FF06E637C244B4F5284 + F25D46D376FB9162E94ACBD5A65DFB70E8EB35968BC563FEF7283FD2C177B779 + 8E2D2BE8A341F55DF9FF26F04CCC6227E8A5E9B06D9C1B172AC582345A97D0F5 + C756D10B6146321655DB945BD2ED0BDA7ABD9CFCC384B8C7E1A95AE32B587ED0 + CA008D85D04E93991FB2B3DDC16E62D2728E6C1744FDDD706C9BD2314415C3DA + 64E8BC9AAF4698605B0B20DE4983E47E93C4622261BAA850799573742F8C7532 + EE63D1ED8CE8A4486DA6A1E9443891F427CDD52D97D281E48F140B49852D92BC + C2AA381F5EAAFAB6158F291CF6435574A5738DC6EEA5816113BB9E2E716A71A6 + 029F28AC0E915B9195FE2939EE36748B1EF124922D2E30B1ACA1F9AB00399C57 + C7DFA4123BE162C2321A246F545AB2695090D2E525F871CB58D19E44FAF885A5 + 119F245A1D119A0A86F417D1C287E16F65296E610115E0BA7F191578D9D0E66A + 4420E86137F945BE9AF284FC226D7A9D45F77687DF0E784DFF6DA2A4ED310886 + E1A77CE4E3953FAC618E2A210288D0F2DE1C3E9230389E9E2C37344AEF9BF447 + A2CBED6DDBB8A8147C3CBF4B249F968310296DB9439CABD939044C83B2288709 + 0CA385FAF82517AF4FFA6765192E2B2CADAC72B64B5E9EE85A700D8B9246EBA0 + 6268F35B1C884F6C3C6D12DF640A3D35D903B230FF245240B4E97C87A5DF30BE + 21EAF4F222387D21D94BB5A8D50E04F2B912C0CD8C15B16DC19B5615FC2F6C9A + 284D6AF9D787CBABF282AE3C2F1F7268D2D4E9A7366140AD7A74FE647E393D0D + A954F81E9A50DCA006832C06DBF116AC8DA151176F6BDEB6E303F68B9F1E0943 + B50BC72F793C1DA9840E1BF4D862F5771E7BAA2C3E8AB8E38E8A3D681CCDB558 + E8625AADAE89751F7741E14F378513EE763D2B07D855A40571F2D88AF537B0DA + 507AD04A8B501B98C5BA04E23F1D0B9D3520F6451DF498C5B2F367B1042EB324 + B37B1A17F645A0EDAE544823E605481F4BCEEA20B7A410429FB611E91FBD496C + 5E8D2A36D439AE1C83FDFB5AFBF9022332F4BCB52B36B46F2D5EF4E7DECEBA8B + 4384B33B8F6FA5E7CDEA6C60DF0EBE647BCAB55A72A57AC9EF3973730BFCCB4E + FFD473BC75DC58319B6EC18C45460F25159401F20118EED4C9A93208895BB557 + 71F3A3B65B3FE38F9049258A9B6FF46A29823704B712F6D77F207DEA701177B9 + B6195DF3FB05C8C2F0923B88505BEFFA25AC21B39F46C4A4CBDA47B960918776 + 56DC85033C9295CF9D66B69192426B909048547C48C20964E98CE73F43498A1D + 9103CBDE754B20D19CE5538CB47AFC25E922BBA2E6ACA6E7DE09DCF83B9D0BE7 + 0D3E986E95197B8884D832A052889F5DC05363EFA549CDC57A3F19956520A896 + 6D8E241064BF5DE4FB9875035114D613F68BF22C24D5F6BC9C3ED17DF2E18913 + AEAEF7DFC0333C5C218E8ECD198A73BB167EC01357F4042285F78C8154178A37 + 7F539CBD3F328AF82B9F5EF2174E37957F59D65651CA06B75A2F058E10745EE7 + 950A09CCB1557206CA0DD8D0C7BADAF01BAC3E6F6BE1F0BA05AB8D953C3D9293 + 2CDCAAC213660B66ACB17B20EDC1EEDBBDA826DE9CF33D1974B89B34358C820B + 753967A85C2B32CD316CE65840E750087BB21D7973AD721BEC602B9180BB5ED7 + B750890FFEF10EB8437D56C0E28840DAFE9B7339762F074AEEFD8B3926C2528E + 663A6A49778FA10AF0C19F0F44217E3BDE639CFAB9F87B5FAC13EA7DA92650C7 + CFA099E3FB844FA641B6757BDD8C92856CAB686DE0AA994B964E0B5F1E56F0D1 + E89368405BAE6D4C5CC5B89C8C79133FF4E83BC0189CC1171F9584965B08E4B2 + ADE2D9 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark + /GYJBJV+CMR8 findfont /Encoding get + dup 13 /fl put + dup 33 /exclam put + dup 34 /quotedblright put + dup 37 /percent put + dup 38 /ampersand put + dup 39 /quoteright put + dup 40 /parenleft put + dup 41 /parenright put + dup 43 /plus put + dup 44 /comma put + dup 45 /hyphen put + dup 46 /period put + dup 48 /zero put + dup 49 /one put + dup 50 /two put + dup 51 /three put + dup 52 /four put + dup 53 /five put + dup 54 /six put + dup 55 /seven put + dup 56 /eight put + dup 57 /nine put + dup 59 /semicolon put + dup 61 /equal put + dup 63 /question put + dup 65 /A put + dup 66 /B put + dup 67 /C put + dup 68 /D put + dup 71 /G put + dup 72 /H put + dup 73 /I put + dup 76 /L put + dup 77 /M put + dup 78 /N put + dup 79 /O put + dup 80 /P put + dup 82 /R put + dup 83 /S put + dup 84 /T put + dup 86 /V put + dup 88 /X put + dup 91 /bracketleft put + dup 92 /quotedblleft put + dup 93 /bracketright put + dup 97 /a put + dup 98 /b put + dup 99 /c put + dup 100 /d put + dup 101 /e put + dup 102 /f put + dup 103 /g put + dup 104 /h put + dup 105 /i put + dup 106 /j put + dup 107 /k put + dup 108 /l put + dup 109 /m put + dup 110 /n put + dup 111 /o put + dup 112 /p put + dup 113 /q put + dup 114 /r put + dup 115 /s put + dup 116 /t put + dup 117 /u put + dup 118 /v put + dup 119 /w put + dup 120 /x put + dup 121 /y put + dup 122 /z put + dup 32 /.notdef put + pop + end + %%EndResource + + userdict /pdf_svglb get setglobal + [ 0 /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/fl/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/exclam/quotedblright/.notdef + /.notdef/percent/ampersand/quoteright/parenleft/parenright + /.notdef/plus/comma/hyphen/period/.notdef + /zero/one/two/three/four/five + /six/seven/eight/nine/.notdef/semicolon + /.notdef/equal/.notdef/question/.notdef/A + /B/C/D/.notdef/.notdef/G + /H/I/.notdef/.notdef/L/M + /N/O/P/.notdef/R/S + /T/.notdef/V/.notdef/X/.notdef + /.notdef/bracketleft/quotedblleft/bracketright/.notdef/.notdef + /.notdef/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/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef + /N703/GYJBJV+CMR8 -1 TZG + userdict /pdf_svglb currentglobal put true setglobal + %%BeginResource: font CCDUEK+CMTT9 + ct_CffDict begin + %!FontType1 + 16 dict begin + /FontInfo 15 dict dup begin + /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) def + /version (1.0) def + /FullName (CMTT9) def + /FamilyName (Computer Modern) def + /Weight (Medium) def + /ItalicAngle 0 def + /isFixedPitch true def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + end def + /FontName /CCDUEK+CMTT9 def + /Encoding 256 array + 0 1 255 {1 index exch /.notdef put} for + dup 0 /.notdef put + def + /PaintType 0 def + /FontType 1 def + /FontMatrix [0.001 0 0 0.001 0 0 ] def + /FontBBox { -6 -233 542 698 } def + /XUID [6 5000831 ] def + /StrokeWidth 0 def + currentdict end + currentfile eexec A0B00ED5187D9C0F1ECDF51878C3AA5CAA3EC9EBBC6A5E + 2825687306A156DACC32FBF734087CDFC35B78DDA68032BCA38CA8E8A340AAA3 + 002A0E52D0B9162BC68AACFC0F14A1C933363A56EE460EB41CE8C2E9EDC509AB + 9E0462B9F619AD944F133AF072E5FD1625902963260181189070C40FB0D49A96 + 50D86FB0AA90098027455AC2354A299FC7BFC34B4F1162E5E9A3EFD80D6240B6 + 9378BB4F6F9F5D673C647FDACF190F06118F289D2CA3C384AB2669C85FEC931C + 62B863B1ECA1F72077FFADD6746ED7CCEEA1323B374607DCB88E93011D0A54D4 + 542325CCFAD17A65A9C7638B7E0A3BBEA0A7ED07C43E7AC6B2942871AEA3F050 + 247DAFB05E0C861428ECA6EB8ED74A93E408462BF62082A899EFFEFBC0B3AE64 + 88C0C3DE94F0723168E5C139B101B854682970DD9A5B30A2CB3E26C8047DA982 + CFDA918BB1D1348707A2A64C4BAA049D675204EB3A45B7BD8334CD5D1A390B09 + 24169509904BCDC04E94AB8723D89BCE5DA0A5AFAFA5119B8D4FB860D62C1A23 + 98791DEDC78E312551F342916737261FCEB9441C1FE9D90FDCE76AAFB6A945F0 + 3C675D13D942B8C909CCA12D6D0C9BB4313613065C44CC9D4D7EFEE7C07A5220 + 19F44E3B2068E81A1040A4FA3B6FD17C7570F11299BC7D1CD74165AF687D84B0 + 011D8C5201E412BA5FF6C316E1DF756438454BD98CCFCC15ACCA13006A9EF175 + C14A170EFD0E84788FB20E389FAE98A4AFAE533DF5CB168B50B408C1D1616B24 + 5AF5F9162D5EA14B300073F435D3855212E56B4CC492CF6C9D07D7F5008622B3 + C9C1531AFCC18332876A9102F72A4FEFC02FBC6BDE5EC8E6377DB8410542892D + 62411BC8E8D589519F74E5FBB98AE6C5A119468F79C640BD25D378B81E53DCDA + F52074D893DF23ABA2D7D8510C4F4627FE551403D1FB8EAAEABEAA55F5495033 + 4393CC20DB4535158565D501A116FEC9BB25FE01550F47DB455048B98EADF9E9 + D53A68541DC07878322783313D483BF229F7DF39093F5169034732EC38C62A7B + 3E54DC1E061892D730D76F21831B7086C1C74E430597D7F03E0F9F42C226D858 + 33EEF94674FC0CD8BE36B2BE1D44F6C0E323C75D5C8ADD5177A4007943C05F0D + 517BFA6D246081D035A9AB39B25C51257E5EA4BF4D6A0B6395839FA966FF0E1B + C380847DF2DE901415D3DFC8649582281B32B0111F912F24C08C4A493992C268 + 5F20AE69B183A8399EC016F936D98EB7E6B450D1E8CE680A38083B9CB2258BB8 + 611A220D1FC4A73B0F066D34FB459434EA8DBCA35E168F5EE1BC0C885F826B1A + 3744B9407786503D95F16C750E218BAC6DCFCF8363F5631C575B74D29EF43569 + 3BC5E2851EFF6D6738B002AC91F101E3438D3FCA73BE9E547FE6319C4903ACC4 + BFBC608ED4E0E74EF5187C336B2EDB5F97874A3CAC4F15EDF36D5F77F5CE9B0E + 4C2247A7811B956AFB710B551F344D43883A383639EC95BF8D5B1EC4227AA701 + 469A883E414DC0CD60BA26F4569188A904730F8A87884308ACD53D92FCAB9A7A + 11D1B451DB2C6F33ECC650AC19CFB021C708078D324E309913C5B4ADC70952ED + 6998D4A1CC2736E9BEED65AB52DB2562CDC9AEA7CEE5EB74C664C05D88D791B7 + C88EFCAD755570680F6CA3D2800A3808EA4733CD850AA66CC1A8423421167D0C + 7649E84FE566896A3B0120AE22F407DD2779829172E1EB711CA463D931C24308 + 292969809727837CA7B9ACE938A49C00364B59E204B0AB896F837CACD9062F81 + 174C69FE72AF467CDDF54F1BC37F544C6F7144BDDF30AB513DD6C6167957E835 + 0285256BA364769B03CAAE50531232018A0C8D047FDAE3D86CC0ED1DF4D8D551 + 6753F2362CF664AC866542D3A2B767A38D6D9C8FB7CA0445BEBF001B79CD69AF + 23FDC7D1B499B1600BE7D5D4906493DEF3472B7B5A8B4D09D455DA60D7C201B9 + EB466F86ACFD04717846D5DCF1AAAB304AEDD4D4AD6744B6EA69CF35E789C525 + 7CC900CFC3FB143D53E5203B74FBF100D66EE5B33D30481D38271FC8B46231FA + 6F3CDB828657584A904070067065BDAAFEE767F28B8F8963C994428787A2CEA6 + 0CA72D5E027E76C532E6B45232061E6BF92000F7D84648E5ED9D04B0047C98BB + 406DC2907E0E45F6B38EBEB02D1AB6AE93FCFB930F7686FF5D6B572AD7E4D3A9 + B422D4D67CC59519F3DB66B41733C5E5E9D0D7F8A99269BA404EAB65909F0566 + 3A0A575480FDCF997190E90DD43B31DDE373F6D61DF0B5AAE78DCD2D44D097B6 + D26A2582646AB2C901BBC964D2A9AD2398024282E1C44E2A83B554CBFC0776F9 + DF60AD0447C724A5E635D25263B118AAACFF36C6EFFC61BBEC4F3A91C0ED75B8 + 0F396E1C246DBE39CFCDF13E3721ECB9875D4D877D4FC1D7E22705411345DCB6 + 098C8818CCF06335626EFE703F5D2926AECABC01940F8D5C2C749CB36DE3054E + F372E1BA85045B342E6EE19D7ED543826A51443929EA2BC2E7597AD50BE90827 + 409324A3580C589BBDE8A8B1A86F9E3C50332651BF221C357EC7DBB2FCE58F01 + CBAEBCDE07F715A38C390659E294F0165EF36B82E1609C867D781EB597EDC7F2 + 6FDDE2D22D2A5663A618EE3E448FD2792BD720C2CF00447248226EC8DA2DFCA2 + 3BC4A2D62684C073E381A91F46163949E4E274C1ABE60886E01B6F15E9CD2062 + E51CCC36B27AE4FC85A31AF9E652D22D89003EC278D4382418AB4895E6577587 + 9181C92D075F470EA2B4D0E7895285733BEC5B8733B96C1841B0C24701D8945C + 500E2BC3E5C3BBFBFDE23DA19C6789A3936B00CE914766B11806F5C139DA52E8 + 99B99928504D9AC031B48B8A4E11E58B7D5DE4F1932081B6CD10ECFC5A5A3878 + 28CD6EDD10B8A3C752085AF03BEF6297CBD83EAAEB9EC596A6BCA5C349E7C9C2 + D2A585E769D4BD53B1475C08CAAEA8D4ACB5E8683DBD602F429FF85D00BE7662 + F67EE8351E57E3F2931D91C57C298B1E20FDC2699BEED2509109521539E22A6C + 979DE40C669AB58E5BF41628226333C8C5A742582CC9C1B31DE4C2FA81995673 + 030994B0256C42D14F0BD38E87C3500B13BCFA720D80C135CB50833E97B59A45 + 0C34E82F72069F40273FD43339D6AE26EC93E70F3A9F4AD04665AA98573C4DD6 + D4736086643A2FD82161BD9417F912746FEE75891A0A1A9544097C2479404145 + 9A08055165327B75AEC48A984C95A03F875A1B882C5E3C92D8333DCE3CC0EF59 + 4178550F1A23775FF9A96F3C2F5FB747C6CDCF4060947D52982F8F3833C00B95 + 16F21A4377EDEA0B3C780960C45600DC51AE7C7179C6B291776BE7311974307C + 5C914492620A37EFFD5F62CD0798FD38F7DC7CEF30187C4BCB7D03154CE9DECC + 611D3AC36290AD8891CE3884CB590C49B6CF16B1214AC495576E1041C9F29CDC + 5E11655F91AD542DED8595EAEA748781C6DF7984EFEC4D17EAB6BE80A6932958 + 0CD4ADCC83FC16274BC8B8F4E0A538B809D472F9C00AF8CC0C56A5A7DC649387 + 07FAC65B4D5DCF61BACCC4395F00359ABF651E2037D395ECFD9E830F947B8F9A + 9D46383517F12C5A8297F22BE4C5FF26AF398AC679B672DE2DA1FD7EE1C5A5F9 + 31EB11CD689D401E1A0DF21470581FB4D2170C270281220FD4F0250D594E110D + A4E661C4019F42A79A58E98018049A5E9D45208B397CEE913DCB462D77987793 + 434D2EB3C15FADF8AC5155F753B83752F51E98DFDE5BC7E540DC7F18D9C19F49 + 59AB01888738627DE1ABC370509E1B32903A87FDD0F7598287A6FC8B0B59D2A7 + 07035739C3203305B0799219FBB6657F77D540A3E8A3B34E2A13AAB203752DB8 + B016BB25B7A6BB9F9ADFDD28ABB85EFF51057A14D799B4A3264BB35B3500947C + F4308285A1CEAEEC08EA9700C469E68831B74F54D97955DCD3518AC815019AB0 + A3C1AF71BA84CA10046180A6C41AE1BB4E929F7B2C8A46E47FE9D0132341AD80 + 7314C19179AABFC4F17C50AF8882F3E029770DCB5D1722667FAB49B1B63FB5EA + 0CC73A3B40A8C5870B22E98FA447BEC9603552332A7349807421BC7CBAC9EF74 + B6C0BDB004A198F9F03883F98D233A51CA0659D79F4B0051346ECEBAEE62076F + BDB62BD37EE74538EF73755C9CA80B9095D0853ED0DF80D28777146C94722241 + 122ECE784D25EFC728990DB852CF1DA8F6E951FFACA741C9B7D64BA050B1C510 + 606A36A4B919274E4E8C4025A9BBA0008A63EA0BF39D228F355BC09701DA44E4 + E6AFBD7C3AA4D3CA14CF83BE5912BF35C1342FD1C834E9FA170F4F98EDD23455 + 48C18500F03501D329B4743C04F5C06354018A1375205AD4125ED25AC27FB30F + 168973ACBFBEBD89E617CF51E4E81FF48810822148559F62AE39914862001F2E + 954C65A03A789F3678CD76FC3D4C139038F472A1068D029D22C7E88A6A6AD910 + D3D4D889534866B46724A624907384C85A2013910F2025D1823BAE8260F71A47 + 1FD4922EAA0BE0955611155F7AB98132D7092827ABA772E25133617116ACCA1B + 3D58A94460C0FDD17F4410357711597077FF7CA25D42DFA8645FB7B838A9FF2C + C95855F77A0627DFD81ADA4909709287BE0392B63027055360E01D373689F2DB + A4890075AA2E5DFD7646561A709BF3D0D6E728555762CBA65D879BFBEFEFF600 + FFE7E1E19BD2327F3F9A55919BF404C51AF852F84DA080EDFF8E2F665D198ED3 + 97791ADC0731239A13EE144539A1B2D26F8203BAA26C0303718313F3E6AD20EC + D4E67C8A2E61F4E943A18E727E8C325BDC7F54C633147C266E9F6EAFBDA21993 + D7A88F8F451CC34E187534438ECB0A27640C84B18B05E4EC79BE2CB7F6D932D6 + EFDC8F193AEB92BFAEB6DAFE135D39E2CF254C4C00F6BEFAB74D5090D5F7EB2C + 98B22D17A4D9B4D1A0E0E87F7BE9DA190BF3173EC8F0B2F1E2B4591237CBE52E + 21C9CA048451F017F7A4364AB10BFCF1AA0D9452420F234BF7E60EA43328505A + 5AF03EF8B73379598BC9573243B438960DA9190CE09DF6DD010F2F75B084C2F4 + 2429AAD339AC8E500E142B141D0A1C3CF159008F86150778F5165FBA88763CC3 + 635FF0873983DC7DE13CC4C3CC1D8A680E88272C6A1458195A2F15903972617E + D5D11F13DA5A1DA94563AB06C0B2EB6D87A973F6F11C14DC18FBB2F9AA393FC7 + EB0CC01597DF8E89EDB775C59D7C7F353F43E3046215EBB6954F675C5B47FF75 + 8BC40730DBD363E4FE23F1C8AFB6E9A4B00CF2530690AEBCCA96518F07CAD73E + B1FB6E5173554E5547CD421B974EFAC02DE332FFE37AEF0AF73967701321DF5E + C26791C93D0300D7B0DF6FA2F6FCA9610FE0F14E65C6EF9A5C5A948945EED3AA + 9DCD38262E0FB1ED918BA4C204FB5671273969B062FE82E93DC0ED9211BD8F6B + AD4F4D65419E34E1545FF575A7B5F0AABA1655339B49746BF91A46C725549BE0 + 0ECD1E4953BA6A3B320BE126A8C8C4EAF78468367D6EAA2DF216C37029DED195 + C3BBB2177B986069A5B8F49387670B63ECDF14C778973F8CDC6F217B6DA85C81 + 6F035DAC2016626CB2926E2FAFC378BF3969C442C137D637E8402B09D7C99F38 + ACA5A8D2EAABE2BFCD8331B6AD2CD71F786F0BBE0E8C34A08FB943FF13142480 + 59BC4E842281348AE4810069D045F03EAF1850A3B04B43DF2EEBD7905B31B9B8 + 501867E7F4D1A8E9382D518E593F3EF9B6ACFD99E794F118E874479537D2A49E + 4D92B24E74DCF92E432F685C34715C4A978930A77B88F191BCF78BD8E200A172 + C67F82C60396C8C6936C3E05F848076C5EA6DF0A069F37861C50F078617A5853 + BFB1BCB47C12D1123AF7C45F08FC07BA15F09AFAAB3F5E56F6F5C0F1E06A61B9 + CF3FFF8E3571444E7D1EDF6704D216D9AE5721E3C5025410976B3CBF2D0127D9 + FC2CD7C049625DF675EA7DFBC2BED4DDE4CC8155AEC10CFDB0C131551665B1EE + 92BE724B988B1BCABE26C2C411872CD3AB2DB3C80B0124C626D7B36FAA4EB8AC + 4E6B5ADC002558D06BCEF116C36C969ED975322C860A44F505BAB03790C981A0 + ACB9DC6AD2AD754BB04B7FB6AEB0B4BE879C3D354CEDB75363C4103194FB95C5 + 61E956DDB11E3481EF1D7CF8803261F626CBB8A84268A99ED893516591D58882 + 52C660B5F62C71A531DE309BF988AB55B6199678EFF995C0C033F6D456BAA520 + 1C4614E367040A56586ED7AB0EFC308F7816A68A2DB329A0ABD7677790DA653F + DADA72D042228E21846F1E960DA288535981888088A39B11542FF3DC427F0511 + E1EAEA9F6D82AFA1C63454B612BF13F72644E6226CF659D655CAD4899C081226 + FD15D78F640266FCE98B51413A83C186E9DA57DB7F140B4AC579ED431AE999CB + 4E071DC69355791A70F1D6C265DA76BEB191F953CB1620C01DC15B61B2CC613E + CF1AD068B602B883AA91917BAA9D7197627F2919DD731CD4EB4CDF8216E6935E + 4BF9CD039C198B086A9B25754794C4DDD681EBE6971F351A2BCE406856ADEC7D + 4EB3C4E2F5B41A1D5F6025310380FBE31A5A5BE7ADB2C376B74953E7B254EF4A + 6204BE24172EBB6F56FCC7F462E493DB6D5B7584E56A27FB1E5F92A3114EC4C8 + 0AD73D04092B112F7D3E90A13B5C8E5902688BDE600F087E46C4C2163933EBF1 + C01BD0CBF69AD5F5B4DBBFF92E8A20FC490A9590CCE25A701EE7EDDFFA1FC216 + B3FE815776318DA25AC27698B91A5C3E609C19C7668ADA6307370D55438D0BA7 + 9DFFE878D53C7B423A133B5CB07ED26F8B9AC851FB5B459C759452175D3C33F5 + 56BE329B40FC817C1090631F7F96F979D0B551D47ECA8A9830C1E86F9C6B7213 + F88E3F830B80430936AAB43A9AB8C16AD62D8B12B4D388FC1205FD484AD342FE + D1AF22BF06CDA29E7430A0139572625101BCB4B4561D100825BF736A0762324B + B5D0B5B3457EB8E0BE0DFFC76A83B9CE9CF77B24B9D61EC26CBA940704B73788 + 00A12EED9F1060C1313B87308EF9FA6DB9F837035539201DBF78922BB02F29C1 + 1DE85A630EC1909BC34A0F5FEE98B16E1DA07C3A20557F8F2E8E093EF50E40CA + 86F79CA6BC33B2E546979C64AA605D1F80AF9C00FA34E85E0A84EC4DD5BA94F6 + 74DC37A83642FDC893AD878F8B920FA0C27C7F7B8407B3F49BF7545E967D43FE + 349C7556CA64BCEC581242B9D5BD7487B428B5BF5AE3671E31151E4E82B2363A + D779E798BB51809CC34F18739260A4D51FD822F64244C7A7289A0258DB139473 + EA6EF95886BE524F0C7B5D962AB5A0C918184851A298457A6749A4730A18F0E5 + 402D744482E7641764BD60E1BD84DBC37B8C4F3BF129FB0ED87E8CED8674383B + DDDCEBCA9359442AACDADF1124D5F625A0F7D2F5B6C19526EAA88EFB1F2339EC + F913AD97093010CDC6B248A675E9D76007C3502764184CA5DE92F50A373DC357 + BF1951873EF9AA48BD8D4634D1F42CFCCBD2E50F333254A653BF0DA5C2E98FE5 + 4D83F2976CE8454F5E0647FE31C8471C83EF2EDE0993A4C2C7DDC5857CEEDE38 + 090DEF8B1B047F63B6CFE24DF5C9F160C576DF3DA07F7B063BFC6EEC36DFAB2A + 15943FADB35EBAF381C8B7F33A2C9F07B51A4336587C99A1CBA86940D46585C4 + 561FCB2C44421F3914D34E09520E6CAD2F01087F3341455AD26DD020A402FC8D + 6497FE947A752E1A5F2FA0CE4AA86A4D091B3BA93829719CBC711D7E05714402 + 3FE3376E9BAC9A2637E9223D75BBB6D7811611AE5E61FBBAF304322676E0E265 + E414C9FF633A6F6AB762EAB5EF9211E11CE1A8BE0133322CF0EC678BA8DDE8D8 + 339C5B31B357829166F417F1BFDA17A58194FF101EF0BBCFBBD2F5E2E157D7F6 + E99BD8C50E52D813A36794FB5EBF1EA664CE03CA7080AD713E2B0E4BE0F305E7 + 88F71E1B4AB1E830D90140A41AD39E37CA9C9FFF962BF0DB4F640FED6B00732C + 276981DC5C8B4452E09AF1A4971D719C6848744B98C7D3858C634CCC26394371 + 936BCA04DD88FE616F753FEBEB990CFDD1121CC4BE280EF10190A6D4FA853A6A + 8343AE3531C42F5BBBB6A79E08E3FD172DFCCECD7817471F1BBA8801CBB2F00F + 5D1E6BE0E3F59DA6A3DB87F62561BEE6F79EAC27F66B183EE5FBC03BEA1FD7B0 + 2AB24FCDBB9931BE84570204734FD70B50AE4A2CACAA02E1B1F46B087836E524 + 75AA0DD10ADED5338D7AC2940C5BD79E815B8B9183CB4AC15646A42C8DB87EF1 + 012C26B3CC3723D8484267BEAD637FD6E9106B23DE6011AA61F84226A76762A3 + 5153915C751CB96CA855073C55E0712B766219D6D671DBA0F2B289BE365A0D56 + 07754C4E281BCD8B6BFB7AF59B2D2BF504C8EC416E1013E19438376E4551C8E4 + 70E3191D3A51F51513BD65DEFF3D20E2460D270583F2A7A77BBE2B4C2AFA9975 + 4D62450E4B59F1ACBF466DC0478A60B29B2288AC6F2959F20E5EB05E7EEEDC29 + 8E222438658670B8AF080C9B87C3377541FF5D0B8BB7552B498D5D7F07D0A249 + 49C87D077492D22CDD2B6BA280562055F28605B13834BA3CC0FEDDDB99B4BCF2 + BF75BB269F7070910D78B79E9A57C155C521A7AAD159BC0166608C3468AAFBA6 + E63F75B997C2579F2BAD5A6A4217696BF7974661C815B35397A6D39DB0F4656D + 14ECF091EB95F8A1E87F738580F5E363BC7781D61CDBD1E4AC8043E939D90638 + 20588F78B018F487387864E511D2A6AAC08927DE9A908778E5B38002F8CB12BF + 26C8D91BF9CC8F6145DC6488D51EEC42004EF553D485ED08F7FF88491D53C0D7 + 27587A5439501B4F0EA197F8BA1C06F2768921A1C2CBCF09DCACC91F4B9B4C27 + 497BD4AAC5E27176D173E1374DF6906566A26D9C3ABD14982F88A46690243D22 + 916E6FBFEA4F117ED6BE90F6F6173D9ABF09BC28A1DEDA60D52948413540B056 + FF2A7F16CE20681BBEED32DCAA1D0EF63495053AFC7EDB91B879E21ECB2CA535 + EE8873F37DCD14ABE711AC8B3A541CE399BCA23B49CC6EA82285154DD37FB5AC + 3F433F5EDB05B96B34F4E6B8A166DAAAB1DD4B090FFCF6409FD098DDCA8E4DAE + B01B17E7B684485258E76CEFE197E270994388D9B20A1245D3E330D19A054F16 + 4284B9F97AEA91B9F0C5CE0175562DCD4FBCE65B81A347525E6CAE0CF05507C4 + 9D27A796288E2A8A8990E0A3C1EAA93090521DE5C1EC4ED186BC548A72B32B47 + 247C0675CBC8E565C51F6D1E9396E43E94B6A50E7B1C9A6EE0183601317210E3 + 872A14B96B9EBCE002ACF2C812B9873F3EB4C1A17BEB140211F52E58586708C9 + 3456798B880DE98CB090D0B95518D2A3C915AA40C932B992EBAA3299CF1A4321 + 0DFF676398C066D40DA0E8610B09EF695BECDDD3EFDFD2F405FBC6D2946FAA1D + FEAFC6451BF8F17800E1A7E2AFEB26E403B42527172AE1B6EABF4E9F71337734 + DB46506F249695B4426716EDEECCBFB2C8D4E12B5A1DCF811B951D24ABC7615F + 2F50517A204FF561DF02AC57626D5F3164F2C91AFA9C68F42E54A31910095145 + 92ED62CFA4BE97DAC5AEAAB95B4E3B870318E54D2CBC7DA5592ECC3D69098F31 + FDCEA18AE1C0543DC6AD46DAD3AA8B8B24105DBCE5787E59CDD520E7B126AD9C + D833DAB12AEE359C128F7098F18AAED855FB2FC7E4192CB148ED6FAF4535A114 + 5F0E8CAB3555946F51BD368D53B5C36D89DB16E8F9F0FF7C17F2C12CD3CF0FD2 + A08664D9362ADC12954551332B756D96904F4525E32F7AEB6B40F9DC1D7B9710 + B9BFC3C0638C350EBB50F0117DD79BBD8D08258B8C68E1F20CA0E58276730EE3 + 9CF180E420CEC2B50BF263C8A911EE10B0AF041BF53CE1EF1ED4FE982652F3DD + A4AA4991355371ADD6FEF682D4284E35666C6DAD370319972B3CDE4E5B7FF509 + E776A8A53BA70E793A1FBF483FFF17075027ECCCDB219B002B3380E6295B16FB + 1B4C00DC9D046427658007317F5384ABFCBC22B1010D6D72491F6D19500E12FF + 17BF0BA045FD5FECAADEC575959F8F27C33F49CC7EC5DD94EEDC87A04728CC16 + 364818B36B37F9215C60FD08DF358FFE585EC7941C8D9E10034C0D630F1E3C85 + 058FCF4415C62B019202EAE8A71201D06C4B5D920636EC25A00808673F26928B + 204F27B0C46E568F3D3110D4F84F16FC1C6425D9090C90ECD1AC495F9AD3687B + 2A7EEBA95E52BAFA45923B73301E482D8533B014ED9E24F00107D81DA55DA561 + EC088F213407A532DC9FCF19782F1978A2FA2F99EF33840A135EC47203D15B20 + FC116D2F18C8EB4E83FD9BEE15244C2B13E257CD51E04483C384D4E395EF6534 + EBC6F46F12725BDEFC9CF980D7829286DA0743642EA04B5C6EEB82056C656530 + A43E1BB5A1FB7A3724497AB0ACCF706FEB5760231849372C79701CCB18F46D74 + A38BF3ECCE62E7935B6E4748AA5A72D37AE338CC0D60C2BB660CEE117C97EBCC + 0285BF458AEEE88B3226DA1C149E4C3E9FBF98184B06C08573C66E1AA06AF74E + 79D3FF4618259C561F3F6ABD92360E3C3067E838FE5BA6F9BCF311BB33513161 + 0E5C807D60049BA57E20BE9B13F64E8A2018DBE24E4F9DEC7DE65209AB3F99B4 + 7DC18D0B06B7CF8324370F14CF9F6DF97A2145F328264351F69FE6090D1113EE + 9304DD1DAF4C6780B7C2C268AEDB467D8E0365EC853C6D421A325F45118FFAD0 + 8D8C55592DF9426ED1AD169A726F6E4876A198FE55D42C8A862BD1DE546D351B + 73E9C44AB1EF1D45EC94281A405BDF524104C9E8966B5A094DA1324F14B6356C + AF3BDC4C91B2432ED55B5C9B11700DA0BABDD3E38EA3107E9902B71BBB3AF8E7 + 24C8AB94F1BB22226FF289F95F656F7CF1816DB8125D530DBC0D807F8273F33F + F23596BDF39C845C69EF86DB89C4D63B53C5B70D6AC79FB3E5BCE38B9BFE50FB + 243ACDD8E1F850A490152268FC00BF13DC5D1E6C15E0FCBA6673483C299F0C04 + 72BC8A608A330E4EE209CDF2A9EFA1F1AEEFB539B48B72AC46D63010F7473708 + ECA8E5C9CF01DF681BF2046D59A5065EE21460833482BE691D8A9607E30EB0F5 + 290B43832AC17FD5158BA30FE124CA0D565AFAD5E1B256B6E7B24FD2074F01A5 + DA777CFC8320FDBC48F759F3A51547D9571607A8EF4AF6404A8679B595024D5D + C3DE7E42DDCAFFF73D01329F6D6A7D147CB68A9390CA9F5B6EC2B2DC386FA4EF + E7436E102958E93F9BC0118CCEA3F67292A274FFB57DE374BBC411FBD32D259E + 1634D9AD99130BA90BDEBD605340421548BD2879577984001733CC74C367EA85 + 3F5AB5C12891326EDB4F4AF35D3807742EBD1F3724D41487DBAACEF8E0FA50C0 + 91FDB09DEBA8B6CFA45CD088B0662F5B48B906EF5E480876D61360AAE3B8C319 + 55AC2BCA1289ABB4DD4C6733237670CDF5097E5238DEBBA025BC20D432405818 + ED3495B733F7DDBB175A0D8AA733FE3FF62F9045FE4FF5CC79C5AFD405520DB7 + 2A6FC7F06F5CB18701219F9CC28C541DF35F16DB7D0822DAD18A20522A62B8EF + 2AB593DCA238823A43D085DA4E0AC2C2982A56A099159905B3296B102A795600 + 76BFB9B47270902444DDE012D170EF3EC640F6A0D13FD0DA8F6608E1157B81E9 + 8F110A2CEF515519D2F2B9121417599D58CF6C951BF9A2BEA466B55BEBAF6E2D + 415F39FB8E77D06043BC3BD5F210B7F88088A19219FE99C798A1A72EDF9CCF7C + 0A8B1AA929450E44561B181C9EF40E6AFF25DE38A85604C2B38F9AA5610764BA + 78E4A20F1D0282DE0B6990ECA359E9E5A3011B4A6800585AEB9FACE4613CE5AF + 608B318C421F882545D83F5525D5600F765C635184922BDF8640D084357BD8D8 + E128EB3A06BBF94ADABE1A35662F22DF72E5F041C4823B09D8429DBF28AABBA6 + B15C + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark + /CCDUEK+CMTT9 findfont /Encoding get + dup 38 /ampersand put + dup 40 /parenleft put + dup 41 /parenright put + dup 42 /asterisk put + dup 44 /comma put + dup 45 /hyphen put + dup 46 /period put + dup 51 /three put + dup 58 /colon put + dup 61 /equal put + dup 62 /greater put + dup 65 /A put + dup 69 /E put + dup 71 /G put + dup 76 /L put + dup 77 /M put + dup 78 /N put + dup 79 /O put + dup 80 /P put + dup 82 /R put + dup 83 /S put + dup 84 /T put + dup 86 /V put + dup 88 /X put + dup 89 /Y put + dup 90 /Z put + dup 91 /bracketleft put + dup 93 /bracketright put + dup 97 /a put + dup 98 /b put + dup 99 /c put + dup 100 /d put + dup 101 /e put + dup 102 /f put + dup 103 /g put + dup 105 /i put + dup 107 /k put + dup 108 /l put + dup 109 /m put + dup 110 /n put + dup 111 /o put + dup 112 /p put + dup 114 /r put + dup 115 /s put + dup 116 /t put + dup 117 /u put + dup 118 /v put + dup 119 /w put + dup 120 /x put + dup 121 /y put + dup 32 /.notdef put + pop + end + %%EndResource + + userdict /pdf_svglb get setglobal + [ 0 /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/ampersand/.notdef/parenleft/parenright + /asterisk/.notdef/comma/hyphen/period/.notdef + /.notdef/.notdef/.notdef/three/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/colon/.notdef + /.notdef/equal/greater/.notdef/.notdef/A + /.notdef/.notdef/.notdef/E/.notdef/G + /.notdef/.notdef/.notdef/.notdef/L/M + /N/O/P/.notdef/R/S + /T/.notdef/V/.notdef/X/Y + /Z/bracketleft/.notdef/bracketright/.notdef/.notdef + /.notdef/a/b/c/d/e + /f/g/.notdef/i/.notdef/k + /l/m/n/o/p/.notdef + /r/s/t/u/v/w + /x/y/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef + /N1196/CCDUEK+CMTT9 -1 TZG + userdict /pdf_svglb currentglobal put true setglobal + %%BeginResource: font SUUNHU+CMR6 + ct_CffDict begin + %!FontType1 + 16 dict begin + /FontInfo 15 dict dup begin + /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) def + /version (1.0) def + /FullName (CMR6) def + /FamilyName (Computer Modern) def + /Weight (Medium) def + /ItalicAngle 0 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + end def + /FontName /SUUNHU+CMR6 def + /Encoding 256 array + 0 1 255 {1 index exch /.notdef put} for + dup 0 /.notdef put + def + /PaintType 0 def + /FontType 1 def + /FontMatrix [0.001 0 0 0.001 0 0 ] def + /FontBBox { -20 -250 1193 750 } def + /XUID [6 5000789 ] def + /StrokeWidth 0 def + currentdict end + currentfile eexec A0B00ED5187D9C0F1ECDF51878C3AA5CAA3EC9EBBC6A5E + 2825687306A156DACC32FBF734087CDFC35B78DDA68032BCA38CA8E8A340AAA3 + 002A0E52D0B9162BC68AACFC0F14A1C933363A56EE460EB41CE8C2E9EDC509AB + 9E0462B9F619AD944F133AF072E5FD1625902963260181189070C40FB0D49A96 + 50D86FB0AA90098027455AC2354A299FC7BFC34B4F1162E5E9A3EFD80D6240B6 + 9378BB4F6F9C300E5EF7BC558969907B583EDD5DAF8C916767D08EB8CBACE45A + E97DE422B942588C7A9C988EA7DB9AFA8443B83DAA733B430DED23D044BC48DD + 41CD3329B44755813431C67F85476E93C50823709E63E403FA6806A47F546803 + 791F1C4A699B3876ACC3C1627197282846C56D0860C72CE09A0E9F15940F97C1 + D60E04432017A2F4A6AD17BBCB37B1FF1243DBB625457DC68963DE292DE32127 + E138AF6376B513BCDE1DCC3402C13F5D3B9D9F186DE2693F4A65C4C69D820B58 + BC5BDF244769E7B66135D12E786851BBA0409FA76D97B87B298047AD107A382D + B1D30C41C8893BD243E63B0D3B35EF5195D1C3B8E79136CFB5125ECF682FCB3D + 8B56CAC622F629C951F89D69EEFD03A591B6D9E0E69A4426EBBBCED25F07F333 + C44E8B1127B30F33E6ADE5E75818E77139C483997B705A2E4F8503DDD51019FB + EA06672B646498FCB31C86E38A58152EFECCCF2D2BBCD70C9025EFCC938227DF + EF54CE4733D7CEB749EDF48E142193CD62FE0B6920F3046F845C9D6674DBA25B + B7E7303E486A8FBD27900943AC31AC33C1743949F403E1F90112C539ECDF35F4 + CBFEEC471FAC0F4E457AF7751626DA31A317AE0A72BA4B3D27523E0408B9D1B7 + B01A6A91ABBE268155FCE47D86B5C7D60F54EB369EAD9AB0844F3228F9E50C71 + C60BB1F7604794CE28B1467EC838BF8FF598B67CC7D0F82DEE79671D9D2FA8EF + B9DBDB91D1BDAC55E45CE8579EE6CD8EE7477A91DA5C901F25225A7037C7A6E9 + B16C1C48F31CD69ACA4928D3B44188024A41D0CFA383E4CB0D554DC3DC09FB23 + D2E28218B9B79FED1FE3832215F5BCE62027ACA2078F268E240C2B1CF66A00CB + E8F69E83191C5C9B823669DADCF7F23271612F19CCB1EB0D86FEAB25D5EE8176 + CB1E44D558CDF3F61FC28EB6F9E75817CBF36610C843E75C7095DF365E8293BE + 9BBAEA7096D29B5D15E8A2CB1EDA3C9350A8443BD82A702313ACE31F06B8DF89 + C22676E4737CC655D3CC6F555C6E6C4AE928744FC9A89F1AE27BAE3F8096E6A0 + 04AA0027E37EB89E682DF636654322F1D60A62F44A24483BFCB7349186CDC274 + F0CE81234DE2996EFBC9EFE5A6A2233FB8BE22841FFC8F024BB02AF267B85235 + F0C75B5DE2D95AB39D18281494304D99E0CB081B1E37A3346C1383C1A340665A + EBFD552316DFC43FA5C6B98179E995FDEF03D19CE2FB4805D65BC638411055CF + 959DD3CC25D004E819252279A826BE128EA3CE5133909FC545639ADB7FEF9848 + 35C30463D478D960CD67CBEFA1004FD91479042A11042AD7DB0A7BA0B5F6979D + 4345A9E9AE0DD27491D6A2211E1012147F24F6CB28135C941AACCFC7BDEDA063 + B481A60F242547EAD9E233F0F91F78C5EB405756EB48D05BE59FFE6E2BBBBB44 + 162930D8DAC14CCCB2C48887424A9E4BA92899F900BE3604117DF81824F61C23 + DFFB7C903607459E1D48A610BE57328ED542A37E2916E8B6FC25831036F715F4 + 5805CBC9A08C924868326320A8E4EDF923A7E9ECFAAD5C9B087DDFB95A9558D4 + 2B0C65ADE0BE6D5175FFA18F17B4FC5B6127F7BACEA52F5150B3D27E837CF3CC + CB5370D4BB3BD002BE486F73E2BB5C01265C90A2EEB9A07EAABCAA80E46DCEB0 + D67E9074BCF540339E86B8B31436623E92C71BC673090F736B02D690B70CADB2 + 0FE0010AA1E2AD3B05D7009825AE0E97CFB8FA88E0BC6D5ED220D21DFFC254EA + 3F4A4B1A317B2CC53136E9AE3FAD56FD936B46E761D5623E50F2C06B6BCB7600 + E3BD8198ED75D0DD77CBCF5A92DF91E690FD55ACE96B295B3322D19A3C5F4E66 + 63A2B7C13ADBC2CCABF1B77742136649293806D4369BAA3345EE0EAECBE48F3C + 6A0919B02357F8F61FBD4ED548F9399C5B85DE508561F813EE3036C5A81D1028 + 6144BC243D9A3A59C9DA600EEEC4108962008FB72717804335F1B95C5BB25DE4 + 1A88B9EB7F08AF0806EB002F59097678BE37CFF0A73104761066A04E04C8877A + 6914A6E36577F163D8958A385CEC38722AADA2693FD92B363F1C7E2D147654BA + 1D7A443162EFEF6335CCE4864ECAE6F8B313F7711F34C9BA6648FE5F450C0A0D + F03B72AC2A2CFC37321ADD8925A3DBC5BE3B17EA358BD29E923C564D1D6A3A39 + 3F5CF55A11E3DB842FFBB0EFD06F4F69A5842DB8FC113C441B59D022AEB5001F + 3801C5B7BC684775F4C2937C4643D5474B3FDC36B2A43C1210E71EC992CEC266 + FC7844A5F21D38178F2C32D26D89D049E2DC16C99C572BD5B2326FCF9ADA9F08 + 9659C71C1167EA82BA0510733E1EA0E3C4FF743BD26704E563B7BE84E5C9FA7C + F250F3825CAA7ABEEE9FDB4B1DAD5C4E5910332B73A49BC042FA0A8721E85219 + FE4EA8149B15E11DCB5D9572FC1E40A306FB347A7EF3E8F0F379107C94B59BE7 + 3ECE71787BF8504955EF9FE52CD70C44DDA163B80257BE748C2B8EDD981A2FF6 + 4734C93E30B9C08A8530C1BC4B11CD85188DB46BFA9AF34F74C90FD8CD0FFC1E + 980B274EE0D994E76FD871C5EB435765B5E0C44FD3281CAF40AB7C8EF41C6F47 + 1EFA12016A8629FEBEC520AF876A1AF8B4063221B05F602EC35FF092EB849957 + 8A52DCDB40136AA83B5FD14C450C1D7D230DA811CE39267190587C2C188B77C2 + 28229A41097A174F85546B9D08160C1864ACC94CD38C797F4E592748D1849644 + 2F4EBECEA6D446821E26D953365D21FF4C678BAF4951153F9DF039FB112F388E + 4F5C213DF1206B74FE3B20062F3677635D0A39042CFEFE30D4770BB52E019D08 + DAB6CD59C6D9F0F0B464A79B93CD452FA7632D6220D5409E94556E740538A17C + 245722122F898CB4F6365CCDCA8AFA796724D2E878BA1C9DCDEE7364DBD6E137 + B33BE5B714E6F38A0A9DED0B180432BCE298DEBF6FA58A8D05F3D990B70D606D + 57DBF4AE03F7E81B529934A588074A82C64F964A5ECD7674A089D428C2E53025 + A9D14D94A621B202031F2A8CF29089ED3F4D11FE499099139C7BA46046E87FA8 + A763619AC860C40150F0AA9F6C5E8328607CEA408158791D764C0403F3480C86 + 26441602EDADFD0565E3C4958C8F6855D8978D234B820AB3B8A7BF0B3734F653 + 1ED80FEAB7AC282197168AE7766ED648A5EFD4B6AD87F4745140FF33F8723FBA + 49A68057F2F2B6BE018C40A3053FD1E558C7601CAB6D93AC1715834321A0FB8B + 235F90C1D8FE9FC49FA98A6882DFA9DEF139AECF711973FD8F96D0FE76CEEDF6 + D9913178BDC3EC650F478E820D9C0010DB991BEA7FB0C83C46C71B1F0D48006F + 8EDA4B7932AA7BC039A5EDE5D2453ECBEB1ECC85F07038661857F650BA4CACB6 + ECB19D5632FE720BBFCB37BB56CAF0DE21D77A9782A8BFE440D9B86853125E46 + D379DEC59A1465F43AC130510470C7ECD1CEBDA7CDC4235256E339C188176B75 + BF7F1D94998488831D40958BF5342DAD3AF1B338631DE2F59973B9A503FF9A7F + 3D0EC389AF892B528BAA63559B82EA2CAB5D7DF4EBE92E21961815EDF095AA28 + D252CFB13645CF54F429A4DE001B21DC13FC506433A6E28B15299120CC37987E + C53EF63547CFB29DF57CF813B44471016A7333928D2E8C30AF5F9B1CCE03B3E7 + EEFC9E25134582618FB59FCEB1F6A4186E4618B1CE70A1094C3148160FA9F49D + 92E4AC437EC14262623A0CE8E609CEB9ABDACDAC23C84312898D4193281C028D + 9A61E0DA67FAFCA4158B80ED5CA1F4CE54D7F54F4D0051652A + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark + /SUUNHU+CMR6 findfont /Encoding get + dup 48 /zero put + dup 49 /one put + dup 50 /two put + dup 51 /three put + dup 52 /four put + dup 53 /five put + dup 54 /six put + dup 55 /seven put + dup 56 /eight put + dup 57 /nine put + dup 32 /.notdef put + pop + end + %%EndResource + + userdict /pdf_svglb get setglobal + [ 0 /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /zero/one/two/three/four/five + /six/seven/eight/nine/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef + /N1153/SUUNHU+CMR6 -1 TZG + userdict /pdf_svglb currentglobal put true setglobal + %%BeginResource: font PXNHTP+CMTT12 + ct_CffDict begin + %!FontType1 + 16 dict begin + /FontInfo 15 dict dup begin + /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) def + /version (1.0) def + /FullName (CMTT12) def + /FamilyName (Computer Modern) def + /Weight (Medium) def + /ItalicAngle 0 def + /isFixedPitch true def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + end def + /FontName /PXNHTP+CMTT12 def + /Encoding 256 array + 0 1 255 {1 index exch /.notdef put} for + dup 0 /.notdef put + def + /PaintType 0 def + /FontType 1 def + /FontMatrix [0.001 0 0 0.001 0 0 ] def + /FontBBox { -1 -234 524 695 } def + /XUID [6 5000833 ] def + /StrokeWidth 0 def + currentdict end + currentfile eexec A0B00ED5187D9C0F1ECDF51878C3AA5CAA3EC9EBBC6A5E + 2825687306A156DACC32FBF734087CDFC35B78DDA68032BCA38CA8E8A340AAA3 + 002A0E52D0B9162BC68AACFC0F14A1C933363A56EE460EB41CE8C2E9EDC509AB + 9E0462B9F619AD944F133AF072E5FD1625902963260181189070C40FB0D49A96 + 50D86FB0AA90098027455AC2354A299FC7BFC34B4F1162E5E9A3EFD80D6240B6 + 9378BB4F6F9F5E3566166B9AD8C9BAF6E3E37AB8CAAB8DD9D30F8C99D2D9AA97 + 07C436D6E5A4EBA656E18210110C7DC97F3C1CA555AD538266E5C5714C4914D0 + 8CCEFFA12DEA9F758A20A5DC4EEF354CDEA2BE81A139614352970281E0477246 + D2FBFDE6E39B551D384BE3BF0575C2AF603D290976084CB27B4439FFC4BB543C + B1B0EAEFB1A7F9CF9B0B748270553152BED56E3C66AEB539B9A3091FE1F2C46C + A58E400256AEEB6982170B474ED4D0A170868B5AD7C1CC948F240E92462BA2B5 + 82BF9885149D0D0F4BF75EA36D98A16BBC7E3715B62F04D4773EE2B04F40E5D7 + 1F3E265AD436C546F39EF228027F9F5362155DD10DFFE806EE905B0F20CCE48F + 648A3384D753D8DD404AD39963C6D221BBF9F629A5BF778342B9EA29F41FD21C + 92DBE85C91D5B2772D878BFC76301960E56DAEA417DB867D28E30F872181D835 + 5EF3F59965BD14089023A22ADE47A4C17E433A36E1F8CC264A93E80618B6E739 + 172579CA628DEF64D526E4E1173FD50D8B934BF6FDC22572565F7A28766BF2DB + 8D9528679905545BE74398CF2E7DBCFCFE74C9FF565489B62AD973386A2B80E9 + B58ACBCA8212BDD84897AF56FD4EFCDDA24E770EC8F1E784702B4B8044B2F928 + 0737E596AFB9A2084BB513B96EFD7DC82951B6AF57404476720B969DEE5D7A70 + 28705194E484AF5ACBA923D9C809698A01BA8A5772EA074E9C1C949E62CE4C5A + EAE1CB485AC638115B6114F7D55489B3DBE9AE24F7903E6C690699FB538E3800 + BB5A332959A4638E307F90552ECC3EF0080AACD425F759FB888BD9E8CAF62720 + AA7725B7A6CA2479E9D0A21DBF8733D590FF07F33CB70A13C6314DC5B07AB033 + 847B6D838D3980370410F22E9C3A324D898C6215E4457B3A94A0A23D7C7BFF32 + 6B86077B506FF6D63A070F47E7D2BE04AC7DC99D47D407E0FE906990486B7594 + 3B09A9847541B99D7667B37010E988DC87AF46BB266240C28DF84B8C2EDE81F0 + E9FE0B0DAE30C9B309A09DABDA549DC88FAA2E9013580A59F0A73AFAC56C6CB2 + 8324A66F39170C981CE2466A6A8862CB12B9B48F306BFA96231EE01AEFF78DF5 + 72000B3F90FDED5C32D0841F2C3CC583A1C295118A1BAC537C506843DEADB05F + 1A394C66815B6E79DD2A8F46049A94AC2D82A0CEA0B401ADDC3A91207B50076F + E71DC9EB20D6C3CE71801044BF58DFAD5D6B0E34E05EEF478EBF7EC2D742329E + 721736F7FEBCA9590AFFF7200AC48A2D29324C143D4B0EF4F6B8D6FC2CF67740 + 13A0E3EDFAD86E2300DA355175AFD5495BC12DD955404C8D2B6AD08C9FC9A4AB + CE6156330E862BB574C8097F130F4E27D428883E57CB117E9943EC3A0BF702AA + 96A295324C9096690E60A90FCCC003DD82B9BE8791F9F07C69A041D9876D9510 + E9B8CFCDE5C2B47A49003AAC64018778FFFB98C76BF0C27B887C3E1EF096BF15 + 6670CDF6271DA5C595A006A08509CF5206DE43665E731950B7BA68FD4E91D88B + 13F78994397217004E8A6D5B84EB2741E7396399250E5CB51AE29F8FB1AE6B89 + 66FC191FBBDC3A0E312A727938BC6F98CCA1261573548C6279F061C802AF22F9 + 642CC4A2BE90CE21C8654A26CBB4A4AEBE87BF135029F2FDCB04AD24335017B9 + 0573038AA07A53011F8CA97D44458E67B19A36006B763329FEB5133E60159FCF + 6FD74CE8505706CAF6E3B7E706D7AC5FD9EF04D5B8E7716ED41CC337E4005E14 + 43D774FC23D062DC033639019B307F45116DAE4559E76A4A160745922A754732 + DC347EFD92EDD9E3CEF3AF978F57B32E0FB062D503C0C45BE6383C34BAC154B3 + 319BDD371E36B92BF8142901185E7EE3A43471F9C890AA3EDE58D26433695B32 + 1B2D19CAFCC232E4193C9EDC4E90383ECC4471CBC62EDA07671F8E1CDC277A63 + D32580B6DEFD669CFF753E29CE431C17F8F8929D2B032BB41B89B055357B9A3E + 02FE306F00BA3E3F946F2D0D1B5B37D2B3F46FB2A1C1B845276E39B2C4086723 + 04917DFB68EC1785875A60B3A1F37F4E1B203820A62EBD80810DE7D039F8B773 + 6791E6B4B90E2583D40ED5AF245C72B2E2E6F9207FDF33F08BB7D469ED48631F + 42C28B5F56BA983359A0CCBE3B232B7F2EDB8883450218F8CBBCCF47DC9CF543 + 8883619DB2AC0DA6174FF5EE5702D7D8FAA9F41187E6497B0592923951761207 + EF3B1FF8D019A86F1FE3EC8C2FF41AEDD656D196F0F44D9C285D51FE32D2BC96 + D20C11EB626037FCF570C1257E17E795AA20866959F198FFC0E02F05285513BA + 9D271352753424B85D7B8CF7EE07E25093CD8A85151E6AEC3A6E365F010B75DC + 7C7DB615AA27838755F6D604AA277BCB49161144F027CAF753113B0FDB3F0EA1 + BB1ABDC7CABD38D2AEEEF3C6A60EA0BCF56481C1CCC83557EB799F77B3F90B54 + 2B3324D03C216BDFE0C8C3E48D2C81BAD74CB070D296AE754A6A3C5A48E89213 + 99F28E3D9573F24A3EB9E31B17F0851F4E4F0EFD83DB4E19C44E3CEFA94AC384 + 24DC2FA53AA62016C40371503FF0B23C3B29FD2CDA2CE3EC243DC26D14F349EE + 27C2E364A0AAC9CCD5A9F2AE58A254F08C52F949F816D452CEF491E0237D1C3F + B219829FEC59A6D9F566ACE2F87FBB10FB103D817A24D39EE9E303EBE39BD7CE + 34377C41B635F2355E0C4643EBE5F358F0523C4BA8E6E515DEBA42A87D1F689D + 047664D1103CD3D785BF4771381B69E136CBF1715423EDBE5BD7AB39978B3B63 + 08B52E40448082E35613EB98C473C47604078742927FBFFD604475E3C5DBAC70 + B89D2A5E302421FC8EF80D6A6F17408EF87314D4E6865A46C8C95AED64474698 + 1B1B6A9DC4036429C84306F8ED17C50CD25C7751E8AF6970619F6A460359E821 + 7FEABBC2182FD832CAB37E8A53B7C6000E421600953952DD2AAB08D65E164C66 + 3C9A25679EE6906C07F0FAB123955C923755855E96F48951B0A3D45204956759 + 914072A1E8280C879D4A7FC3196B094143C671E0FC849DAAC46E532030941AB6 + 721E7775F59DA42C2B67AB740B90C81D5AF096F5EF45FAE886760D2529772936 + 57E18F2449C4D0E90B44AEE005A70E625871BD58953775F9B6C8B0AC81FC6B07 + B08162D64D51D303C29E1CCD2495ABEBE4D84E30866193D9CAAC36CAF859339F + 09752AF23672658CE735AB28596974258DC5E73FB59BC51F2EC3ED4DED0ECAF6 + 2C1DF9872B0D9767FE06EB802690A632A89D76E4F8593F25DAB6E9CB8333B052 + C0E69AD0DC5F6B6D95D15E676A6D1C953B0EDACE4124AEFD14C883B3EDFBC1CD + 2909053E8944484EBF6D5861CFF63439D71E1580076D2F9DD128B06DCBDEE320 + 1C51EC5094323D45988D72D039C6F48C5E39C4033D9C9335FAD2BEE858433A1B + 484F7322BD9064734D64F9B62FB674BF22D5B3053E315FA795860CE2FEFDBE33 + 65095FFB7505962773F370F1A82646AF61EB6450EC0F4C97A5314AA173B02988 + B5F431846184CE9A9E72011D59143739D1616FD67246758FD637D90CC66E151B + D67058B51AC8434C21C79F81748DE378FB9F81E33545698795B1B3B8CA946B20 + 8C443A4448946A810E74D731A80AC698B29EFD68B441FBA0DEE0CC0789CC197F + 82D40E4F0CEB6297C600B0206E075B54D30DA8612AC2D10AE043FB1E2D4E4AB8 + 673C326659FD0CDBF9085D921EFC33097ECBF490F1B184A7A2EAC35EEA56FE87 + 1D0B7770FABB520473CBA459329B2D0B0B9794E538334B6E054E25A8721F8925 + B6437E2418F2D6B244E73772C9A49435F6C3579C7029A17BABC3020576334FED + 96F747B56CFED42EDC3518559E0101E80DEDBB66DFF87DC23A267B66BDF87ECB + E9A5C38A697D5B0AA2ABD1502DB511ADE4D117E0A427D53FCA2706D57D98F50A + 1C4B048EEF7BCF368E6A6222520132F4CE7162DEFA0C5331383F05246ACA86D5 + 68000A1FE4B4F31DB8C5BA144DE79444A58BA0CF72A1273B170C88E52A2A5CD0 + F0133C7F2D65AD9936477C82E545EC1B589B2683E184C7618465256B771970FD + 44CE1665F3F2131052744A7E4FD6F9834FF64B6A46C85DD0DF15BC00477F25DF + 763023B3849B487D4C6472E01B0F1971CCC6A4D81272E8A9EF3928F6A866B245 + DDB93F658AC33F0D8ECABFD48375F69E6CBAE32C6C02678137E371E6F9863ACD + F76A562E36D598051CBE922B933B0835F051DE293188F7527C6EB74D8667DBE2 + A90E1BFC8F49D3DCB4352B29D8F720A9DC72B3D54C79AB361F7D153310FAAF77 + E5E2AC9CA2D1E52CEEE92ECE00B6898DDAA89F6154EEBC5EBFEC3372A1A4BD58 + 37802E329833919731412F0EA76F811B1C425DBDB700FF8BB628C9B59FD86850 + 3945A4B67FEF9E1FDD6C92FF3C3191CC2EF206F352AD65F0665A92C7AAB6B9DC + 539100E9BC57D2F9A509267103D0631DD2F1A655DD41E2A788001F8713844673 + 7F1363169481AF1059385624BAD8D4F4EC0643F42555A555DC4B80A25B18A79B + 314DAE0BF39E7B183AD051708B0881358F9661433B4B42DFB2DC39F4AE9AE2FF + 1F + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark + /PXNHTP+CMTT12 findfont /Encoding get + dup 45 /hyphen put + dup 67 /C put + dup 97 /a put + dup 99 /c put + dup 100 /d put + dup 101 /e put + dup 102 /f put + dup 105 /i put + dup 108 /l put + dup 109 /m put + dup 110 /n put + dup 111 /o put + dup 112 /p put + dup 114 /r put + dup 115 /s put + dup 116 /t put + dup 32 /.notdef put + pop + end + %%EndResource + + userdict /pdf_svglb get setglobal + [ 0 /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/hyphen/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/C/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/a/.notdef/c/d/e + /f/.notdef/.notdef/i/.notdef/.notdef + /l/m/n/o/p/.notdef + /r/s/t/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef + /N2097/PXNHTP+CMTT12 -1 TZG + %%IncludeResource Times-Roman + [/N3336/Times-Roman -1 TZ + %%IncludeResource Times-Roman + [/N3332/Times-Roman -1 TZ + userdict /pdf_svglb currentglobal put true setglobal + %%BeginResource: font JBHVFS+CMSY8 + ct_CffDict begin + %!FontType1 + 16 dict begin + /FontInfo 15 dict dup begin + /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) def + /version (1.0) def + /FullName (CMSY8) def + /FamilyName (Computer Modern) def + /Weight (Medium) def + /ItalicAngle -14.0350036 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + end def + /FontName /JBHVFS+CMSY8 def + /Encoding 256 array + 0 1 255 {1 index exch /.notdef put} for + dup 0 /.notdef put + def + /PaintType 0 def + /FontType 1 def + /FontMatrix [0.001 0 0 0.001 0 0 ] def + /FontBBox { -30 -955 1185 779 } def + /XUID [6 5000818 ] def + /StrokeWidth 0 def + currentdict end + currentfile eexec A0B00ED5187D9C0F1ECDF51878C3AA5CAA3EC8DC423323 + 00A152553EC9C9C51591C81BB5A2F58753878D92B1C73E948BB360F467A7D593 + 2446E52E22935D5D0316634839C917AE2BE363D6AE3760363F748EAAEAD9AB74 + D863835F45718D23FB3980D0C645610BF765847F4BC5CB03391BDC9D40A6A460 + ABF0D95BB6A176DB5088A1068A0DFDC266C25ADCBEF3E5472E03E0D29BC6801F + A2AEAD77E33C86969CB4B5CCF05DC3E38970E9B011FDB0554BB85546291DFDCD + FE57213631231CAFC2B3449A2C01AB5EA3D0960ED6C98F6E55F3FBB6556F1D37 + 0871F416467B9900F045715CB9DD32E1EB8308438BE84550A04548367644494B + 4387F9E462B40E206805C95CFA771115BA3A6E1EE800ECA489B17615B92759B5 + 610794A12A3B90BB80E603F94586A213CED766E41D43A214F6CC06E0F0500E63 + 6BF5F0A2D90838F113EC027670F054AF0000697BA31EF2E8852B8E1DD040FCF2 + FD80E1D12291CB2ABD46F6988F28624E06A0AB7BD9583F92A3A295E953FF58A2 + B9CD220B01E0B78526BA2C20A66417CCD9FCD6F9BBA9F25C512D18175329E69B + 1E20E83D071D45D9D908935047C1E7A5128AB7E089DE1E68233A0D6C558C9257 + 7B9DCE99C3EDCBCD9F9988C0B425A25C4449A9C9E818E00329789888C87893A9 + 85CDC8A1823942A58318E3289AF81A8EC9FE414FBA2B7AA7C4364AF5E54C3811 + 3E0365120542F0C3E627644F89B83C633E1981503C363026CA633A6A242F3756 + D430F4E8009ACF9B99083EE457D2A8AD9D2CF1C0744E84A3FF28BFCA8D6A5D82 + 48587B743FCF00D016D767CD25B4CD0A94C1A6DAF2DA6C21875B41988F7A16A1 + 2315DEB8FCF38C8B409A1532B0C8FF1B39FD58DB10D0743BA86A1D690848B1A7 + DA37FDFE40044FB483A352A2CB49CABE81CC7C2DFD99F2C06C46428CD3F50824 + 8472542A17141DB1C1DC66C22F5DD301B913100AD2DE9A1B3F1A8BB2266DB3F3 + 520B1E31FDF83BD33FF79039C5DD4EC3A6231332C7F5CAF105ED8A8ACE413D0B + BD449527FBFEBAC256F25FA60A9C5E1351B6E1F267137646EBD29FF7BB9CD826 + DEFA639B9AC5F53BFE16C879F699D2F5BA95AA1E2977977BD158E5FEE777DFF7 + F0B05CEFF78178A576A33C411C43E80AA88F335B390108A752974DFBF97E8110 + 1B457FE5E74D6E6D4957F08FEBEAEEFF38447AADF4D3D562BDF20C1B9EFAF741 + 8AC5957D55D0F6768EF528D713C58AF42A1222965E2FA5AD69C0429B352F8625 + 3084E5BED589F7BD2C935984CED4F0E625A45BE3461B5DEC8F57EC5806E98D7F + 8633BEEE476E18121AF06BFE5B2715F456B5C46225FB9351C428F5F0FA925C8F + 4CC05D8099AAAFA94F71AD2DA1192F6A89B46651BC5F0D3D6F3D304FE95120DF + 8372D11E8B807D29534C537A10D410946B9C3B06B493D93B40207F9443F2677A + 9B46205FC4477851BD2AF3AC6F7889BEF712A0CE6E3A937D87D71A727FC39E32 + D39753ECDE933895202EAF87F733BAD2F2FE549D4EA4AF01F101162BF4A237D6 + 955FC7A5ABEF62EF815430C36B44F4BB5D5E0AEDB24587A21BF6C23F87780E25 + 5C7D9D11F9F84D5C0B5FF7E3794252364453A5E82E23AE19B1335B88F263476B + E850B61A51484A2416D2BED66E3636BFF489735078E280B25685F075C91E39B0 + 874B7B663D5BC30F3382FC04A77E5EE69316F9745A1D1E1BEA0D86ABA431CCFE + 90F81B48CE0486F3874A5CAB8DD13F5B5FB0DF11B0E5B1F8A51D5503547696A6 + A47DB5DDE07C25CEEC4C3102149A1916B0673749EE36854B369948D2FF9923B7 + 2AC86D360338D5090969941CCE8B052C5189399E98B78038C5C94D0E797D0C8D + 6582D1044953A79320BD3856F763F39CDAEEE20E039A0F9C5FB56FC227EC69E3 + 468CA54288DDFB32F7846C662BDDDE1FFA86A7F1E1B94D3F3228E6178DBCEFFE + 55C216AEA6537EF5D49D25E88FB9570D55AD2DC1CF929D0F5028518700CA2C35 + DF988BF39F2980F05FF760ED1EF996DA342D1971C72AE95898D7252B6127BB5D + 10B5DE41C2DAC39B2774495118167125D2188E1E8C965C2D31CDB64E4B4A4F66 + 4E32CE45327479E297593D3B01CDC70BB18DA074AEA6E43C5A43557F601D6AC0 + CC56C44D1BD6ABE0D8510921173DEADA4FAA810FA0C7D24FB5A46BFCEB5DC059 + 64291C2331B4D9EE8CD3C8B6B2D91C2E3B8A86DDF2385F3D6A3E418AF57648AB + 16924FDA232CD8F4946F46BA822507638245776CA39BDE0E94E546CC3CE0C2E8 + B7F29948DDF6C16B1278E4EDA5BC5C51F9003AC436900B65D24F4CE892F4D051 + CCA4FEAB7D338F9061F99F19B2592958B9CAF5E9C28CAE67D5F0B0FEDD5B4129 + 7911C9EB6D5C6DBCF6506723C04E722DE64350D9CAC209964ACB72DA9AE484D0 + 5B8711F1532C10BBA240B8D0D21694709C2273188E1DB5AF3D1A7962EC684224 + 20EAFB8A7F9B87C9F7E409D9004263468D4AACF958BAA724A483DFF1E70A9E71 + CF8B13C0949DED6F3ADDF7B5FF144DD54FBB08D45CB261FDC848B112122E93B7 + 9A2941377673B84E8003CAEF3A19405F9E16A4449CAA712D9D806A85F8F96A64 + 0128F1CFC6408A40776995B0BA773266ADCD5DFA0A82C25335BB79BE22E2B841 + 6226CF1D59F05EF6BCDDF5BD06F012239282AFC4385371EC47BF62D7AF615847 + 769A0E667CCE978809B398F6538B414892621CFBD24F98B0A5645D8222763069 + AEB005975A609035A7771F4E1B4A85B6CF9F5B259955FDF494AF94198B03A121 + 0AFF3931B6111D21FE2F1A8735120B25BEC99E1F8E78D866C7728F083B429A5F + 46AA5AE76FD01A13DA07B6A8BE592BD2D6145A1FBF7D186241FFF39C2013CA7D + F2CA5E7D7719406C3C81FE38BAA948048D27E05B31DA22A1FDAAD7EF7EBA26A3 + 38F5B001DC184BDE733DD6CF3AE3E09CBEE534E70C17A725BE4530EAA7F8BA00 + F5613361EB6E70F8751AAC877B3980BD52234954E1CECDC781082E3E6CFBF37A + 1F516D287E1DA7EA12EA5327AB03D94B826257651F6B1FAF67422E025470B536 + 2121B07AC66B39A191DDBEF4BFA21353A851112A2F5A4096A13B078333D4C5E4 + 515555E2F98A9810920D7992E17887CA933DE40946ED068CA1BC97D30D6DBDB3 + 816DCBB42DB363964401089D00C08B0211FF51256FBDDBA7660D86C498110F9B + 9F93AD8205E13CD15546061AD5F05F3EA7F0039CE8E9615ABD1463AA6881A5B2 + BB54C47CC4DD367936BDD1666F0B54A439FCB40EBF9BF98C34BE2556AD32E836 + 5248A25A70F726B4B67465810FAFC33B0B101F57443E84A4CBB91BC81AB88251 + F3E36A1A5F095C3C0499AC650DDA7A386A9FF26FAEF0F7B21632B8B0A8FF7144 + 3A20274DAD48CD97D194FAE801564BE6F6A7EDE21B6AE8A193C58240E4949218 + 0685DED31120B159579211EB3FC3F07FAC1F39CAC97685E411048147197EA2D1 + 68463D34BF067687D331A4280FFC5C74D7C4B75DA71D851FDEA310159821FAC0 + 5F81381C304FD1128EE8A389D92142D2C7586E543CE32517A1087EE17C176BC1 + 94BC0C535B1D51917219A81B4D01CE64F918862F4D6C8C98AB06A827C5D7203B + 83E5843195F64F38C3BAD1AE03C8E433BC34411F4B68A2407C471DBEEDAB9FD8 + 0960CBC87C99E992C32D371F273FF3428FBD5BB220F355B3F6824B4107071883 + 83627BF8917F4E3DAF079F7B839F7056A24AA4D966C040161A3C605DFA77314A + A500DA4A763F8A5BD4E2D03EB2B886A0BEED400DEB50058AA545DA56F3AA480F + CFB970DC8DFE5DB572007E30A3F8A1259AF30A4F7A2DBE172993968F08397612 + 53F479C9AF92A24329A715228460AD590AF0A746149ACE51EE4FEBE8A27726C0 + AA37FFD92DF04471B91120C9DB63241BD5 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark + /JBHVFS+CMSY8 findfont /Encoding get + dup 0 /minus put + dup 3 /asteriskmath put + dup 48 /prime put + dup 50 /element put + dup 54 /negationslash put + dup 56 /universal put + dup 94 /logicaland put + dup 102 /braceleft put + dup 103 /braceright put + dup 104 /angbracketleft put + dup 105 /angbracketright put + dup 106 /bar put + dup 110 /backslash put + dup 32 /.notdef put + pop + end + %%EndResource + + userdict /pdf_svglb get setglobal + [ 0 /minus/.notdef/.notdef/asteriskmath/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /prime/.notdef/element/.notdef/.notdef/.notdef + /negationslash/.notdef/universal/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/logicaland/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /braceleft/braceright/angbracketleft/angbracketright/bar/.notdef + /.notdef/.notdef/backslash/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef + /N1666/JBHVFS+CMSY8 -1 TZG + %%IncludeResource Times-Roman + [/N3265/Times-Roman -1 TZ + userdict /pdf_svglb currentglobal put true setglobal + %%BeginResource: font GCEYUG+CMTI9 + ct_CffDict begin + %!FontType1 + 16 dict begin + /FontInfo 15 dict dup begin + /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) def + /version (1.0) def + /FullName (CMTI9) def + /FamilyName (Computer Modern) def + /Weight (Medium) def + /ItalicAngle -14.0400085 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + end def + /FontName /GCEYUG+CMTI9 def + /Encoding 256 array + 0 1 255 {1 index exch /.notdef put} for + dup 0 /.notdef put + def + /PaintType 0 def + /FontType 1 def + /FontMatrix [0.001 0 0 0.001 0 0 ] def + /FontBBox { -35 -250 1148 750 } def + /XUID [6 5000827 ] def + /StrokeWidth 0 def + currentdict end + currentfile eexec A0B00ED5187D9C0F1ECDF51878C3AA5CAA3EC8DC423323 + 00A152553EC9C9C51591C81BB5A2F58753878D92B1C73E948BB360F467A7D593 + 2446E52E22935D5D0316634839C917AE2BE363D6AE3760363F748EAAEAD9AB74 + D863835F45718D23FB3980D0C645610BF765847F4BC5CB03391BDC9D40A6A460 + ABF0D95BB6A176DB5088A1068A0DFDC266C25ADCBEF3E5472E03E0D29BC6801F + A2AEAD77E33C80C0DC39DD6133A821B832A2E5715CD8DD3C7DDBB291E1AB3383 + B17843C5BAEF5D71763E26B19C8252D3EA366C655038AB9008F124ED082F3EC8 + 84C1DD565748E1346AD01F3AC5FC60890744B26671340478705A3CBD1E1E91E3 + 7E586E4F40C9FF465BAD7F26B98C38EEF7D5F9D473C542B553488F3AA704C184 + 8CC9DF2E01A543446767F347CA7C0DAE94688D9D4FCB233B8D4A3553522C6C4E + 0977E797203E63199C5663218F80A80D13B4DE0ECB7972141C25F77A45247FEB + 7C1586A452E5C8E2D93FA796237EF2C450D3DB6524F3695950EB25612E942DB6 + 62DEDC1C9A8F7A526095469D582D5DB073024D0C38A87B721D65CF0A6BA7F34C + DCA8BA0938D21E8DF2FDCC17967EBFA0E1ABF0628135C1163A108C734F378C4E + 0A0D712FC58F69216351EEB857F61763B774E483B83A3AF681DF02140335C48D + 9A4AEEB0454F07EA11F3B97B1BB5D1184B1ABA0D660E0184A9F9B161E36D77F4 + C75BDC8C76A8A84E4CB653BF0C5C81191EBD70E65222066E68850CB20D020976 + 038EAF1A386D3B13D7BF4D0EA34F1CEC13B5E98B922FFAFB7E0CE39996C20323 + 20541A4C2C638C4D260803A08E9CEA52FE2A465C85973F6000C53AFED18F6E8D + F505C6C9B55E5F77905768564D8AA5ABA7855143ADB158FABECBDAFE39D42CB4 + 651229A369131E4B228F8306FB2A4056EFCE6526D237D3E84582D1D6E25AEA83 + C971458EF0D2BACD751B0C48C1C8042D6FBBDFD793B9E0CE30F1F9D645E99C85 + F7ACEBE4FE457AF3EB201F494EAB53E32B6B080F91ADA3740FFE4506E83813CD + 462D3147D843C6957049A8D4A5A84DF5A6D7A7A7CCE842E9D6E483493DABD0B9 + A6EF456DFB1E5784CC63452F680E016BABD98DE96589380BD2726E009C4C7A7B + 1A9573CC39E943517C181A50EC3C6F60C7D735FE0736FA68BD375F9CA6E7A286 + 1736B098E15C3BB7A46BFE6B35AD9A33540BF4476F8937409FC21E95827965CD + 3AFE5A38F7BD80BAD36603B9141BBF4788F8FD09F28ECED78116C230D96121A1 + EAD35032A936B01983BAE91593772F8C7FA5BCF1AABDE7D453E48E9C5126EE7A + 04B3BF700B9AE6D41A7228122783CDA81681B89042B3CE277DD7249E66DAE292 + 8F599AC13F2C4C43EBDAA78A525D95260B340AAA2B1E47F8248B8ACF7D7AA7CE + 606D367B107C2FCB45388131F71B205A46236435B7744445324D601DFA62B52E + F06DC0BEF966D30E8832FCF216E0FDADEB5DEBE731699E1A08B1560E660E9443 + F8D03A9CB46D638A5098E65922B9AC31CD7FC22881A77607B04A22CF87B8AFE1 + D346306E283332A329FCC420555428A0922D65905090AC4F4E9C0469E2764AD9 + 2F78A422FF85C9CEB65D191FF91D687F2238B2FCAA157D1CF84BEFCA6ECBD6F7 + 65A6B0E9DC2A83C5F47A8BEFE811CFE1B60915A08D445A1D203F00A2C7EF82D9 + 49F484B4E8FE630D787D7CB45E8F5CD1E816D4F94618C84330AD73F29F334EBF + 2B9F4AD6ADC3147703C13C7DB20D0A101BDB33CD547875CE431D3E675D44A423 + 0AB5479715BD66DBDB5E2156BEDAE363E4BA14063742AD2969F08421974681F9 + F2155166EA0C0A8500EB58DC58FF3A7342EA9E58CAC6DB560CB7214F53A4C95D + 1C186C909D34F329B3EA5442AD4FC51170EB86EFF4EEC6171B3D9D07850D864C + BEDA5EFF794E0A9624C070478A973E6B19E29300B60821E677DC519EB5379365 + A322C725799236F90BE35A70D2627F93BB722B5A20B564405C955459CDFFC1A6 + ABB564F34C0528072E38C66497BF5F970E70D15A19B73E1237A3FBFAD9667FEB + 49E48B0B89AB89958FF728443E6317C2557820EAD8FA533009B83854559216C5 + 2A05C95EC814F98929B446875B7B1BEA411A87E52CA6336D6106501DE69EF623 + 94CA425725BDC845CF585DE09D692CB3D9AD979E6764B668F4731CAFDE1BAEC1 + 03D777DE2C28FC384BAB3762F00B37D73C0D4C39A25CFF06CD5CF0D4E3F760E0 + C41F59BAC77A6A47EC0C3DB043971162211E73755323EBA2C406F5D21BCAE6FD + 19E70241BC323F47773C38ABC45A6FBE22EEB535E18EDCD1DF37921D3F98DF94 + 08B188D9B76EED55040888F1E0A7E8A83995DBEFE9B6939F911F3FDCD107C1C4 + EB18EFDC39A1921095FB046F8C4E326FF35C8B3F69C37C8BD33A9927403D0B2C + 8CC00D26F2C46E067156388022AF88FCF9694E7DB6ED38124071E85D7C139F8A + 44E10CE2DD1E63B34FEB6492ECE1BD9C8F2FD49D319CB5B90530BCEE2E44E991 + 13E2310D2FA91DFA433721A82FE2709BC4DADC15D52004BA28FD095AE0E624AF + 4520DECEA96BC5D802B5CFBA000FACF652433DA873B91B8956AFE30D07F56525 + C7423146E1177FA332E6EB17B715638180DD9A85C218DD0DD6CB9813D59EE2DD + 161A101AF22358A8DA38AFBCE1183FA5E7FCDA89881BADABCD318D5A266E5879 + 3961B7B71A89B1664EE424B652ED6B56AC77418F4DD74D4E574DB70157C0D1AD + 9C29950F8E93C5A08ED7B95F32F1BE902448DA7DFE8ECBF66CB183CD10C67357 + 3966CDDF268C8DDC44781031FC332861BCD7D6737B9879870B668D940C5E2755 + AF5718746CC46DACA9EC6CC69BE0BF5504733C9C51FB5895C9B52DB8C91CDA51 + 6219E3C4E062765A5209F98DD94CB78ABC2985FC4A9A053660A7E9CBE57DED47 + AB3FCBDF4FA17EB132A10F2694247753B4D5893748E56BBA5B83EA87489CE9CF + 3E2B9A8302FF336A82FAEBD4DA10A251E366B35606CC861175CBA82C55A7EB00 + 47339D7D756889033C772B04F60BD1A42EC9B81977892F99A02A5EA3B65EFF5E + C9E0F3C5B093DAC6AE8F52AD6F58479AD49FDD6DE5F58BC85ACD21A1EA67E2AC + 5B3A4EF6F60F67031B4D0AA4CD0F02FC752DB91854502F6EB177F7DB3C132136 + 07DD76A9C69B903509F83486D0EE49775319256C8E9C01DD6F179E3831C66282 + 2EE46FACF733A481EFD7E114F66D80BAE116C0F1DB0F7EAE42299FCF3D941942 + 4A33060A2B44EC4882E293DB694F995B81EB55AFD8D983541D5C18BCA3BB1DE8 + AC971C6183702A2CD859EE209EE8E767AC84DCCB9CB830F3ECAA2D12FA9BD1E3 + F0D78CA87CC98DE53F11229D3FB526AFA04FF51A0054419CB94737DE607F2045 + CF0177239C8C4B6AA4C3A46AEB88816337DF6136E9A938AD31B623E4DD73D1C0 + 15D74AB311471F87967CF35BA0AC67A5AE35DE241A1C04B8ED6FE26ACAC56441 + 5B22388E7E4553A8295B170BD16BECB0B4A3FBC8A2CEA10E7DD96C82E1D1C989 + 21225835D557B8C86787988E06B173CB6B7415A160D72195B10068A625E1A7C9 + FE64A7D9C3BBDF584885C89A05A406A5F3D4D72DE99936378A9417AD2E8EB0E1 + D5F5E31567F8CF9DEB915E0D536A27BC4A274368A7E56099B254A809E0E2D950 + 580A403A10E4E1C2963F4641D3E59C138FE13DAA0ADA3A4C3075BFC7CEEB80D1 + 106D4BE8B690ADC85FBC9E26720914CA13CD84E4A36B602B5D898479BA9977F3 + 5A31E63C8F9FB341D04A333B105F2F23EF60B7266186B4B8862EE6A0F5216B12 + 913FB9B6232DF0784915E17B809D845CB865ACAA8159B7AF894798BB4A990D21 + DF7D2ED4A72FB479CAEB8172CD8C8ED4077B73B9731894ADEB8474E2FC1419BA + B3DA338FB4138D8875C4291299EFADB4D6FD0007B8F095BE2691F5DE6AC50D34 + 954C900E33EB8C87B5AF93F184E925FA4654E3140842461E8834DA8CC2278A71 + B6BD5987117B57FBB3C8EC2D38E3E6A0BE84BAFFCEF08A4C3BBEAABD68033098 + C223182DBA9A94805DEBBC5FEBE247A82E8146CF34061626AA8AFD0E4F69942D + 02D8DA15832F4DD53D887239F4694AE80D56FB77F287A5ED08EE92264CFBF24A + 68D03D6200A791BDD7A703F81FB1B1F412D4E86001CCCADA69E520DB05E9DF90 + 84B0DC5289EE7741E008C72DC51DAF5B741B6635BBD47A6B7B8D8AB8825A61FB + 113BA1BD4871D1CD63F65A6F0A07A140179F88448346FD9D457B1C2659ACBC06 + 6FF43A9BE799B9BC3E923818281D4E4D763CE95D6DFCAADD2E3EC76FCABE588C + 367E6FA97ADD01833A02299AB264AFC6043C5B42BC340EA3685B063B50ED3EF4 + 658153164967E676AFD7CDDF4AD2BF0DE72CBD3B7D7E0F5F53887CB785240E34 + 7DCCC6C225AA59B19CB0A5B6B4CDC0458A70AAADFAA0A1DCE72EA71C59FF3211 + CE8584BBB3507022BE10CB1B69CF8E8225BCCFB8CF267D97F158A7F1FCC2F6DF + 8EE2BD2BE8A05992223C93AADC5E846DBF82EDD727DB8709CBAA480A0F15938E + C286817B82FC8D276954F3944A903C30D72BD11D42207F1B06F3524111948E25 + 1435EF38FF6C36D33515CD93982536CF6CDB838061CDA4DFF8B4C51D941C7A18 + BA5641EA7D693EC6F5C4BA48845315833D2B38DA53DF54A33A94B53CB1A9EDE8 + C376ECB8F10E462D764036F3BFFD183F01DE38DAFE40888DDF0AB0635031FCD5 + 0D747CEE569441506778FA7598473F9EACD34F74BEA894C7A3D761F1962D4461 + 8AEC10FEDF005E357954D1B582200498833F214B0E3B43CA30403042CDBE2BEE + 08BDC177EF2DA1390A8F129363F28243BDE9B8CE52FAFBD9C846D17F71455001 + DD9CD5210937979ED04800F29030A865F20C70FDFE8379E9AAADD666A0F5E0FD + F497A00E8492C3F724B5CF697F4626522C960C51489E8AFB4E294773C249BC27 + 77DFA591ECED52935EA6981C40DE2089513ED0D56B08ADF6BFF0C813404530B0 + DDEB2678A4B5993A716C37FEC01295AFA7234E5E16FBB3472EFA4E4CBEB09F84 + 77A4F6B2BE9843E2C440A4E536B03BCC594D0AEF2A91BCB547C1F0936BB9BFC4 + 904F32F13E368218620155A3446672C54B07296F976606EAAFBC692CD7D14BFF + 2607FAA9F9BD9116FAF166A36A2F60A35B96BF5B21E78001E7DAAA361A80C0C5 + 9DEF12B40C23302F66DC5D800E4BAD7C9FB95749F7C25C758903316A5D1409ED + D2115EAFE1EB85F39802B3D7EA67D74207FADDC3DBEC5A9A4A612340E5C2B448 + 6FD9F5D344270B3A2764D6A767B512C915E15F57BF9164A61916FBFB37F9A750 + 1152E88AF4DF93083719A3F2CB50A09A6A3D5A0712422AC68372B40771CAD1E2 + 26FAB7EB3B86484AD3285253EF9872149090A10CCBBB033E7D6BB1891E731501 + 200AAD5F5DD46078A4EC640B4E4AD802DD8A3C532927D17487EF45A706620AA5 + 2052011725FF9B087A4E3C3CD9BD4BFC7742D5B5DB9E41697608D7D58300A79C + 026337B766A50B51E6A247F374872DE1694A721E70E92C2AFE85A731AE226208 + 51419EE7219A0CFC75913773169941CAFF1896DB7AC68A198E42255DBDEA7457 + 442FF2D5DEF0B19E1AEDE0DF19E7EC7FEBBFDCD5FF84E45286C2C748CF82E9F8 + 2E9662D8B503AD43B8D41CE24FAB42F0082FD0D69E811D63DA347324292A6E1C + BA34C594DD3753ED596277BF3175FF432EEBCA667528D772DF09F8139386D345 + 00205357572505F6FF06ADFD4DD7A182CFF927C200AC7E59BABECACD86B59454 + 52347A131582C262C0B3B77AED49BA73D878877E03238AE6D332345D89A01146 + 4A4DD61756FCCDFF5A33343DB144B48AC52B0AA339E9F76283BB035E93A14DE2 + FDD0C305138BC958F8E18EC88E61B8090C43CAB07A1D54BD9768A03257D6228F + 6889EF3245BC7F0D0A808545940EEA2D2F5782D87122BD3E089D60BCD76AEB57 + B889788ED6D604C82002FD89B39D5C7668076186BFBBE356B85DF7FA0192FA34 + 49A5A70215A0687612DE2FCFEEDCB9B00E90886D2FF7B237568DC47C943FB6DC + 05203103EC038E39D5D5A9BB443E28BCD29EE43C7C393330E34A406963B2CB11 + 7211E179FBD5C07EB36F8FEDC3D6DCE59B8D87E4B84C79EFFE292B5D11F06921 + 28EB23FB7EA75CFA8CF39E9E9CD771146455649AF4B6711852F9632110CD37A3 + 78D2C660D9EE470A55DDF71C38B90A612BD375ED5128099C2F9A8400CADCDF01 + C8921BD58CF33C340129EB6F0D27D8991F2116F2E954CF470A2D62D362F01425 + D0C8ABE9DD63A35542BFF62EED5CB63131878DE6B3657B1E9C33C6913B42E356 + F5ACF08D67658C9CBB870ED9F149D46A7F9D00BB9C5927F2A2FA791BD427F515 + 49C05535351992506E457ADA4A831B3614EDB5E870EF6A39CCEE055D47ADA3A0 + E190C59861612051E15CA310F896374933AB3591583530B647C16FB8F2B237C6 + 0BFA65541F8CFB90A9FE01BFA86F0B2BF1FA5DD566A847FE3DE0D2DBB4EB6E90 + C0C578E6C2DB69022FBA37C2E8B65B060BF265FDF5FB3BE6414D38CD877EBD6D + 433F2F4F564AC1D8598564EE1D8F383F3552A8E22273AC5688C454743D6338D5 + 3DB00F428A8230483F3A40DB11498AAE05DEE18D21460DCAA952DD16D026761A + 3D6A6578A526AA741DAEE1E329ACCFDC4DD43C09419D227F70A5A81D47A909A8 + AB32C52EBB47FD39E56E8D82D4A013ABD7D0FCE1041B4CA77FBDE42E27B1358B + BFA12DAD628EBE240E29CC305CE7FB058ED3DBA32232F3D59F4CB13C5E55B8C8 + 1BC79D5A5A743E0ACF7EAE1F686B593805DBD98C65F2121E4D3B500A759F27A7 + 2D5F85452915C58A6E841716A10A826F61F7AC84882241E469D45A9AE3F7069C + 9A24A3E54F15BFF772A9C9071D35AAB5270AD7B15851B3FCC8746E50E4E6295D + 2546BE3558CE9B840C99450DE029A3E82051F26EF4AC187FEE3F64338C557946 + E288232DA9CF187BD91D2E8763314A300344A5500BE99F9BBE9F7CE38EE0B97D + 46262730E4EC39250D6867BF2BF95A07D27CCC179F36684948BF5603833B3795 + 9B1996FD962BEAF3134ED56149B08121D68EFAF2BD958086538CA8FC18B05564 + 062622FE5FD86983BC927138E870A9C1A321E69A88F74875DE2D89E31DEE37DC + 5DB956E2FEDBC4D5D06B8A78E42D07F6F80FF4FD3A3306EF94E75CE140767A07 + 86FC5505AABD8AA05D149030753CC4A24D42B4B04EA7D936E2C0DDE74184F81A + CA1FC770C7CDA4F92BC2503F238D0EF6B45CE4CDA80BA71CF3A058E2E9F8B222 + 1215842E586BE79EB054BB3E7B67FDF17FE93DA30A61AFC450632F54BD4FB0FB + 9B4C83EEED259B0606C7B1EA2799B363438C6720A3D2C278385A429E60544125 + 3CA7ED15F3E1B291A48FE896BA934B714B33564C1148EF1E1CC0516AAAD094E9 + C41545F33712676B65184FEDF0729C53475D88BBAC69A4D0C0445F15F2096880 + C9534F2F4984CD4CC9A621BDFCE164675AF2E858C8C0B4DD128A100FC637616F + 37024D8C9EEAFC41F081908B09BB1529A2F9ED1706196C96ACC725DFF133F74E + 7F7570D2423B68D18C135F4ACDC38B1F1EDE14BF24F167B8C4FB7BD69D0C5200 + 4B3EF0EEA7AD121C14FD8AE20A379043A410D9AE65DA438D1CC7FDF760E6B9CB + 03C28AF19DCFC43F9A2DC48D95AF498E28468E2E910B18C11B6F4641EF4981CA + FE092F0B6FB039D693E726AF68FB7995074AE99E5625E4031FE06FA6CCD6DFBF + 5A7206B2505B140C67767D0487AE294BD62B09D3EA2FDD414C129E466F6936A4 + 9B176F292F94CACA68E979BE8231924A5F846CD507848F45D6E08C9004AE94BE + B0347CDE9EF2310D94AEB6EF929C0D8C413C21E195C50BB66DA96D42376BE08B + 9688C5212CB21097EEC37AFE49FD4A1C0EC9EA4742A37D70EDF23DF5CFD4E7FF + F8F2B1957B1CEAFACBF8674C00F420826885F10C1E10906FD2B99BABE9F40CCE + ACB4765A65AA047FB5F0999EEF8E042E8EA9F0ABB734B36FB385EEC6ACB6E086 + 88486BF4FE7C621BA963412DCEAAF330DC0819FBF5298E5E4333F22443FD418B + F8F773F3C2934CE68D47B7A37301B68D857AD6C71942D3EDF36491F7E5E276C7 + 585E6B122AA5A44ED8B97CF07D7D246D4973CE80201DDE0E05E623336FD0E700 + DB5F9604BE111E8ECBDED53DBDA620DA7FBFF7841F3EE04AD49A2FF781FEA741 + CF29A1B550C0A93DE8506766764CBBCD2A9D043FFC3778B38828A73AF1A2177A + 8DD55C6DE33839608C264CF8FC61F4234C9ADDC46D3707A3D00F27C2921500E5 + 808CF4EE303DF9AE9702BBFA8645B19087347E2B271C83A7185AEDAC02270371 + 47077E6CB8B83B1BF239258E2FD82DF3B1B62F1A1BD1650BEBAE4DB3332BE64A + 8B3C86DC8806985DB26107E8892864BFDA05FB172CEFCDD64DA56FB18B0FE7A2 + 80C8887AB60D962461074BB9B422251AA2BF9252429362968E8F27C2FD33EAE3 + A0AC0231B9745A3EF47365F5F359EA1ADAD39EE27ECBFEBB6079BF5C2A33A8D4 + 625B53F2443BE0EBAC27E08EA7C50397E5F1DBB405AD58097B2A38F3EFCE47AF + 2B2D5AC85A2C492C3F6B4A89C96B370B591E36B4618118573FBEF85DE6399DBA + 5139A2AB300284A8650C5F820236FFAB039F85BB0012CB2254ACC0A2F46723AE + 12FBBCDF782B44ADB4943DC913117BB18A99B89C773F6D4B35B159676DB422D9 + 5129ACB8A2C4C5388C1DA2FFD4D35EC790A3AC3A55B678A8EB56D933D29A09F2 + D924024E0F85A3CD2929BB85CA7AC4373C6E5D158F6B30ABAA5179F3CA24ED0B + CC5FB0B11EEA3514A8C006C8E6CC388F21956CD2F5AE21B2DA38F3181A1A8B39 + 43344B3EC911465CAE901B1A31E340660056BD03361D3C11EE3A8FC9A044B4B0 + 4F8624A9F635637EB8693F93BCA73E3FDD2F9C7B3081CA2C4CCA42274EE0E68D + 2EA2CE9C73DFFEE898582A183385347C89B4777EF6BBBF4E0527A8E36D414831 + B85E988C13C2B4C237C29DEBA31C9A32236E25115C1290F3A3D5BB18F020565E + 2B3E27A31EEBDE497DB6B5B6D63BF3264B5E4FC24927F8587BB85FC8ECC3C58F + 3590A7EB20032B6AADEB4F49E166C4CE596D74CAF32651B2DD853806D4FC435C + 82A440DD0161426B969816D9EEF8BDCDD89FC8AB13041B2C266188EC0ECB9A1E + 0B7EABA4E0BB376D9809EF4B189E4B30BA0B6304A9FCEF834C95F9D196E03165 + 2600AF9E849CDB6796232B06F0EAB9002A747DACA76C9104860CA99D73D213F2 + C8CC54116091669DA321912A4BCF8AC9A39899F5B24699BAEC56AA58BE4793F5 + 211D290D10E045A77E9CD1A7291326E8F54E20BAFD92E4B0C534C54EAE2FAF5F + 066F776905B2D32E3CE663A14E19563E21E5359157B73788C1DFDFAD62CA4E12 + 1CC01F15CF6A99792BE912AA5EDDDF42D29D98579A2E9B547DBAFC66835B24A7 + 1081105D2AF40F0210C09565045031584BBAFBDDBD2F2493A994EF55B6E0C115 + 52B2AD016A767631B25D359585BAF8F02473F4A33CCC7EAF9438FDB154501C1A + 4EAED1F977BB6FCEC3A117AA1E3F020D6653E3DD94685E5C5CBF0FD4A10891CD + 45E61A6D78748CE6D8337CAC3380E43FF7087C16AB490BCE2CD2FEDD929434AC + DF637435EC2FFA545C7AB60B273231805EC947414DD63D173D759566C096EB62 + 90285105DDB804B17F86D1B4FB559B9F4CC2B661A9A3D77B9E4605789660D846 + 525D64A610EEED769D5467BB9CA0298C4BF2B269830FFE817392742EFA2B1375 + A466264202400D320E220F455122DA931F7477D755C2E06FB57CCC6203993C6B + 80A73CEA50EBAB6757579518EC043451152797500B8B031317B1213355C7017E + F7D4E162CD6E03256AC214A55F3A8AC659D1CC7250C4E40B3CA7BED113A719CB + C895E65DD9D1B0EB1020D0EA1FC6F09FC663D4BF310729A5CD0CFC7EB509777F + C70D5A830A807008BE638D306EEF5E45239B4192D1CB6E6E2C565D1F2193AE1B + 50055134D9C38E7EA360971C593F53A25A2DEF3DB0D4834BE8B699C24FD9657C + E5A5CF6AFBCD0465CCBEA43EEF79E2E4D7AC93020157E2BA0117DDF6E78399E2 + 599E8DC42EB7612421811DC8F549949CF1DA8422AF6519115CD10D2A97C860BE + F1D091FCA2F642A47A3FBFD9BF9FFBDC3E54A395D679FD31C731A5092AC7A687 + D7DEC8984C091A796E0A47AEFDE5B793780CF6AB55CFB5DBDEDCE6AD14277A41 + F733FC6E80E937048F0AD18CDEFF541B1074689E84F0674AF2255619120DAAA6 + 92D699DED51F529441215452634E9B5A2DBBD21E562C40823EBFCF45AFE653F0 + 9F23A5DA2E5448657EC1EB59FC1768B338085A481AE0D87E3C8F0D2905839FC6 + 024BE831DB725A5291E74C23B1EA9516EEE2CBA28135C1189275209134DA1C80 + 58B67501A8F3FFE676A2095ECC9355391BC5D9A3E086E40CC3188BE3E7226DE5 + E1EBDED52D3DBA707E52C566A932E8CB87C395BBEB4D4C555340C32894596718 + E808DF4570BBB2D9263C95667A645753C1408A9D90A7DC137E16EFDD6F7F7451 + AF7F1112F71691783059D7650A50255A20D966C3ED99E89A8A68C7856BD6E738 + 19336CF0C52E069EED249EA22777ED56E68D180A0BA7388B90BDE10B3497E336 + 79328179A554C722B89C6D305A45AC8C935A2B35FA31BF6122C9C5A648C95D52 + C869BB5137E43FAAE9F035C478E65E68D03F19153204912F9768752143C66BAD + 364F0FA28ABD88B89F41AD74110F863157EE2079E5F7CE2D7E1234997B0B559E + 676CD5B422416E942CAB79A073463B042C266D71D6C37D624D94858A3874FFC8 + E5A0DE7ACB102935CE3929C12FC19953690C088BE39A3E01F5C91F25D1F7039B + 6BA67CA108B63334FF0F2A2DD666F10FAAFF368CA684CD66F869FAF521716B0D + 320C878956D9ECFF2EA65F2F1E2808AE0AD1DD45E4EC42921B32CE219AFDC930 + 02916F471DFFFB96396978CD058AEFE5301D5D5752663DD29FE6B0045898EED6 + 5121761F3A06DD337287C37AF8079E76D8C5FEE0435D0A790CAF9AC3824995E8 + 9F414BF86E3685880B03FA84C33332ECA9465AB626D508E23CDC7F49DFB31CD6 + 61EFCAA4C74E996DEC7B024A886E4B7937D6B82277C0FF23EF279082C10867B2 + 92A5E5059DF0847E7F839A62055B5ECE76E9B053BF58FE805314FA7E32BF684F + E28EDF8B0BD7B22C002BCD07BD5A430521AC979D742F9824A4422C158AED1A99 + 98AE7E8A15BDF284393F84C132DD90EC451C2A59A181C0462F3EC7E4F77FF2A1 + 5D251E2C651AA157EF3A32B68F21D095A4F9C63CAEA14B13679FCC026C1D7B1E + BC2E6C198FDD5DFB1F6B70B3D9AC338683915D6679491025E56BE835DEFA2A60 + FAF4374A579E07594826F38057E8463A2B0005BF374EA6460A2AA3A5FBAE4E07 + 46BFD7B7C367279C04B3C0ABC4466D22F6654EF22D6A2CC6DB004EB698B86D1A + 4CC5AB3D7441CDA11D282C8BD3E38B736E909FCEBBC8D3A013DE1118E310491D + B8466FCED404487A5CFE1F54804628B5ED75A4ED5663E588B29465522AD2C2F3 + ED171A2079676C7A59CAF53860E11F4D507BE7AAAB13AFC7AB9A84EB7802A0AF + DE1DCA759119BD1A983BD1B1B6D9CB2735C86E9A1035FBBD98C313659F269080 + 36FF19E54ED8AB498C389D2B9D0C7F702B1AC8B2857F342CADAA5FED31DB04B7 + D5AD121220BCD8B705B5636645022FFF07DFF63559A2BDCD13CA3A895017572B + E4E7DE7976C18F8EDCBE13A25D03855485B91B1A23287B214AA8C5A6E66A8CFE + 535B4F251FC45A22A6B24691C2EAC18D5C4522A21F56C3C591E0314E7DBD74B2 + 9C6CAB78F41FBB0584AABF8343C3AB219E254F394DA8BABBE0AB0EBA3E68E2BF + CA0AE99837A5ED16DC810CCAFC6550B0369D887BB83A0A79278C0E4B3C2719D7 + 473E30B049B7749EBBA91BDEDBD525259549CFEA30BBCEC93870C0699662D1E2 + AC5ED2F291EA0FCC68F21CD85358B89B41C5A4BFD21DCECF57A58487634FFF7C + DA983285073EDD30A1DB73704CE94D36C1C04660464BCDC6C5438A83A4DB34A9 + 57AB966506E8D614664F092B3C100A176FD16F59FEBD771C3E1A176C9B71B615 + 905A52B936F0579B7BFE55288A36E569905B4BEC051202B61BCE25E93B1A10D8 + 5D25A50676DE7B16B694661B301E380D3D5354A6CBE36E81F75D5A92559F42CA + 0D806E18AE83F9D5026E40F6B004F311EE535F63D29590003EF57132D1F37C52 + CC98449CB7F98374E526AC4A0885B5137BE6C308ADC5B4BE8045A15E530ED9DE + 080A4635E0A56129EE05CEA19284A8873113EBFA53063E21A9C0749ABAB6BF13 + BDF4CF48CA970E5B8E147A86BEE7063FB2B1F06D7CA029E05ECD4D04CD51EB7F + FD20D6AAED82895BB8B38953417276EC062C8B7FDD2C9EF7A194AB04EB4A2D78 + 2DF68CC8D43F2F8E08BD66621A31ADA0C4AC9FB106AE3E0E68C5C1927162D1AD + 6962BD1F86ADE5115E0F28874E9419C4250CB1AD7EBE0EC4116E0DB3F1DFB404 + 60B07563A837F20668A2948FF29F09231371EEAD54C998467C14854E7624CFDA + 711B61459930878668E64324F9BFE8684AAD0F91BE33A0BF5A651CBA0756C704 + 7BD37FC47301C9B7C4382F05B4EA5895B239669E90907C503526E7B62D3AB658 + D1BCC11D084261687A4BC74911A3E8975DD117C16456D73C2FC9B7661A2B2312 + 1B454460F6DCEB766750936BCC9C1DF862DDCF00DED310F3A031604587166B5B + FA00101B1203DFD11126B6FD5EEBB48AF1AE73619630666A68DB6E7657E9B31C + 9848A9D44D77BE16B9A8392F05199AB17F4605833749C595D6F9E52A161F9129 + B035DF10870A1B987C16A6A9EDE2483EB1734AC654E66317541CD1B56BEB6A22 + 8B67128FA30AD4F6E23B9A3554EE4F64E774F3ED4E89A0261EA095BF1576581B + F36D75E11370CC274F99A6F36F297A6B93047C7B66E74F52BB594D0DC4AD6813 + F6E3E33DABBAF5D5CA903B211982228CDE3652A481334EBB074DE29245E01989 + 288EB7C7372F1AB94FD541B0474D13945B655B70136F431F851C57BFA94F6829 + BB50C202190CFB90CBA78E54321E4C4A2A9C4940C34981EFC87D36BD9E5AF560 + 5B7EDC0D2F774121C9030FF33B050FC2A57F1A20F1B945F37B16764B01975C75 + 6B5D4E995D31073BDB10A7171E4D5F90F834AA11254DB925345F8B11D3382581 + 0572052966F78F3802CEEF9D0F23FF19EC342D4DEEAD61DC8A35AA979843880B + E74141FF723FFC8C5CD71828ABFC03D5FF4DD398AB9D5302E9E7F4F86CB52876 + B64131B6E60B29B980CAA7261D30E608A5F8B98F3C90B19F790AEF853C6D86AA + C2A4CE8BCBC8D6DA4A7080F1E651B7B3B2A8B75B71F44B9C2648D46E17E486A2 + 0BD44BAE2E7D1CBDE7A80027F1023761604F2B8D358E2FB745857516CF263B89 + 15290EAD5FCFA93D1FA79653E066D23F99BF3323BF52E7E28C593E48F4029F95 + 3F3F9BCFD09A55CBD975B4799DB89145B6AB95A086788B9742E257C4212AC146 + 5D722204F8312D70C6F5818469954BBBCE8CAA2B36D2E14CFEEBA01C514BAD56 + 4C6EF91778296755969B0FCEB66BA8B9C4C835E9BC9809FC66CF1DF248B6DF55 + F931812CB3361D84D9AD08E4BFE2643EB94EED7913CE1807DEFE51EF66F9A65C + 6FA91A168E4D41A7BF64965A768CC90049D1F82106E811758B4C5FEC52F58EA7 + DC3A242A0A31A3AF038B3C400D3D45740DB5152B0F35505C20D71AE47D74EBCF + D1B936188C6358419B98C122C70887C0C24DE8545984661648A1E8249ECEDE4E + 390785A80C6F1A3D2B95ACFB63547036CC3E59D573A0CABAD3206B65FE0A2908 + 80F4D077A1761C966F2450366CF5295075BCB4F9252E7297CD0E86814A7A0BDD + 28255D3D606ACF2E283A9DA59B5AD81198B4CD4226EBAD9CA9BD6C78945F93BA + 03CB1E2FAFB6C6A9B80C9E0B8040B9BE80B861DB0DB8F74F74D81E4B63A0E170 + B473E1D46BE41656845149CF853BE8A8C3DD9B4F69810F2834D4A320E4B927E3 + 1B3B995A769AF74A5A7E5007043C09FAB9E020F277DCFBE0DD5A6456BEABBAF7 + D0188F1044EF98B4DC380ADCF01118DE2355D3232511B395D7C3E6E64F179AE9 + 360906566504F63CABFE9AF7A24D5692003F714272377A203A3FEFE4E43E203A + 96E81F51DF477A5769BA974D57A8AC7611F0C6AD05020AD67D47BC0F0B1EE40B + B238E447CF2B963F8D17D36BF219FB9B4B681F89310B1DE591A78194B0FE8E5B + E3102DB6078D3746BF142F8003134F42D193130927FD57B739AB054A4752700F + DA3B099B965C44D92A3C77F5D6FADEFDCDDE5DF42F386FA98D0121B5AAE95AA8 + 4C477EA03C71FBD8A11664F21812F63B51623742D276E5D6ECE12A5480496457 + 73E3C1E4CC3B675C668FF3347A91459C491B610A49164EF5D7DAAF31CC5F84A8 + 684A50A6E376787732E373157F883D2F21AEEAAEF2253097E2C593779511ACAD + 83EAC3204E5FDCB7C1A2E2DB75F628A37DA7C6B700670DACE88A4A95C8FD6C14 + ACBC225D4C1C7DBE10B08915AA8A9CE481C0123744E3D4B3CD9384E54C5CBEB1 + DFD0E4F54E959BF686ACE0686A9DB3540FE57EEF280310DD6DBD84490DA3B180 + C88AFFE15B6698483ECB857050D1E405E3F4A44DD03062DB55AA2B22832D7E59 + FCFDCFC273FCA6C61C689E5D7E55AA3052B36515234AE5FCACE05E1347627DD7 + A9AA362F8791251C218DFB29E6D7E84D412C7BCF57418A57710EC4CF4E803B00 + 3DC3BD8113B6FBD13D1B76638C89F1FB759EA84B77638790F5284292A1B6BD8F + 10038042BFFED0A9A69A2DF47446460522FAB97F88E9056DAD455C0E475E0932 + BFC3A4C44D7A2B4A03C943378573F097E19E93C572FB51373BA7D5888292DF79 + 9F3323899E897FB6A90B17B7129D3CA89C7562417C543FD269E136A4415108EB + 2B2B69CD9798BF85CD70B91978009783F42D45CF18C25178BD81BBD6F73EECFA + 8365C4A81552934046CDC5D301DBE8F0E09FA09429495D3C50C43CAF63F74E60 + CA3844D3E18F464BF58CA31A66FEC6B29F8A323868580DAB428F21178D6F1263 + 64C3D3F4205BC3738975536363E19E3803351EAA9AEC5A6C25777437109D5197 + 73721C534C5BB14C7788A542957799F2E269C914650B60BA0B30773861FD44D8 + 551C3A9515ABB572B42C19860844EAD6A81E28537829A17C281C6ACD739EC675 + 9FC9916AFF5B8617EEB644407E2C504EF6B7D8A7DF4E8791C8640A7A7B66FB3A + F2573C5297EF223D4368EE987D350747F1075A4FE6F167C628DE6870F9C233B6 + B7923F8B871B4A141FAA0EB9B34819A25ADB583E94EE2AFD85769FB9ACB857AE + 01002E4F625A1F39DB50927E3F3E62B9A20C1120469AF28506EAF5D8F4D83AC0 + 86F1C6B5E50DDC86E5EDF7F75A6E61DA744AAE3E34BF306470108791848BE161 + 49E3AC6B04B3E2101C394AA3308321F29A0A9FF3BE752E3C34FA3FC5BD9CCCB7 + 47A886A1144DC4EC3B8018C7BC477F336948EA070D83C78EA383AEB1DF6537D9 + 1B8E42683E6B19E29300B637736949000DC353E61DCCF07659A5B7BBF3D06969 + 28BD93E386F1237F68CD6496655F86DBC68A9F3DCA04A216DB49586EA9367224 + 0165543F7C0FDA1C7522B31A2B8A9319C301A25AC1A2A99A18FF5113096E9484 + D55A765A04FBC90FCAA4E6054E7AF09303647C534645CAA231C0BADA54D35C09 + B3F78311525AA49D25A5CDFBEBB6DCDAB8D172D8AAC4DCD53002894A80B6956F + B00AC8CF5A6C6FB39D701D4D194B382F99B39647D33D5A1B251F1FAB4CBF2B90 + C431FCF18981ED9033BE69C1C8BEC37702C501099010E64361890CFE69CE64F9 + B40194A08FD86CED8E541B4EE1A9F35F7192FE4805DD174284CAA166F76C168A + A5C042498F25275A042751236F964A3C0FC810BEE8A2913E5EA1F7000E88BC32 + 84856CCA008F2A1E827DF10C78ECF07428C9404F605DB53596CE2018364BD3B2 + 0C7A2CAC48B9434919BDCFBB76AFA1F6449AF4D03251F19E27761274FA24713C + 0544278D0FF2CDDB011DC17B4577327088E879F1326C69D91D496FDD8B25FC28 + 3CD062AACF4891FDEA38737F38F2354C86DF097EA15F6E9E4A2E4094BD3BFEC3 + FFBA287C249ACA675EA87B10BE1E5B6D62E42E99A33B02489B6A0E85AA9E2846 + 41171C368C2C8A67802E13B6A50ECF58C45D1D5489CAB9D503AFE95BDF11E69F + 7BDAFF0686254C3CB44959E1DD1AE590380660ED56B925C78FCAC6C6A478DA9C + CC863504E64A0866E1BF3A434B4664D9DBCF9922C54DBAD7CE80A8572F836F44 + 6829BD46FA8BA92EE483EC0803307C3D7FAD2EED36C5E85C62D07DF81652DBBA + 37C643B464260419E436B18EE229DEC192B48294F5F50FC79763CEB95743F088 + FCFEFAB1B902950C97AD9D919158A7EB629AFF48A2CFF5C3A6A2D529048B0F8D + B1C48467D6A59C8675FB14E6E13B02FD3CE2D9540284536BA96CD8886B877B69 + F8FC85C530118D91F361955EB9DFF9F533094B271D7921E54824A91AE7BFAD56 + 09FFE488011F28082DDD3758B1E32ABCE487BF40E8581A12DFD42C755BF23B7C + 9C42EF469BFF00D8B56DDDB33F3B5EC0AD64B03E97860F7094C3965CE4C7B8A0 + 02929CE9D991B92EAAAD5F71B1C086712FDA717E3583B4FF4783A7930E26E92C + 303E75E33D11C56DE31EB28E820AC34CB0F5666B67F45801D0D8164ED65878F6 + A6E9DAB8111C10406CA1196FCC536A91BEF165294CE696520204F434F7F7DA9F + 224E570BF2B415DEBB85E23CFC9956A57149E9EA998F26763BA77DF0E86A2678 + 713DAD0C45C307775D48D6B3424DED7A66FCDCC3B80DF3CF840C14E195B4C40A + 5C4F43517FD3638B0CEF58549BC14318F736FCCD1DA072152BE9C94AA2027FCA + A59D055546CE4206A73D8295A56A6525CBEE144221877B410C5571B3F0CCBA77 + 45B9A7EF368F24EF3207D887181BE8ABFA6D65814D0FED42E738C706B6CBAA55 + 2D5092D793A56617C4380BE5D3D9768B050B72C7A6910ACA4BB73590FCBEDE3A + 17B705FA2214329D425C48A6B8A2C1F90E44E654437AB8C404019561BCE9D5F8 + DE46E28A8D842175B3500D80A48BD7EFC1528DB1AFAFEC3E6390023B86C16162 + 077C457CB936E52074E8C405E1E8FC6F82260AEC3CE1216E709C95E84A1AA575 + ABBF6025BC127BFD4B6E2F2E96A56CE84AEB23B32CDC675F51236EEEFB8E82FA + 080C637B7FEB4D2F8B10E2548101736442384EBD4962E33B48A132414F9BC934 + BEDCC8BE5AA9E1700E68091B3C625146C98B7677F337E6E0854630FE4F191F4A + DE45EAAF93ECA31A8401E581B3014122EC70F3A60A5BFBA020582D2FF8E75C20 + A4004CE1D08301E6B86F56B66AD0C92D55070D094E177C1A8B6DE50EAEDA191F + CDF37D63FC9DC4F78150BC1E9DADD33AC8B3B3DA9E6458A1E0ED7EB4004994A5 + 79897D6FCAC1EA57CEB9436A5FB8B2034084C1E69641093B23CAE5504F53AAAE + D33B8E07934EA5B6198AD82E78547F81298CBBBA4A35F81064536516F5529952 + 05297032F66AE71ED6DA703C29E63D19BC03F3DA752CF570D32EEB6F2997F755 + C506F2A8C02C62B5F6145FF84E43267E48BB308BE4C466D0E3ADAE5B7DF7C74F + D2A650FB87187EE3DDEFE1E925087ABC1964DCE93ACA2D165E564D7C5000AA0A + 2C5F70175ADDEC2684AD9A238A77C23FBB0F02AD560251981B8745593D88263A + 28897071B5E1238278686998878F5FF4F35E45F7CDBB85B87790C4BD14E64589 + 891963AE02F03C64A47287222F0961F56355D3CBE91A47B95F9809801F27D754 + D63A38AE3A408959D6C52AE0A2D6B9F99024C62A2D2D57484DC761A13A5BC872 + C552B45EB425A14D328CA1D036F14CC248D10D5E38643B267E046CD0FF86C835 + A6CB15D259E4BFBE57CD4D57AA11A06B92FECE5E310BF8C8361C572084C4B49F + C3ABC4DBBED808255B95F21E1A8962497B579EF8443068568F3006713437E390 + BFCDE4D6E5B5C7ED6FD7840DC5860B9DA180FB6E5D0B5BA176A46947114556BC + 76A7F1D6825FE1D59957CB7E94A29759FC5D9FA9738C6F33B484535394B377A6 + DE9ADD033B3D4684F710FB0098A8DDE85A21BADFA86A8EDC5D4FFA77D981FF0A + 1613BFAB1E991E089DEF304C8574F8D4D92B0010138A8AD50A395329E6715E92 + 3B36313A5535E3622DA6C49A6D5733893E8864DB7D7E5848EC23C5D994CB413B + 32506751CFFC8B614D76D5937B2723429BE2ED54247FD3C6E866B1CF5F61B967 + 9D8F7CF2C8EB2BD66CF6F93B0419F0DD25B1EEAC688B575E3B79452E28065D33 + 5A217168F27A954F158065B77143C7012137409FFEC634039D4CE261ED008A3D + E8998BFFE96AD783C091A396BF0D7681A64F42C208B62F4ED0D754B0AD7BA79D + 279A7B098C7936F6E5CE8BFD7481DCF6D0AF3214BA412014DEC1CF2C0ED2F902 + B50F8DB57B5D09A8D19F66CC41CC41EBB08510C3F633D246A8D02F1775D8C2E3 + DC01CC9ECEBF41F01A97A1CEFBFBB08CBA93A6D5F1B2FAD203EDD64BD36C78C9 + 6DAC66486E09D605AADAAE8B10CACF7B5344CB0E54C98013AB4182DBD530B1B6 + D9CC189046FF3A871734EDE5B3C87AE59B3BFA2A12E75A63EE68553577C5338B + 788E7298F0E5C352E6782275DE0811D44C19B44BD6A2550416A7DE06FD0DA577 + 7DCE321DA53B4D485DD63043A32100BC9EE38C747016523FF2734A2CE28B453A + A910ACBCFE8AE142C17ECDE7385B16A8B196957741019F6CD5392473440F2E6D + ABC46FFEFDC844D1B3B7225E13E534E06C97C4BFFCE673EA8D2E57FABD56A2AE + B2401E53391A612CA3E137E63412F3E17347BEA95625EDF180BF88E2DC29646A + B326B82CC19513E74B0A6FA5758F527CEE865B1FABBA4BE8D1F40250E9819C61 + A7557D9353584BF25180C2ABD351DF9FB69DAB574F39931853E5EA41D79F39E1 + F6B38F3D4A919B5A918D928B68B20A939EC339293413F3B2EF221016A2810CF4 + 452006B7D4FCABA0A77BE47EB296FBFF0FD025D4D787D16EEA88B82CCB1BC42B + 402B0314856A85E33E3C26987DE7B12D76605997EC92475C3483BB40415193F9 + EDC38405663FEA6E09C77EEA06BAB5E01D7FC6902C0CD58977B81F0A099397A5 + E14411C2A501B4EF9D2E705646ADA38D61747F87006DD24619DD3BB31FAB0A4B + 1DBA90B4139993D011F62C6AEA38674B07B7FA928B1F96F29B3FD4F1ED5C2D2A + 85817DE331A18524496594D4056686B0C8AC998E155FD76B1031B16FFB113BA1 + BD4871D1CD63F65A35005795724A60472125E6C72105238B079DD0B675A027BD + EC5E57BF2E2D9468CC0CACD69E2B0C9E6167D5087F2F9CC55EAE86504118A120 + 57F60ED823CD0FC48C4798C93D6427FC8E0A7AB5AB55AC158E7FAC40E6CAE99E + 976B98FEFD39AB550A7B50BA73FF8204E5AB8A3A440E5FB83A10ADA1DF7864B8 + 79A2847D0F6438FC8EC59A0E72FB9A9BB2398BAE32773896A9264E7DB06E98E1 + 085F4ACF5BAE7382458D62722D64C818057BD0A46E8745C648C70F1847A5DE76 + E40F70E439B04150A92FCE237B77954E4749A8BFA568D867FD126B5BC345DDCC + 60319C9B56485BEF5696FADD78A4751D4A758CBA2A610B761DCDD49DD58DDD04 + 64D76FC4615445ED2E94B6C98E439B4F704B396D3BBB582595DB53F1B1D98DA9 + A9747BBA4B5A33CBBC6DA47AA1025FDE35FA8E4D7014CA8186A3641595BDB974 + 05838B89195E65C04E7BC2A1D95E84DF334311D53FBDAFAE3CBCC6EDE6E5B87C + BEC6EE94B2D65198D21DD2E14548507A16CD9401E9AC7E684CF83418611CA2F0 + 1EDC794779CBADCFB07BA33388EC9F916BCB3FA48DEC6CDECE2C897A3C2EF40D + 4E1FAFDC76B5FE7A9BEB36EA0E95E2C3F11E6F58AF8186C04377C353E85B13AC + 3AC3ACCF11D2E7F4179B104F9DD2E2483BBC658A80F0F06B7B2C29307ACE86A8 + 04F381F77339BA7D3A435DD1E317EBA9BACAE9F7D7B6ACE330F5290C3FCC0217 + E3ADA5B5 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark + /GCEYUG+CMTI9 findfont /Encoding get + dup 11 /ff put + dup 12 /fi put + dup 33 /exclam put + dup 38 /ampersand put + dup 39 /quoteright put + dup 40 /parenleft put + dup 41 /parenright put + dup 44 /comma put + dup 45 /hyphen put + dup 46 /period put + dup 47 /slash put + dup 49 /one put + dup 50 /two put + dup 54 /six put + dup 58 /colon put + dup 59 /semicolon put + dup 61 /equal put + dup 65 /A put + dup 66 /B put + dup 67 /C put + dup 68 /D put + dup 69 /E put + dup 70 /F put + dup 71 /G put + dup 72 /H put + dup 73 /I put + dup 76 /L put + dup 77 /M put + dup 78 /N put + dup 79 /O put + dup 80 /P put + dup 82 /R put + dup 83 /S put + dup 84 /T put + dup 85 /U put + dup 86 /V put + dup 87 /W put + dup 88 /X put + dup 89 /Y put + dup 96 /quoteleft put + dup 97 /a put + dup 98 /b put + dup 99 /c put + dup 100 /d put + dup 101 /e put + dup 102 /f put + dup 103 /g put + dup 104 /h put + dup 105 /i put + dup 106 /j put + dup 107 /k put + dup 108 /l put + dup 109 /m put + dup 110 /n put + dup 111 /o put + dup 112 /p put + dup 113 /q put + dup 114 /r put + dup 115 /s put + dup 116 /t put + dup 117 /u put + dup 118 /v put + dup 119 /w put + dup 120 /x put + dup 121 /y put + dup 122 /z put + dup 32 /.notdef put + pop + end + %%EndResource + + userdict /pdf_svglb get setglobal + [ 0 /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/ff + /fi/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/exclam/.notdef/.notdef + /.notdef/.notdef/ampersand/quoteright/parenleft/parenright + /.notdef/.notdef/comma/hyphen/period/slash + /.notdef/one/two/.notdef/.notdef/.notdef + /six/.notdef/.notdef/.notdef/colon/semicolon + /.notdef/equal/.notdef/.notdef/.notdef/A + /B/C/D/E/F/G + /H/I/.notdef/.notdef/L/M + /N/O/P/.notdef/R/S + /T/U/V/W/X/Y + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /quoteleft/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/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef + /N1223/GCEYUG+CMTI9 -1 TZG + userdict /pdf_svglb currentglobal put true setglobal + %%BeginResource: font GVZDIH+CMBX8 + ct_CffDict begin + %!FontType1 + 16 dict begin + /FontInfo 15 dict dup begin + /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) def + /version (1.0) def + /FullName (CMBX8) def + /FamilyName (Computer Modern) def + /Weight (Bold) def + /ItalicAngle 0 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + end def + /FontName /GVZDIH+CMBX8 def + /Encoding 256 array + 0 1 255 {1 index exch /.notdef put} for + dup 0 /.notdef put + def + /PaintType 0 def + /FontType 1 def + /FontMatrix [0.001 0 0 0.001 0 0 ] def + /FontBBox { -59 -250 1235 750 } def + /XUID [6 5000766 ] def + /StrokeWidth 0 def + currentdict end + currentfile eexec A0B00ED5187D9C0F1ECDF51878C3AA5CAA3EC67F973A7D + D910BBCA8FA950CADA53428ADA87055C66C84903F07F66481254896782FDF2A4 + DCDEAB2999969F5A6734747823B5041212A1A6A3CD412CCD0EE61173E1EB05DD + F2B7DCA21E965DF4EB09D153FA00AC23728D25C5DC9BB0A1944C5671068B302A + D0309F99CF5211A3284B39D335A60C7DFD0BC14ACFF2B3C123318746D7569FA7 + D46BDEA41DC69E95D3506D523EE5A5BBE06C6591EBCE827D48AE04235A2EAD5D + 6564EC498BB4592169BF2CCD58666E2441A0709B105D567E20D3DD11CD458AD6 + 241EED11FB03A0EA9DD6CEEBD2E5F16B17A3F8DDA809F68A3AE5F538032BA901 + 2F38FA87705BA624C18A804B5837D6F98658DD90ABB2E58EA663035E71C8B9F6 + 8CD082679D35EE9992301A4D6CAF7FAD66476A4B001E6D2E1FDFE080195C0907 + 1C84BC2B80C99AB791D3D6504A3066B995AB947126C90DE9B300CE7EC46B3B40 + 6E9E0C17D18DBC2021DBFD5C550C90628E65DBE5F727B0746E41807FEBB330F9 + 39EA94B566D4DE6531EFD3D40CA68DC42664EED7AD72F58089E44B4646442627 + E52E7C3CED1C1EFD59026BA454EBC2F9CDA53AC5530E6816B4F6380DC820E1DC + 17C94F7600791D0CFE17800A659BCEA3A8DCA328AFD6DE0E7F0FC39346954C0F + FF5A8A618E3707C7438C76B608E7DFD95DC86BFA17F0C852535C31E12C134D54 + 48BAC95F334490A4C139F15A4D7C5CA80D8DBF6CD569A142A52BEB25F6E78B71 + 04A1DC4AB97D60D1667AD6CE326500140CC9BB06F68A50A70EAB218B251EF48B + DD533F704BE6EBCF38C2633A78686CB041B98FA9A7959E3AB5918D1E9AEBA043 + 731280A16FFB25F7F9405DC61AF839188D828667F1BCDDE7BB8B32CA0AEDF770 + FE62DA2D574607C3345EDEE059B2FEED41E602D37DD4DF02A51F1F8726248C2B + A1742B748D2BD0719FB67F27747117B847D9D880493DDB5E2D07E28A8B6ACCBB + 3264290188F210786FCD9DAD72660857FF1239E99559FDFC59E6CE43BA2A3C38 + CAAC60CC5592037CF77B143AABE7EB0213EFC879CCF034EBF689F1AF9E20CB5F + 13C120E4E8CE92B05D3A575ACF93BF4B839013E9BC1737F5598535965CBF52BF + 5E268EEEBDE0DDA2618ED093FEC7D190B1A94F5316EF25AF08BD2BBC6272CDB1 + 784193C05D3A1F27AAD8313277FC3967E9A6E84E05E21ABCA018AE28CD7A43D6 + F74269E13BE94CC13C0BCF929F0FC9BE695E4CBD4CEED63902BD611FF59CEE90 + 9098EB8B1626B0E75E99962B8E8D9EB8FAAE162AE5B84F33E60ECB6EC5FDF398 + 663B091C37ACB769B615D775B565FDF7A425C675E4537952A7FD4E1BCBC7E0CB + 19424D4CFCED1B98828CC814ECCCDF7CF6B4C531768420DA7EAB381C4FF3E178 + 913C2B4AFA0107BA85D5D4C5CB38DFEBF35A2AB0CD29E87F83C71F2140A14E40 + B7998777AA956860539E376CDBBC1604AD2AF6ED343BD048048D8332D74BD552 + 71F8B0727C6D1D878CBE13218C512443623824A0CE56029FA62625D633D63AA4 + 86DD6173D13A9E5113CDC0703811E6D36E6E2591E1AA01D4E5232F794519FD63 + DC8E1A8D7EC70254023F5C0673C8483E70250BFF5FAD1FEC37940267E4854902 + 41B58704920419DA854F90CFD6F8CDF7F2A6093DCE5AA6C50F37834E73D469CF + B308F0192C403D7D03CDCD4B9A13DD9CC342635631463D70D118FAC97C1B6325 + 19BD8DBF4500F7387613481DBF0130293A2821BEBB063EE3F9BB7A198646F104 + F5A4B1994CE6938DFA7CDD2D8009F3A6CA1D0C514C7B7C019BEDB407A7F4EFA6 + 036DB735C133EBD6FE26B62AF491BACC16979FB5DDEA660D74A1CEEABA95CA6A + DEB824556596DB820257F4E342FBF3E13B8C5D6614E676485BE77832315D7477 + 631F5B4099A51A04E69E050C705D621FAA616A5B8225CAF0726C7645E2E05AB6 + 188A01DAAC00589BD57BF6E61245A069F04DF6935A5238A559707E63BC7DEB55 + 923211C6037ED65F3D45DC207C5E18274118591D87A2AEBB7F8394041C9E4F3D + 7AD3ADCE34BAC708104A9063ECD4838780C1495A6D40B62C7E4C666C937DE35A + 1DA3A453F07FD2FD233F3AAC01F918E96439826316F9E6D9483B911DE903EEB2 + E25807E0FB0C6BC18DD39AC161F83C2BEED3838A1766BDB4DF54B447350D5448 + D8BFEFAA0FC0C7C1FB35FA268D4102C5A8B6E489350D7B05F0849D558D150C6E + 0302E54A6411007B742CB1720192E9C134DAD668B6F91F6149C9EC825116F696 + 9555F442DE079E0082E1E050C6C3717AF042289F7E2589AF865C6E975BBA61A6 + 9D7B5EC321B81A113C6A2E321E80522808B7CA4F996A4504106F54A1C3C3F90C + E10F163E2F5423E8F9917C633BD9BD59CA33FEBB900A45FA3DE8C286AA76A08D + 39BD76382D96932A0AE23B90C6AC43458E4A71F7E31A6EDD6160F9D6055447BA + AD405D2F6EC7ADC4331E9D58068E3C91C99F37F64878E0C28067486558E3809F + 1737C9664252383DD24F2958112838E63C47D0B26D609B77C84F54DB4C2D482B + A27976C61EC737079D38F86F0E3822842352F55BC3E3DE736076068FB4ADBDE3 + 9F368E18B4684E4B8F8CE5E067877489C74D149FC12EADB33601A6833DFF85A0 + 5852368A7BE6460AFB9B7A3D844CDCABE4837D639A7BD1CAD50BA5A21DAD3A1C + BD91FB16445CBBB88D8C22F115602B3FD1473F95666DFFC90B7922FF795A7B19 + F757678C1A03EFE86AFE10B51DDF1101A4D56C4F2A3E4FD89113E625E6DC9E99 + CBD50A09A0C9822E3248A812B2FA5A6B36DCAE4CE32CEA7502454B7E028E1CBC + 2CE0EC780FAE59586401A2A03F93E52E0ECDDB08A4EA250321B48CB7A26E845B + 74E22D9B22AE250B0A0F5C7388F5CDB44DA08DDB9F0F8E3646A81E4D7ACB1B41 + F20DBFBFDB4D0774CBA14E2B0C1E86D136EF1BCA3F24144C5C81FD5065201B79 + 813F6FDD9C23786F181136C59EECA6B85211AF90342BB1E8744716DAE054DF04 + B301C4E3411F57421412F2FFAC372E054158FF655713DFB6F33A5C7508AF3795 + 448F401350D768104F833FA27D91A9870547B56EADABB56454C02BCCE56B0552 + 436D6D1D5C2C3294C4EAB2B8922915A6948D9C68CC7E7B9C250157E1FD88F78D + 63B882D439C19A757B6EEFE261D61B23E40A1EA323801583528F51F94086E773 + 80CE5E5EB2050B20AD6620A0BA5381555D618E6E121CEC00965EF1097E615319 + 901E60D177EFF7FBC43607D0E68485F26E16228907CC2D760D2D534337975F13 + 267F9929DB54164B21DAF66BC93A25C6CB16E81B9FFD73E409F6FDDCACFC3B0A + 36D7FE303B4FF03F37F3EC32853B21D48FD18710260775D44722D8F11FCF4EA9 + D8936F02C5DD497B7245D62FAA13BF593C218EB86B4F7AB09506DE80FFCEAF49 + 9D7FC0F50618E91B01874EABEE149AF0667127448420FC13918FB152528E09EA + EF931376ED6D02309C424D39D70604F6C7AA68FA099A1E45D83AF00F57D902FC + D1281D89879534C28B885C7350531E8E49608935D30D83C193F8974FFA81B96E + 935EE44B65C5C3446BADEBB7688729C200D261B3130DB554E1E5D6B851BFED8E + A119C3EC566B8A0A188A7388751E27B050EE5B783B12A52BFDC071A5723A9A75 + A540C78E66EE801B3E27DBADCD99468F63396226C2723E630F6EB43E35FA7380 + CBF9F0C86E3EB45F2833C59E04D2E44A5A690FE4AD1C498486596E736572E046 + A97DE18F0D98021CD58EFDFFF0041EA3EE8AC342A7FC733E0DD5516576A42D87 + CBACC14232FFF87F707E1A8BC61A9DA2B73800151F4F804A29C9EE72458AFB4C + 666CE79FF36D4A66BB34C5485CF83B85D626E456950CFE6FAEA91E494E7753F3 + 09C9FFC9589FFFD8F1EAD2161292A3B26E055CAC559C53751A49AB18BCD6BC17 + E7EAC46495A371397421C44627707780FB6E89AD2F633EDB2E16658E00457543 + 5EB052147A1B062D1520C09F8158615B2E04F5CD30F0834B3B860911143CC5A3 + E24041DBE3DCC88CBA1EB250A2888014D9709C8461728C3BCA795F6FAD6AA638 + 05ACAD553A09640B87439B1F71D8B5DDA4461E84FF28BC0E350460D47124E573 + E265F170DE119CB09330C9E34B3E92D8E2ABADF19F0CDBAD789AB2F7947A6DA8 + 8399ECB604D7E402AF4D6D14B3DC0DC7419154D7835AF9BE7050A81FB3A6A707 + 7E6D7B6A14656AE55E80165604338D981A3FC6B5799AB988C9A1528975B9DF13 + FEE4AFA5C8487C4995D8262DD781403EA4C21A3F8A2242504AC45EEA52E48F32 + 663DA4D87E49EA89B2F91F4107D53E4262B8707F1CD8ECC0E77A98B244E25E13 + DE05097233138D375BEEAC774C98E0ADC77B6E99D0B5871DEB91B6016D34A2B2 + F4251DC80BD81BE26BBDBB5BC95FF664E2A177C7DE4D4401710BA84BDABF51CD + F73595968B8303832DEA4EE605CE19B6E2BA49BE9EAF4B65CEA22214CE2EC61D + 90AD0116B13268A0DA23CB479DA7B2CB86CCA3FB238C3ABEDB3540F04611A0F7 + 1C0672A0C791B80225031604EB6528BC1815BDE3EB54CDE8EBA942AA81224EB6 + 56719EA5903571FBAEC031FD05A4B139370330259FC29225AFABC92D9E7099F2 + E14A338AECBA2E3F846E4D1C01C6CBB099333630271991D4C6B9F335372E9E6F + E909EAFB1E1F765895F4558E24CC55A248AF08C6FE00198551A63BAE3F4F73B0 + 4F6B2932A7D8B0198E76B002A038C6EA553E061B0AF9BDD2F834EA303D82BD23 + 54D72872D2E3413DFF5DF6BA02A5ABB30B4B465B31043401F04F42B7D9399EE3 + 8AEA765DDABAAE26B4510BBEC37B2D2F78C97AC0D6D3E21FA8818506DD7A339E + C9F06367E550A62B9F22D133E202092064B790F464553C92E0958E32616C1EBF + 84FA273BFD4FE8B653059881FCB2E5BF00C341729787D1222BDBFCC5F0F42B81 + 26A006826EF55861DB588CE0E7DDBCB71EBEE1FDC0755E6E3EC73C98F52F3884 + DB1F11B1FD305649097DBACB952DB30B981C41EA5DE4D257BF965016E68C3332 + 49FE2DB63A669FBE0612826EE7571FB38C2FFF8D0C57BE90017E059F87D2C311 + 48FFFDCAB9832E7A0D513324BB008F0D9C8347379EA07D208870ECD88832EE5B + E0881B79A1F8ED105A8CCD32ECBE30FB2B0865A6002D543CF1FE6DF78E29DA2A + 8FBFC0133BC52E363F696D36C7CB66680B6C71A021671C206A17DC1520A091D9 + FFC822744DA47298CA9D866FEF585F004F0942DEC366AF3681CEE1B2F1BA1960 + BD1602DBC08B055AC54EDFC2B63838F6A95B12DE347C2F486EC1A990F26BED92 + 7FCE8A586468BBD4EE5A2DCAD731AF5CFA333212789DA0CB2D641543FB2D404D + 722CA04E6E4CA25DE85378DFE258866E8E1697E8E661E2667E6A63410FE80A04 + 620D7DD3721595AFD2668680BC691183C6C566FAF0ED2F2801CC0620EDF7AB85 + 72BAD51482218D18F5FD35B6292F4FCEA2A688C6A131CD77AEE88B9951222C15 + 9C0D80C02643F28E13A08F8B0650F8EA944D1A73F0366C95441F00C93B6F6763 + 8238886D025C8CCD5E4474DD425448E6D4554AC6C33B1BB7D154E60C37260F65 + E488BD99044D40C61D4A82ABEFD5695A3C0C2BDD1A6E540ABAFDE8B00A056ADE + 35178F0561A90DDE10B9124B45009000C47623AF215A75EEEE60F383691378B5 + 1015707680C4DB0CED8CDB74BEF1037DAB2974EE024830DFEE5D72A3DAB906E5 + DC27844C6E7FAB7AAE5762AA6D8EC19DFD8446A660B66FB376BB6DDC3304765A + D43EB46C6E00D29188AF2D9E3C0D44BC5AD4BB1A5002AB575E0D6506D8F7B395 + 0E4FC5E53DDC2D276EA6C4C4A28192569CF508EAC347F77F389378BF9AE0B424 + 91512DDA34CE53933867085D1F3D7D76F1FF0F7E752DC7E8A91223881739EB04 + C2D0B04EFD7A79F427ED826FDA0CB99442F49DA10C02184E3FF828D4FD936422 + BB2A816462C5FED35F15432EB4B509516D0A586EF0C39D13854CD7C92C9D96D2 + 4BC6A4486732F0B3A52B70F00ADCF679059D44DFFEBB2D3BF350E03DB8B7A6ED + 94442145A2FF6C819B783D6003EE41882450163F14FAE7944692A0B74F28EE65 + 2041E3E885B8603A690FFF2D727061CB35EA47B163F20EF1306EF566A94C129B + 27F678362A55C6426E6B8EF204BC05E9FA8B29D69A9927F3C54D8DB048D0CC10 + B0653036E6DC77FF6E001B0BB053423CF535A0B5FB20144832411237AD0F9A1A + 0F08BA81D45A0B5A01E6456D330001EBAC0186EEEBE90E7629B20896B22EC5A6 + D7508C45948690B6C55AC10995D9EF6D9F0BFDC5B5817BAE20709C376D65CFF3 + 27E57383E4CA14986071DE475A356030F40F90EC040C09136E3032B6A70A9804 + CF04CC55540A10F52DD524A82F76B03862152ED9B50382F7046B311C637BBF3A + ADE02047C3574DFE934E7DDA2F315A81E02BE42843866A5239FE448C0F7F0B0D + 72ABAB24D1EA048C4601BEF67E28E953248656EACEFE1D046F981704B85029D6 + 8F08163B85C262956578096ABD69844AC305A27E0EF35282B859270B83CF20AB + BB22FA6B77E1F5264B4B77894511AAB56BD25D5E37CEFE12CE45FFE8E97EE0E1 + 0831E94834D8C9B7B2FDFE9968E59704092615CF827EBE445C7C6B39D305C9F6 + A4B7E0864616C5D7D968F52F441219D6FC538E11580E89184EF8F5FCFDFC22EF + 657A595B44A73E7286702016A4795696EB79AE82F08967D7D068027781517DCD + 13AAEDC2BB0FBA60EAE797970C77A8FFBA0C0B9D349F8A5FEBB00E56CFA3DD5E + E8933C57C32C45A9CAC0F37545C9E410C74828DB678B05ACE41F3CEC9DB94CAA + DE9A901EE6B08949D37628040330C344CA0ECD6626418AB2034E381F23BCBA62 + 8097ECAC16ED7CC575EC6B7198C3BA187F2E9F505E5509305758D552711B323F + 657661FF359234EF78BF1717A4E12A2C8D429CCF5A1CD2F71B31646A1A2FD629 + B2EA7975C34286EB743DA1257E32301CB4042ABB1E479DFF5F2783DA668DA429 + A6A1E9FAD5377ECA87D04E48539C1EE9C0CD74AB61307E52965CC72A6217B1EA + 99BA716BF5EF455AD188E20558DED9E60DEDBF7D999991961BC6B645196ADF52 + B32A9082915D186DE83B41D6B91286230DD7B6D70E94A61263B02FE65E4356A9 + B29E7FAB6EFC660F831BDAB7E18AB285C268FB024F8821CB66518E1FF885FDF5 + 1BB26E7792AF99DA4A267F922F77C7AA85568A1E2D74E61421958745EA24E77F + 4299AC988910CC83A4D7FB93D4C8DF5BEA215653447C4819A751431D3662692B + 05D680F41C5F14CA03FFA21D91935E77B05101A751D8F6FB7D5E617DEFDF7C42 + 958B5C71FD341E16B0A2E5A63A0FC10152A0C84B048E40FF8E17DA0B770BFE88 + 24E4F9E4EE3C53ED81133AF28D014DCE411EE607257E65849580905D32275C1C + B18DC4B8411BBEA2F333B44D7EAA6323CF4A09EB1E28BADD0DE908C03F7841A9 + 53BA07D652D382C975DFA713708510D0E2E57A761A271A3BBFF87908615CFB85 + 4EE08390CCF3AC595B4A922D23A473CFB44BAF61744A10912A0FC12FF07A4ED2 + 31CEEB8C7894BE3D4B86E51D9AED8F70300B5C8C8936612114A8A55F6D9C532B + F44F7918BD78B650C0EAD58443F07B3A838CAD14000539F34327F96EC30B9961 + FB1EDC173CF8FB3A65189A2E5FC4DD13ED70AED44E1DC59BE103E3D0018A36C1 + B9852F35A6BDA65197DB2CB3C68174607994AC4EBF841AC24DE9521FAB103FC1 + DC467F401407A4AA97E06B68FD0FA951D6BA268AC91F0BD31365B0C97B437667 + AA5ED7088268B696732AA8EF24D14B6F2F7D0F00F04E96C516B8FC3534C1A203 + A1A136BB12D4272AF4AB7D47879EE7FF00D519F4325A49C4A4E79C05CD0BEF84 + E2FEC4D63DA892947B415A101853F9F84060BD234B60CA76A73BD8E8756914E6 + 9F4AA59FD003780C7403EEAE8C8777F4207EE4E71B4B3A3A5643FC9BD5DDE244 + C83A9091447A37F1FE991BFB276CCF7029042BB9E4EA2C3245FD40B57B4BBB92 + 15581B4E93BC1DBCAC7F00EF0AD85161CEA5B05A2CCB6FF1860CF595686336CE + A5317F849CB08A5A0C2FD5AF9C7CBF70C0D00ACCF4DF4DF4D7CB307BA5AC0539 + 501EC7182A2C0D74874BC7C4A2E46EDB100F78786BD41069C60924FF61514FE4 + 4369E5FC2DA964BFDB6AF423582EA0CF8B14A568DD36C901FC209B79459AA3C7 + 4242C5006EEC166E3D6C7417924C0F7C71F71C7D4B2843A9E35AB2BEBFAC67B8 + 32DA65ED8BA29426963F524D5D31B0DA0FDA8C8E2D0D763EF3D2894B0182F6EF + C1E9EFD1A0E8FD4742E5C07D09AD19B4B3A354BDB463431022ABF9116D68A088 + A2700EE23842BA43A25AA128B17EB5187ADF34CA2026A480622F77058559CF0D + 9D12FA3119594035152931885A10026895248F6E1D20BBF447BFDCB2CDC7B488 + 6F0B5593C389EAF944F193BD09A74E8897CD11B4F1486162D37152A0C4A54863 + 18123449D6206B57D5F1688BE75B871D79EC160E324D8560AD87D3A7434B32A2 + 0805593931AC292F0BA134100D236A37901D14D74D35051FCE825A1BCD942372 + 18269EFC7C60CBEA12DF41B1F7DF665B09D0A0C2A319CCAE8808284B9B1C6CBD + 8419EFA1F7FD676D104AECEAD8248B981244C9AD4D809EA1D9F212C5D7C6183A + 95A5CEBB16416ACC0AADCE0F6AF5A580C2CF2A5D16CF91134480B3AC04D55E14 + E77E47D48A3AA5162714AAB058A9A4D746DAE2B4EC0FC195DA91FD8E70B503D3 + 157D8085ADF37F224B5EA66F6EE79A9E8CAE275EE12EA342854FF92EB5E4F251 + 157B25349A98BCD81696AE6FD9EBEF3A641194A5B4EDB12B8F7E90DF4F48B385 + BDC90A6FA2888BCD7A90C071F8B8EECFFADD4D7C5A155AF207BFBE24BA5ED1AD + 89A61C115F01FE22F24F4EEFDF62E4E099F151B16AEB38D5B718AB5EE45B586E + BEB3AC6F37BCFEFAE061A7901515E08B8CA32DC7658D61787414FAFD41F51FB0 + 833E84C9FB3AD1C4532132CECD6A5A0C2E5D865366A79682620B3EA51E561E95 + 79C413AA1D77DB6FF78F7049AE3FC902C06C5BD8585A28DE93BE943F15B1996D + 752E508811122AD893F5085D6536FA826CD1969C5A6485F69DB2737CA99D27B8 + B15DA6A6D579BBC3A003008769105E9A406CA7756AA8F589432AE6DDFA2FA3B8 + EECBF650D80627E98C519E35969E88C8C73B8478C2F7FE586DB33E2674E815A1 + 155024A56611C675B3CECA3DAFA3151A996CCA8D026A692F760872677F784574 + DBCC8B5AC3F9F3999341A2892AB93802D7DB75F77B661E66AC1B86918F4FBBD8 + F2C66086B6B4A22713053A52DB8EA8BFFF202940E6DE5F5F4821BDE8A607B4BB + 3AD9294066956EA977B37A17DE51B78BF6BDA2D3E0B982244B8BA22AD213174E + CD0161B3E93D46DA05585F779A3752AAD1B46149A08F9B7D50A8D008A063DC6B + 2D9BA2FAF2731F60B10DA97B7283EF7F8A438FF041EA8A6E01D38FA07AA2E1E6 + 91D756C3C016AA42135E2F29E01F378E39E4F5B57E4A0B782D94415511298921 + 087FA7C35A0905F8A30E0D148366365702A9B26250BDCF6B337143B4E9FBEFF7 + DEAFFFD5D8EAB25AD960F3D29DF6461B13BA66FD18D15E5AC22DAB151C340A1F + 7C00F1C10765C2510D2BAD1ACE556C8116EC98255C5E690FCA53F7E831A30A72 + 9CD3FA4713987C8A8DEB3E8100A69806499F506FE3AEA684FF8D42C00CC8511D + EFF85FEDDDD2A1AB56A6BE8E545C22D1305428BF5F7D9DBCE2E281AF35E03610 + 99EEED30078D930BD226368F9115686367D3A800FB8CCE12D3C4BE2A0A7CE876 + 37BE606A2A765F3CB71DB4D55A22D30C98961147599762D127D01DDAA6F15513 + BAF719534E5AEF781F17577267428394F7B49736D82371ADFB8ADB16183659F1 + F7A5FA063CF3B840A4CABFB29CF87FBCAEBDC107B14231E8401996097E2322A0 + 8F935E9601F4E71377A2392498A1CA014016DAD83892AEB90679DCB08571D866 + DE96EEBA25204DCFB4D0CF5F3024973FBE13E03B763EEA35C75A6C4F94E97387 + 3909025CF593E6C425BB6F9F22B72FED07AB06037B9EEFED123F5CEEFFCF77B1 + E5E36B7832159980F781503B3EE034BA531FD21A51CBA9CBE9A9370803143589 + 104965710539977A9C6D1D225CE12C0925BF567CA07924105671B6779D6FAC5A + F061341CA1181A5F6E279F14CA83048670713B6C7F0A38526DD681280AD40047 + EE083AD9E81C9410DEBAA1EFED06D68C838AAED2B2848E933BD436E9ADD5B2E5 + F1AA6B1F1CE0CC5977C131321F55657FE65E07A500167305A8A779A6323AFEE9 + BF307F5571642CD2D28EBF07C62546E13B39ACF1C791892D704AF9B0C17C4039 + 7CFAB2948F5F31605F30CDFFB486DA7A97BBEE367DBB2AE7F8A12B9DA17E90D5 + E464510CE70134504A4FDA5C60F827CF3DD7A78D26693E514BE6690C0270BE43 + E60F1E3D8A8C25F91E0BAD856450F5456FAA29EDD184BCF8952FEE605043455A + 328AB579F6BA85043F6D040A8A9DD56281664DFF626FB1C9DD92137665619061 + 6B92FE40A791E4063073412C3E72B93CD58AFAB56E2E78DE2E0AF45DB60E7E1C + C871144B4A48D9B6486D379C8ECDA781C5EF6B633F058ED1229C42EB2C60846A + E89A1BFB8B30A8A1A5985C736B1AD409E5BA2B83EEB75F93F070B12AAF35C30F + 131294001B7B8BDB568F068A9BF52BF4E89AC58637B56CC7089C7A2E526569A8 + 735AA221D7F2EA6317BCE8E842A92FD9B38324A66F39170C989C27F0DBDC6929 + B190988043D030B8860A1C0511DAFD0211C3EE13F4EE18171DEA757FFF8BCFA9 + 4654522FD6D0F702CD1DDD2EB56CAD373BE8A3F8DE69B1E1A81D50FA4B86F3DE + D05F47F59C199A8BEC3B437233BB0315B7967EEB10180957CEC6BAF7B3BB0144 + D92B3508CF1D8F6F2D20D828694C99BE0F4B2229C8D551FE9C702E1FEC1EFB95 + 366BCF492B129E09109DDA57483DB39F7CD8DC94752341D143CB58FC9C22A65C + 5CA14AFAF7EBF0F02B62DD8E7BAE27BC137B7EE62063AE57C00D3D7A7272C01C + 411A6E13B34CA4325971896A41AB61E0272F344D32F43533FE537BBD6F7084F6 + 4619E3D931A8851E1564FE699E2C5EE4792600C9A0C0B00633AFBCD16DBE66B8 + 0FB926AE24CE0CF5D06C32BFDF5D4D617ABB0CCCEC6F3253939CB391857944AB + 729EFE738E1FB2D929567A1C58B66D53ABD6126E10729B334B51462EC6B86D25 + 753C3E45661BC9C25A74CB14A30DEF8FCCB8DB8AFB944DA22D1E82529422D9A5 + 372E525F9241109960BB5B0936EEEC645F71BA84A055DA34EC0BB64D3DC1DD20 + 91B80F0A3DF13EF3B70EEF78C9B991BF9EDC33311BB825025BDBDE5EF17FEB4E + 99540314803FA16A1E00F7B0D4DD6C7CAC07EF21A71E9AE2E0D0F17023325D48 + 48A9CC2A77EC64FE3867452499E71666CB34FA7FF532FE5025E8B107448A607B + 1A1243063BDD6BE8DDEFACA349792107E6A416F2421A978C41FAFFE7CE655F72 + CB90004F15B10DB608003D6A30D60FBD22FF1D247C55AD4F06DC22B7E9736B3C + EC8D31DA02DA4714C23A0A4A95F06CB965894573046A9648E9E07CD9B250BBC4 + 4CC1854305984666B34C52ABB681156610BD660C2A66E3E9AAD65C8444E5A1AA + CA6EE6DA8D3346C42CE8541BFEA53EF3169D96CECA854AF0F2F845624FAB0BAB + 691E71B033A593E65019AE26F0BF62B02F67CEE82728D0FB42BBB53BB401797C + 71032537B3A08703A417E7AC57D6A207C8DCA36ED92D6BFE19DB7CEAB559B497 + 27F5BA12ED7D66A5661A9B4C245C018FCFF5B33EF27816E1A5946CF4AABC7146 + AAF0B69B977F0E3FD8CEA01E18A8A43CBF2952CDA492897444BE8E610449803A + FAD70F01B39812C60A10C44BFE4891D18AD8C78E64C6DB7A1E4AB4F7F2FDCFCD + 5104FA61FB62CCFA3E02ACE8C81F2E034E83BF3D1E910E56B7FD37B94BDFA7DD + 0B515CC321FE0673AD01A3C2236E8117C962BECB8D4E8239C7D3BAEE6960E590 + ED7BED5D719F4E51BA791C5FD6F9EA84323E993DBBA58114880B381CECE60500 + 095178599F100D9A2105684F3AA94C74C566DE72319695EF7C0D19A598B5BD0E + 9FB4E5C4982D9BD028DAB6ACB1920BCA4CDB8445AA59B171735B2AA1689DD1F8 + FAD49496DDD5CE039798896F004B545FA2A7084558F49E0A61A955F28579516E + CC03CA108B5E13D95EFD6A14319EA0678ADC3C14D70D479062BCC4BAE8D62469 + 1B938D9976A349FD1CE2BF8F2BE66CF42793F45784C959297ED8892F25849983 + B79F6B12F96722B753D36041DA4B7134C04B509F711FE7A26A0AC600E876FCEB + + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark + /GVZDIH+CMBX8 findfont /Encoding get + dup 40 /parenleft put + dup 41 /parenright put + dup 43 /plus put + dup 48 /zero put + dup 49 /one put + dup 50 /two put + dup 53 /five put + dup 57 /nine put + dup 65 /A put + dup 66 /B put + dup 67 /C put + dup 68 /D put + dup 69 /E put + dup 70 /F put + dup 71 /G put + dup 73 /I put + dup 76 /L put + dup 77 /M put + dup 78 /N put + dup 79 /O put + dup 80 /P put + dup 82 /R put + dup 83 /S put + dup 84 /T put + dup 85 /U put + dup 97 /a put + dup 98 /b put + dup 99 /c put + dup 100 /d put + dup 101 /e put + dup 102 /f put + dup 103 /g put + dup 104 /h put + dup 105 /i put + dup 107 /k put + dup 108 /l put + dup 109 /m put + dup 110 /n put + dup 111 /o put + dup 112 /p put + dup 114 /r put + dup 115 /s put + dup 116 /t put + dup 117 /u put + dup 118 /v put + dup 119 /w put + dup 120 /x put + dup 121 /y put + dup 122 /z put + dup 32 /.notdef put + pop + end + %%EndResource + + userdict /pdf_svglb get setglobal + [ 0 /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/parenleft/parenright + /.notdef/plus/.notdef/.notdef/.notdef/.notdef + /zero/one/two/.notdef/.notdef/five + /.notdef/.notdef/.notdef/nine/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/A + /B/C/D/E/F/G + /.notdef/I/.notdef/.notdef/L/M + /N/O/P/.notdef/R/S + /T/U/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/a/b/c/d/e + /f/g/h/i/.notdef/k + /l/m/n/o/p/.notdef + /r/s/t/u/v/w + /x/y/z/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef + /N1715/GVZDIH+CMBX8 -1 TZG + %%IncludeResource Times-Roman + [/N3187/Times-Roman -1 TZ + %%IncludeResource Times-Roman + [/N3183/Times-Roman -1 TZ + %%IncludeResource Times-Roman + [/N3179/Times-Roman -1 TZ + userdict /pdf_svglb currentglobal put true setglobal + %%BeginResource: font QLZIDS+CMTI8 + ct_CffDict begin + %!FontType1 + 16 dict begin + /FontInfo 15 dict dup begin + /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) def + /version (1.0) def + /FullName (CMTI8) def + /FamilyName (Computer Modern) def + /Weight (Medium) def + /ItalicAngle -14.0400085 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + end def + /FontName /QLZIDS+CMTI8 def + /Encoding 256 array + 0 1 255 {1 index exch /.notdef put} for + dup 0 /.notdef put + def + /PaintType 0 def + /FontType 1 def + /FontMatrix [0.001 0 0 0.001 0 0 ] def + /FontBBox { -35 -250 1190 750 } def + /XUID [6 5000826 ] def + /StrokeWidth 0 def + currentdict end + currentfile eexec A0B00ED5187D9C0F1ECDF51878C3AA5CAA3EC8DC423323 + 00A152553EC9C9C51591C81BB5A2F58753878D92B1C73E948BB360F467A7D593 + 2446E52E22935D5D0316634839C917AE2BE363D6AE3760363F748EAAEAD9AB74 + D863835F45718D23FB3980D0C645610BF765847F4BC5CB03391BDC9D40A6A460 + ABF0D95BB6A176DB5088A1068A0DFDC266C25ADCBEF3E5472E03E0D29BC6801F + A2AEAD77E33C836B01D3632DEB22D63B3C2572FE1DFC7708120CA8AAF83A79F8 + 66DE7EF367B087FDC28A5ED9754FACD2F45992D59F5915EF432D3210E23153FC + EEF0F389773807EEF20A95B9E91DA5EC8BE96554EB6778D46FC0BC582DD4CBAA + 623CC96949544CA936411EF1DEBCF7542841F922466E40010AE62345DA470BB2 + 4ADCC3BDA10717A9080FFDC7894AF815EA00E8B4790F204CDDE30CCD66212971 + BC9E93975C75C2966A1863F76ABC51A0E1B01F922F0F810F0F3B0F62D81384CD + BD8DC3E8F17F3428CC6EAB7C90C32EEC39F40E275CA856C9FC976584777095FB + 4FBBBBA9DF43DA94E370DA7280D0EA554F7A0937CA15C8541439BAFDB1714EB4 + CBB3268E1959F7BC3A04ACA5837517CBED94BA2B2A9D0C8E104565E3389A7751 + B2104FD02973483EE9F654CC44817FFE53325240204F0B48F5160ABA13B81533 + EBD3299CE2A3B303DE5D29FDE09F8F8AADD368D3EE369C43B49EEDD10168B7E8 + A4F1EC165227304A00AA10F42E0A885688AF5726E65C13AABE06AA78BF655B5B + C66FB2A61BAB1E0055EF792447E60F29A2C7293DD11AA232219FCB02D0794AFF + D286FE7CCF4F81E51DF1E86A7EA8DB4F03053746250B3EECF283E71EF1361B1B + 81B900F302F7AC1D491D720250E2B33A117716BDFF78F17B6953C8ED66C092D4 + A7226CCC8A9748D7D9416A8548F0C1ED3281F3F26C00C44395572FF051793331 + C0984BD94C4A86099A3451FFA794EC593FDCE60A8759756A13869A18CD351346 + B070EEDAC01C147309CB7C01209F43428ED6819678C005A475C38B9F19344EF1 + F01C2213A2216AE64E47BDAEA713747FD6A2D53E695660D9AFCB737990BA6F55 + C3D19F30E603B9308BBF7119F73C9BC14218939DC98D943974C1F3848EDEF9B4 + 97BB4632F4D7E67BB78F083F68942274B5E5CF733AD1DD4BF7F69F9CE5DEA6FA + 789C22EAB3EAAAFE66F68DDD6E6606A50C9ADE4BAE4ECB18C2C4F91B96E02071 + 0F72BA1E5955E9402756E0CE1A9BDAF603292D32D92BAD04D6357EB5E1F27C7E + 90390C732F717E94C61C5768A5E9536F13BC3B050A1BE4F6523EFC4073277595 + 99A6A469229942C5B7A1A529B9F3FA9207F7F898AA71663456317A573B4B877E + 71F5079E7A8C0D412179CF25E617BBAF8C64748F70789C376B1F3B6626DA0B9F + 69A617AE9B05965B0F794BA178B838461110F672B3B26D014A098B256368AE84 + BD212313E088DC36CA7B355AD286AA26F5404CBFA75261BB7604A872AAD2215C + E27DA88B5CEB538F5AD020A5C1DE40DE6A4B0548BF3415765AE1655A05C5B531 + 6F5B00947E0FB85C765513CA9DBF42D3B82CEE29EB536C3E78622CB851E9B0E3 + CF415615439E8CC459FA6B1E877AC37DF11F29AE9121C15BF7D2A57AAED0DA1F + 2539A885FE8C72DE0B4F01A7F98DFC87B98EDD1DC29CC54CFA8A26671B1695A5 + 5432C76E6704BEFC52D1DE842EB87A020764560F4BF7A33CF104687CF6AFA679 + 642243EB0BE390C496C1162861FBAC997A7D9DD4F80485844A5B7802A3FB3748 + 78C2033D626D0A5962EEB21F8877D6375292A55B2B8C1B19A4ECC31EA6641193 + A7B74F82A3E44D16466E04AA8D36F377ABA1267811EF177B85F748C9E3CAEBAB + B36921016CBA361F6D38ED537370658F2099695AAFAA26666C8B5A7008B2489C + 15FE72CC08E4C30B1654F532A58CC6D79536A4B8B67B11F62D7711200F88F293 + BF3126F285D9EC8BC78DE4E64E2126491858C2317F1000BAD4440B63D0C01B96 + B596FD636FE3D536FF1F8C30D6F997401FBBF6F19E83AD08EAA45552E50F86D3 + 8FC815BC5D9DBCE7902C7DCBAFC9DEE71134FD0A5A7F06EA964F3420AEA938D1 + 90D1E77915C59A697FDCF90ACF20B7FE314A09A607113193A50DB6649B28395D + 87CDC9DA80BB14480E6F631086804FCE0B8ABD20F4B2EE75C71FFCED5D52EB9C + F7397DE7637801D9B4EA8A150B03768AA0D67DED5011EA87E70CFC61DE3E72C3 + 92A9F1DD9AB953D63807D95A12EA4C8D29ADE2FB104D80F5D099C517024B4EF1 + C3404B0779F49635A309AA3E6BDDAA5E28AF623B98C40C965DC6F49BF89713A2 + D22ADC686B1260F50CDB7BFF99FDF5CA3F5C7346845D975DD7B6567B23677718 + 5EAB0B3A771FAAE23ADCEE2F0C4524EC703697659863209971FE7C712933CBD8 + 2082B1639325499B47B84489B4A73A025E0CEE6ADDCABCCCF00DA62ED7FD4BD8 + 36FD007377945179759860CF0F80375103AA79EE52EF27388D0742B8392DF864 + ABAC03186683279D64977081FFFBC9D8299ABD5D5CD3D8FADE693C79386FC901 + E3A81816CDBB22116CB970A0D8E96971DA452E8009F42338C1BCC9DE1AB41244 + 4CDBE2B8DB24C4873C962A080CF721ED9BFFBA04739B036268393FA96B0C2186 + F1F365E10F4AE950CA90BBF6A0D1E8B4B778DAB10365DD9D57028053C51DCDF3 + BBAC1482D92E66E63A439D71E97430577F8C050E6C40EC8A86C1C1130998A02E + 748BCF9EE70BF437B7534F6E2B19308132065C90B936FC222FCA78E93AE5ACFF + E47B4E2B5DB0689FB2AD9C28976B1B2E9E49F6116C8BE3C0E4BAB1138330F921 + FE02C1E0342E7C7008B810392E9E7E2247312C46D36AD9908DD2019E2E47D1AF + A80D65D8EE8008B6EC3556EB413906F06239561FCDCAE33D0324A2EA35472CE7 + 0C43163B941A4835677A69430E6593F05AA776CC281EEB3C4C41010CE8F186BA + 796A78C6D0DA1DFA79EFFC03F40B8429C8ECE21D130AAC7BD3F02BD21764EE36 + 69D171C77AA1E8FE60AC838DF7D5E7A85BCC632C9039CE8F567BFA43B58D0166 + 2E315EB87029A4EF21E32A5490B9CD5475A9CD0D1AB802C4B9503C5BED5A1BBC + 61A07E02FD2F8A0E2CF6C9BBC9F42C8B67EC87FE99E304315A675CD04A49053B + 456276D5424C5B64E8FB55E37E619B39770DD9C2037C4DDEE6CE88695DD6BBA2 + 870BE499387A779DCE685F00F84F3D55846436661B92476FB163FEFE94B23DD8 + 070A8BA7529D8FBCFD172D4913749A9E3506133C148528F5C28E6F7E25D919C2 + 04C20080BB184C59DD44365118CFDADB1E709BC32B63972ADE44BFF735D500AE + EF1C646689C02EED3CA01BA6EECFAD6D0EEA90CA29EC2186A45092402A08D0BF + 93225B6D3821254CB1EB4AFA535EFC28AA49B0111C6FD8F90A8DBA59C87CF392 + D59BC81AD64D3CFC2FA4B6C2AFB386EC047457124F242D75A2D077ED77E2799A + BE151A0EA1E4630F87C89D27E790F51B1110ACEA4360E8AC4DFD1E2B384254A3 + D8072D713D313AC8DE63347598FEE9ACF32D0C6CBB8D51E012654BB0944E22B1 + FE75EEB98964566DB31B1759DC95F5B14B05E730B817C6F52F242A2C8D1F5CD9 + 6734B1C12789C5CA5480AA985B9F946954569B0AE5D35373A6D78605CA70E7CC + 398B826ED52A37F1409E7501799A5CE525A1093C722E9066344ED272E132ADF2 + CF4AD718C4E85CB0B6E1F7B6C35FE143B01BE8FD37BE75A0E93662D0F2D4C8FD + B007AE48A17F8935280E5E257C75B5657BE3EDBE782638C1A30C9541DBE3DCC8 + 9935F6BBEB6BBF242DBB487329B2888D7C6926BDFC9E57DAAF7108B0F9EDFE93 + 6D3236A0A16C6635DEC4E0B2BBCB9897C52867B3A15244D6A969A44BC98E32E4 + 851C3702D43E967097E4F74B8E45F209748220BAA5BD1E619DB182A7A27768FD + A49452D1E08091E54F2D7C28A6208E3A41BF91EAD05AACFE73029A5D5922F221 + CC003D6AE667B1B7161ADA24B05B2AEBBDA5CB7812F4B872756BD68B31A6D6EC + 1A052BE2E4C9104B9D968CE84AE74553C8B341B215544101A5CF20C179DDB627 + 8CBC6F1783266ACFA80954318304A8CA956C5E7FA5ACB92106ACA1FF636E95EE + 03D26E3DCB8302073D16DADCED347D5ADFCB1A4591E9746E6025D71EA6E01A16 + 9F8F18320A70360D480FEAD604DC23669B35AAEC72F673099C90D6614FA57530 + 4687597CD8E7625C9249992D6EF2D17CA8B309D7C8E415CEFE9CEEB91A703CAE + 6C15CA62AA325AABC686E53F52B2F418FF5FD5C4E913BDC2E7CB27A27CB175A2 + DD74D92688574BBDC384AD779C0E651B0E3CA49C20CE887498C1114F4AD6CD01 + 2516E3D54B9F9FF697DD2FAA8D7B90EAE8F3A9D84D390816DA9846D4903E7A71 + D04B9F3E02533383DDEBC076B6FD1049DE1F4263BE8B9C662B8556AF73EB1C52 + ECCAB91AF9768C2C70A689464DB808AAA99EA0B28E5C5E8301EA11611E03A2F3 + EFF42EC28E69CC9BA4E1B733D73179C482DBD3FFDC7C173CB320DE83EBBF9444 + AD4B75E1B1FD2A48890A6BAAF875BAC50F91A2CBDABA8C119C2492773FB43DB4 + 11B2D44A506BDFE8B5A348C6ADFF3B5CC621F505A2982887F90E5990DE59105C + C2BC115922B000D21ABD4BE09CD4FBDCEE22CBD44C2EA228771658C836437567 + 4E148241F4BB3FBABAA4488F7A864ECA2F73A03A1F83A79FD7F5763BF748FB14 + B42E8450F7280AD4DED2BF7DB6A753777C2F751120CB9C3781ADBC4578D4336E + 29BE7036C80550BCD5184B0F212A52DF7FF0E1D79EB4EE5CD80ACF29C1916E85 + 4EF258ACF11783FA8DAE62BDDD2D25FC95E5EAF83B808836D50E97AE806A3E34 + E597671C4B0EEE74350C23DB1FCCD17B8DA476C7BCE22EC5591DB7140C5DE973 + 073C6E3C31C9E2F7822C7298F6F21D90D56FDB05767CC37D34F0EE9C62E45DD2 + 6A30AFDB83E700C7A7A3315F1BD466030FA220C31FD44332B845B2F9F7D6606F + 86978C4F3060707C432B25EF501A03D230C8F2C25EABC31CDE8A99FE497B6339 + DADF34A73DA35C8917BA68A9E237BAC3397806C79DBCA92DD81288A523210074 + 4555A2C3A13F7B1C7D23AAE646C8A8EC4E5BFEB3765AEC7D3866CCDD82077CC9 + 28ECCD2160532DF7F675872FFE631E5C37C835ECC2FEF23A56E33F65777C7F15 + D5559B9A24AC83514BA189B2B6912A507EAE00265AA6E27767100B31A87574FE + 6ACE0724DD7BF6CDB82F035371BCF5411D66F51505EB2D569694E627E850AC50 + 6652E340A8E28DDB190EE6D8F0B8C77F555D06A799E7EA772A9459E0CBC4F564 + FD7D515B43F9688ABE75C9252E46EB28A8F3EF7D49E8B229253ECC33FF5C37B8 + A97798EF18E71AAF34FFD4837DC61EE4367C5018058526715A2FD0091BD46B98 + A05860FEB3B11C5E2F7580C8A195DC57417BCBECB30B8C90D50FC64AD8CA97C4 + 05E6530BDCAB550730A8CE79CB36210D2DBEEB38B5123E1676D1240722CA7B86 + 60E01DE7021A11EB33B9B2888687D7AC35659AFAC43B185905652DE7EFBAD4E9 + 8CE56F701FD72DEF0A77A8EA76BBE0F5C1D72F80DF7C75AD83658D2141B8D54D + FE4371C27757D80297B9F3823D28CF953655C540F7AF5C7F90BBB1BB385E10A5 + 4F6EDBDEAE7AB70B3975B40DC3F7FDD0C967D1A302EEA305B0C2282770BB972C + BB8C0713EF283047A6196C3BD417BEDD220215607FEA3B0205617D768F1B5746 + E5A20D5A24C4DAC44721B7881F086888B6931F45877926FB12FFF21A8FE2EDF4 + 1BDA6C994C291E609F28B7BCA1585F15E0B6CB7F774FA7F08D9073E4C125E3B1 + 4354E405E7CC7E9AAEBFFBD3F6A9AF263E861125062B4CA398C6AA820386A136 + FE3E93F3CCC927478E91007854FE4F4569D6C1EFD35005C2DC19B18B6CE7B29D + 192FFAD13C8418808C8187AC6D118E523CDB4A9366A05D97AD0C3BEB23CE811F + 115682DB4CAE9A3F9B3DC4C810DD92F60CCD03067B7CC38D6A6ED861990EA9DC + 4A95231020A10115E07A6BE7A6A51A8F673CB63C7E63ACDF882427529B787D7D + 9B0BF2866F7C27D24168B5B67015A28BFB1A2D02A7EF751C1E702A85EC676902 + 852D10376494EDF50EC915FAD46BC9C7B400F5363FDAE3A0D78EDA1B0264475A + 6772983E32287EF640213FC2E494BE4144F7FCF782E205E430E792B10584DD24 + 1D1A857BDF5E54E20F7F4FEAB018A2AE378B25A9D60636602193DB8F7F65AD9F + AE160B5FFDC267B1CDA184F679E1CAABAF22A7C457E406253BD8770F74E80802 + FEB405B71987D7723FB10C5D9C601CCE461933B1C6C7FB7AD8B09EE79DE67B76 + 1CB8CCF04E5B7762E31FCB5795ACE5ABF4003695A3139C90E00F10D8507345A2 + 5347C45511091C582968BDA63680B383559F04B761D6F1AB7F26064CBE27D642 + 783CF5C87D38F85578C38655B1F4188E0818BFC10C591DBE572AEE8EEDDBD5FA + 49DAAF9294FC5618492133100F565CD9C14428C400F436664B2EA7779C1CB3F9 + CEC48515F68E0B223E590D46A9F39126616362574FF8A6A4F4DBD3ACFC184D2A + A9142144C57D183BBEBAECFF7D5B6C859CF6A68E1AA7B7E3B574A5DE6FA8BA86 + 847651F320BC7212661775EB2516A1ADEF70C40564377CBD4C1638274F24B556 + 17FBF0B077459405D99B896BF463B7B4B5871051163298EF121980F6C1221788 + 77E109769179B281337E08B64D955E744A6FDF6EC8F45E39393B650CB8CDA530 + AABD33F2E9DF3B04E1B2A2D88B339CB664F3101C471B7E90EC7216795C35952A + CC3AB1F739304181FABEEABD864601052ED316B98BA20AE301D26C3611278E88 + E6A27878D7D2E550E2FC68D7C19B867263F1BDF45C47C413429C8467B98658D8 + 6D704FB32A71CF9EEA2F8E47842C74806022AB7BA70F0F914BC34B5C23A61416 + 66BEE6BDF6B30054DE106F6227A5F76BA2A0CDA1EFA1EABA73AC98E97614A397 + 7CF4E13254640652AD5DFEA562296974B3CA2F6A75C93AAD3F31A6E61D13E47E + 129EF162F05426B7FA8A9B4903234CA0313527EE2EE9121298A77E9F81761EFA + EEC0315B5B67F98C1C9139DC8F74EE5E3865C71F2BC8B6472AFA59B85D84CCD2 + F4D56226F0D9B065D4085D1244DA2F3DE2D53A5166B40698F29582E79211B0E7 + 27938741526C9D8F51E6573B6037CA208D62D09BAE87AED5996B6A4422F03CF8 + BECCD95AECEA5E9845D0CA2DFAA368E2BD4BB9B6F00AA29463E94AA304628731 + 5BE9479163917AC09FE5FA844FB67B8ECDE1CB6A5AEE53CBB751C7CCDF8D5E1D + 58F212F45FA874246D1EE04CB31F5CE47CCC747C16BE26EFCB31730B48319BFF + 4DB328D8771C07EAC4CDD197EAB64DF1E4520E572C8441B3CD5212DF30DFE3E0 + F2D597E1620271D87DE1BA72CD1434A505DC8ED9A2D3DE93F4DFA774D27D6C62 + 6B6430857B92FD7ADBB14CF3FAD0737837B197CBD99D00F1FEA465D2F444A23A + 8F92269AB809BA8F34BED05683A3D9E97ED96DEF24EEEAEDCBE0120CB7FC2E1F + 6005776776101F64E844D813275FAE0C0B6D1EBEF3E4B61B150FB2EFEFF83E84 + C7379ED8C3B36FB0F1B1B9FE9E6B268DD3A8F4AAA2672DBC0A002A8E0B78F62B + 56B8A7ED1E1B0B88361761D3B8257D2ED8E31A61FC0AC548C964B7B1A5172BBD + CF949CD8C00E2E6D3B619F62C42392794FE4E474C1E1ECEE8F7F742F24C00D71 + B9163AFE98F7C1D4C0D68F106A24A0CDFA60C2D1249BEA283E13D6E5423E71E5 + 2C3778C624CC60B53B82725BBB1F7E484430AEED279C894F8478AF5FDCE5999B + 7C62914B22C17741AD1E1B10FF95BCD18EB33AF36CE3C8CFCD42073BB893ABCB + 0976161EF0933936F2C157E25A9603EE8FBE540529CDDDACA51E2A0ED1C39BD5 + 58D9FA356A8BE3B27D0A3542FEF1287C5E059C36C63FC438BCF052FA41F4B357 + BA87AC2BBD2576DDDD1DCE0C6199BBA75D2FE832568727E3252987381D8F0DC5 + 51F010A5AF30A04CD4466099504F66060F01AB2B628B7DAC70C0E185ABEA9972 + FAE52A1CB36366B3762A054181C286D9F8D855914919276C536A6E71B372DDBD + F27E0BA3CC0CCBC3DB365640C066392B6D099984668A55EC0F48E0479CA00E2A + FDE0A220A6CA9CF3C5E3803B0278640064B724A8C3E71E16A8BB607E2E34B824 + 78E936F9E379F06E0BC2808558B0C03BBB679106527AA37AAF76AACDF404E85B + E6D59635FE44F7C5CFF66DD9B153FF2AB15CCDBE7D409F72D2FE4942AAC77FE8 + 93A4670D5747EF52550287E09014E920369C9244837591FFAC967A0E80F4E5DF + 65EBB0F35DD35944BDFD52A380DDFEB44E52637E7DC22A6CF439F823416A5D25 + 7087F370664754EEFB42A9C5FAAB7014766615C72816AFB16BF873B5171DCE40 + FD54C2D82404C168DD0C26AC353CE2B2B5391F00F5F9EAAF6E6F50130B2BD416 + AA28380BA1DD79E7A40F23E7B7EA4B69D75886801F38000CC75B077A0D1DA1AE + C55C3F086CAB1344CE63E745C8FFF46DA595FE7D3C925F91D80815F1584F7838 + 9D7D148417651EF7AE2BBA14DFA34AD682FDCE1B005C05C3BD5D008773E0C9F6 + 1E208E7AAEF43F3D95B0DFA546121D98073D930E3BA6E7B06AA3291D30946C55 + E1B3F09430CEA43827C380E0EEB3863BFA832BAF8E2DC6792AEA8C192AA4B4A9 + 98115C1A144259E277E61AF2EC6EC14062923268B71DBACF8FE540812B3F2138 + A96DFE943EE80F8906C37538916310E97198D8F086034C045F11D5F92E08A8A9 + 2ECB86FDB73D3CC0FD74C4BA4A2E4CCADB5B5BE9B5FC4D9474AB2DC1195F6972 + C5D8515C33C89753C48CD6FAD57E97FAEA961E5EB692B729C2C756CFB86481BB + E8AF71D6710A83E34E1D848B9C86F97BC6610B14CE49611F807066E8FDC20F67 + 9076BC34225E1BD2CDC25DB08634D397D8BC32F253CD4A35426CF38CA8C6F46B + 2FE63227367C6996BAA2587EC1BD2FE6FA617103A3E41ED2AEB538CB841864C3 + 0964DDD54AB61DB5D635CA311D820B28A09B5736509B4CDDD4523DB160444506 + 5D8B9C8252AA8A2468D39B1372858CC1A1969A2ED653A9918142DF9228F08930 + 87462998435DAD5A1B59A77BE9CC49A6D284BE5951159EC69ABCE473F3375318 + 967BDB3316AA33AA5D3D9D6D8BA651223E514D8755BDAEC41B15DD9D0DF3D8DB + BC18B72E1845E08ACD517048F896E2366DCED261640621E374423960DCA20046 + 7E2A308FC3BFE9775BBA88436EE025A54EDC004263AD65D053C9E2DB2F3C4F37 + A79187178C1D778A2D23CD6938ADFE34F34C12A01CA37DF58A7EF957429B10D6 + 059F16740EA86FF4F53548E9A18643457AE5831EFC6C1B1B10FFCB1BDAFF1E65 + C176D730BFCDBC011EE01C85B35ABB15D9F4800E4DFC1227FDFDBB43741FC32C + B0AD23112CBFBD6F0C31345C6B29C98A4D4B9C1FA34289A36F6B4DEAF85AEC15 + AB424DE80D94A20894A1B636F0E18C05F5EEF00DCDCDBE6AC2E139B5A9A44DFF + 888CD13DF2445F011A0B9E632DF762019A35CD9D703B477225A1F3AF99FB36EF + 1E9E626E91BEFA739B90EE35506D91E557C36881882869789080CF73533514FA + AFBC0F3B60DAC061368957551468A8A726FB14043DC079A3BADA0FF1A9E9E511 + E93FFEC9190C248C4DAA8CD63F51A5A841C833A0384C47A560DBE068629D8740 + 5695439BAA92B1E5D4D37A3F550EC61190436D49069FDD5207055142ACB8019D + 52AF39007494BF9A42B00759A062B8A277F97ACDD16C3AF43AD976E4EAFD4B8F + 9C80CC752A1FBC34A2A2063156B224AB2FAA30B01A5EAA83D31563FCF0CFF0E6 + 53353CD324FA127C3F9880CC3BE8F603EF4B730561029DFDD727E0133432B59D + 77C72471FCF69E203FB8ACD6292C4BD7C9476F61980F853919EB7D578507D39D + 9A85DA84B9B921A508C3CAF64D7445B7E20F7F6D7628EBBDE2842ADA39551DD0 + 4991EDF2CD51C4216E004E2BBEB82A8B60B100A063F0C7BAD7E9FA32ED5531F4 + E58C72C492981E6A8BEFDDA188C982559F3269E6BA78597AF1F1B0278BE01DC1 + 8D1B310C0905366514509A9AC4694DCE42976FB36A46D73BB015CE77D4C864CD + DC416E79D4BD9735784B7A9E843AED35AD6E23B368D06847CB32BE8CAC02AA3D + 1651CD06FDD0430FEB24027AB2A6A93EA0590A10DD7576E2103003089E46FA6B + 4EFC0D80A20527D9BB9230ECF9D623DF4FC403B81C3E64286990ECA29A3314C4 + F3073B241D8B2123461C545431F60D79CB022C7DC33DC261AB17A8E88400139D + 015985F6052EE68E3C83932AFE4C32816A843D7F9EE05B01E1FE185BFA6B28F9 + 4CED04BF7E28097F6FAD346831798F01F19B7BC32020E96825738370DCAED065 + 8C2476500A5C79370CA73F049CE034874944482E2CFEA9E3DB1EE83DEAA0340F + AD6D09C5A09F94467A9BB9AD62CB11CA44B2411DB70860 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark + /QLZIDS+CMTI8 findfont /Encoding get + dup 12 /fi put + dup 33 /exclam put + dup 44 /comma put + dup 46 /period put + dup 47 /slash put + dup 65 /A put + dup 66 /B put + dup 67 /C put + dup 76 /L put + dup 77 /M put + dup 80 /P put + dup 97 /a put + dup 99 /c put + dup 100 /d put + dup 101 /e put + dup 102 /f put + dup 103 /g put + dup 104 /h put + dup 105 /i put + dup 107 /k put + dup 108 /l put + dup 109 /m put + dup 110 /n put + dup 111 /o put + dup 112 /p put + dup 114 /r put + dup 115 /s put + dup 116 /t put + dup 117 /u put + dup 118 /v put + dup 119 /w put + dup 121 /y put + dup 122 /z put + dup 32 /.notdef put + pop + end + %%EndResource + + userdict /pdf_svglb get setglobal + [ 0 /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /fi/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/exclam/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/comma/.notdef/period/slash + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/A + /B/C/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/L/M + /.notdef/.notdef/P/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/a/.notdef/c/d/e + /f/g/h/i/.notdef/k + /l/m/n/o/p/.notdef + /r/s/t/u/v/w + /.notdef/y/z/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef + /N1712/QLZIDS+CMTI8 -1 TZG + %%IncludeResource Times-Roman + [/N2625/Times-Roman -1 TZ + %%IncludeResource Times-Roman + [/N2621/Times-Roman -1 TZ + userdict /pdf_svglb currentglobal put true setglobal + %%BeginResource: font ETIMOC+CMITT10 + ct_CffDict begin + %!FontType1 + 16 dict begin + /FontInfo 15 dict dup begin + /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) def + /version (1.0) def + /FullName (CMITT10) def + /FamilyName (Computer Modern) def + /Weight (Medium) def + /ItalicAngle -14.0400085 def + /isFixedPitch true def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + end def + /FontName /ETIMOC+CMITT10 def + /Encoding 256 array + 0 1 255 {1 index exch /.notdef put} for + dup 0 /.notdef put + def + /PaintType 0 def + /FontType 1 def + /FontMatrix [0.001 0 0 0.001 0 0 ] def + /FontBBox { 11 -233 669 696 } def + /XUID [6 5000779 ] def + /StrokeWidth 0 def + currentdict end + currentfile eexec A0B00ED5187D9C0F1ECDF51878C3AA5CAA3EC8DC423323 + 00A152553EC9C9C51591C81BB5A2F58753878D92B1C73E948BB360F467A7D593 + 2446E52E22935D5D0316634839C917AE2BE363D6AE3760363F748EAAEAD9AB74 + D863835F45718D23FB3980D0C645610BF765847F4BC5CB03391BDC9D40A6A460 + ABF0D95BB6A176DB5088A1068A0DFDC266C25ADCBEF3E5472E03E0D29BC6801F + A2AEAD77E33F2F7EBE41F5627C7D0184CDFA9F2A570342A8B72ACB3CA25431C6 + 3D4B3D2E717752A6379F0BE677533B15866160887194BA053F85E9BE7F45CFB0 + EE404ABADE5980A466D8829B81FE31E32D4881A3CD4A7A885BFDBCD3475D0E8D + D03BFCF2CECB7EE5EDE292E144313924C2C9DD7E9F2CCE8E262E44F8E0EDE547 + 333DF17738F10CF1C4246073D51F17A5900F53F7E50F796DA27275FBE6024DE7 + F165C1D84FA1046C6043EEB4C49C62C5958BB47E0FEA75FABAF58D82BF2B9607 + 7089B127510DE68AEF4C5A16B768867DC83DBE4F189CB5E373CBF41322300AA0 + 2E7AB62036C95279E07D9B4EA54B709D8E88FA5AD5FCE9500A3E73A3DD8CBEDA + 60573266E422B409B40ECCF5E78AE1D3C3DB157CEEB545D142DEE29149AE6F90 + BDB0D9182F6AF035D23DED83B4AE21259EB4AE303A2C1D6CB828147A263C8086 + 4D2A169BBD9F039AF06D22C8E0C53FAC56BA62679992A42EE48C48F446E9C5D7 + DD406899A0C3B41BF06FE83A0E3BE44752EA4ACDBE68ED09FE1A578FEFDAC706 + 4BEB23ED4F371CB222FD04F89C3C5C615D8ECAC20B51E2CBE2044B7DC9F5BEB7 + B7CA3FFBFE4AC479AAE4F6F9B57301FC43E7EAFC784133DF5DC207D63801C280 + CD3531FC6135D9FB1E45BF54535E20D0E7D4DBE2BC15E85543BC9DA21C52CA55 + 1AC714F0A60B5B7C9D8F53C9345F76ABD6CEF24C0DDA18E68A591DD4724CEFB9 + 0AAE3A9F49CD458476E6C2406C6FF65EA85B7B32C58EAAC120156E6CFEEFC1F9 + 90CB09B097C36B8792C38BA3D58DDAAE42205318AA28AB6BD0F8C0159FF9C3E3 + 49C90284C1B91F9ED4B0C2D62DA7F65350AD6F27F5FCBC0DF9A480A967EAEF0A + 94D7703E66E0AFC53ECC4D99F83B45FD5CFFF47C91E52AF2090CEDC0AAE2EFFF + FDC71B3E91DBD858BC3A910676366B8D9F24D2D9770E0C9565FAEEC1CD280262 + 5F4E290D4E8393BAF85752E80FA88819131F3642F40FFF6F0652ABCE83FCD5C7 + CF1F928E53921741047CFD957F955E06F04E3F26E043DE3FC303EAE11BC422AC + EA28F95CF1A6C5B7295D3ADE558242AB375C6330661BF99BB8EB34EC97622B31 + BDBD9B7C1D0CC21334DD94DEF6EA988820C8398750D3CB6C0C926232F70B69A6 + C9EFF8AAE9FCCC895B7C5E793EA2A96642FCD467ACC540017AC8EC5B8B41C81C + 5296D57B12D29D88FEDC355ED74C54EFD0E705FAF0E73E53D860F339CE827D2A + 3C53878BD80240629CD46D3AB2EACC12C9F5905761898D92959CF6C48600AE72 + E0C556DD4215032221C27FA393848AE63A9ABE2330B96D372C91F4AE7DAA0C1B + 265631ABC47E2D2E7ECB3B2D3B28660FDCF738EEB9C887A73E6074B80DC862A0 + 72B2A44635263FE6306E2085CC0784A5421D7C8B6E275CD2E9A2D0E42689DF1D + 8405616EA443AEDBE79566A8A8E2B5A53BBD1404F7E8058C74A706C873FC6CB7 + C9A984C9A6461E728CC9C2E14E37983E9CCC69A2364896EB66669BB89C6DF77F + C915A63CAAB5B34D3E84D717418C91972255B62B126DD40083D5A51827310FB3 + 68480425D46789C5EB9B28EDAF2157EA2653392CEE7E6E39561EF09BC13150F9 + 1980B7FE3A23FBDCA199EC012F7E1DA1F46FD43A829670A5D8DF3E0139E1241A + DF01457A8AA668580B71BF5A7F2E957756554850FC146D55D4D0B88035EF2CAF + 674FF6C7DABBEF8115A302501545FE08F433AA2AED1DFC55135FD62FB43F5C2F + 6D9B20ACC6E0D5F74A622F2376BEA1A221DCD05C9A62940601E9D58F0C9C5FA0 + 64C8430E179EA8F492F31B27707B36A2D4601E6169CD449FFBF84FF6DF68DA7A + 555929E94CB8A1BFB3064315484E0DF05CDEBE6A184DF5A74B40569589CC8257 + A3E1E283DAA6D13FE1F4337DC3CE9CC98E0D259D3BDDD591AB2B8A02F2F1E87E + C3A46DBB15D99E717A337931EEAA8A090802CA250D61138C23CE6AEF3304F8FB + D2FA86E8819626DEE1454AF3BCB62DD530E9DA834E515CB3BBB8273B4F6F395E + 978A7FA8DB1C003185FE76A467495FA0EDC1953D2C1BAC7046774437F4F20C0A + 6E26C41C2749C90D4BD5D47BDFDF8867ADD9518A2D847BA50E7C50F3D8FC938B + CB8181B4237430915244E6CF1D821FA11C2A0445BD2A6F8432EA4E3D810B5D28 + 834AA400DAF1317C6784537463507366AB27C252D8D774D0CF4FB3D924858E2E + 484383C4432E5BF9893A492607412CD3D579CAFBBA63762C34374F47B917A971 + 42A81768DAC7F09763BF461949E59175C8F49F077E68BE0305639337AA157EE3 + 5707B5A9E352A5F2C4E5321784E7FDDE2B8FB78CB0F98823DE4FA5D1456FFE0B + 5C758B90756FF26399209BD86D9455410F729C9954F2E7D93AB4B639BA08F5B3 + 52A4E772441B465B0C13616EBCB9599DFF00BF1BD10769A77301E89230C4CDB2 + 2680C040A12CF16ED2AB2191D27AB9E966AA353418636FF5F31D06996DFEEE83 + 5209B8E745376FEAD6823F905DDFC243473E7932305B0130BDF277358AF742C6 + E829A1EA8BC5BE500A08E51492AB5D8588A6D25084D64DFA4D696791B0A3903F + 7C11801637F1E1922B3D6A94DA129243942BB8FEDC79499F3F029D17182E2476 + 707F56E2DDBF863A79E920E507FAC1093EFB0A9FCF8D8D2B390E5A5D38B8D29C + C8E3D6415F747614CAA6CC89306C587292B18520248B9B17B684AD2CE039AD29 + D897C1CF20435EFF8C53E74D99605EDF5B241CD39ACD102C6E69D445E5824274 + 27FC3E7CA5CC97F2903EAA182E75E684AB17065E9E57348F5FE5AD875DC08E0B + 7090D6C9144B0636D82D378FEAF4693F90A531EF5BF4720F4E1CA5B1A3DF6D9F + 44326A50484226F394F61E6D3A4AEE3A2A76DFCAC4F725F969660C7846DD7C33 + DD9CC235168B750171555DEE59954BF6A060A741D6E3679DE4C02D4F458947D7 + E8C7968B92B6FDE2FB49F3CD456FA6A465E294B8A18A5BCD593F286A5D662779 + 9D22AFAE223BE2505A6C795369F871FDC9FEFDDCDCF869B2B84F6AF0FB15E255 + 508A24B565E573B62BE8B95E66FE8CA586FEDEB18C73D8AD0DC0FFE2A3F3141A + A3061D5D43E1CFE9911813CF1784217B3949F962BA747C95130755FF1A3742AE + D6637C818E4ACF133B4D4D9C72DB8AE0F317C8521C293A0E3739BCDABE963294 + 737C2C73C24EC87873B9F92C51C7AA5D24988276BD3CE296C82EFDA83026F8E8 + 47362ECBE015F42716DECDB5CCB002E79391CA6BD32A3BC767886514C7223C88 + C905CDA19A52682344FDF8037C34F9B058239E0AE87169DF517965ECF66D0EE6 + 1977E1D7E18B7F0E64B4786D388FC3641E008447AF7A5B1E0C73E7E3340BD2D0 + CCEDFF3925C1936305396F21391E917174377DFE70AAFF65A6DDE16B5990BA37 + AFD9FE566447321AAA47BFDC79DE5BE38D1A91BC40B019553FC0DEB4C18254E1 + 9FD13B8C40BCFF60D0B9F48746758C1464B6C738226971E079F3A9E491AF393A + 272EB0F7EF6B1587AF69D9D9750251FC40241AAEE2D0F9A02753AD4C854AE73C + 0DEE9DF78BCA9CD293B9D65F3CC707EBFBF7CD830DD8A9228A74F75DB98E66BA + 33F30624E0A36D509914DA039D0899237CA5DD72B598D1E1057E553497936FC4 + 4E1978CEADCC0A69937378D6A695F4F5600915F03FB0C0D2A03580ABD95EEB14 + C0AC30DA5CB2B733A781C1338DC725EBC540945E88B7709D4B8E398E5D95F4BA + 1ED6166D546ABE5AD6B5C7D356C9035F304DBF371228B5C6328F0F7E0895F15D + DAF54D6644EDB6A1FC6D8250A12658300E594461F9D5684F6AD760E61BC9B8C3 + 51D96FAABA4139C1F691D08213632C5EC2454D34AF8AA7487F1006C10874C65E + 8B49114E45EF3CF0AB39DB6B5EC3F0A365D63504D58E1578B5910EA2520DF4A0 + 4C6C2E02D259D9A4E2B38C42B7148745700FB0FDC86B0F65286DF613C409BCAD + 09FE14B2DB1B209A8A4933DDFFEE19F005E4BC830C7FA289FC19292CD2D2914C + F0C8FC12A2DD4DD3160B7323DD01E706948C2DD9D927636DF89B80D3D1C89CC5 + 065F7A19CD511DCC3AEBB73CA07E5EEB8BEE0F3BCE8408399E55D512BD0D4632 + EE92EE1A8C217C26A029D2C599F40D0741FC9C4493225FA8B59F7C30FCE2EABF + 0125DE89BEBCC851E3AF332B13FF3A91895FF7B6477B447B9DD84713F65D1F67 + 5DEF90548213EB6CF472D5521DB910E0C23A0F28656157927998C9894E435951 + F036BF4C689F5050BA754A27FC907DC8ABF7C5B030A85BD1F79D899AEF36A730 + A95884923D5761B2700ACD9181BD268B7C783269A01439CF720B680E53745DF5 + 33DD359EEA7B86F9F02392199525F01F19F3771C32D7BC2AECA0D24E7DBC035A + B589A402A2296BAE5230A6D0F8B54C4C2BB429382BACC1AF01401FE40F31972E + 527B2B87D138AF3A6EA4D790C7F29223DBF50971DDC0BB1702D7968F1C1CE281 + 715C5E155A36CA1AD2B67F2FBBA7A2E3DAEE091462747F7A0EE9C3740B920F04 + 4AD311E3230DDA978D9ADE3063543258C4892C0005C6FD4D667E11FD978F964C + 945A933A52FCCC8548B258F484D29EE470DD25BDA313D5FA3BA65B61DEBFE9C8 + 30C30446FC2AAD9FFFD654C6D8042B052DDCA7C0382C6FBB0765C7DD25F4103A + C6BCA8AD062870053A9E7B28D59BD4C75E5CEE11A15E81AA90E6B509FE081AF6 + 400FB2E6A64BFF5B4E0B258486BD2872F12EF0E1754291E50278930A1A19ADC6 + 435AE221AE48F18A4F9728D4695C08F4A08DD257208D188F208F846877842AEE + 7FE5BB19DE08020076CB062BC2F1D1BC1B7760BCCADAF3F858826CC04054F94A + 370F7CFBC892121C8DE33C249252CD73EF96DB50D5E9 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark + /ETIMOC+CMITT10 findfont /Encoding get + dup 49 /one put + dup 50 /two put + dup 99 /c put + dup 100 /d put + dup 101 /e put + dup 102 /f put + dup 108 /l put + dup 110 /n put + dup 111 /o put + dup 112 /p put + dup 114 /r put + dup 115 /s put + dup 116 /t put + dup 117 /u put + dup 121 /y put + dup 32 /.notdef put + pop + end + %%EndResource + + userdict /pdf_svglb get setglobal + [ 0 /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/one/two/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/c/d/e + /f/.notdef/.notdef/.notdef/.notdef/.notdef + /l/.notdef/n/o/p/.notdef + /r/s/t/u/.notdef/.notdef + /.notdef/y/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef + /N2528/ETIMOC+CMITT10 -1 TZG + %%IncludeResource Times-Roman + [/N2540/Times-Roman -1 TZ + %%IncludeResource Times-Roman + [/N2536/Times-Roman -1 TZ + %%IncludeResource Times-Roman + [/N2532/Times-Roman -1 TZ + userdict /pdf_svglb currentglobal put true setglobal + %%BeginResource: font JMKVWX+CMMI12 + ct_CffDict begin + %!FontType1 + 16 dict begin + /FontInfo 15 dict dup begin + /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) def + /version (1.100) def + /FullName (CMMI12) def + /FamilyName (Computer Modern) def + /Weight (Medium) def + /ItalicAngle -14.0400085 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + end def + /FontName /JMKVWX+CMMI12 def + /Encoding 256 array + 0 1 255 {1 index exch /.notdef put} for + dup 0 /.notdef put + def + /PaintType 0 def + /FontType 1 def + /FontMatrix [0.001 0 0 0.001 0 0 ] def + /FontBBox { -30 -250 1026 750 } def + /XUID [6 5087386 ] def + /StrokeWidth 0 def + currentdict end + currentfile eexec A0B00ED5187D9C0F1ECDF51878C3AA5CAA3EC8DC423323 + 00A152553EC9C9C51591C81BB5A2F58753878D92B1C73E948BB360F467A7D593 + 2446E52E22935D5D0316634839C917AE2BE363D6AE3760363F748EAAEAD9AB74 + D863835F45718D23FB3980D0C645610BF765847F4BC5CB03391BDC9D40A6A460 + ABF0D95BB6A176DB5088A1068A0DFDC266C25ADCBEF3E5472E03E0D29BC6801F + A2AEAD77E33C836B01D3632DEB22D63B3C2572FE1DFC7708120CAA0CA9B3F456 + 466316FAA7FD8AD564A34A1722B01919885465C73385A487D3448EE4E06C605F + 02212AA06C32EFB7A17576FAA2546222E3096A72074F116BB70A66FCB030CD2B + C56E4A4EEA6B49A92B3D92E124DADCFF0286B3EB743353B744791E16B0C220FA + 3C39FFE545E1FCC712107B29C8FF8CE2498559141083FC7F578D3BDA174CE7D6 + B83457872CA09B19417E47CCEC7E1CAC06A85733B82F11A2592DB22508C2FA07 + 70F8EDD3F6DFC77C86F8DB554551285E43F266FE2DC9AC88EE91A9CDA8060AF6 + B6DCCDC05C1468F3CA78FEE389E15240642B0BFCBBA740C044D5C9B0729F283E + D5FE6CD04904EEE1AFF67B4D94B809BE3AFAE825DFF7A67061222E529A0A19D4 + A9B222ABEACAA9D599920A6F9BD3DF28A72559FE83A105288751350BB2F054E7 + EB745114DC076B7C528B7F463A3B2C8AD82DBDEBC38C3B036996A43D809496B6 + EDD59F8B3204969C423E2DFD8A781A2EB81DA5DD01DA229FFE250592007263EC + EAF4D676D2C9F048AFE64E64340C69C6933038FF7671D8665DDEB0B6A2A67D3A + 38DC06DAB91E4AF9CC2DFDFB8C8054C7F489FF25B6EC1C50D458D2B3538B60BA + 2FF054F38B255DC5379F30EBF48E35D293792D5BB616347AECDD3B3A40EF03C8 + 965BCA2A32F91C219EF3AD4A89F2FC57C713A7BDEFCEF3A7B428967A6D09FCB7 + B71804D988BD7A4C6B39764D185600097154A196C71B05D00324661289576EAE + FF11B2EF2768ED1A99C73A3EDF53A09E057460BCB4C0F0395E53143EF1D19710 + 96BAB56AE6261DA4404255CEE1B8CD1FD0EE7963F769DB26ACF0737707744FE1 + 2936C1E0E05B8C59FA680AA67EDE5FC2365EF94CE9112EEF26D43F5FFEC854A1 + DC2F2190F679B7283FBB0EDC82F0951EFA853CCEEE3D2315850CDECCD0B68842 + 3C3ACC13EA015570C0E1AA4305621FDBFE1EBC01449226E3051FE222D84F225F + 6F0EAF986F3CA47F6DA5CAF25E5D8F5B0A803811584482C3693FD3E851922C68 + 0F5762B8ACF136D479CFC2CEE17A4474E6F1A730BF600D4259B4BA60C183AA12 + 6A75024A642F33197E36DBCCEA10B0347DDCD91A943D59356D42F38B572344FA + 0E911361C408A56A2998EFFCDC2DC02A3DB84C32884974114B00253F3C4FB787 + 98BF8E1C49C551574E1D18C153949372A305C59CC8063A32508E0CA90E5A594B + 658A2DF031ACE03D782A9342B41939F5F1851D1F63E5CFAB16F216C1A1603346 + D8D9C5382DD4D218B811B4D7D99AAECD1E84087292B0DF2F50970939904B008E + B5CE61D143C7B92F2C9EE0D295B41F1DABD7DD8AE1E59320379629D0CF045ABB + AB9A3CF228AA165577B92F06D629C4F7D8B4A29FDF008359259EDD2BF49E5490 + D1596EA50E957657C5B2740F9FE6F83569D9B99D5ABFDF8A1A3B631CD910682D + D0A9E5D1CCA252879569CDD1A6129008EF9EA4F117E33F4CE7CA7EA8F54ABC1C + EF5C20CDBC0DD4F7606DC01BCF67E5F3282846812CF33F2B59FF9765CB3D08E0 + E53C4C393157584909003CE7F77E79DB86945B66C274EBBD477FBD11F283BF4F + 8D9153FDF5E8DF772BE865D88AE2F530BDCE0D78A741E416A8BA342A1FB2F0A3 + 4032CE0D444CD76A335CD8D287A1C80B3F05296EFEE4510A502E75B0A698252D + F7373CA9324B829FAF8A1E0BB23B9C9149515189B1630C189CCB5FABCED6A716 + 418C3470A724FEC206554E176A90C4671982979F01665994E43A07AB35B4F500 + 19335748F4898B9A6E8FB600616DDE7B004E5EF28BE98EF3A3F4D0EA16F7FA67 + 2F7EB30B226868B7348B78BD98FE2C3B840E1550CDC58E60C769848FB19556AC + DCD0A132913D2185532824A90E7C05E73C7D291FF13BFEF47508C1BEE3BAD91D + 2C3C71CAE1F7BC5F180FF6C8F60212F29311016891863C76DA2ED6758C85BA5F + 7370C9C63460EFD9A6167D190A7314532DA25A2C3A337CDB526D25F113579281 + 919934C40F3FDD069B3C5F60756A953AB9E7D48FC76F9458C934B700830E67CB + E1C2E09E1A + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark + /JMKVWX+CMMI12 findfont /Encoding get + dup 69 /E put + dup 78 /N put + dup 32 /.notdef put + pop + end + %%EndResource + + userdict /pdf_svglb get setglobal + [ 0 /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/E/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /N/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef + /N1845/JMKVWX+CMMI12 -1 TZG + %%IncludeResource Times-Roman + [/N1874/Times-Roman -1 TZ + %%IncludeResource Times-Roman + [/N1809/Times-Roman -1 TZ + userdict /pdf_svglb currentglobal put true setglobal + %%BeginResource: font PSWCPW+CMMI6 + ct_CffDict begin + %!FontType1 + 16 dict begin + /FontInfo 15 dict dup begin + /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) def + /version (1.100) def + /FullName (CMMI6) def + /FamilyName (Computer Modern) def + /Weight (Medium) def + /ItalicAngle -14.0400085 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + end def + /FontName /PSWCPW+CMMI6 def + /Encoding 256 array + 0 1 255 {1 index exch /.notdef put} for + dup 0 /.notdef put + def + /PaintType 0 def + /FontType 1 def + /FontMatrix [0.001 0 0 0.001 0 0 ] def + /FontBBox { 11 -250 1241 750 } def + /XUID [6 5087381 ] def + /StrokeWidth 0 def + currentdict end + currentfile eexec A0B00ED5187D9C0F1ECDF51878C3AA5CAA3EC8DC423323 + 00A152553EC9C9C51591C81BB5A2F58753878D92B1C73E948BB360F467A7D593 + 2446E52E22935D5D0316634839C917AE2BE363D6AE3760363F748EAAEAD9AB74 + D863835F45718D23FB3980D0C645610BF765847F4BC5CB03391BDC9D40A6A460 + ABF0D95BB6A176DB5088A1068A0DFDC266C25ADCBEF3E5472E03E0D29BC6801F + A2AEAD77E33C836B01D3632DEB22D63B3C2572FE1DFC7708120CAA0CA9B3F456 + 466316FAA7FD8AD564A34A1722B01919885465C73385A487D3448EE4E06C605F + 02212AA06C32EFB7A17576FAA254622395FEABA212326235C9484FD61A7A6F4D + 6529F7AE1024F03E8D484AEE36E4419F53DC2AA83C7696E515AF1B3BF26FE748 + E8F39382705C8BE510DFBB18DE3DA518842C507D6BEAE68F938C14AFB1DC3AD8 + 4B8343BB780F719E6353726BFE4A14CF107B7DA816B4BC2D24533F461E71A67B + 0BFE797E50FA91D9D7E9013D4C37E0E6ADEA8B8F7D9204422A9A8376EE758BF8 + 057FEA5C00676D08EB645C396C626F7577FDAFCA96619D2D92103C9823A0FE23 + 76166625C360430EFC94AC51684100176C42614F2A0FF7671503EF98C067F81D + F5B53137E18FA3208A3950E234FD8B5B265C618889D821F31923D3C01AAD221F + 361BA35BD585091241BE27D86B6EBBA4C95ACD983F8A67F1AAAC008B1A15B0A6 + 5E5E7E5D0D0A5EEB879C2E65197374C6E3D7484E860A67CA71069D2002E4EB60 + 7D416AB8D1289B691E7486A6E28C861A6843DB441530A5964DF2775E5DDF3A42 + F2B4991C24A102B8D0E1F77569CF4B360294C5E09D43388890DF21D629FD43D4 + 37FC8BF02B3CAD1E1E5BB39F2C2A0915AE1D12D56655357EA1F7D373EF8E4DE2 + ABCA65DDDABFE5A9488DCF9B8D799E432AACD7E540CD96D3301BD5C7F5832DE9 + 46EBD12A2BD579DCFDB72995AA580350EBCF598C43BD366B11FE5421F4D6B44F + 03A173F5C5AAF6B4F8ED7DBC89B49935A1E6FEFF2777A9870270F0674DA1D5A1 + B019AC9E8E39A7CCFA571EBA97FC8FE01E68A8C983F1FD4C81A57F58A9DDEEC6 + D6136716F324C372536C6217756424D060A2A5762C492BF381DE87FC39EE88C4 + BFF9A7D66352341132ACB4CAFA629E9A593576151576DCC52502D87C5C04B9D8 + E6DED831F05960398462691E0085CC4E9C465A8F68AFEAA96DC29BDE63D1ED49 + 895B89E3D642D4770FA1D3B140263E65B51023E10E6EEDE27BE88D3F5F3C1653 + 82A37B570C5A0D231159D0ED514DBDE7A612C7D14DC570608E5998B58148C356 + BD9E1044D3D9AD419B230ABC3D565725D0AC12B99F1799FA411AA5B8C5F91D94 + 70ACB3F86800EA968A8E0450BF733A6D15184369A33F6BDA2D094695399F355B + 20C8AB93737F70BB88158D6949936654AFE1427FC2646D8C984F4F83BC81C4A7 + EF5236039CB313C4736774F47BF299D5BB0152BBBDD11E72F9DDF87E655AF36C + 34D2DEA3F910DD8C52423D19EB6136559B826E9123FED046D6021059B0B58CEE + 6F6D736BB6A1EAA908CF648621479927FB41815A2CE69F80B9E37A640471BF2F + EE21D3A8DD5E3DE81936DAD3C182B441CFB4B33CA2D4E9ACDDF4F0B3C084F8D5 + A1EA5CD2DB3CF184C901B9713F473B3AEC78CFD2C2454E73B153CAC613D097DE + C73B991698B31AA2581E67DBA8293A92B6932B6CAA0030F353297EB952037C69 + 8EB46D4ABE83E7EA9EB17B54B855D0AAEBFF64C7550E773063D6A12FD9E1D464 + 22CB112E5A2E919ED798A49E56D7AFB9AC95C03C3F0177DA00B0E111F8F3751D + D24572A3693536FF560F051E21E087073C8A9703A1C457DA1CCCBF9631533A37 + 41483B1B405515001AB20984573DD15731317BA8F95373370C9697F636F3E562 + 6D16C472A931FF88E76DF691FF773AC3186C17033E2D3702F6A70FA5663C696B + A6889280E4175CD0922DDEE3DA2E5A206E72B118D07DD99D1595900330897DB7 + BF5AD6D5FF2FE5F7625C5FC99F603E8B6CF364654328F01D51614A4685F7936D + 2070304D65FE8400891E84098A4CA5397AA60BAEA5FAF31C8087BD9D0D127DD3 + 5ABF7CD75859FBBD1321840CA911E181AFB022C57176AAD1DF08BD18D6BE78BA + CE71958E8EFA37103808FF98E9C15231E6CFDF1BE7B81F5B6080080DDBFE601E + FCF9517BF390CB79F1AD0968C89FAA308065082DDA8CB1421DE0E95ADF5C92D4 + 76C9F580B4CF9BFE36091A7BC6200A90BC1FBA8BDAF2A97885272D9E759398AD + 2BB6B8836FEFC1F20F7EAEA6683B7D2171014D3746C995AEF656B9A9C151A871 + B711621B9385873CDABFAD0C9F5B073AD5EDB575BF5E5A4106CC87E90B0B1DBB + F80E1DE4E889FC68B74802C2CC60D080BF25B27B832C29D7F0AFCCAEC4540899 + 3F0F46D289130727E90B37647B2873BB4ACE24E16D4BFFB5BF3C95CE47EF5433 + 4CA1FF442F91B9513CB4C75ED691BC6FE2A89D5D347232ECD72BA4C93ED08DF1 + 01B280EBC9C7B90CA24C481A21155A284831FE56E08EB047DB9E43DDBFB13B98 + 4A110B132BF81E603978E3F4BBDFDB1CF8C97F90EBF068907EDB842BC7D524D4 + 15A9CCAF2FE9C91D9ED784FF5805F83F2786632249822567CC658412CE993C3B + 9C198EFFEDAC7DEC70213C2353B3CC10BB634AF8AD20617BDD55C0ED192D8F38 + 3CD2B8DF1D17D43287CBAA6688C1D6F248D3252B9D0B466597CCCDEC88AC3B2C + 3427DBCB619F435E3465105B0031F4BB8C233822B55DBDBFCEBE837EBF6C27EC + 86AA591EABC6F7D89A796DB8FACEFEF0302A717D467A7927594F5C63242F07F3 + 052B4A2620EF0F32AE3DDBA53FB7213DABC658B10DD1CED227D4DAB02600A02F + 09677C187DC786E6969CABFCA948D308064B181E6D1F2FA114DB07676A3969B2 + ADF79FF16543599493AC6B54FB40CB6EB9546F6E15A0A20DAD9DE4054B6E87E3 + 8F2B3E7C189328E3E64EE9DF9C661360E993F9A9737E6A9741E569228A9DBBED + 6CBE156ADB4696CD147F983AEF2480D8BB68B86D812070B1056E394018362959 + 466D372DFE742163328FADE880114F8106FFBC0B5B6E6A96AA11144F63FB18AC + 042186D297E8996EF6C0E37025CBCFD3FF570BE0AA79C57B1F7572A9CD2443EB + 0982CF75E03312BD9164DD49A4DB62979E25B4D66CED6E6C885A381205ABFD5A + 614E8BD971586D87FD1472D779A206BE6744CD9F2A9949F53DF9F4806663F809 + 91889F2BB60141517594743FD9066D6DBAFF474F3973DF5A2DC72A3E759F349E + 63B0746987A728E460F5680E03640680618B9E2662BEC8DBE2503CFE9164620C + 9386E83DC9797FA8E77A59A11373F47688C6CDE9432E8A67A47F5782A49F4A15 + E88680F005C659DEF9197DC0C5BE1C8E18A4CEC06449375E7BEBEA8726FEE531 + 9071A30FE94E2530479200B3DEFA715902B92CB93C0C8E91169F48ACA58CC07A + 8CB6EB84B8366CEA824AF329BDF4C694B34233D9306209235A447BF3A7A1D899 + 07D6CC2110FAC6F57F8034E2CE935480C11CAC6B0DEE145262786EFF0DA1D272 + 5F2ADD9978831A1A32FE5C3362D08EF52834788AC30F2ABD12E6BB4D7F694518 + 4F5C63253454FAA07CFC85971FF1268F6D6C97D611E483E36DEAB700CB1C869E + 3CEC6B36C3417ED0C33C0CAF5DBAB355B6BE4C1FD705FD6DB00FEE55986C7BF2 + 48FB3EEBD8F8DB4893418009448300195DA55309E5920E442B4717FFBAB46B99 + 65ABF1C1E2C036FE9CFE57E46F3B7306905A2BFB8D9142B53FE22B16BB874317 + F6F742B7DD2F9DEC2CE2306B49DBD134307D8575F2B7135FECA94F8888C31E0D + 3ED77D15FBBA31D927598B8DFF5990B3F7F4E59E3C4B8BA8380BD1E97960C8C5 + 8C83533A3B479E925C6CFD5CD061E4B8EB1AC8A0044AE7B9B4160E0097F2E269 + 95A025CB64676770FC53707663668F3B88BC24A8BF138EF2DCBCED3985DDEB3D + 30AC2C6E475CB990C9817E1C099D9CC3C2F7E3154483FB28C59108B09D28E7AE + 6F0630A4EEB059C1DD72885A1A37B6AD56AE37ABABB69EA6F34F12B7B9074F4D + 167E0ECF11E0E482EF5100B0F5F8DF02745B057BAD168C61BDA953B83A22CC68 + 7759CCF9270C1205798A3DFB93406F943F4F101EFB55305E68B70794FBC40F81 + A2572433D5B88729A5C959AF319AA14DEDA505A2DA1649B29845C11FD68E673A + 419B676A2D0DDF81A6737C5CCC4CE20CC7E91DE19FD50111B2D2B53013CC104B + 5C0E185D19DF46C2DCBAC96129FBF3379DC64AF13782D7B629E4AF1788225DFF + C92E2C4A717BD8DE82D2B2144C62D874CE7869159CBC1591721785FB76B96399 + 14857C38A004C3AA4F191400A51327E564214E708536A7473BEB5B085AA3C42F + E5B9652A05FA8C034F185674026258B932E2444D3C50D83786FFC68166BA0B48 + E8ACD840C93F2A3EB58ECEA106131ED46C855B201889353ED85C689FCD926804 + D7BBDF3E6A7E488FA0CD871004A85FEB580A8B3C5F053EF435FD0D6B266F68E5 + 846C744F4144BD32DB581F1473D66040750BE0FC54AD48ABB90A7C9F7BD9B4FC + D95A843A8F218B645F828060D41F1A0B12A3A4C0C4C205FE78781D942EEF0EEB + 2599F47E9B6831AA24466ABB1EB2BA88D7E4AC89A9DC0B40C477FA49EE00A2B5 + 694666DDFDAFA7370E5197C6FAA126DFC802001A9396D52DE1941F907507905B + 6CB8BA89B70DEC581AB8312B5F9F70E39C5BFE5D364ED4EAB9D055DE962C291E + 49DEA4093317242FD3ADFFBEC169ADA21A3C0184FED87CE327330A16A2E77F7E + B6F715E82509C9B04C32850C9FD8FD522829A44DAC25CBF2D7B5164B02C85A84 + DBB9ABAD0ABB63E65966759608DD66A38B04C4A58AD58BE0F58431A66E27FD20 + F42399712496CB3AB29AAC5FCFDBF81C7286CA840F2B08A017F0A0710C952D7A + 0E0C07E8994B168CF4D2CDFF9F006DC186F6D2A6CEAB5A096ECDA292576EE58E + 21A8A2D10EE0B8FD3834A8CAE44321926318C6188D9AF39283277097D2930A9B + 51D9BF559FDD0E702D3486DD5D26DF0C72EEF8F9EB1BBDE138562C73558814DA + 1FCDDF4D4B37791790F4F4979C4F22D0314C96071678B65A9E8DA154581D8F36 + 04A203F27A5175A91C6103756108295A0D7BE2C823AB83DA2EB231A4386C0003 + 4BCBC35368FB0F1BEB2644B7E0C0E7D7F13E61148996331B537C057CB19ACB7E + 9D5D3703466801F824BFA64B18193800B23F + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark + /PSWCPW+CMMI6 findfont /Encoding get + dup 67 /C put + dup 86 /V put + dup 97 /a put + dup 99 /c put + dup 100 /d put + dup 101 /e put + dup 103 /g put + dup 105 /i put + dup 106 /j put + dup 108 /l put + dup 109 /m put + dup 110 /n put + dup 114 /r put + dup 32 /.notdef put + pop + end + %%EndResource + + userdict /pdf_svglb get setglobal + [ 0 /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/C/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/V/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/a/.notdef/c/d/e + /.notdef/g/.notdef/i/j/.notdef + /l/m/n/.notdef/.notdef/.notdef + /r/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef + /N1687/PSWCPW+CMMI6 -1 TZG + %%IncludeResource Times-Roman + [/N1754/Times-Roman -1 TZ + %%IncludeResource Times-Roman + [/N1750/Times-Roman -1 TZ + %%IncludeResource Times-Roman + [/N1746/Times-Roman -1 TZ + userdict /pdf_svglb currentglobal put true setglobal + %%BeginResource: font BEMOUN+CMTT8 + ct_CffDict begin + %!FontType1 + 16 dict begin + /FontInfo 15 dict dup begin + /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) def + /version (1.0) def + /FullName (CMTT8) def + /FamilyName (Computer Modern) def + /Weight (Medium) def + /ItalicAngle 0 def + /isFixedPitch true def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + end def + /FontName /BEMOUN+CMTT8 def + /Encoding 256 array + 0 1 255 {1 index exch /.notdef put} for + dup 0 /.notdef put + def + /PaintType 0 def + /FontType 1 def + /FontMatrix [0.001 0 0 0.001 0 0 ] def + /FontBBox { -5 -232 545 699 } def + /XUID [6 5000830 ] def + /StrokeWidth 0 def + currentdict end + currentfile eexec A0B00ED5187D9C0F1ECDF51878C3AA5CAA3EC9EBBC6A5E + 2825687306A156DACC32FBF734087CDFC35B78DDA68032BCA38CA8E8A340AAA3 + 002A0E52D0B9162BC68AACFC0F14A1C933363A56EE460EB41CE8C2E9EDC509AB + 9E0462B9F619AD944F133AF072E5FD1625902963260181189070C40FB0D49A96 + 50D86FB0AA90098027455AC2354A299FC7BFC34B4F1162E5E9A3EFD80D6240B6 + 9378BB4F6F9F5C586A329F0FB0AED76C7FE1C5C1268DD82EB723B9FD2004AEE8 + 31A8635942C47D479F0326346AFE07A0963EC969D8574483F36A73E22FD95EC4 + 968AA81979934FDAC941D2A0B7715D0BF24DBF05481AB6CC9B4A91098825E00E + 85797C632D1E1CCE61A5277464F39D3828278870D99E479E6D24C8380D2B08F2 + BCE8A99D895E07EED56E0AB401F727FBA51758A57EDDB48229A9C8F0D81F97C7 + 16582DB65B441D02CDE171FBCD39B4963E0A0443F1191430F2163F1DAB968FDE + 814B1180D4E1EE09AC048D8BCFA62498B86AC40A21DE8F92C486B2AB5B3ADAD2 + 381F6A00AC921B2A6BA1906D183D78AD6341CCAB454DE9715F6D66EFF298B364 + D0F5A86C2DFC8E33C6F513B58150713A259730AB0A166479F75A2C158F45E033 + 6BE2AB3456A62095F114937159A66B885D0565AA98AB74BA1ABC73D3C3FF521C + 76D3EB0CDE84863AD4BF663FB9A4B29BF1A81DE00F54C3B32B3D529994A39B03 + C585D89881C3D32F58FBE355A05779AC5C78F71CEE8CA28A024435F52D73D1E2 + 8869E7A4BBF6067C1231CAE6E98E39DF41106857BACDADE433B6C985FCBD1955 + A8D8E7166526641A9C9783F462860478EE7A1F4D54FCEDA4E09B0BDDBEAF93AA + C4F63736650FBB419DBA566B516A00AF0AE437E053051173BA35499224255833 + 1187C3A9FA6CD38373DD2ED0E874C8BBFF4194A73BD6FEE12429949AAD2512D9 + 212D94C9C034A142F6789622D8D4B3ED0C474DD6F8382ED8F54E278146D762B3 + 9364E4B373B49DC0572BAD4C579893D649775D713798048E0A9C194B10DE5955 + B99CFAA1071BC346A59CC54105B2D9D82DCA20218EB1D48DFAF0AC1F5C0727C3 + 8958BBC1B8B2D3A1568B71EA1A8EDDDA010DEA84792B3005D42ACFFA4DA55833 + 8164BA4DD6D3054960CD3E43F6E03947B2C0BE7F071792E18F680A99F9DF7E5D + 9A52589D02751862EB658F558E80024B898EE075BDEFF875BDFF271B5A145364 + C88009591292876BA2BD83AEA997B15F327F00858983D858523953FD2CD1B7CE + 1F256F172224871B46D0598415CC62B84D22FD750AA15C5AAA9EBBA4879A36B1 + EAD6706A33B0783039C249C3382BC06C002070F72A1F91B580F5631D4ECF72FB + 87E79A4EC1BFD886BCA5A616478C059DDBE7EB54F2FDEDF0024A9B58914B8B85 + 27F87A319975008D41B8A7A5050C351B0D1BD5C47BA6F9B65A5A6FF7F3B91ECC + C45092C384E94916C9EE58CA1B61BB214A04719D52781F089085D89E201F223C + 7D656CE98A95442FFEED23EFE7CA751CC47380E47F54BD996152A218BDDDC2B6 + 72E8999890E8CDA5C218D383852B15BF3EEC9DF6B909D4F60216B0421726BFA7 + 4CB76B7930973618677D5D6C215ED229E68BCF5CED516E09BB25F88851702A3E + 0850B7A8D96729269C49FFAC65060EF49E22111D7D296922366468C51130E12E + B64F42F5C54F5B079A6F2C514E1E0BD4E55A96D15B2CC7593199900D4EB2A2CF + 3C11B5131F1FF7D016481FAA538F0C5A3F78417502BD9D5C2787B59BBA3774E9 + 52EE00E60287D3318FDC5F0BDEB2DE0FC71245A6A01BB8341C30533BCAC078D8 + 1761F0854096EC41B280C36591B33C13CD973537D467CEB5B668714FDC3261C4 + 1113AA3BDDDDA28A6C8F71CD9CA3E5887A278FA597065F501F7E93CEBB37C275 + 62F7E9F1562E2492CC7842FE55809589458FF9593FA4577990B7748FAFE18010 + CFF211817350E212104A9A17097658428586AA77C3588110DC8E86C61534BC96 + 80DAD26ED48D26F3C0A83D3A5E5E2559E4E1582509CA1FFA670B9EC4EC4F7636 + 756A3FAE837CA6BE00DBAD00EEA9E54599ACA824DE427730362F3CF06838DFF7 + C2D8F9C2AD8ACEC16213CCBA827311964453A6C9F46668FE4F17C92681FAD195 + 972BE5BC2B1B212C98D9092B89EB4A5869660AE858ECDDF160A0EFCAA7A44CB4 + A362FF2E8FBA972A0E756AC330431D1953DE6490C4D19BA48D10871CC815FA8D + 356855F667543B19A98CA4F5AABB56FEB05789645E27CCBF729AADE8E0641D6B + 7706E8C74EEBBAFE15498FFB20A600E04561C547D0EEC8FFE9ADECBECE55823E + 673E5D0ED6839C423AEB934160AB92F1930354E5C98BD96B8855060B5FBCFBEA + 8D135C01C576B363F19D100AA7D3DFCD687D6CDCAB02A39CEA206A6DFCC0F790 + 5AA7435D43FFFF4E001C434E1595E38E42FB6C9008A5C7EB944B951BD6594617 + 606873149B68D45FACEF4934D25BBDA7EBF6981E702E92B0C0231E237738BAFF + 4CA233D1F521DB97E24F1D3AADC0EC8695F40FB25FC12B12C78B6BA5AF3BD969 + 3D3AC1FF76D2F7F6 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark + /BEMOUN+CMTT8 findfont /Encoding get + dup 42 /asterisk put + dup 100 /d put + dup 105 /i put + dup 111 /o put + dup 118 /v put + dup 32 /.notdef put + pop + end + %%EndResource + + userdict /pdf_svglb get setglobal + [ 0 /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /asterisk/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/d/.notdef + /.notdef/.notdef/.notdef/i/.notdef/.notdef + /.notdef/.notdef/.notdef/o/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/v/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef + /N1670/BEMOUN+CMTT8 -1 TZG + %%IncludeResource Times-Roman + [/N1644/Times-Roman -1 TZ + %%IncludeResource Times-Roman + [/N1640/Times-Roman -1 TZ + %%IncludeResource Times-Roman + [/N1626/Times-Roman -1 TZ + %%IncludeResource Times-Roman + [/N1622/Times-Roman -1 TZ + %%IncludeResource Times-Roman + [/N1618/Times-Roman -1 TZ + PDFVars/TermAll get exec end end + + userdict/PStoPSxform PStoPSmatrix matrix currentmatrix + matrix invertmatrix matrix concatmatrix + matrix invertmatrix put + %%EndSetup + %%Page: (0) 1 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 0.000000 0.000000 translate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + showpage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + userdict /pdf_svglb currentglobal put true setglobal + %%BeginResource: font AUTIMJ+CMR12 + ct_CffDict begin + %!FontType1 + 16 dict begin + /FontInfo 15 dict dup begin + /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) def + /version (1.0) def + /FullName (CMR12) def + /FamilyName (Computer Modern) def + /Weight (Medium) def + /ItalicAngle 0 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def + end def + /FontName /AUTIMJ+CMR12 def + /Encoding 256 array + 0 1 255 {1 index exch /.notdef put} for + dup 0 /.notdef put + def + /PaintType 0 def + /FontType 1 def + /FontMatrix [0.001 0 0 0.001 0 0 ] def + /FontBBox { -34 -251 988 750 } def + /XUID [6 5000794 ] def + /StrokeWidth 0 def + currentdict end + currentfile eexec A0B00ED5187D9C0F1ECDF51878C3AA5CAA3EC9EBBC6A5E + 2825687306A156DACC32FBF734087CDFC35B78DDA68032BCA38CA8E8A340AAA3 + 002A0E52D0B9162BC68AACFC0F14A1C933363A56EE460EB41CE8C2E9EDC509AB + 9E0462B9F619AD944F133AF072E5FD1625902963260181189070C40FB0D49A96 + 50D86FB0AA90098027455AC2354A299FC7BFC34B4F1162E5E9A3EFD80D6240B6 + 9378BB4F6F9C300E5EF7BC558969907B583EDD5DAF8C916767D08EB8CBACE45A + E97DE422B942588C7A9C988EA7DB9AFA8443B83DAA733B430DED23D044BC48DD + 41CD3329B44755813431C67F85476E9217601EB9EF09B04129D6D36A4E160797 + ED7B8D1252FDC2E5ABF623E7A353DF8D5F5FA85AE5AAFD93FBBA1F8E9034219E + 5BF783EE79B21166BB32FFF75BDCDA20AF252024B870F99C268D3445B086E16A + 0345B8AB573B1FDA7C6CD0ED9D1594C434FC369F1AD9D0A8A476FC3A3FD276FE + E147D2F89BC5AA5335B7ABAAF2424FA895571457683A554BB34D9C749193D018 + 0DEA50AB376ADE9FC43706378362F51A657375C9114841606D683B2F5E9A5472 + 35EF86B590A0E842B1E77C235F8FF3225E4DBB23F5F4AD69DE32D82D74FE95B5 + C7A54FE9FA19A4EA6EE1508B92BCB5FCA9F8F33D20FFD9C33BE26BF01354D746 + A3FE8677ABB1BF1220744E52A967C85F813CBF426BA15C43CFB1AF8D31FE42F5 + 233F6737A57F5DB2B6859F9A1E078E948B3F14EF6F9F0B66E1B371B1D19A7124 + 11BEDBAF1913F2A89D653322343AA837ACBC072AE9DBE9E16747FF190EB4F992 + 52F8EAEEA9624FD671B0116050CC34E106DC5D9D421C1B2556B93AA768FFE6D5 + C419F853289D255F05DDC5D951170477C4479A9A4F9FC5564134D8731CFCE40C + 5F17A30E0EA0E6A8A13B8B3C3726B1635CCD9EF3EE702B4B962E7741950E3F7E + CD983BF5F874CBA36FCE8D5CECF33DAA1C542D3740330FD9AFA5CB76A3070CAA + 78BE329241A42A3310DA59F4F4EBC7A89C1431EC3B04192012422D4084984D10 + F3C949D74F79A24AAB7D4C66FE29B17E7A90B425205E3313DD1535C15D465DE2 + F4D9046D1B58BAAA080EB8DDDB34C0478814D5AA520EB607F4E933E8325F3DA8 + 9152E186A9550A8A7AD421F2D2FD1A13D1CE7D1CD3603E39A1203ED0DAB9F7CD + D6D7CB226AD49C9B7E850D48D6D774AC863F9228ED01E0EEB35BCA1FF7E7520C + 258A76B1605871C3E43C5A3A8296224B6477A00B8EEE3484D7BD52B575E01252 + 9E7CAE1FBC063E0EF740120F4E798BEE055DE69571B3FA2DC65C9A3FF0196B63 + C58187F4B99749D8E6BC9BB534142C387DCDBF2ED16BD9BB1EED2AD3BAEEA587 + 35A7119B82FC65BB174811DF6751B970CFC6FACD3F9877C8A73DF93E81AC888D + 81768BB7C115D0DE73660BA15800B361306A6E6FB795BC9D3784FD33DE41FC59 + CEEDD24DB2411B8750D6039B1D9664A54DB65984254C9C7AEE0AA54835668CD8 + 2EA3CE4A213AB7BA2FDE1261B5939FFA519DD7ADBF5ACE7146B417CE2B037BFA + A080DC81A1DFC4E94191E345F6D7566F40784AA2B6CC63A2A1A71F12B928FE18 + 7C480DC99B1DA6B52CBC2327A1EE154BAC92FBCA569901E6B2FC84E15D81813F + 62BDC972431C13D1E481E1DE0A0C7E5DF3A7CF060EA77F8C0DD32EA197CDFCFE + 6B73FA204ADDD685B92D040E4B4B78927E293B3B45DFD93DD40AE15FC0CE1DCB + A9C8B08043E58AF8DE419DB6A92E490F4F5F75A0272CA67A58DF1B5E7815C5AE + 5E3F22C82B990FFF5BD7BFEB5DFBE889089199B5AD47A07EDED707116DC55B23 + F70700E86017FC5A569CE69DF18C2B5898EC7CF88C8B38B52C72BA9DCD7D4834 + ACF78AF38C9948182111798EBC03DD2A398DE19346B4A122427B14EBB4F17552 + 8B87AB4613E9EFF20D0DEF81D22B1409B93F9EB66E465BD95FBE088EE96D5F8F + 5E27F3D4D4C3B045045540ACEBAB2A2E0E9B152E47FA2C46E33A27882F1DA087 + B6BAE91500BBF4497E75D98B388481E748C70C7CC6D16670CC9F32623269DEED + 89149EF46762788CDA117AB181E9AE599584751F5E87A8AE76CDC7021E5459A9 + 857B18F589AB9871E6260F753A8C10824FCD3619F7364B290053DD88FD85A114 + 25BBEDE371B3330F948D200CD6110F095B2D7C3CE84BF6CE8A5968FF8F0C91F8 + C42746076E2D9F87512F616C33A6A96A7974F79E9BA693302015445A8EEF3DD9 + 129DA1CD9F6015B0F341E500C1C1743B6401CDB9C3FD300EF2B83197087CA8B4 + B558713FD3DB73021DC2CEF0F1724F8A6548FD3B838AA32DBDB3D46916E30415 + 93638735854C1EF50A7A20C1380D2E5C72EDD533375F8043DC5183B9459CF984 + 3F5C60E1C0C4F280F396E63F1536C016A4EB7496A82A9E14A03AF177ABC6F936 + 8930155AD29C36AAC8E9EAC8435F443BC3627EE5F1C89935782F6C4EC006AAFD + E1DFFD03492BFC49C7C8F1AD0EE7BBBD34E351B24A849F4B84ADE4B0B30CBB11 + 92CB379B2EBC5F769A6B5BBA38F7F3C1702D4284F80DF3C3A9BA06BB613208BC + 19675AF3CCB5B8FAFD8FC15B631F3539338C46CF3F13DEDDA12C3B6A1D10F855 + 1E29B2371A925C1D57FF1AF08C3D7BACAE171095404793071B8592DBF1AE6F39 + B83E095819212DF68851990DE38C3EB9E7AC7FEC5FC6C6AFFC18E37BC8635D91 + AB83EF55E8DD8C747F1C17520891023CE1406AE6BE2980D42AAD2BBE2C88DEF2 + 262111BBD78C889CDDA82B86B9F4A2647F5F8C5F182A8D73F409445F0FB21E12 + B176C7768EC23D488E425AE8FC9A34746FE6884354154B916D87A778733FE33D + 581C6A08F86CE87055ADBF7B72DAEF23A2227F82C21AF6A145FD34734D8960C9 + 9BBEDDAC9A955B0E1C7CA92987DF0430CCA2930CD1F633ABC2D1972A682F8EC6 + 7A5CD53747D898793DF7347B3E2CFFBC9BE082E1925C5A11DD11C664DDE354B8 + F6B881EBD298898DCFD63C8E6B9362DE6360F86146DCA1830DFED36267D1DFEC + 27F14A61E5960DBA70FD749A4459BEE90F825F7ABE6D38909D2EB69D2500E227 + 10B40DD8127EB48F6149DC7316DE0BF440C7AF37DCF71C79759B80B233327AB7 + CA6B69733DFFF9688EE370F0F249F465E32757563044C80ED3F05C79D94C823B + EE78C7CD2B5B3B398CBEFBD58760D0A981CA726B999F3CCCC8C6BA7080A8CFBF + CD69CB5E996350C80FC7CE36CE9077E74817FF2740E3C724083718E2C1EDA011 + 6B5382AAA187A68A8422FA95A554FA4C96C866118CE2D157BE6265E78A177567 + 41EEC08293F1D965968680A683B22F0B52040884EE632C104E56C4D157F444D0 + 8FFBE5D4667E3EB544104CCC3D4B3AAA94DD8F4468285C91C744E8B17C26E25B + C8405E5CB708581A5117FBFDC4755367E5C160616F0B6E216EB9E134433A5720 + A029BDCC8C9AA45C7B9600FAB18E60A9923C9AF2F481818D1BC48026C1B8612F + 77C249258C7B14815D871DC0AE1291D029D0BCC9071ABD62FC3B8E3CA53DBC4F + 6B02A3CCE4803507770B01261B17DBBC9C7CAE092D140A52BF390019A0FC4218 + CE41302894FC4522E5A4E37C37E775CE89F66456B7FB5226CE8EA9DBC6D3418D + 78C9B2AD6288F81BB50AFD872D0CC45399F34A9FE35DDC885A1FB60970E6A4CA + 1821CEAFD1C730F4E930C03923EA58BD247F5661E8F1DB4617D2A6778C32FCBA + 6EDFDCED18D320C56BCF1365AA3051809E47B8119658D21014AE588B06706272 + 473E9AA863F81C960368A2F000D683BCCD8CA6F8B6B15D3CF46D7B46DAE4D88C + F47C969B38E596AA7C4F0842153E7A6210125614A93CE4F0AD5EABF67E71B3D4 + 14A1C0B1EEFFA878E7BA57DA8EA18A580B6345100AEEAA5C341B7CBBD9C821B0 + B301D1B12C2BEFF22853F96B0557D9F12FCCADBECE00104A3E8E9E57CDD8ABE5 + 8E43FDB221C9C33AD4B61E03DEE988996F88A29C963742AC959C1801F17A9C6C + 5C117DD62C40AB04120439B4D5F93DF516C7F8E7573C40835D88CEEC574D8A91 + E8A4BE3E42F56D32F479992A599BE77CCBBC53FD942FA43E3C0607498A987575 + DBDF9F82C1DE7B149420D6A37A820A4243B48F304743A4AFF72DE18DD479D0DB + C6B3A4CC389C0049B5F6AA0C98CF562DEF93A856097C97B83CE5BCCC6588D9D4 + 88D64622D92FD5151A55AAD4A1B4F2F30793BE13186C4503DDD87090A0BCAF5B + DC85BF6B90FC2820309DFE3B13D3D55D4DCE16DAB030135ED3DF5456D85479E7 + 4A0175349572A1439AAD1E469034C698F8EC8BA9B0E704D8837BC916EAA13A45 + 76593BF4CD6D30715BF1FF29BEA7AD732CF1084EC0AA5AB884D9258B56ABE5D7 + 291F70EA9672F0A23A1A1A71ADDEEF847C92CDF41E81A60FDCD617450C47F3FD + 5F43DD5A8BC63FB46F2B0AF2CA42F4B16F33684D301C3488670B5FC1C5035EDA + F1468E68AF8C6DFD6A18DFB3A9AA3F951CF51AA7FA2504589C39CAB166F50CDF + 92031A2C552B070D635BC1A39C8DE12E06E6F9A19E40321791FAFCFEAAE422DA + 369886C9F950A1564AE25B1FF743E6A377F9E331DB43E3B59D450B570D2EA548 + 145813858D60447C13CD2F24F7ED389353EB8F687024964F20BC106CC2D74581 + 328A5A854C91F0B5EBEC8D8B33E0FAAD7FC4E524700C42180A4192CD64F0375C + D7EB91EBA2ABA171293014EF13367933245BEE45ED6533D4C157CDB245628785 + DF1B281F63E35D94C5A873C03602994A4E76FB71E4DD1B5A2C4714334053C479 + 1B4AF56F52B9D41EF1125A631CEE3B0F679DFE09371A1CFABD32BEE25E04A9FC + B9BF07D912454857F71BF4F102CD3D1C402E9E49ADEB74F53BF463080113D732 + 8A38A81D9ED3D55A09F511366F9B4466C2AAE4E131EA0CBE9B0DB9747EB0095F + FD57012146376ECFB6BF8E1C94A8AE39AAB07CA5AB1D85A319DA15BAA59F1AC9 + 9FDE676EBF8D87203D9FE5FFE056CB476BD72428BDC244601178C49A6E080D28 + 41E1431A42B239CAC0F2AE64949CC98F44B223DBA14188DA463AC25CAFF94C12 + 63420ABE615D51B6FBC750701F1FBB41FF6135B61A488478CD907BA7D0343E11 + 837F7C7D10B1D84BB19CE720535ECACB5004C93647876FC4D5F301CB2E37F340 + 61D3832D273CE906B9086D7C5E135B9E4DC28A9377B203AE9DFC06833C5A78AB + 4CCB24C9C0DC64CBE977E89893296CF2D8BC94D4B1E738F4EA59F8B1027F55E1 + 1C9E8CF8C1BAA191B2D9F124DC0DAB06049C270328B960B2994628750C8C58DA + 17705DE84E6F46DD3554AD43E6921471F5A55A498C4C12CE397A7644AFEFD627 + 593C86A292BDC2AC867DEE9F92E0A3443C49916CAC8E50BC049467669ACE7380 + C0F1F500C99EC091DC29E4ED9C5F8A27324A5E2FE395BAC21ED96CB08A1A9F59 + F9638B6B471B81F49E53B6E80213F1C7973BAC2F6833F456E01F287FD31DBA6A + E78AE9201ADD142440C2F4EE016538 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + cleartomark + /AUTIMJ+CMR12 findfont /Encoding get + dup 65 /A put + dup 67 /C put + dup 68 /D put + dup 69 /E put + dup 72 /H put + dup 73 /I put + dup 76 /L put + dup 77 /M put + dup 78 /N put + dup 79 /O put + dup 80 /P put + dup 82 /R put + dup 83 /S put + dup 84 /T put + dup 85 /U put + dup 89 /Y put + dup 90 /Z put + dup 32 /.notdef put + pop + end + %%EndResource + + userdict /pdf_svglb get setglobal + [ 0 /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/A + /.notdef/C/D/E/.notdef/.notdef + /H/I/.notdef/.notdef/L/M + /N/O/P/.notdef/R/S + /T/U/.notdef/.notdef/.notdef/Y + /Z/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef + /N611/AUTIMJ+CMR12 -1 TZG + %%EndPageSetup + 0 0 612 792 re + W + n + 1 0 0 1 110.22 621.831 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N611 11.955 Tf + (M) show + (A) + [8.4521 ] pdfxs + (C) show + (RO) + [8.29668 9.09767 ] pdfxs + (SC) show + (O) + [9.10962 ] pdfxs + (P) show + (ICDATA) + [4.22007 12.3615 8.61956 7.79457 7.48383 12.6722 ] pdfxs + (ST) show + (R) + [8.29668 ] pdfxs + (UCTU) show + (RE) + [8.61946 11.8594 ] pdfxs + (ANA) show + (L) + [6.33614 ] pdfxs + (YS) show + (IS) + [4.23203 10.4009 ] pdfxs + (AN) show + (DO) + [12.8397 9.10962 ] pdfxs + (PT) show + (I) + [4.23203 ] pdfxs + (M) show + (IZA) + [4.22007 7.14917 7.80653 ] pdfxs + (T) show + (IO) + [4.22007 9.10962 ] pdfxs + (N) show + 187.825 -126.282 m + /N614 10.909 Tf + (B) + [7.72349 ] pdfxs + (Y) show + 146.855 -151.786 m + /N611 11.955 Tf + (CH) show + (RISLA) + [8.61946 4.22007 10.4009 7.31645 7.80653 ] pdfxs + (TTNE) show + (R) show + 114.962 -174.222 m + /N614 10.909 Tf + (B.S.,) + [7.72349 3.0327 6.0654 3.02179 6.6763 ] pdfxs + (U) show + (niversity) + [6.05449 3.0327 5.4545 4.8436 4.27631 4.29811 3.0327 3.93823 9.39264 ] pdfxs + (o) show + (fP) + [6.97085 7.12357 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (t) show + (l) + [3.0327 ] pdfxs + (a) show + (nd,) + [6.05449 6.0654 6.6654 ] pdfxs + (2000) show + 63.416 -187.771 m + (M.S.,) + [10.0036 3.02179 6.0654 3.0327 6.6654 ] pdfxs + (U) show + (niversity) + [6.0654 3.02179 5.4545 4.85451 4.2654 4.30902 3.0327 3.93823 9.39264 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (I) show + (llin) + [3.0327 3.02179 3.0327 6.0654 ] pdfxs + (o) show + (is) + [3.0327 7.93081 ] pdfxs + (a) show + (t) + [7.88729 ] pdfxs + (U) show + (rb) + [4.2654 6.0654 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (-Ch) + [3.64352 7.8763 6.0654 ] pdfxs + (a) show + (mp) + [9.08711 6.05449 ] pdfxs + (a) show + (i) + [3.0327 ] pdfxs + (g) show + (n,) + [6.0654 6.6654 ] pdfxs + (2002) show + 154.947 -307.278 m + (DI) show + (SSERTAT) + [6.0654 6.05449 7.42902 7.11258 6.97085 7.2763 7.8763 ] pdfxs + (I) show + (O) + [8.4872 ] pdfxs + (N) show + 72.825 -332.782 m + (Submi) + [6.0654 6.05449 6.0654 9.08711 3.0327 ] pdfxs + (tt) show + (edinp) + [4.8436 9.6981 3.0327 9.6981 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (a) show + (lful\fllment) + [6.6654 3.32724 6.0654 3.0327 6.05449 3.0327 3.0327 9.08711 4.8436 5.75995 7.87638 + ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (t) show + (herequirements) + [6.0654 8.4872 4.2654 4.85451 5.75995 6.05449 3.0327 4.27631 4.8436 9.08711 4.85451 + 5.75995 4.23277 4.29811 ] pdfxs + 52.962 -346.332 m + (f) + [3.33815 ] pdfxs + (o) show + (rthede) + [7.909 4.23277 6.0654 8.4872 6.05449 4.85451 ] pdfxs + (g) show + (ree) + [4.2654 4.85451 8.4872 ] pdfxs + (o) show + (fDoc) + [6.97085 8.32365 5.75995 4.85451 ] pdfxs + (to) show + (r) + [7.909 ] pdfxs + (o) show + (fPhil) + [6.97085 7.41812 6.0654 3.02179 3.0327 ] pdfxs + (o) show + (s) + [4.30902 ] pdfxs + (o) show + (phyinC) + [6.05449 5.75995 9.39264 3.0327 9.6981 7.8763 ] pdfxs + (o) show + (mpu) + [9.08711 6.0654 6.05449 ] pdfxs + (t) show + (erScience) + [4.85451 7.909 6.05449 4.85451 3.0327 4.8436 6.0654 4.8436 4.8436 ] pdfxs + 122.848 -359.881 m + (in) + [3.0327 9.6981 ] pdfxs + (t) show + (heGr) + [6.05449 8.4872 8.5636 4.2654 ] pdfxs + (a) show + (du) + [6.0654 6.05449 ] pdfxs + (at) show + (eC) + [8.4872 7.8763 ] pdfxs + (o) show + (lle) + [3.0327 3.0327 4.8436 ] pdfxs + (g) show + (e) + [8.4872 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (t) show + (he) + [6.0654 4.8436 ] pdfxs + 77.81 -373.43 m + (U) show + (niversity) + [6.0654 3.02179 5.4545 4.85451 4.2654 4.30902 3.0327 3.93823 9.39264 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (I) show + (llin) + [3.0327 3.0327 3.02179 6.0654 ] pdfxs + (o) show + (is) + [3.0327 7.93081 ] pdfxs + (a) show + (t) + [7.88729 ] pdfxs + (U) show + (rb) + [4.2654 6.0654 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (-Ch) + [3.64352 7.8763 6.0654 ] pdfxs + (a) show + (mpai) + [9.08711 6.05449 5.46541 3.02179 ] pdfxs + (g) show + (n,) + [6.0654 6.6654 ] pdfxs + (2005) show + 158.765 -493.373 m + (U) show + (rb) + [4.27631 6.05449 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (,) + [6.6654 ] pdfxs + (I) show + (llin) + [3.0327 3.0327 3.02179 6.0654 ] pdfxs + (o) show + (is) + [3.0327 4.29811 ] pdfxs + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (1) 2 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 595.275591 788.031496 translate + 180 rotate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + 1 0 0 1 72 629.34 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N622 24.787 Tf + (A) + [21.0691 ] pdfxs + (b) show + (str) + [10.9806 10.8568 11.3772 ] pdfxs + (ac) show + (t) show + 0 -61.773 m + /N614 10.909 Tf + (Providinghi) + [7.42902 4.2654 5.14905 5.75995 3.0327 6.0654 3.02179 6.0654 9.25083 6.05449 3.0327 + ] pdfxs + (g) show + (hperf) + [9.86173 6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (ncef) + [6.05449 4.85451 8.63993 3.33815 ] pdfxs + (o) show + (rp) + [8.06173 6.37085 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (er-in) + [4.85451 4.2654 3.64352 3.0327 5.74904 ] pdfxs + (t) show + (ensivepr) + [4.85451 6.05449 4.30902 3.02179 5.4545 8.65084 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms) + [9.08711 8.10535 ] pdfxs + (o) show + (nmodern) + [9.85082 9.08711 5.75995 6.0654 4.8436 4.27631 9.85082 ] pdfxs + (a) show + (rchi) + [4.27631 4.54905 6.05449 3.0327 ] pdfxs + (t) show + (ec) + [4.8436 4.85451 ] pdfxs + (t) show + (uresis) + [6.05449 4.27631 4.8436 8.10535 3.0327 8.09444 ] pdfxs + (a) show + (nincre) + [9.86173 3.02179 6.0654 4.8436 4.27631 4.85451 ] pdfxs + (a) show + (s-) + [4.29811 3.63261 ] pdfxs + 0 -83.696 m + (in) + [3.0327 6.05449 ] pdfxs + (g) show + (lydi\016cultpr) + [3.0327 8.20356 6.0654 3.0327 9.08711 4.8436 6.0654 3.0327 6.6873 6.05449 4.27631 + ] pdfxs + (o) show + (blemf) + [6.0654 3.02179 4.85451 11.5307 3.33815 ] pdfxs + (o) show + (rc) + [6.71992 4.8436 ] pdfxs + (o) show + (mpilers.P) + [9.09802 6.05449 3.0327 3.0327 4.8436 4.27631 4.29811 7.48357 7.12357 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er-intensivepr) + [4.8436 4.27631 3.63261 3.0327 5.75995 4.23277 4.85451 6.05449 4.30902 3.0327 5.4545 + 7.28721 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (ms) + [9.09802 6.74173 ] pdfxs + (a) show + (re) + [4.27631 7.29812 ] pdfxs + (o) show + (f) + [3.32724 ] pdfxs + (t) show + (enb) + [4.85451 8.49811 6.37085 ] pdfxs + (o) show + (undbymem) + [6.05449 6.0654 8.50901 5.75995 8.20356 9.08711 4.8436 9.09802 ] pdfxs + (o) show + (ryl) + [4.2654 8.20356 3.0327 ] pdfxs + (at) show + (ency) + [4.85451 6.05449 4.85451 5.75995 ] pdfxs + 0 -105.618 m + (a) show + (ndc) + [6.0654 9.08719 4.8436 ] pdfxs + (a) show + (cheperf) + [4.54905 6.05449 7.8763 6.37085 4.8436 4.27631 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nce,but) + [6.0654 4.8436 4.85451 6.17449 6.0654 6.05449 7.27638 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (di) + [6.0654 3.0327 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [6.0654 ] pdfxs + (a) show + (l) + [6.05449 ] pdfxs + (a) show + (ppr) + [6.0654 6.05449 4.27631 ] pdfxs + (oa) show + (ches) + [4.54905 6.05449 4.85451 7.33081 ] pdfxs + (t) show + (o) + [8.47629 ] pdfxs + (t) show + (hesepr) + [6.05449 4.85451 4.29811 7.8763 6.0654 4.27631 ] pdfxs + (o) show + (blemsusu) + [6.05449 3.0327 4.8436 9.09802 7.33081 6.05449 4.30902 6.05449 ] pdfxs + (a) show + (llyf) + [3.0327 3.0327 8.78174 3.33815 ] pdfxs + (a) show + (il:P) + [3.02179 3.0327 7.57084 7.12357 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er-in) + [4.8436 4.27631 3.63261 3.0327 5.75995 ] pdfxs + (t) show + (ensive) + [4.8436 6.0654 4.29811 3.0327 5.4545 4.8436 ] pdfxs + 0 -127.541 m + (pr) + [6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms) + [9.08711 8.24717 ] pdfxs + (a) show + (re) + [4.27631 8.78174 ] pdfxs + (o) show + (f) + [3.33815 ] pdfxs + (t) show + (enhi) + [4.8436 10.0035 6.0654 3.0327 ] pdfxs + (g) show + (hly-irre) + [6.05449 3.0327 5.75995 3.63261 3.0327 4.2654 4.27631 4.85451 ] pdfxs + (g) show + (ul) + [6.05449 3.0327 ] pdfxs + (a) show + (r) + [8.21446 ] pdfxs + (a) show + (nd) + [6.05449 10.0035 ] pdfxs + (t) show + (hec) + [6.0654 8.78174 4.85451 ] pdfxs + (o) show + (mpilerh) + [9.08711 6.0654 3.0327 3.02179 4.85451 8.21446 6.05449 ] pdfxs + (a) show + (sli) + [8.24717 3.0327 3.0327 ] pdfxs + (t) show + (tlec) + [4.23277 3.0327 8.79265 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (o) show + (loverthelay) + [6.97085 5.14905 5.4545 4.85451 8.21446 4.23277 6.0654 8.79265 3.0327 5.14905 5.4545 + ] pdfxs + (o) show + (ut) + [6.05449 8.18183 ] pdfxs + (o) show + (fhe) + [7.2763 6.0654 4.8436 ] pdfxs + (a) show + (p) + [10.0035 ] pdfxs + (a) show + (l-) + [3.0327 3.63261 ] pdfxs + 0 -149.463 m + (loc) + [3.0327 5.75995 4.8436 ] pdfxs + (at) show + (ed) + [4.8436 9.6981 ] pdfxs + (o) show + (bjec) + [6.66539 3.33815 4.8436 4.85451 ] pdfxs + (t) show + (s.) + [4.29811 3.0327 ] pdfxs + 16.936 -171.386 m + (This) + [7.8763 6.0654 3.0327 8.78171 ] pdfxs + (t) show + (hesispresen) + [6.05449 4.85451 4.29811 3.0327 8.78171 6.0654 4.2654 4.85451 4.29811 4.85451 5.74904 + ] pdfxs + (t) show + (sanewcl) + [8.78171 9.9381 6.0654 4.8436 12.3599 4.8436 3.0327 ] pdfxs + (a) show + (ss) + [4.30902 8.78171 ] pdfxs + (o) show + (f) + [7.81084 ] pdfxs + (t) show + (echniquesn) + [4.8436 4.54905 6.0654 6.05449 3.0327 5.75995 6.05449 4.85451 8.78171 6.05449 ] pdfxs + (a) show + (med) + [9.09802 4.8436 10.5381 ] pdfxs + (\\) show + (M) + [10.0036 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.30902 4.8436 ] pdfxs + (o) show + (picD) + [6.0654 3.02179 9.3381 8.32365 ] pdfxs + (at) show + (aStruc) + [9.9381 6.0654 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.0654 4.2654 9.3272 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lyses) + [3.0327 5.74904 4.30902 4.8436 4.29811 ] pdfxs + 0 -193.308 m + (a) show + (ndOp) + [6.0654 9.55628 8.4872 6.05449 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.0654 4.29811 ] pdfxs + (") show + (,whichisanew) + [6.55631 7.8763 6.0654 3.0327 4.53815 9.55628 3.0327 7.7999 8.95629 6.0654 4.8436 + 11.3781 ] pdfxs + (a) show + (ppr) + [6.05449 6.0654 4.27631 ] pdfxs + (oa) show + (chto) + [4.53815 9.56719 4.23277 8.95629 ] pdfxs + (t) show + (hepr) + [6.0654 8.34538 6.05449 4.27631 ] pdfxs + (o) show + (blem) + [6.05449 3.0327 4.85451 12.5889 ] pdfxs + (o) show + (f) + [6.82903 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lyzing) + [3.0327 5.75995 4.8436 3.0327 6.0654 8.94538 ] pdfxs + (a) show + (nd) + [6.0654 9.55628 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imizingp) + [3.0327 9.08711 3.0327 4.8436 3.0327 6.05449 8.95629 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er-) + [4.8436 4.27631 3.63261 ] pdfxs + 0 -215.231 m + (intensivepr) + [3.0327 5.75995 4.23277 4.85451 6.05449 4.30902 3.0327 5.4545 8.63993 6.0654 4.2654 + ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms.) + [9.08711 4.30902 8.35629 ] pdfxs + (I) show + (ns) + [6.05449 4.30902 ] pdfxs + (t) show + (e) + [4.8436 ] pdfxs + (a) show + (d) + [9.86173 ] pdfxs + (o) show + (f) + [7.12357 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lyzingindividu) + [3.0327 5.74904 4.85451 3.0327 6.05449 9.25083 3.0327 6.05449 6.0654 3.0327 5.74904 + 3.0327 6.0654 6.05449 ] pdfxs + (a) show + (ll) + [6.82903 3.0327 ] pdfxs + (oa) show + (d) + [6.05449 ] pdfxs + (/) show + (s) + [4.30902 ] pdfxs + (to) show + (re) + [4.2654 8.65084 ] pdfxs + (o) show + (per) + [6.35994 4.85451 4.2654 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 8.10535 ] pdfxs + (o) show + (rs) + [8.06173 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (urede\fni) + [6.0654 4.27631 8.63993 6.0654 4.8436 6.0654 6.05449 3.0327 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns,) + [6.05449 4.30902 3.0327 ] pdfxs + 0 -237.153 m + (t) show + (his) + [6.05449 3.0327 8.47626 ] pdfxs + (a) show + (ppr) + [6.05449 6.0654 4.2654 ] pdfxs + (oa) show + (chiden) + [4.54905 10.2326 3.02179 6.0654 4.8436 5.75995 ] pdfxs + (t) show + (i\fes,) + [3.0327 6.05449 4.85451 4.29811 7.33084 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lyzes,) + [3.02179 5.75995 4.85451 4.8436 4.30902 7.31994 ] pdfxs + (a) show + (nd) + [6.0654 10.2217 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsformsen) + [6.05449 4.30902 3.32724 5.46541 4.2654 9.09802 8.46535 4.8436 5.75995 ] pdfxs + (t) show + (iremem) + [3.0327 4.2654 9.02174 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (rys) + [4.27631 9.91628 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ures) + [6.0654 4.2654 4.85451 8.46535 ] pdfxs + (a) show + (sauni) + [8.47626 9.61083 6.0654 6.0654 3.02179 ] pdfxs + (t) show + (.Thef) + [9.46901 7.8763 6.0654 9.01083 3.33815 ] pdfxs + (o) show + (un-) + [6.05449 6.0654 3.63261 ] pdfxs + 0 -259.076 m + (d) + [6.0654 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n) + [9.55628 ] pdfxs + (o) show + (f) + [6.81812 ] pdfxs + (t) show + (he) + [6.0654 8.33448 ] pdfxs + (a) show + (ppr) + [6.05449 6.0654 4.27631 ] pdfxs + (oa) show + (chis) + [4.53815 9.55628 3.02179 7.7999 ] pdfxs + (a) show + (n) + [9.54537 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisn) + [3.02179 5.75995 4.30902 3.02179 7.7999 6.05449 ] pdfxs + (a) show + (medD) + [9.09802 4.8436 9.55628 8.32365 ] pdfxs + (at) show + (aS) + [8.94538 6.0654 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.0654 4.2654 8.34538 ] pdfxs + (A) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 7.78899 ] pdfxs + (a) show + (nda) + [6.0654 9.54537 8.94538 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nn) + [9.54537 6.0654 ] pdfxs + (a) show + (med) + [9.08711 4.85451 6.0654 ] pdfxs + 0 -280.998 m + (A) show + (ut) + [6.0654 4.23277 ] pdfxs + (o) show + (m) + [9.09802 ] pdfxs + (at) show + (icPo) + [3.02179 8.75993 7.12357 5.75995 ] pdfxs + (o) show + (l) + [6.93812 ] pdfxs + (A) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n.) + [6.0654 8.69447 ] pdfxs + (Dat) show + (aS) + [9.35992 6.0654 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.0654 4.27631 8.74902 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisisac) + [3.0327 5.75995 4.29811 3.0327 8.21444 3.02179 8.21444 9.35992 4.85451 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (ex) + [4.8436 5.75995 ] pdfxs + (t) show + (-sensi) + [3.63261 4.29811 4.85451 6.05449 4.30902 3.0327 ] pdfxs + (t) show + (ivep) + [3.02179 5.4545 8.75993 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er) + [4.8436 8.18173 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysiswhich) + [3.0327 5.75995 4.29811 3.0327 8.21444 7.8763 6.05449 3.0327 4.54905 6.0654 ] pdfxs + 0 -302.921 m + (identi\fesd) + [3.0327 6.05449 4.85451 5.75995 4.23277 3.0327 6.0654 4.8436 8.06172 6.0654 ] pdfxs + (at) show + (astruc) + [9.20719 4.30902 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ures) + [6.0654 4.2654 4.85451 8.06172 ] pdfxs + (o) show + (nthehe) + [9.81809 4.23277 6.0654 8.6072 6.05449 4.85451 ] pdfxs + (a) show + (p) + [9.81809 ] pdfxs + (a) show + (nd) + [6.05449 9.81809 ] pdfxs + (t) show + (heirimp) + [6.0654 4.8436 3.0327 8.029 3.0327 9.08711 6.37085 ] pdfxs + (o) show + (r) + [4.2654 ] pdfxs + (ta) show + (ntpr) + [5.75995 7.99638 6.0654 4.27631 ] pdfxs + (o) show + (per) + [6.35994 4.8436 4.27631 ] pdfxs + (t) show + (ies) + [3.0327 4.8436 8.06172 ] pdfxs + (\() show + (such) + [4.29811 6.0654 4.54905 9.81809 ] pdfxs + (a) show + (stypes) + [8.06172 3.93823 5.75995 6.35994 8.6072 4.29811 ] pdfxs + (a) show + (fety) + [3.33815 4.8436 3.93823 5.75995 ] pdfxs + (\)) show + (.) + [8.2472 ] pdfxs + (A) show + (u) + [6.05449 ] pdfxs + (to) show + (-) show + 0 -324.844 m + (m) + [9.08711 ] pdfxs + (at) show + (icPo) + [3.0327 7.47267 7.12357 5.75995 ] pdfxs + (o) show + (l) + [5.65086 ] pdfxs + (A) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (nuses) + [8.69447 6.05449 4.30902 4.8436 6.92718 ] pdfxs + (t) show + (heresults) + [6.0654 7.47267 4.2654 4.85451 4.29811 6.0654 3.0327 4.23277 6.92718 ] pdfxs + (o) show + (f) + [5.96722 ] pdfxs + (Da) show + (taStruc) + [4.23277 8.08357 6.0654 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.0654 4.2654 7.47267 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.0327 5.74904 4.30902 3.0327 6.92718 ] pdfxs + (t) show + (ose) + [8.07266 4.30902 4.8436 ] pdfxs + (g) show + (re) + [4.27631 4.8436 ] pdfxs + (gat) show + (edyn) + [7.47267 6.0654 5.75995 6.05449 ] pdfxs + (a) show + (mic) + [9.08711 3.0327 4.85451 ] pdfxs + (a) show + (lly) + [3.02179 3.0327 8.38902 ] pdfxs + (a) show + (lloc) + [3.02179 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (ed) + [4.85451 6.0654 ] pdfxs + 0 -346.766 m + (o) show + (bjects) + [6.66539 3.33815 4.8436 4.85451 4.23277 7.34172 ] pdfxs + (o) show + (n) + [9.08719 ] pdfxs + (t) show + (hehe) + [6.05449 7.88721 6.05449 4.85451 ] pdfxs + (a) show + (p,) + [6.05449 6.1854 ] pdfxs + (g) show + (ivingc) + [3.0327 5.75995 3.02179 6.0654 8.4872 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (o) show + (lover) + [6.0654 5.14905 5.4545 4.85451 7.2981 ] pdfxs + (t) show + (helay) + [6.0654 7.8763 3.0327 5.14905 5.4545 ] pdfxs + (o) show + (ut) + [6.05449 7.27638 ] pdfxs + (o) show + (f) + [6.35994 ] pdfxs + (t) show + (hed) + [6.0654 7.8763 6.0654 ] pdfxs + (at) show + (as) + [8.47629 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ureinmem) + [6.0654 4.2654 7.88721 3.02179 9.0981 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 8.78174 ] pdfxs + (t) show + (o) + [8.4872 ] pdfxs + (t) show + (hec) + [6.05449 7.88721 4.8436 ] pdfxs + (o) show + (mpiler.) + [9.08711 6.0654 3.0327 3.02179 4.85451 4.27631 3.0327 ] pdfxs + 16.936 -368.689 m + (B) + [7.72349 ] pdfxs + (a) show + (sed) + [4.30902 4.8436 10.6363 ] pdfxs + (o) show + (n) + [10.6254 ] pdfxs + (t) show + (hesetwof) + [6.0654 4.8436 4.30902 9.41447 3.93823 7.58175 10.0254 3.32724 ] pdfxs + (o) show + (und) + [6.0654 6.0654 6.05449 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [10.6254 ] pdfxs + (t) show + (echniques,) + [4.85451 4.53815 6.0654 6.0654 3.02179 5.75995 6.0654 4.8436 4.30902 7.83266 ] pdfxs + (t) show + (histhesisdescribessever) + [6.05449 3.0327 8.87989 4.23277 6.0654 4.8436 4.30902 3.0327 8.86898 6.0654 4.8436 + 4.30902 4.8436 4.27631 3.0327 6.35994 4.8436 8.87989 4.29811 4.85451 5.4545 4.8436 + 4.27631 ] pdfxs + (a) show + (lperf) + [7.60357 6.35994 4.8436 4.27631 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (nceimprov-) + [6.05449 4.85451 9.41447 3.0327 9.08711 6.0654 4.27631 5.14905 5.75995 3.63261 ] pdfxs + 0 -390.611 m + (ing) + [3.0327 6.05449 9.30537 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imiz) + [3.02179 9.09802 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nsf) + [6.05449 8.1599 3.32724 ] pdfxs + (o) show + (rp) + [8.12718 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (er-in) + [4.85451 4.2654 3.64352 3.0327 5.74904 ] pdfxs + (t) show + (ensivepr) + [4.85451 6.05449 4.30902 3.0327 5.4545 8.69447 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms.Firs) + [9.08711 4.30902 8.50902 7.12357 3.0327 4.2654 4.30902 ] pdfxs + (t) show + (,) + [6.92721 ] pdfxs + (A) show + (u) + [6.0654 ] pdfxs + (to) show + (m) + [9.08711 ] pdfxs + (at) show + (icPo) + [3.0327 8.69447 7.12357 5.75995 ] pdfxs + (o) show + (l) + [6.87267 ] pdfxs + (A) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ni) + [9.90537 3.0327 ] pdfxs + (t) show + (selfprovides) + [4.29811 4.85451 3.02179 7.18903 6.05449 4.27631 5.14905 5.75995 3.0327 6.05449 4.85451 + 4.29811 ] pdfxs + 0 -412.534 m + (imp) + [3.0327 9.08711 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (ta) show + (ntloc) + [5.75995 9.10909 3.0327 5.75995 4.8436 ] pdfxs + (a) show + (lityimprovementsf) + [3.0327 3.0327 3.93823 10.6254 3.0327 9.08711 6.0654 4.2654 5.15996 5.4545 4.8436 + 9.08711 4.85451 5.75995 4.23277 9.17444 3.33815 ] pdfxs + (o) show + (r) + [9.14172 ] pdfxs + (t) show + (hepr) + [6.05449 9.71992 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (m.Oncethepr) + [9.08711 11.5854 8.4872 6.05449 4.85451 9.71992 4.23277 6.0654 9.71992 6.05449 4.27631 + ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (mispo) + [13.9525 3.0327 9.17444 6.35994 5.75995 ] pdfxs + (o) show + (l) + [7.89811 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (ed,sever) + [4.85451 6.05449 8.21447 4.29811 4.8436 5.4545 4.85451 4.27631 ] pdfxs + (a) show + (l) show + 0 -434.456 m + (po) + [6.35994 5.75995 ] pdfxs + (o) show + (l-speci\fc) + [3.0327 3.63261 4.30902 6.35994 4.8436 4.85451 3.0327 6.05449 9.54537 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nsc) + [6.05449 8.99989 4.85451 ] pdfxs + (a) show + (nbeperf) + [10.7563 6.35994 9.54537 6.37085 4.8436 4.27631 3.32724 ] pdfxs + (o) show + (rmed) + [4.27631 9.08711 4.85451 10.7563 ] pdfxs + (t) show + (oreduceinter-) + [10.1454 4.27631 4.8436 6.0654 6.0654 4.8436 9.54537 3.0327 5.75995 4.23277 4.85451 + 4.27631 3.63261 ] pdfxs + (o) show + (bjectp) + [6.66539 3.33815 4.8436 4.8436 8.94546 6.05449 ] pdfxs + (a) show + (dding) + [6.0654 6.0654 3.02179 6.0654 10.1454 ] pdfxs + (a) show + (ndpo) + [6.0654 10.7563 6.37085 5.74904 ] pdfxs + (o) show + (loverhe) + [7.73448 5.14905 5.4545 4.8436 4.27631 6.0654 4.8436 ] pdfxs + (a) show + (d.) + [6.0654 3.0327 ] pdfxs + 0 -456.379 m + (Sec) + [6.0654 4.8436 4.8436 ] pdfxs + (o) show + (nd,wedescribe) + [6.0654 6.0654 7.30903 7.58175 8.99993 6.0654 4.8436 4.30902 4.8436 4.27631 3.0327 + 6.35994 9.01083 ] pdfxs + (a) show + (n) + [10.2108 ] pdfxs + (agg) show + (ressivetechnique,) + [4.27631 4.8436 4.30902 4.29811 3.0327 5.4545 9.01083 4.23277 4.85451 4.54905 6.05449 + 6.0654 3.0327 5.74904 6.0654 4.8436 7.31994 ] pdfxs + (A) show + (u) + [6.0654 ] pdfxs + (to) show + (m) + [9.08711 ] pdfxs + (at) show + (icP) + [3.0327 8.99993 7.12357 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (erC) + [4.85451 8.43264 7.8763 ] pdfxs + (o) show + (mpression,whichreduces) + [9.08711 6.0654 4.2654 4.85451 4.29811 4.30902 3.02179 5.46541 6.05449 7.31994 7.8763 + 6.0654 3.02179 4.54905 10.2217 4.2654 4.85451 6.05449 6.0654 4.8436 4.85451 8.45444 + ] pdfxs + (t) show + (he) + [6.0654 4.8436 ] pdfxs + 0 -478.301 m + (size) + [4.29811 3.0327 4.85451 8.41084 ] pdfxs + (o) show + (fp) + [6.89448 6.37085 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (ers) + [4.8436 4.27631 7.86536 ] pdfxs + (o) show + (n) + [9.63264 ] pdfxs + (64) show + (-bit) + [3.63261 6.0654 3.02179 7.81092 ] pdfxs + (ta) show + (r) + [4.27631 ] pdfxs + (g) show + (e) + [4.8436 ] pdfxs + (t) show + (s) + [7.86536 ] pdfxs + (t) show + (o) + [9.02174 ] pdfxs + (32) show + (-bi) + [3.63261 6.0654 3.02179 ] pdfxs + (t) show + (s) + [7.87627 ] pdfxs + (o) show + (rless,incre) + [7.83264 3.0327 4.8436 4.30902 4.29811 6.61085 3.0327 6.05449 4.85451 4.2654 4.85451 + ] pdfxs + (a) show + (singe\013ec) + [4.29811 3.0327 6.0654 9.01083 4.85451 6.35986 4.85451 4.8436 ] pdfxs + (t) show + (ivec) + [3.0327 5.4545 8.41084 4.85451 ] pdfxs + (a) show + (chec) + [4.53815 6.0654 8.41084 4.8436 ] pdfxs + (a) show + (p) + [6.0654 ] pdfxs + (a) show + (city) + [4.8436 3.0327 3.93823 9.32719 ] pdfxs + (a) show + (ndmem) + [6.05449 9.63264 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 5.75995 ] pdfxs + 0 -500.224 m + (b) + [6.0654 ] pdfxs + (a) show + (ndwid) + [6.05449 6.0654 7.8763 3.0327 6.05449 ] pdfxs + (t) show + (hf) + [9.6981 3.33815 ] pdfxs + (o) show + (rp) + [7.909 6.35994 ] pdfxs + (o) show + (inter-in) + [3.0327 5.75995 4.23277 4.85451 4.27631 3.63261 3.0327 5.74904 ] pdfxs + (t) show + (ensivepr) + [4.85451 6.05449 4.30902 3.0327 5.4545 8.47629 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (ms.) + [9.09802 4.29811 3.0327 ] pdfxs + 16.936 -522.146 m + (Thisthesisdescribes) + [7.8763 6.0654 3.0327 7.73445 4.23277 6.0654 4.8436 4.30902 3.0327 7.73445 6.05449 + 4.85451 4.29811 4.85451 4.2654 3.0327 6.35994 4.85451 7.73445 ] pdfxs + (t) show + (he) + [6.05449 8.27993 ] pdfxs + (a) show + (ppr) + [6.0654 6.05449 4.27631 ] pdfxs + (oa) show + (ch,) + [4.54905 6.05449 6.50176 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis,) + [3.0327 5.74904 4.30902 3.0327 4.29811 6.50176 ] pdfxs + (a) show + (nd) + [6.0654 9.49082 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [9.50173 ] pdfxs + (o) show + (fpr) + [6.76358 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (mswi) + [9.09802 7.73445 7.8763 3.0327 ] pdfxs + (t) show + (hm) + [9.49082 9.08711 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.30902 4.8436 ] pdfxs + (o) show + (pic) + [6.0654 3.02179 4.8436 ] pdfxs + 0 -544.069 m + (t) show + (echniques,) + [4.8436 4.54905 6.0654 6.05449 3.0327 5.75995 6.05449 4.85451 4.29811 6.65449 ] pdfxs + (a) show + (ndev) + [6.05449 9.67628 4.85451 5.14904 ] pdfxs + (a) show + (lu) + [3.0327 6.05449 ] pdfxs + (at) show + (es) + [4.8436 7.9199 ] pdfxs + (t) show + (henetperf) + [6.0654 8.45447 6.0654 4.8436 7.86547 6.35994 4.8436 4.27631 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (nceimp) + [6.05449 4.85451 8.45447 3.0327 9.08711 6.0654 ] pdfxs + (a) show + (ct) + [4.8436 7.86547 ] pdfxs + (o) show + (fthe) + [6.94903 4.23277 6.0654 8.46538 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns.Fin) + [6.05449 4.30902 7.86538 7.12357 3.0327 6.05449 ] pdfxs + (a) show + (lly,itdescribes) + [3.0327 3.0327 4.84359 6.65449 3.0327 7.85456 6.05449 4.85451 4.29811 4.85451 4.2654 + 3.0327 6.35994 4.85451 4.29811 ] pdfxs + 229.455 -577.5 m + (iii) + [3.0327 3.0327 3.0327 ] pdfxs + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + showpage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (2) 3 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 0.000000 0.000000 translate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + showpage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + 1 0 0 1 72 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (al) + [10.3745 3.02179 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (g) show + (ecl) + [9.76355 4.85451 3.0327 ] pdfxs + (a) show + (ss) + [4.29811 9.21807 ] pdfxs + (o) show + (fp) + [8.2472 6.37085 ] pdfxs + (ot) show + (en) + [4.8436 5.75995 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (a) show + (l) + [7.94175 ] pdfxs + (a) show + (pplic) + [6.0654 6.05449 3.0327 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nsf) + [6.05449 9.22898 3.32724 ] pdfxs + (o) show + (r) + [9.18536 ] pdfxs + (t) show + (hew) + [6.0654 9.76355 7.58175 ] pdfxs + (o) show + (rkin\feldssuch) + [4.2654 10.6799 3.02179 10.9854 6.05449 4.85451 3.02179 6.0654 9.21807 4.30902 6.05449 + 4.54905 10.9744 ] pdfxs + (a) show + (she) + [9.21807 6.0654 4.8436 ] pdfxs + (a) show + (ps) + [10.9854 4.29811 ] pdfxs + (a) show + (fety) + [3.33815 4.8436 3.93823 10.6799 ] pdfxs + (a) show + (ndreli) + [6.05449 10.9744 4.27631 4.85451 3.02179 3.0327 ] pdfxs + (a) show + (bility,) + [6.0654 3.02179 3.0327 3.0327 3.93823 4.8545 3.0327 ] pdfxs + 0 -21.922 m + (pr) + [6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (munders) + [12.7307 6.05449 6.0654 6.05449 4.85451 4.2654 4.30902 ] pdfxs + (ta) show + (ndin) + [6.05449 6.0654 3.0327 6.05449 ] pdfxs + (g) show + (,dis) + [6.6654 6.0654 3.0327 4.29811 ] pdfxs + (t) show + (ributedc) + [4.27631 3.02179 6.0654 6.0654 4.23277 4.85451 9.6981 4.8436 ] pdfxs + (o) show + (mpu) + [9.09802 6.05449 6.0654 ] pdfxs + (t) show + (in) + [3.02179 6.0654 ] pdfxs + (g) show + (,) + [6.6654 ] pdfxs + (a) show + (nds) + [6.0654 9.6981 4.29811 ] pdfxs + (tat) show + (ic) + [3.0327 8.47629 ] pdfxs + (ga) show + (rb) + [4.27631 6.0654 ] pdfxs + (ag) show + (ec) + [8.47629 4.85451 ] pdfxs + (o) show + (llec) + [3.0327 3.02179 4.85451 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n.) + [6.0654 3.0327 ] pdfxs + 229.606 -657.201 m + (iv) + [3.0327 5.75995 ] pdfxs + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (3) 4 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 595.275591 788.031496 translate + 180 rotate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + 1 0 0 1 191.419 384.22 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N634 10.909 Tf + (ToT) + [6.97089 9.47994 6.97089 ] pdfxs + (a) show + (ny) + [6.13082 5.30169 ] pdfxs + (a) show + (,f) + [7.24365 3.34914 ] pdfxs + (o) show + (r) + [8.49808 ] pdfxs + (he) show + (runw) + [8.50899 5.85816 6.13082 7.24359 ] pdfxs + (ave) show + (ringl) + [4.60356 3.34914 6.13082 8.92363 2.78176 ] pdfxs + (ov) show + (e) + [8.92363 ] pdfxs + (a) show + (nd) + [6.13082 9.47994 ] pdfxs + (s) show + (u) + [5.85816 ] pdfxs + (p) show + (p) + [5.01816 ] pdfxs + (o) show + (rt.) + [4.60356 3.62179 3.34914 ] pdfxs + 111.702 -332.38 m + /N614 10.909 Tf + (v) show + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 72 629.34 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N622 24.787 Tf + (A) + [21.0691 ] pdfxs + (u) show + (t) + [10.832 ] pdfxs + (h) show + (or'sBiogr) + [13.9552 11.3772 7.75841 20.2758 19.8297 7.75841 13.9304 13.9552 11.3772 ] pdfxs + (ap) show + (hy) + [14.7235 14.7233 ] pdfxs + 0 -61.773 m + /N614 10.909 Tf + (Chris) + [7.8763 6.0654 4.2654 3.0327 6.85082 ] pdfxs + (Latt) show + (ner) + [6.05449 4.85451 6.8072 ] pdfxs + (att) show + (endedelemen) + [4.8436 6.0654 6.0654 4.8436 8.6072 4.8436 3.0327 4.8436 9.09802 4.8436 5.75995 + ] pdfxs + (ta) show + (ryscho) + [4.2654 8.30174 4.30902 4.53815 6.0654 5.75995 ] pdfxs + (o) show + (linBeaver) + [5.5745 3.02179 8.6072 7.72349 4.85451 5.14905 5.4545 4.8436 4.27631 ] pdfxs + (to) show + (nOre) + [8.6072 8.47629 4.27631 4.85451 ] pdfxs + (go) show + (n) + [8.59629 ] pdfxs + (\() show + (suburbi) + [4.30902 6.05449 6.0654 6.05449 4.27631 6.05449 3.0327 ] pdfxs + (a\)) show + (,moving) + [5.79268 9.08711 5.15996 5.74904 3.0327 6.0654 7.99629 ] pdfxs + (t) show + (oB) + [7.99629 7.72349 ] pdfxs + (a) show + (nksOre) + [6.0654 5.74904 6.85082 8.4872 4.2654 4.85451 ] pdfxs + (go) show + (n) show + 0 -83.696 m + (\(t) show + (hec) + [6.05449 8.73811 4.8436 ] pdfxs + (o) show + (un) + [6.0654 5.75995 ] pdfxs + (t) show + (ry\)f) + [4.2654 5.75995 8.12729 3.33815 ] pdfxs + (o) show + (rmiddlescho) + [8.15991 9.08711 3.0327 6.05449 6.0654 3.0327 8.7272 4.30902 4.53815 6.0654 5.75995 + ] pdfxs + (o) show + (l) + [6.9163 ] pdfxs + (a) show + (ndhi) + [6.05449 9.949 6.0654 3.02179 ] pdfxs + (g) show + (hscho) + [9.949 4.30902 4.53815 6.0654 5.75995 ] pdfxs + (o) show + (l.) + [3.02179 8.62901 ] pdfxs + (A) show + (f) + [3.33815 ] pdfxs + (t) show + (erhi) + [4.8436 8.15991 6.0654 3.02179 ] pdfxs + (g) show + (hscho) + [9.949 4.30902 4.53815 6.0654 5.75995 ] pdfxs + (o) show + (l,he) + [3.02179 6.98176 6.0654 8.7272 ] pdfxs + (att) show + (ended) + [4.85451 6.05449 6.0654 4.8436 9.949 ] pdfxs + (t) show + (he) + [6.05449 8.73811 ] pdfxs + (U) show + (niversity) + [6.0654 3.02179 5.4545 4.85451 4.2654 4.30902 3.0327 3.93823 9.64355 ] pdfxs + (o) show + (f) show + 0 -105.618 m + (P) + [7.12357 ] pdfxs + (o) show + (r) + [4.2654 ] pdfxs + (t) show + (l) + [3.0327 ] pdfxs + (a) show + (ndinP) + [6.0654 9.13083 3.0327 9.13083 7.12357 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (t) show + (l) + [3.02179 ] pdfxs + (a) show + (nd,Ore) + [6.0654 6.0654 6.21813 8.47629 4.27631 4.8436 ] pdfxs + (go) show + (n) + [9.14174 ] pdfxs + (\(t) show + (hecity) + [6.05449 7.93084 4.8436 3.0327 3.93823 5.75995 ] pdfxs + (\)) show + (,) + [6.20722 ] pdfxs + (a) show + (ndw) + [6.0654 9.13083 7.58175 ] pdfxs + (a) show + (saw) + [7.37445 5.14905 7.58175 ] pdfxs + (a) show + (rdedaB) + [4.27631 6.05449 4.85451 9.13083 8.53084 7.72349 ] pdfxs + (a) show + (chel) + [4.54905 6.05449 4.85451 3.0327 ] pdfxs + (o) show + (rsde) + [4.2654 7.38536 6.05449 4.85451 ] pdfxs + (g) show + (reeinC) + [4.2654 4.85451 7.91993 3.0327 9.13083 7.88721 ] pdfxs + (o) show + (mpu) + [9.08711 6.05449 6.0654 ] pdfxs + (t) show + (erScience.) + [4.8436 7.35264 6.05449 4.85451 3.0327 4.8436 6.0654 4.8436 4.85451 3.0327 ] pdfxs + 0 -127.541 m + (F) + [6.20722 ] pdfxs + (o) show + (r) + [9.34899 ] pdfxs + (g) show + (r) + [4.27631 ] pdfxs + (a) show + (du) + [6.05449 6.0654 ] pdfxs + (at) show + (escho) + [9.91628 4.29811 4.54905 6.05449 5.75995 ] pdfxs + (o) show + (l,hemoved) + [3.0327 8.45447 6.0654 9.91628 9.08711 5.15996 5.4545 4.8436 11.1272 ] pdfxs + (t) show + (o) + [10.5272 ] pdfxs + (U) show + (rb) + [4.27631 6.05449 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (,) + [8.45447 ] pdfxs + (I) show + (L) + [11.8908 ] pdfxs + (\() show + (thec) + [4.23277 6.0654 9.91628 4.85451 ] pdfxs + (o) show + (rn\felds\)) + [4.2654 11.1381 6.05449 4.85451 3.02179 6.0654 4.29811 9.31637 ] pdfxs + (a) show + (nd) + [6.0654 11.1272 ] pdfxs + (att) show + (ended) + [4.8436 6.0654 6.05449 4.85451 11.1272 ] pdfxs + (t) show + (he) + [6.05449 9.91628 ] pdfxs + (U) show + (niversity) + [6.0654 3.0327 5.4545 4.8436 4.27631 4.29811 3.0327 3.93823 10.8326 ] pdfxs + (o) show + (f) show + 0 -149.463 m + (I) show + (llin) + [3.0327 3.0327 3.02179 6.0654 ] pdfxs + (o) show + (is) + [3.0327 7.99626 ] pdfxs + (a) show + (t) + [7.95274 ] pdfxs + (U) show + (rb) + [4.2654 6.0654 ] pdfxs + (a) show + (naCh) + [6.05449 9.16356 7.8763 6.05449 ] pdfxs + (a) show + (mp) + [9.09802 6.05449 ] pdfxs + (a) show + (i) + [3.0327 ] pdfxs + (g) show + (n,e) + [6.0654 6.74176 4.85451 ] pdfxs + (a) show + (rninghisM.S.) + [4.2654 6.0654 3.0327 6.05449 9.15265 6.0654 3.0327 7.99626 10.0036 3.0327 6.05449 + 6.73085 ] pdfxs + (a) show + (ndPh.) + [6.0654 9.76355 7.41812 6.0654 3.0327 ] pdfxs + (D) show + (.de) + [6.73085 6.05449 4.85451 ] pdfxs + (g) show + (rees.P) + [4.2654 4.85451 4.8436 4.30902 8.07266 7.11266 ] pdfxs + (o) show + (st) + [4.30902 7.94183 ] pdfxs + (g) show + (r) + [4.27631 ] pdfxs + (a) show + (du) + [6.05449 6.0654 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n,heisj) + [6.0654 6.74176 6.0654 8.55266 3.02179 8.00717 3.33815 ] pdfxs + (o) show + (inin) + [3.02179 6.0654 3.0327 6.05449 ] pdfxs + (g) show + 0 -171.386 m + (A) show + (ppleC) + [6.0654 6.05449 3.0327 8.62902 7.8763 ] pdfxs + (o) show + (mpu) + [9.08711 6.0654 6.05449 ] pdfxs + (t) show + (erinCuper) + [4.85451 8.05082 3.02179 9.83991 7.8763 6.0654 6.35994 4.85451 4.2654 ] pdfxs + (t) show + (in) + [3.0327 6.0654 ] pdfxs + (o) show + (,C) + [6.83994 7.8763 ] pdfxs + (a) show + (lif) + [3.0327 3.0327 3.32724 ] pdfxs + (o) show + (rnia) + [4.27631 6.05449 3.0327 9.22901 ] pdfxs + (\(t) show + (hesilic) + [6.0654 8.61811 4.30902 3.0327 3.02179 3.0327 4.85451 ] pdfxs + (o) show + (nv) + [9.829 5.15995 ] pdfxs + (a) show + (lley) + [3.02179 3.0327 4.85451 5.74904 ] pdfxs + (\)) show + (,wherehewillc) + [6.85085 7.8763 6.05449 4.85451 4.2654 8.62902 6.0654 8.61811 7.88721 3.02179 3.0327 + 6.80721 4.85451 ] pdfxs + (o) show + (n) + [5.74904 ] pdfxs + (t) show + (inuedevel) + [3.0327 5.75995 6.05449 8.62902 6.0654 4.8436 5.4545 4.85451 3.02179 ] pdfxs + (o) show + (pmen) + [6.0654 9.08711 4.85451 5.74904 ] pdfxs + (t) show + 0 -193.308 m + (o) show + (f) + [8.11629 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (M) + [14.7818 ] pdfxs + (a) show + (nd\fndnewco) + [6.05449 10.8435 6.0654 6.05449 10.8435 6.0654 4.8436 12.6653 4.8436 5.75995 ] pdfxs + (o) show + (lwaysf) + [7.81084 7.58175 5.14905 5.75995 9.08716 3.32724 ] pdfxs + (o) show + (rit) + [9.05445 3.0327 9.02182 ] pdfxs + (t) show + (oimprove) + [10.2326 3.0327 9.09802 6.05449 4.27631 5.14905 5.4545 9.63265 ] pdfxs + (t) show + (heirproduc) + [6.05449 4.85451 3.0327 9.05445 6.05449 4.27631 5.75995 6.05449 6.0654 4.8436 ] pdfxs + (t) show + (s.) + [4.29811 11.3235 ] pdfxs + (A) show + (m) + [9.08711 ] pdfxs + (o) show + (ng) + [6.0654 10.2326 ] pdfxs + (ot) show + (her) + [6.0654 4.8436 9.05445 ] pdfxs + (t) show + (hin) + [6.05449 3.0327 6.0654 ] pdfxs + (g) show + (s,Chris) + [4.29811 8.10538 7.8763 6.05449 4.27631 3.0327 4.29811 ] pdfxs + 0 -215.231 m + (t) show + (hinks) + [6.05449 3.0327 6.0654 5.75995 7.86536 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (t) + [7.81092 ] pdfxs + (a) show + (u) + [6.0654 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (o) show + (rbi) + [7.84355 6.0654 3.02179 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (phiessh) + [6.0654 6.05449 3.0327 4.8436 7.87627 4.30902 6.05449 ] pdfxs + (o) show + (uldn) + [6.0654 3.0327 9.63264 6.05449 ] pdfxs + (o) show + (tbec) + [7.81092 6.37085 8.41084 4.85451 ] pdfxs + (o) show + (mpuls) + [9.08711 6.0654 6.05449 3.0327 4.30902 ] pdfxs + (o) show + (ryf) + [4.2654 9.32719 3.33815 ] pdfxs + (o) show + (rPh.) + [7.84355 7.42902 6.05449 3.0327 ] pdfxs + (D) show + (.disser) + [6.59994 6.0654 3.02179 4.30902 4.29811 4.85451 4.2654 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 7.87627 ] pdfxs + (a) show + (t) + [7.81092 ] pdfxs + (t) show + (he) + [6.0654 8.42175 ] pdfxs + (U) show + (niversity) + [6.05449 3.0327 5.4545 4.85451 4.2654 4.30902 3.02179 3.94914 5.75995 ] pdfxs + 0 -237.153 m + (o) show + (f) + [7.07994 ] pdfxs + (I) show + (llin) + [3.0327 3.02179 3.0327 6.0654 ] pdfxs + (o) show + (is.F) + [3.02179 4.30902 8.19265 6.21813 ] pdfxs + (o) show + (r) + [8.01809 ] pdfxs + (t) show + (hecuri) + [6.05449 8.59629 4.8436 6.0654 4.2654 3.0327 ] pdfxs + (o) show + (us,Chris'sw) + [6.0654 4.29811 6.7963 7.88721 6.05449 4.27631 3.0327 4.29811 3.0327 8.0399 7.58175 + ] pdfxs + (o) show + (rkhis) + [4.27631 9.49083 6.0654 3.0327 4.29811 ] pdfxs + (to) show + (ry,public) + [4.27631 4.84359 6.80721 6.05449 6.0654 6.05449 3.0327 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.0654 8.0399 ] pdfxs + (a) show + (ndm) + [6.0654 9.79628 9.09802 ] pdfxs + (a) show + (ny) + [5.74904 9.50173 ] pdfxs + (ot) show + (her) + [6.0654 4.8436 8.01809 ] pdfxs + (t) show + (hin) + [6.05449 3.0327 6.0654 ] pdfxs + (g) show + (s) + [8.0399 ] pdfxs + (a) show + (reav) + [4.27631 8.59629 5.14905 5.14904 ] pdfxs + (a) show + (il) + [3.0327 3.0327 ] pdfxs + (a) show + (ble) + [6.05449 3.0327 4.8436 ] pdfxs + 0 -259.076 m + (o) show + (nhiswebp) + [9.6981 6.05449 3.0327 7.94172 7.57085 4.85451 9.6981 6.05449 ] pdfxs + (ag) show + (e) + [8.4872 ] pdfxs + (\() show + 84 -259.076 m + /N722 10.909 Tf + (http://nondot.org/sabre/) show + 221.453 -259.076 m + /N614 10.909 Tf + (\)) show + (.) show + 225.818 -577.5 m + (213) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (4) 5 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 0.000000 0.000000 translate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + 1 0 0 1 99.879 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (g) show + (ene) + [4.8436 6.0654 4.8436 ] pdfxs + (o) show + (us) + [6.0654 9.07625 ] pdfxs + (a) show + (bs) + [6.0654 4.29811 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (c) + [4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns.) + [6.0654 4.29811 11.269 ] pdfxs + (I) show + (n) show + 125.582 0 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.41443 ] pdfxs + (o) show + (ft) + [8.29091 3.6327 ] pdfxs + (h) show + (eACMSIGPLANC) + [9.9709 7.83262 7.79997 14.7381 6.13082 4.19998 8.44359 7.39623 6.85084 8.10534 13.058 + 7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (e) show + (nce) + [6.14173 4.46185 9.9709 ] pdfxs + (o) show + (nPro) + [11.0835 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (rammin) + [4.0363 5.58542 8.91258 8.92348 3.34914 6.13082 ] pdfxs + (g) show + 0 -21.922 m + (L) + [6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ag) show + (e) + [8.92363 ] pdfxs + (Des) show + (i) + [3.34914 ] pdfxs + (g) show + (n) + [10.0362 ] pdfxs + (a) show + (ndIm) + [6.13082 9.47994 4.19998 8.92348 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [10.0362 ] pdfxs + (\() show + (PL) + [7.39623 6.85084 ] pdfxs + (D) show + (I) + [4.19998 ] pdfxs + (\)) show + 219.653 -21.922 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (25{34) show + (,) + [6.6654 ] pdfxs + (N) show + (ewY) + [4.8436 11.5199 7.2763 ] pdfxs + (o) show + (rk,) + [4.2654 5.75995 6.6654 ] pdfxs + (NY) show + (,) + [6.6654 ] pdfxs + (U) show + (S) + [6.0654 ] pdfxs + (A) show + (,) + [6.6654 ] pdfxs + (2004) show + (.) show + -27.879 -52.811 m + ([) + [3.0327 ] pdfxs + (145) show + (]Cur) + [8.4872 7.8763 6.05449 4.27631 ] pdfxs + (t) show + (isY) + [3.0327 8.92353 7.2763 ] pdfxs + (a) show + (rvin,Rich) + [4.27631 5.74904 3.0327 6.0654 7.89811 8.03985 3.02179 4.54905 6.0654 ] pdfxs + (a) show + (rdBukowski,) + [4.2654 10.6908 7.72349 6.0654 5.4545 5.14905 7.8763 4.30902 5.75995 3.02179 7.90902 + ] pdfxs + (a) show + (ndTh) + [6.0654 10.6799 7.88721 6.05449 ] pdfxs + (o) show + (m) + [9.08711 ] pdfxs + (a) show + (s) + [8.93444 ] pdfxs + (A) show + (nders) + [6.0654 6.05449 4.85451 4.2654 4.30902 ] pdfxs + (o) show + (n.) + [6.05449 10.8217 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (o) show + (nym) + [5.74904 5.75995 9.09802 ] pdfxs + (o) show + (us) + [6.05449 8.93444 ] pdfxs + (R) show + (PC:) + [7.41812 7.88721 7.65811 ] pdfxs + (L) show + (ow-l) + [5.14905 7.8763 3.63261 3.0327 ] pdfxs + (at) show + (ency) + [4.85451 6.05449 4.85451 5.75995 ] pdfxs + 0 -74.734 m + (pr) + [6.0654 4.2654 ] pdfxs + (ot) show + (ec) + [4.85451 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nina) + [9.6981 3.02179 9.6981 9.0981 ] pdfxs + (64) show + (-bit) + [3.63261 6.0654 3.02179 7.88729 ] pdfxs + (a) show + (ddresssp) + [6.05449 6.0654 4.2654 4.85451 4.29811 7.94172 4.29811 6.0654 ] pdfxs + (a) show + (ce.) + [4.8436 4.85451 7.86538 ] pdfxs + (I) show + (n) show + 191.442 -74.734 m + /N634 10.909 Tf + (USENIXSumm) + [8.10534 6.14173 7.39623 8.10534 4.21089 12.0108 6.13082 5.85816 8.92348 8.91258 ] pdfxs + (e) show + (r) show + 276.86 -74.734 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (175{186) show + (,) + [6.6654 ] pdfxs + (1993) show + (.) show + -27.879 -105.623 m + ([) + [3.0327 ] pdfxs + (146) show + (]Y) + [8.4872 7.26539 ] pdfxs + (o) show + (u) + [6.0654 ] pdfxs + (ta) show + (o) + [8.34538 ] pdfxs + (Z) show + (h) + [6.0654 ] pdfxs + (a) show + (ng) + [6.05449 8.35629 ] pdfxs + (a) show + (nd) + [6.05449 8.95628 ] pdfxs + (R) show + (ajivGup) + [6.0654 3.32724 3.0327 8.65083 8.5636 6.0654 6.05449 ] pdfxs + (ta) show + (.) + [6.65449 ] pdfxs + (Dat) show + (ac) + [8.35629 4.8436 ] pdfxs + (o) show + (mpressi) + [9.08711 6.0654 4.27631 4.8436 4.29811 4.30902 3.0327 ] pdfxs + (o) show + (n) + [8.95628 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (nsf) + [6.0654 7.19991 3.32724 ] pdfxs + (o) show + (rdyn) + [7.16719 6.0654 5.75995 6.05449 ] pdfxs + (a) show + (mic) + [9.09802 3.02179 4.85451 ] pdfxs + (a) show + (lly) + [3.0327 3.02179 8.66174 ] pdfxs + (a) show + (lloc) + [3.02179 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (ed) + [4.85451 6.0654 ] pdfxs + -3.05176e-05 -127.545 m + (d) + [6.0654 ] pdfxs + (a) show + (tastruc) + [4.23277 9.92719 4.30902 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ures.) + [6.0654 4.2654 4.85451 4.29811 10.3526 ] pdfxs + (I) show + (n) show + 97.951 -127.545 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (softheInt) + [9.11988 5.58542 8.00728 3.62179 5.58542 9.67635 4.21089 6.13082 3.62179 ] pdfxs + (e) show + (rn) + [4.60356 6.13082 ] pdfxs + (a) show + (ti) + [3.6327 3.33823 ] pdfxs + (o) show + (n) + [6.14173 ] pdfxs + (a) show + (lC) + [7.45081 7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (e) show + (nce) + [6.14173 4.46185 9.68726 ] pdfxs + (o) show + (nCom) + [10.7999 7.79997 5.58542 8.91258 ] pdfxs + (p) show + (il) + [3.34914 2.79267 ] pdfxs + (e) show + (rC) + [9.26171 7.81088 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (s) show + (tru) + [3.62179 4.60356 5.85816 ] pdfxs + (c) show + (tion) + [3.62179 3.33823 5.58542 6.13082 ] pdfxs + -3.05176e-05 -149.468 m + (\() show + (CC) + [7.79997 7.81088 ] pdfxs + (\)) show + 24.533 -149.468 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (A) show + (pr) + [6.0654 7.909 ] pdfxs + (2002) show + (.) show + -27.879 -180.357 m + ([) + [3.0327 ] pdfxs + (147) show + (]Cr) + [8.4872 7.8763 4.2654 ] pdfxs + (a) show + (igB.) + [3.0327 8.77083 7.72349 6.34903 ] pdfxs + (Z) show + (illes.Benchm) + [3.0327 3.0327 3.02179 4.85451 4.29811 7.34175 7.72349 4.85451 6.05449 4.54905 6.0654 + 9.08711 ] pdfxs + (a) show + (rkhe) + [4.27631 9.06537 6.0654 4.8436 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (t) show + (hc) + [9.37082 4.85451 ] pdfxs + (o) show + (nsideredh) + [6.05449 4.30902 3.02179 6.0654 4.8436 4.27631 4.85451 9.37082 6.05449 ] pdfxs + (a) show + (rmful.) + [4.27631 9.08711 3.33815 6.05449 3.0327 3.0327 ] pdfxs + 263.611 -180.357 m + /N634 10.909 Tf + (ACMSIGARCHC) + [7.83262 7.79997 13.3963 6.13082 4.19998 8.44359 8.10534 7.67998 7.81088 11.7162 7.79997 + ] pdfxs + (o) show + (m) + [8.92348 ] pdfxs + (p) show + (ut) + [5.85816 3.62179 ] pdfxs + (e) show + (rAr) + [8.20353 7.83262 4.04721 ] pdfxs + (ch) show + (ite) + [3.33823 3.6327 4.45094 ] pdfxs + (c) show + (-) show + -3.05176e-05 -202.279 m + (tureN) + [3.62179 5.85816 4.0363 8.92363 8.11625 ] pdfxs + (e) show + (w) + [7.24359 ] pdfxs + (s) show + 47.278 -202.279 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (29\(3\)) show + (:) + [3.0327 ] pdfxs + (4{5) show + (,) + [6.6654 ] pdfxs + (2001) show + (.) show + 197.939 -657.201 m + (212) show + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + 1 0 0 1 72 629.34 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N622 24.787 Tf + (Ack) + [21.0691 11.6003 14.7233 ] pdfxs + (n) show + (owle) + [13.162 20.1519 7.73363 12.7405 ] pdfxs + (d) show + (gments) + [13.9304 23.2503 12.7157 14.7235 10.832 11.0054 ] pdfxs + 0 -61.773 m + /N614 10.909 Tf + (This) + [7.8763 6.0654 3.0327 7.53809 ] pdfxs + (t) show + (hesisw) + [6.0654 4.8436 4.30902 3.02179 7.54899 7.57085 ] pdfxs + (o) show + (uldn) + [6.0654 3.0327 9.30537 6.05449 ] pdfxs + (o) show + (tbep) + [7.48365 6.37085 8.08357 6.37085 ] pdfxs + (o) show + (ssiblewi) + [4.29811 4.30902 3.02179 6.0654 3.0327 8.08357 7.88721 3.02179 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (o) show + (ut) + [6.05449 7.48365 ] pdfxs + (t) show + (hesupp) + [6.0654 8.09448 4.29811 6.0654 6.05449 6.37085 ] pdfxs + (o) show + (rt) + [4.2654 7.48365 ] pdfxs + (o) show + (fm) + [6.57812 9.08711 ] pdfxs + (a) show + (nype) + [5.75995 8.99992 6.37085 4.8436 ] pdfxs + (o) show + (plewhohavehelpedmeinways) + [6.0654 3.02179 8.09448 7.8763 6.0654 8.69447 6.0654 5.14905 5.4545 8.08357 6.0654 + 4.8436 3.0327 6.37085 4.8436 9.30537 9.08711 8.09448 3.0327 9.29446 7.58175 5.14905 + 5.75995 4.29811 ] pdfxs + 0 -83.696 m + (b) + [6.35994 ] pdfxs + (ot) show + (hl) + [9.6981 3.0327 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (g) show + (e) + [8.47629 ] pdfxs + (a) show + (ndsm) + [6.0654 9.6981 4.29811 9.09802 ] pdfxs + (a) show + (ll.) + [3.02179 3.0327 3.0327 ] pdfxs + 16.936 -105.618 m + (I) show + (np) + [10.2872 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (icul) + [3.02179 4.85451 6.05449 3.0327 ] pdfxs + (a) show + (r,Iw) + [4.27631 7.3963 8.15985 7.57085 ] pdfxs + (o) show + (uldlike) + [6.0654 3.0327 10.2763 3.0327 3.0327 5.4545 9.06538 ] pdfxs + (t) show + (o) + [9.67628 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (nkmy) + [6.0654 9.97082 8.79257 9.98173 ] pdfxs + (a) show + (dvis) + [6.05449 5.75995 3.0327 4.29811 ] pdfxs + (o) show + (r,) + [4.27631 7.3963 ] pdfxs + (V) show + (ikr) + [3.0327 5.74904 4.27631 ] pdfxs + (a) show + (m) + [13.3089 ] pdfxs + (A) show + (dve,f) + [6.0654 5.4545 4.8436 7.3963 3.33815 ] pdfxs + (o) show + (rhissupp) + [8.48718 6.0654 3.0327 8.5199 4.30902 6.05449 6.0654 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (t) show + (,p) + [7.3963 6.05449 ] pdfxs + (at) show + (ience,) + [3.0327 4.8436 6.0654 4.8436 4.85451 7.3963 ] pdfxs + (a) show + (nd) + [6.05449 6.0654 ] pdfxs + 0 -127.541 m + (especi) + [4.8436 4.30902 6.35994 4.85451 4.8436 3.0327 ] pdfxs + (a) show + (llyhis) + [3.0327 3.02179 10.1454 6.0654 3.02179 8.69444 ] pdfxs + (t) show + (rust) + [4.2654 6.0654 4.29811 8.6291 ] pdfxs + (a) show + (ndrespec) + [6.0654 10.4399 4.27631 4.8436 4.30902 6.35994 4.85451 4.8436 ] pdfxs + (t) show + (.) + [10.1235 ] pdfxs + (H) show + (e) + [9.22901 ] pdfxs + (ta) show + (u) + [6.0654 ] pdfxs + (g) show + (htmehow) + [5.74904 8.6291 9.08711 9.23992 6.05449 5.15996 12.2617 ] pdfxs + (t) show + (oc) + [9.82901 4.85451 ] pdfxs + (o) show + (mmunic) + [9.08711 8.79257 6.05449 6.0654 3.0327 4.8436 ] pdfxs + (at) show + (eide) + [9.22901 3.0327 6.0654 4.8436 ] pdfxs + (a) show + (sm) + [8.68353 9.09802 ] pdfxs + (o) show + (ree\013ec) + [4.2654 9.23992 4.8436 6.37077 4.8436 4.8436 ] pdfxs + (t) show + (ively,) + [3.0327 5.4545 4.85451 3.02179 4.8545 7.60357 ] pdfxs + (g) show + (ave) + [5.14905 5.4545 4.8436 ] pdfxs + 0 -149.463 m + (me) + [9.08711 10.1017 ] pdfxs + (t) show + (hefreed) + [6.05449 10.0908 3.33815 4.27631 4.8436 4.85451 6.05449 ] pdfxs + (o) show + (m) + [14.3343 ] pdfxs + (t) show + (oinves) + [10.7017 3.0327 5.75995 5.4545 4.8436 4.30902 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (gat) show + (ethe) + [10.1017 4.23277 6.0654 10.0908 ] pdfxs + (\() show + (br) + [6.0654 4.27631 ] pdfxs + (oa) show + (d) + [11.3017 ] pdfxs + (a) show + (nds) + [6.0654 11.3017 4.29811 ] pdfxs + (o) show + (me) + [9.09802 4.8436 ] pdfxs + (t) show + (imess) + [3.0327 9.08711 4.85451 9.54534 4.29811 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (e\)) + [4.8436 9.49091 ] pdfxs + (a) show + (re) + [4.27631 4.8436 ] pdfxs + (a) show + (s) + [9.54534 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (tin) + [9.49091 3.02179 5.75995 ] pdfxs + (t) show + (erestme,) + [4.8436 4.27631 4.85451 4.29811 9.49091 9.08711 4.85451 8.67265 ] pdfxs + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + 0 -171.386 m + (c) + [4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (ribu) + [4.27631 3.0327 6.05449 6.0654 ] pdfxs + (t) show + (edm) + [4.8436 9.32719 9.09802 ] pdfxs + (a) show + (nyide) + [5.75995 9.02174 3.0327 6.05449 4.85451 ] pdfxs + (a) show + (s) + [7.57081 ] pdfxs + (t) show + (o) + [8.7272 ] pdfxs + (t) show + (hisw) + [6.05449 3.0327 7.57081 7.58175 ] pdfxs + (o) show + (rk.Few) + [4.27631 5.74904 7.75629 6.21813 4.8436 11.149 ] pdfxs + (ot) show + (her) + [6.0654 4.8436 7.54901 ] pdfxs + (a) show + (dvis) + [6.05449 5.75995 3.0327 4.29811 ] pdfxs + (o) show + (rsw) + [4.27631 7.57081 7.58175 ] pdfxs + (o) show + (uld) + [6.05449 3.0327 9.32719 ] pdfxs + (a) show + (llowam) + [3.0327 3.0327 5.14905 11.149 8.7272 9.08711 ] pdfxs + (ot) show + (iv) + [3.0327 5.14904 ] pdfxs + (at) show + (eds) + [4.85451 9.32719 4.29811 ] pdfxs + (t) show + (udent) + [6.0654 6.05449 4.85451 5.75995 7.50547 ] pdfxs + (t) show + (o) + [8.7272 ] pdfxs + (g) show + (o) + [8.7272 ] pdfxs + (o) show + (\013) show + 0 -193.308 m + (a) show + (ndbuild) + [6.0654 9.68719 6.0654 6.0654 3.02179 3.0327 9.6981 ] pdfxs + (a) show + (nen) + [9.6981 4.8436 5.75995 ] pdfxs + (t) show + (irec) + [3.0327 4.27631 8.47629 4.85451 ] pdfxs + (o) show + (mpiler) + [9.08711 6.0654 3.02179 3.0327 4.85451 7.909 ] pdfxs + (t) show + (osupp) + [9.08719 4.29811 6.0654 6.05449 6.37085 ] pdfxs + (o) show + (rt) + [4.2654 7.88729 ] pdfxs + (t) show + (heirrese) + [6.05449 4.85451 3.02179 7.909 4.27631 4.85451 4.29811 4.8436 ] pdfxs + (a) show + (rch.) + [4.27631 4.54905 6.05449 3.0327 ] pdfxs + 16.936 -215.231 m + (MywifeT) + [10.0036 10.189 7.8763 3.0327 3.32724 9.28356 6.97085 ] pdfxs + (a) show + (nyais) + [5.74904 5.4545 9.88355 3.0327 8.73808 ] pdfxs + (a) show + (nunsh) + [10.4835 6.0654 6.0654 4.29811 6.0654 ] pdfxs + (a) show + (k) + [5.14904 ] pdfxs + (a) show + (bles) + [6.05449 3.0327 9.28356 4.29811 ] pdfxs + (o) show + (urce) + [6.0654 4.2654 4.85451 9.27265 ] pdfxs + (o) show + (fsupp) + [7.7672 4.29811 6.0654 6.05449 6.37085 ] pdfxs + (o) show + (rt,unders) + [4.27631 4.23277 7.65811 6.0654 6.0654 6.05449 4.85451 4.2654 4.30902 ] pdfxs + (ta) show + (ndin) + [6.05449 6.0654 3.02179 6.0654 ] pdfxs + (g) show + (,) + [7.65811 ] pdfxs + (a) show + (ndlove.Shehelpedme) + [6.0654 10.4835 3.0327 5.14905 5.4545 4.85451 10.2545 6.0654 6.05449 9.28356 6.05449 + 4.85451 3.0327 6.35994 4.8436 10.4945 9.08711 4.8436 ] pdfxs + 0 -237.153 m + (m) + [9.08711 ] pdfxs + (a) show + (keit) + [5.4545 8.32357 3.0327 7.71274 ] pdfxs + (t) show + (hr) + [6.0654 4.2654 ] pdfxs + (o) show + (u) + [6.0654 ] pdfxs + (g) show + (h) + [9.53446 ] pdfxs + (t) show + (heocc) + [6.05449 8.32357 5.75995 4.8436 4.85451 ] pdfxs + (a) show + (si) + [4.29811 3.0327 ] pdfxs + (o) show + (n) + [6.05449 ] pdfxs + (a) show + (lly) + [3.0327 3.0327 9.22901 ] pdfxs + (g) show + (rueling) + [4.27631 6.05449 4.85451 3.0327 3.02179 6.0654 8.92356 ] pdfxs + (a) show + (llnigh) + [3.0327 6.50176 6.0654 3.02179 5.46541 5.74904 ] pdfxs + (t) show + (ers) + [4.85451 4.2654 7.77808 ] pdfxs + (a) show + (nd) + [6.0654 9.53446 ] pdfxs + (o) show + (therch) + [4.23277 6.0654 4.8436 7.74537 4.54905 6.0654 ] pdfxs + (a) show + (llen) + [3.02179 3.0327 4.85451 6.05449 ] pdfxs + (g) show + (ingp) + [3.0327 6.0654 8.92356 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (s) + [7.77808 ] pdfxs + (o) show + (f) + [6.80721 ] pdfxs + (t) show + (hesel) + [6.05449 4.85451 4.29811 8.32357 3.0327 ] pdfxs + (a) show + (st\fve) + [4.29811 7.71274 6.0654 5.4545 4.8436 ] pdfxs + 0 -259.076 m + (ye) + [5.4545 4.8436 ] pdfxs + (a) show + (rs,sel\resslysupp) + [4.27631 4.30902 6.59994 4.30902 4.8436 3.0327 6.0654 4.8436 4.29811 4.30902 3.0327 + 9.31628 4.30902 6.05449 6.0654 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (t) show + (ingmeevenwhenunderpressuresfr) + [3.02179 6.0654 9.02174 9.08711 8.41084 4.8436 5.46541 4.8436 9.62173 7.8763 6.0654 + 4.8436 9.63264 6.05449 6.0654 6.05449 4.85451 7.83264 6.0654 4.2654 4.85451 4.29811 + 4.30902 6.05449 4.27631 4.8436 7.86536 3.33815 4.27631 ] pdfxs + (o) show + (mherownrese) + [12.6544 6.05449 4.85451 7.83264 5.14905 7.8763 9.63264 4.2654 4.85451 4.29811 4.85451 + ] pdfxs + (a) show + (rchw) + [4.2654 4.54905 9.62173 7.58175 ] pdfxs + (o) show + (rk) + [4.2654 9.32719 ] pdfxs + (a) show + (ndj) + [6.05449 9.63264 3.32724 ] pdfxs + (o) show + (b.) + [6.0654 7.85448 ] pdfxs + (I) show + (n) show + 0 -280.998 m + (a) show + (ddi) + [6.0654 6.05449 3.0327 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.68719 ] pdfxs + (t) show + (osupp) + [9.0981 4.29811 6.0654 6.05449 6.37085 ] pdfxs + (o) show + (rt) + [4.2654 7.88729 ] pdfxs + (o) show + (fmyrese) + [6.95994 8.79257 9.39264 4.27631 4.8436 4.30902 4.8436 ] pdfxs + (a) show + (rch,shec) + [4.27631 4.53815 6.0654 6.6654 4.30902 6.05449 8.4872 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (inues) + [3.0327 5.75995 6.05449 4.85451 7.93081 ] pdfxs + (t) show + (oenrichmylife) + [9.0981 4.8436 6.0654 4.2654 3.0327 4.54905 9.6981 8.78166 9.39264 3.0327 3.0327 + 3.32724 8.4872 ] pdfxs + (a) show + (sawh) + [7.94172 9.08719 7.88721 6.05449 ] pdfxs + (o) show + (le.) + [3.0327 4.8436 3.0327 ] pdfxs + 16.936 -302.921 m + (Ihavedeeplyenjoyedmyin) + [7.38531 6.05449 5.14905 5.4545 8.29084 6.0654 4.8436 4.85451 6.05449 3.0327 9.19628 + 4.85451 6.05449 3.33815 5.14905 5.4545 4.85451 9.50173 8.78166 9.20719 3.02179 5.75995 + ] pdfxs + (t) show + (er) + [4.8436 4.27631 ] pdfxs + (a) show + (c) + [4.85451 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (ns) + [6.0654 7.74536 ] pdfxs + (a) show + (ndfriendshipswi) + [6.05449 9.50173 3.33815 4.27631 3.02179 4.85451 6.05449 6.0654 4.29811 6.0654 3.0327 + 6.05449 7.74536 7.88721 3.02179 ] pdfxs + (t) show + (h) + [9.50173 ] pdfxs + (t) show + (hemembers) + [6.0654 8.29084 9.08711 4.8436 8.79257 6.35994 4.85451 4.2654 7.74536 ] pdfxs + (o) show + (f) + [6.77448 ] pdfxs + (t) show + (he) + [6.0654 8.29084 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mrese) + [13.44 4.27631 4.8436 4.29811 4.85451 ] pdfxs + (a) show + (rch) + [4.27631 4.53815 6.0654 ] pdfxs + 0 -324.844 m + (g) show + (r) + [4.27631 ] pdfxs + (o) show + (up) + [6.05449 10.9744 ] pdfxs + (a) show + (swell) + [9.21807 7.57085 4.85451 3.02179 7.94175 ] pdfxs + (a) show + (s) + [9.21807 ] pdfxs + (t) show + (he) + [6.05449 9.76355 ] pdfxs + (o) show + (pen-s) + [6.35994 4.85451 6.05449 3.64352 4.29811 ] pdfxs + (o) show + (urcec) + [6.0654 4.2654 4.85451 9.76355 4.8436 ] pdfxs + (o) show + (mmunitywehavebuilt) + [9.08711 8.79257 6.05449 6.0654 3.0327 3.93823 10.669 7.57085 9.76355 6.0654 5.14905 + 5.4545 9.75265 6.0654 6.0654 3.02179 3.0327 9.15273 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (o) show + (und) + [6.05449 6.0654 10.9744 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (M.B) + [9.99272 7.94175 7.7344 ] pdfxs + (ot) show + (hhaveprovided) + [10.9635 6.0654 5.14905 5.4545 9.76355 6.05449 4.27631 5.14905 5.75995 3.0327 6.05449 + 4.85451 6.0654 ] pdfxs + 0 -346.766 m + (imp) + [3.0327 9.08711 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (ta) show + (ntinsi) + [5.75995 8.3891 3.0327 6.05449 4.30902 3.02179 ] pdfxs + (g) show + (h) + [5.75995 ] pdfxs + (t) show + (s,h) + [4.30902 7.29812 6.0654 ] pdfxs + (a) show + (rdpr) + [4.27631 10.1999 6.0654 4.2654 ] pdfxs + (o) show + (blems,) + [6.0654 3.0327 4.8436 9.09802 4.29811 7.30903 ] pdfxs + (a) show + (ndadesire) + [6.05449 10.2108 9.59992 6.0654 4.8436 4.30902 3.02179 4.27631 8.99993 ] pdfxs + (t) show + (om) + [9.59992 9.08711 ] pdfxs + (a) show + (ke) + [5.4545 8.99993 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (M) + [14.149 ] pdfxs + (a) show + (ss) + [8.44353 4.30902 ] pdfxs + (ta) show + (ble,r) + [6.05449 3.0327 4.8436 7.30903 4.27631 ] pdfxs + (o) show + (bus) + [6.05449 6.0654 4.29811 ] pdfxs + (t) show + (,) + [7.30903 ] pdfxs + (a) show + (ndex) + [6.05449 10.2108 4.85451 5.74904 ] pdfxs + (t) show + (ensible) + [4.85451 6.05449 4.30902 3.0327 6.05449 3.0327 4.8436 ] pdfxs + 0 -368.689 m + (a) show + (sp) + [8.13808 6.35994 ] pdfxs + (o) show + (ssible.Speci) + [4.30902 4.29811 3.0327 6.0654 3.02179 4.85451 8.46538 6.0654 6.35994 4.85451 4.8436 + 3.0327 ] pdfxs + (a) show + (l) + [6.86176 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (nks) + [6.05449 5.75995 8.13808 ] pdfxs + (g) show + (o) + [9.28356 ] pdfxs + (t) show + (oMishaBrukm) + [9.29447 9.99272 3.0327 4.30902 6.05449 9.29447 7.72349 4.27631 6.05449 5.75995 9.08711 + ] pdfxs + (a) show + (nf) + [9.89446 3.33815 ] pdfxs + (o) show + (rre) + [8.10537 4.27631 4.8436 ] pdfxs + (a) show + (ding) + [6.0654 3.0327 6.05449 9.29447 ] pdfxs + (\(a) show + (ndrere) + [6.05449 9.89446 4.27631 4.8436 4.27631 4.8436 ] pdfxs + (a) show + (din) + [6.0654 3.0327 6.05449 ] pdfxs + (g) show + (\)m) + [8.08365 9.08711 ] pdfxs + (a) show + (ny) + [5.75995 9.58901 ] pdfxs + (o) show + (fmyp) + [7.16721 8.79257 9.58901 6.05449 ] pdfxs + (a) show + (pers) + [6.37085 4.8436 4.27631 4.29811 ] pdfxs + 0 -390.611 m + (wi) + [7.8763 3.0327 ] pdfxs + (t) show + (hhisp) + [9.6981 6.05449 3.0327 7.94172 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (icul) + [3.0327 4.8436 6.0654 3.0327 ] pdfxs + (a) show + (rlycri) + [4.2654 3.0327 9.39264 4.85451 4.2654 3.0327 ] pdfxs + (t) show + (ic) + [3.0327 4.8436 ] pdfxs + (a) show + (leyef) + [6.6654 4.85451 5.4545 8.4872 3.32724 ] pdfxs + (o) show + (rinc) + [7.909 3.0327 6.05449 4.85451 ] pdfxs + (o) show + (rrec) + [4.27631 4.2654 4.85451 4.8436 ] pdfxs + (t) show + (-hyphen) + [3.63261 5.75995 5.75995 6.0654 6.05449 4.85451 6.05449 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (a) show + (ndmispellin) + [6.05449 9.6981 9.08711 3.0327 4.30902 6.35994 4.8436 3.0327 3.0327 3.0327 6.05449 + ] pdfxs + (g) show + (s.) + [4.30902 3.0327 ] pdfxs + 16.936 -412.534 m + (Iw) + [7.1344 7.57085 ] pdfxs + (o) show + (uldlike) + [6.0654 3.02179 9.25083 3.0327 3.0327 5.4545 8.03993 ] pdfxs + (t) show + (o) + [8.63993 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (nk) + [6.05449 8.95628 ] pdfxs + (t) show + (he) + [6.05449 8.03993 ] pdfxs + (UIU) show + (CCl) + [11.0726 7.8763 3.0327 ] pdfxs + (a) show + (ssic) + [4.29811 4.30902 3.0327 4.8436 ] pdfxs + (a) show + (lFencingClub) + [6.21813 6.21813 4.8436 6.0654 4.8436 3.0327 6.0654 8.63993 7.8763 3.0327 6.0654 + 9.25083 ] pdfxs + (a) show + (sawh) + [7.49445 8.63993 7.88721 6.05449 ] pdfxs + (o) show + (le,) + [3.0327 4.8436 6.31631 ] pdfxs + (a) show + (nd) + [6.05449 9.25083 ] pdfxs + (Jo) show + (hnM) + [6.0654 9.25083 10.0036 ] pdfxs + (a) show + (inzer) + [3.02179 6.0654 4.8436 4.85451 7.46173 ] pdfxs + (a) show + (nd) + [6.0654 9.25083 ] pdfxs + (L) show + (ud) + [6.05449 6.0654 ] pdfxs + (a) show + 0 -434.456 m + (Y) + [7.2763 ] pdfxs + (a) show + (fremavainp) + [3.32724 4.27631 4.8436 9.09802 5.14905 5.14904 10.0908 3.0327 10.7017 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (icul) + [3.0327 4.8436 6.0654 3.0327 ] pdfxs + (a) show + (r,f) + [4.2654 7.91993 3.33815 ] pdfxs + (o) show + (r) + [8.91263 ] pdfxs + (a) show + (bs) + [6.05449 4.30902 ] pdfxs + (o) show + (rbingm) + [4.2654 6.0654 3.0327 6.05449 10.0908 9.09802 ] pdfxs + (a) show + (ny) + [5.74904 10.3963 ] pdfxs + (o) show + (f) + [7.97447 ] pdfxs + (t) show + (hefrus) + [6.0654 9.47992 3.33815 4.2654 6.0654 4.29811 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 8.94535 ] pdfxs + (a) show + (ndcr) + [6.05449 10.7017 4.85451 4.2654 ] pdfxs + (a) show + (ziness) + [4.85451 3.02179 6.0654 4.8436 4.30902 8.94535 ] pdfxs + (a) show + (ccumul) + [4.8436 4.8436 6.0654 8.79257 6.05449 3.0327 ] pdfxs + (at) show + (edover) + [4.8436 10.7017 5.14905 5.4545 4.85451 4.27631 ] pdfxs + 0 -456.379 m + (t) show + (hec) + [6.05449 9.39265 4.85451 ] pdfxs + (o) show + (urse) + [6.05449 4.27631 4.30902 9.38174 ] pdfxs + (o) show + (fthisw) + [7.8872 4.23277 6.0654 3.0327 8.84717 7.57085 ] pdfxs + (o) show + (rk.Theyprovided) + [4.27631 5.75995 10.5926 7.88721 6.05449 4.85451 10.2981 6.05449 4.27631 5.14905 5.75995 + 3.0327 6.05449 4.85451 10.6035 ] pdfxs + (a) show + (nimp) + [10.6035 3.0327 9.08711 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (ta) show + (nt) + [5.75995 8.78183 ] pdfxs + (o) show + (u) + [6.0654 ] pdfxs + (t) show + (let) + [3.02179 4.85451 8.78183 ] pdfxs + (a) show + (nd) + [6.0654 10.6035 ] pdfxs + (ta) show + (u) + [6.05449 ] pdfxs + (g) show + (htmephysic) + [5.75995 8.78183 9.09802 9.39265 6.05449 5.75995 5.75995 4.29811 3.0327 4.85451 ] pdfxs + (a) show + (law) + [7.57084 5.14905 7.58175 ] pdfxs + (a) show + (reness,) + [4.2654 4.85451 6.05449 4.85451 4.29811 4.30902 3.0327 ] pdfxs + 0 -478.301 m + (\rexibility,) + [6.0654 4.8436 5.75995 3.0327 6.05449 3.0327 3.0327 3.02179 3.94914 4.84359 7.29812 + ] pdfxs + (a) show + (nddex) + [6.0654 10.1999 6.0654 4.8436 5.75995 ] pdfxs + (t) show + (erity) + [4.8436 4.27631 3.0327 3.93823 9.89446 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (tIdidn) + [8.37819 8.08348 6.0654 3.02179 10.2108 6.05449 ] pdfxs + (o) show + (t) + [8.3891 ] pdfxs + (t) show + (hinkw) + [6.05449 3.0327 6.0654 9.89446 7.58175 ] pdfxs + (a) show + (sp) + [8.44353 6.35994 ] pdfxs + (o) show + (ssible.They) + [4.29811 4.30902 3.0327 6.05449 3.0327 4.85451 9.39264 7.8763 6.0654 4.8436 9.90537 + ] pdfxs + (a) show + (re) + [4.2654 8.98902 ] pdfxs + (a) show + (lsoresp) + [3.0327 4.30902 9.58901 4.27631 4.85451 4.29811 6.35994 ] pdfxs + (o) show + (nsiblef) + [6.0654 4.29811 3.0327 6.0654 3.02179 8.99993 3.32724 ] pdfxs + (o) show + (rkeepin) + [8.42173 5.4545 4.8436 4.8436 6.0654 3.0327 6.05449 ] pdfxs + (g) show + 0 -500.224 m + (r) + [4.27631 ] pdfxs + (a) show + (nd) + [6.05449 6.0654 ] pdfxs + (o) show + (mw) + [12.1525 7.57085 ] pdfxs + (o) show + (rkpl) + [4.27631 5.75995 6.05449 3.0327 ] pdfxs + (a) show + (cevi) + [4.8436 7.90903 5.75995 3.0327 ] pdfxs + (o) show + (lence) + [3.0327 4.8436 6.0654 4.8436 7.90903 ] pdfxs + (t) show + (o) + [8.51993 ] pdfxs + (a) show + (n) + [9.11992 ] pdfxs + (to) show + (ler) + [3.0327 4.8436 4.27631 ] pdfxs + (a) show + (blelevel,f) + [6.05449 3.0327 7.90903 3.0327 4.8436 5.4545 4.85451 3.0327 6.20722 3.32724 ] pdfxs + (o) show + (rwhichmyc) + [7.33083 7.88721 6.05449 3.0327 4.54905 9.11992 8.78166 8.82538 4.8436 ] pdfxs + (o) show + (lle) + [3.0327 3.0327 4.8436 ] pdfxs + (ag) show + (ues) + [6.0654 4.8436 7.36354 ] pdfxs + (a) show + (reund) + [4.27631 7.90903 6.0654 6.05449 6.0654 ] pdfxs + (o) show + (ub) + [6.05449 6.0654 ] pdfxs + (t) show + (edly) + [4.8436 6.0654 3.02179 8.82538 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (nkful!) + [6.0654 5.75995 3.32724 6.0654 3.0327 3.0327 ] pdfxs + 16.936 -522.146 m + (Fin) + [7.12357 3.0327 6.05449 ] pdfxs + (a) show + (lly,Iw) + [3.0327 3.0327 4.84359 6.95994 7.81076 7.57085 ] pdfxs + (o) show + (uldlike) + [6.0654 3.02179 9.93809 3.02179 3.0327 5.4545 8.71629 ] pdfxs + (t) show + (o) + [9.32719 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (nkS) + [6.0654 9.62173 6.0654 ] pdfxs + (t) show + (evenVe) + [4.8436 5.4545 4.85451 9.92718 7.26539 4.85451 ] pdfxs + (g) show + (d) + [6.05449 ] pdfxs + (a) show + (hl,whoenc) + [6.0654 3.0327 6.94903 7.88721 6.05449 9.32719 4.8436 6.0654 4.8436 ] pdfxs + (o) show + (ur) + [6.0654 4.27631 ] pdfxs + (ag) show + (edmetopursue) + [4.8436 9.92718 9.09802 8.71629 4.23277 9.32719 6.0654 6.05449 4.27631 4.29811 6.0654 + 8.71629 ] pdfxs + (g) show + (r) + [4.27631 ] pdfxs + (a) show + (du) + [6.05449 6.0654 ] pdfxs + (at) show + (es) + [8.71629 4.29811 ] pdfxs + (t) show + (udies) + [6.0654 6.05449 3.0327 4.8436 4.29811 ] pdfxs + 0 -544.069 m + (a) show + (ndwh) + [6.0654 9.68719 7.88721 6.05449 ] pdfxs + (o) show + (seinfec) + [4.30902 8.47629 3.0327 6.0654 3.32724 4.85451 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (uslove) + [6.0654 7.93081 3.0327 5.14905 5.4545 8.4872 ] pdfxs + (o) show + (fc) + [6.97085 4.8436 ] pdfxs + (o) show + (mpilerss) + [9.09802 6.05449 3.0327 3.0327 4.8436 4.27631 7.94172 4.29811 ] pdfxs + (ta) show + (r) + [4.27631 ] pdfxs + (t) show + (edme) + [4.8436 9.6981 9.08711 8.4872 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (t) show + (hisp) + [6.0654 3.02179 7.94172 6.0654 ] pdfxs + (at) show + (hin) + [9.68719 3.0327 9.6981 ] pdfxs + (t) show + (he\frstpl) + [6.0654 8.47629 6.0654 4.27631 4.29811 7.87638 6.0654 3.0327 ] pdfxs + (a) show + (ce.) + [4.8436 4.85451 3.0327 ] pdfxs + 229.606 -577.5 m + (vi) + [5.75995 3.0327 ] pdfxs + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (5) 6 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 595.275591 788.031496 translate + 180 rotate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 72 629.34 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N622 24.787 Tf + (T) + [17.0782 ] pdfxs + (ab) show + (leofContents) + [7.73363 22.0109 13.9552 17.8217 20.1271 13.9552 14.6987 10.8568 12.7157 14.7235 10.832 + 11.0054 ] pdfxs + 0 -64.309 m + /N614 10.909 Tf + (Ch) + [7.8763 6.0654 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (er1) + [4.85451 7.909 16.3635 ] pdfxs + (I) show + (n) + [5.75995 ] pdfxs + (t) show + (roducti) + [4.2654 5.75995 6.0654 6.05449 4.85451 4.23277 3.0327 ] pdfxs + (o) show + (n.......................................) + [9.03265 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 18.6107 ] pdfxs + (1) show + 16.364 -77.858 m + (1) show + (.1F) + [3.0327 16.6035 6.20722 ] pdfxs + (o) show + (und) + [6.0654 6.0654 6.05449 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 7.94172 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (t) show + (heM) + [6.0654 8.47629 10.0036 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.30902 4.8436 ] pdfxs + (o) show + (pic) + [6.0654 3.02179 8.4872 ] pdfxs + (A) show + (ppr) + [6.0654 6.05449 4.27631 ] pdfxs + (oa) show + (ch........................) + [4.54905 11.8363 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 18.6107 ] pdfxs + (4) show + 41.455 -91.407 m + (1) show + (.) + [3.0327 ] pdfxs + (1) show + (.1) + [3.0327 17.9344 ] pdfxs + (Dat) show + (aS) + [9.08719 6.0654 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.0654 4.2654 8.4872 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis..............................) + [3.0327 5.74904 4.30902 3.0327 10.0253 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 18.6107 ] pdfxs + (4) show + 41.455 -104.956 m + (1) show + (.) + [3.0327 ] pdfxs + (1) show + (.2) + [3.0327 17.9344 ] pdfxs + (A) show + (ut) + [6.0654 4.23277 ] pdfxs + (o) show + (m) + [9.09802 ] pdfxs + (at) show + (icPo) + [3.02179 8.4872 7.12357 5.75995 ] pdfxs + (o) show + (l) + [6.6654 ] pdfxs + (A) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n............................) + [16.2108 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 18.6107 ] pdfxs + (5) show + 16.364 -118.506 m + (1) show + (.2) + [3.0327 16.6035 ] pdfxs + (A) show + (pplic) + [6.0654 6.05449 3.0327 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 7.94172 ] pdfxs + (o) show + (fM) + [6.97085 10.0036 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.29811 4.85451 ] pdfxs + (o) show + (picTechniques.........................) + [6.05449 3.0327 8.4872 6.97085 4.8436 4.54905 6.05449 6.0654 3.0327 5.75995 6.05449 + 4.85451 12.6326 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 18.6107 ] pdfxs + (7) show + 41.455 -132.055 m + (1) show + (.) + [3.0327 ] pdfxs + (2) show + (.1SimplePo) + [3.0327 17.9344 6.0654 3.02179 9.09802 6.05449 3.0327 8.4872 7.12357 5.74904 ] pdfxs + (o) show + (l) + [6.6654 ] pdfxs + (A) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nOp) + [9.6981 8.4872 6.05449 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns......................) + [6.0654 12.8726 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 18.6107 ] pdfxs + (7) show + 41.455 -145.604 m + (1) show + (.) + [3.0327 ] pdfxs + (2) show + (.2Tr) + [3.0327 17.9344 6.97085 4.27631 ] pdfxs + (a) show + (nsp) + [6.05449 4.30902 6.05449 ] pdfxs + (a) show + (rentP) + [4.27631 4.8436 5.75995 7.87638 7.12357 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (erC) + [4.8436 7.909 7.8763 ] pdfxs + (o) show + (mpressi) + [9.09802 6.05449 4.27631 4.8436 4.30902 4.29811 3.0327 ] pdfxs + (o) show + (n.........................) + [9.54537 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 18.6107 ] pdfxs + (8) show + 41.455 -159.153 m + (1) show + (.) + [3.0327 ] pdfxs + (2) show + (.3O) + [3.0327 17.9344 8.4872 ] pdfxs + (t) show + (herM) + [6.05449 4.85451 7.909 9.99272 ] pdfxs + (a) show + (cr) + [4.85451 4.2654 ] pdfxs + (o) show + (sc) + [4.30902 4.8436 ] pdfxs + (o) show + (picTechniques..........................) + [6.0654 3.0327 8.4872 6.95994 4.85451 4.54905 6.05449 6.0654 3.02179 5.75995 6.0654 + 4.8436 13.5162 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 18.6107 ] pdfxs + (8) show + 16.364 -172.702 m + (1) show + (.3) + [3.0327 16.6035 ] pdfxs + (R) show + (ese) + [4.85451 4.29811 4.8436 ] pdfxs + (a) show + (rchC) + [4.27631 4.54905 9.6981 7.8763 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (ribu) + [4.2654 3.0327 6.0654 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 7.94172 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (t) show + (hisThesis..........................) + [6.0654 3.02179 7.94172 7.8763 6.0654 4.8436 4.30902 3.0327 15.0544 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 18.6107 ] pdfxs + (9) show + 16.364 -186.252 m + (1) show + (.4ThesisOr) + [3.0327 16.6035 7.8763 6.0654 4.8436 4.30902 3.02179 7.94172 8.4872 4.27631 ] pdfxs + (ga) show + (niz) + [6.05449 3.0327 4.85451 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n....................................) + [15.6653 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (10) show + 0 -210.71 m + (Ch) + [7.8763 6.0654 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (er2The) + [4.85451 7.909 16.3635 7.8763 6.0654 8.47629 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (MC) + [13.6363 7.8763 ] pdfxs + (o) show + (mpiler) + [9.09802 6.05449 3.0327 3.0327 4.8436 7.909 ] pdfxs + (I) show + (nfr) + [6.0654 3.33815 4.2654 ] pdfxs + (a) show + (s) + [4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ure..........................) + [6.0654 4.2654 7.66903 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (11) show + 16.364 -224.259 m + (2) show + (.1) + [3.0327 16.6035 ] pdfxs + (I) show + (n) + [5.75995 ] pdfxs + (t) show + (roduc) + [4.2654 5.75995 6.0654 6.05449 4.85451 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (n.........................................) + [9.42537 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (11) show + 16.364 -237.808 m + (2) show + (.2Pr) + [3.0327 16.6035 7.42902 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (m) + [12.7307 ] pdfxs + (R) show + (epresent) + [4.8436 6.0654 4.2654 4.85451 4.29811 4.85451 5.75995 4.23277 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n..................................) + [12.0326 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 13.1562 ] pdfxs + (15) show + 41.455 -251.357 m + (2) show + (.) + [3.0327 ] pdfxs + (2) show + (.1Overview) + [3.0327 17.9344 8.4872 5.4545 4.8436 4.27631 5.75995 3.02179 4.85451 11.509 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (t) show + (he) + [6.0654 8.4872 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (M) + [13.6363 ] pdfxs + (I) show + (ns) + [6.05449 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nSet......................) + [9.6981 6.05449 4.85451 8.66183 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (15) show + 41.455 -264.907 m + (2) show + (.) + [3.0327 ] pdfxs + (2) show + (.2) + [3.0327 17.9344 ] pdfxs + (La) show + (n) + [6.0654 ] pdfxs + (g) show + (u) + [6.05449 ] pdfxs + (ag) show + (e-) + [4.85451 3.63261 ] pdfxs + (I) show + (ndependentType) + [6.0654 6.05449 4.85451 6.35994 4.8436 6.0654 6.0654 4.8436 5.75995 7.87638 7.57085 + 5.75995 6.37085 8.47629 ] pdfxs + (I) show + (nf) + [6.0654 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n,C) + [6.0654 6.6654 7.8763 ] pdfxs + (a) show + (s) + [4.30902 ] pdfxs + (t) show + (,) + [6.6654 ] pdfxs + (a) show + (ndGe) + [6.05449 9.6981 8.5636 4.8436 ] pdfxs + (t) show + (ElementP) + [7.42902 3.0327 4.8436 9.08711 4.85451 5.75995 4.23277 7.42902 ] pdfxs + (t) show + (r.....) + [12.0981 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (16) show + 41.455 -278.456 m + (2) show + (.) + [3.0327 ] pdfxs + (2) show + (.3ExplicitMem) + [3.0327 17.9344 7.42902 5.74904 6.0654 3.0327 3.02179 4.85451 3.0327 7.87638 10.0036 + 4.8436 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 9.39264 ] pdfxs + (A) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (a) show + (nd) + [6.05449 9.6981 ] pdfxs + (U) show + (ni\fedMem) + [6.0654 3.02179 6.0654 4.8436 9.6981 10.0036 4.8436 9.09802 ] pdfxs + (o) show + (ryModel............) + [4.2654 9.40355 9.99272 5.75995 6.0654 4.8436 8.57447 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (19) show + 41.455 -292.005 m + (2) show + (.) + [3.0327 ] pdfxs + (2) show + (.4Func) + [3.0327 17.9344 6.20722 6.0654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nC) + [9.6981 7.8763 ] pdfxs + (a) show + (lls) + [3.0327 3.02179 7.94172 ] pdfxs + (a) show + (ndExcep) + [6.0654 9.6981 7.41812 5.75995 4.8436 4.85451 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (Ha) show + (ndling.....................) + [6.0654 6.05449 3.0327 3.0327 6.05449 14.4871 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (19) show + 41.455 -305.554 m + (2) show + (.) + [3.0327 ] pdfxs + (2) show + (.5Pl) + [3.0327 17.9344 7.42902 3.02179 ] pdfxs + (a) show + (in-) + [3.0327 6.0654 3.63261 ] pdfxs + (t) show + (ex) + [4.8436 5.75995 ] pdfxs + (t) show + (,Bin) + [6.6654 7.7344 3.02179 6.0654 ] pdfxs + (a) show + (ry,) + [4.27631 4.84359 6.6654 ] pdfxs + (a) show + (nd) + [6.0654 9.6981 ] pdfxs + (I) show + (n-mem) + [6.05449 3.64352 9.08711 4.8436 9.09802 ] pdfxs + (o) show + (ryRepresen) + [4.2654 9.39264 8.03985 4.8436 6.0654 4.2654 4.85451 4.29811 4.85451 5.74904 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (ns...............) + [6.0654 7.86536 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (22) show + 16.364 -319.103 m + (2) show + (.3The) + [3.0327 16.6035 7.8763 6.0654 8.4872 ] pdfxs + (L) show + (L) + [5.59632 ] pdfxs + (V) show + (MC) + [13.6363 7.88721 ] pdfxs + (o) show + (mpiler) + [9.08711 6.0654 3.02179 3.0327 4.85451 7.909 ] pdfxs + (A) show + (rchi) + [4.2654 4.54905 6.0654 3.02179 ] pdfxs + (t) show + (ec) + [4.85451 4.8436 ] pdfxs + (t) show + (ure............................) + [6.0654 4.2654 14.8144 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (23) show + 41.455 -332.653 m + (2) show + (.) + [3.0327 ] pdfxs + (3) show + (.1) + [3.0327 17.9344 ] pdfxs + (H) show + (i) + [3.0327 ] pdfxs + (g) show + (h-) + [6.05449 3.64352 ] pdfxs + (L) show + (evel) + [4.8436 5.4545 4.85451 6.6654 ] pdfxs + (D) show + (esi) + [4.8436 4.30902 3.02179 ] pdfxs + (g) show + (n) + [9.6981 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (t) show + (he) + [6.0654 8.47629 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (MC) + [13.6363 7.8763 ] pdfxs + (o) show + (mpilerFr) + [9.09802 6.05449 3.0327 3.0327 4.8436 7.909 6.21813 4.27631 ] pdfxs + (a) show + (mew) + [9.08711 4.8436 7.58175 ] pdfxs + (o) show + (rk.............) + [4.2654 15.1526 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (23) show + 41.455 -346.202 m + (2) show + (.) + [3.0327 ] pdfxs + (3) show + (.2C) + [3.0327 17.9344 7.8763 ] pdfxs + (o) show + (mpile-Time:Ex) + [9.09802 6.05449 3.0327 3.0327 4.8436 3.63261 7.88721 3.02179 9.09802 4.8436 7.8872 + 7.41812 5.75995 ] pdfxs + (t) show + (ern) + [4.8436 4.27631 6.05449 ] pdfxs + (a) show + (lFr) + [6.6763 6.20722 4.27631 ] pdfxs + (o) show + (n) + [5.74904 ] pdfxs + (t) show + (-end) + [3.64352 4.8436 6.0654 9.6981 ] pdfxs + (a) show + (ndStaticOp) + [6.05449 9.6981 6.0654 4.23277 5.46541 4.23277 3.0327 8.4872 8.4872 6.05449 ] pdfxs + (t) show + (imizer............) + [3.0327 9.08711 3.0327 4.85451 4.8436 7.21083 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (25) show + 41.455 -359.751 m + (2) show + (.) + [3.0327 ] pdfxs + (3) show + (.3) + [3.0327 17.9344 ] pdfxs + (L) show + (inker&) + [3.0327 6.05449 5.4545 4.85451 7.909 12.1199 ] pdfxs + (I) show + (n) + [5.75995 ] pdfxs + (t) show + (erprocedur) + [4.8436 4.27631 6.05449 4.27631 5.75995 4.8436 4.85451 6.05449 6.0654 4.27631 ] pdfxs + (a) show + (lOp) + [6.6654 8.47629 6.0654 ] pdfxs + (t) show + (imizer.......................) + [3.0327 9.08711 3.0327 4.8436 4.85451 13.658 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (26) show + 41.455 -373.3 m + (2) show + (.) + [3.0327 ] pdfxs + (3) show + (.4O\017ine) + [3.0327 17.9344 8.4872 9.08711 3.0327 6.05449 8.4872 ] pdfxs + (o) show + (r) + [7.909 ] pdfxs + (JI) show + (T) + [11.5199 ] pdfxs + (Nat) show + (iveCodeGener) + [3.0327 5.4545 8.47629 7.88721 5.74904 6.0654 8.4872 8.55269 4.85451 6.05449 4.85451 + 4.27631 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n......................) + [10.0145 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 13.1562 ] pdfxs + (27) show + 41.455 -386.849 m + (2) show + (.) + [3.0327 ] pdfxs + (3) show + (.5) + [3.0327 17.9344 ] pdfxs + (R) show + (un) + [6.0654 5.74904 ] pdfxs + (t) show + (imeP) + [3.0327 9.08711 8.4872 7.12357 ] pdfxs + (at) show + (hPr) + [9.6981 7.41812 4.27631 ] pdfxs + (o) show + (\fling&) + [6.0654 3.02179 3.0327 6.0654 9.08719 12.1199 ] pdfxs + (R) show + (e) + [4.85451 ] pdfxs + (o) show + (p) + [6.05449 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.85451 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n....................) + [11.7817 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (27) show + 41.455 -400.399 m + (2) show + (.) + [3.0327 ] pdfxs + (3) show + (.6O\017ine) + [3.0327 17.9344 8.4872 9.08711 3.0327 6.05449 8.4872 ] pdfxs + (R) show + (e) + [4.85451 ] pdfxs + (o) show + (p) + [6.05449 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (nwi) + [9.6981 7.8763 3.0327 ] pdfxs + (t) show + (hEnd-userPr) + [9.6981 7.42902 6.05449 6.0654 3.63261 6.0654 4.29811 4.8436 7.909 7.42902 4.27631 + ] pdfxs + (o) show + (\fle) + [6.05449 3.0327 8.4872 ] pdfxs + (I) show + (nf) + [6.0654 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n...........) + [14.8362 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 13.1562 ] pdfxs + (28) show + 16.364 -413.948 m + (2) show + (.4) + [3.0327 16.6035 ] pdfxs + (A) show + (pplic) + [6.0654 6.05449 3.0327 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 7.94172 ] pdfxs + (a) show + (ndExperiences...............................) + [6.0654 9.6981 7.41812 5.75995 6.35994 4.85451 4.2654 3.0327 4.85451 6.05449 4.85451 + 4.8436 11.029 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 + ] pdfxs + (29) show + 41.455 -427.497 m + (2) show + (.) + [3.0327 ] pdfxs + (4) show + (.1) + [3.0327 17.9344 ] pdfxs + (R) show + (epresen) + [4.85451 6.05449 4.27631 4.8436 4.30902 4.8436 5.75995 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (nIssues...............................) + [9.68719 3.94897 4.29811 4.29811 6.0654 4.8436 14.4871 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (29) show + 41.455 -441.046 m + (2) show + (.) + [3.0327 ] pdfxs + (4) show + (.2Ex) + [3.0327 17.9344 7.42902 5.74904 ] pdfxs + (a) show + (mple) + [9.09802 6.05449 3.0327 8.4872 ] pdfxs + (A) show + (pplic) + [6.05449 6.0654 3.0327 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 7.94172 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (M..........................) + [13.7236 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (34) show + 16.364 -454.595 m + (2) show + (.5) + [3.0327 16.6035 ] pdfxs + (R) show + (el) + [4.85451 3.02179 ] pdfxs + (at) show + (edW) + [4.85451 9.6981 10.2981 ] pdfxs + (o) show + (rk........................................) + [4.27631 11.389 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (36) show + 16.364 -468.145 m + (2) show + (.6C) + [3.0327 16.6035 7.8763 ] pdfxs + (o) show + (nclusi) + [6.0654 4.8436 3.0327 6.0654 4.29811 3.0327 ] pdfxs + (o) show + (n.........................................) + [16.9635 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (39) show + 0 -492.603 m + (Ch) + [7.8763 6.0654 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (er3) + [4.85451 7.909 16.3635 ] pdfxs + (Dat) show + (aS) + [9.08719 6.05449 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.05449 4.27631 8.4872 ] pdfxs + (A) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis................................) + [3.0327 5.75995 4.29811 3.0327 10.6035 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (40) show + 16.364 -506.152 m + (3) show + (.1TheD) + [3.0327 16.6035 7.8763 6.0654 8.4872 8.32365 ] pdfxs + (at) show + (aS) + [9.0981 6.05449 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ureGr) + [6.05449 4.27631 8.4872 8.55269 4.27631 ] pdfxs + (a) show + (ph................................) + [6.0654 17.0071 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 13.1562 ] pdfxs + (42) show + 41.455 -519.701 m + (3) show + (.) + [3.0327 ] pdfxs + (1) show + (.1Gr) + [3.0327 17.9344 8.5636 4.2654 ] pdfxs + (a) show + (ph) + [6.0654 9.6981 ] pdfxs + (N) show + (odes) + [5.75995 6.05449 4.85451 7.93081 ] pdfxs + (a) show + (ndFields..............................) + [6.0654 9.6981 7.12357 3.02179 4.85451 3.0327 6.05449 9.38171 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (45) show + 16.364 -533.25 m + (3) show + (.2C) + [3.0327 16.6035 7.8763 ] pdfxs + (o) show + (ns) + [6.0654 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (A) show + (l) + [3.0327 ] pdfxs + (go) show + (ri) + [4.27631 3.0327 ] pdfxs + (t) show + (hm..................................) + [6.05449 17.2143 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 13.1562 ] pdfxs + (49) show + 41.455 -546.8 m + (3) show + (.) + [3.0327 ] pdfxs + (2) show + (.1Primi) + [3.0327 17.9344 7.42902 4.2654 3.0327 9.08711 3.0327 ] pdfxs + (t) show + (iveGr) + [3.0327 5.4545 8.4872 8.55269 4.27631 ] pdfxs + (a) show + (phOper) + [6.0654 9.68719 8.4872 6.37085 4.8436 4.27631 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (ns............................) + [6.0654 8.1599 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (49) show + 228.091 -577.5 m + (vii) + [5.75995 3.0327 3.0327 ] pdfxs + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + 1 0 0 1 72 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + ([) + [3.0327 ] pdfxs + (136) show + (]D) + [8.4872 8.32365 ] pdfxs + (a) show + (n) + [10.4399 ] pdfxs + (N) show + (.Tru) + [7.40721 6.97085 4.2654 6.0654 ] pdfxs + (o) show + (n) + [6.05449 ] pdfxs + (g) show + (,Fr) + [7.59266 6.20722 4.27631 ] pdfxs + (a) show + (n\030c) + [6.0654 2.60091e-06 4.8436 ] pdfxs + (o) show + (isBodin,) + [3.0327 8.67262 7.7344 5.74904 6.0654 3.0327 6.05449 7.59266 ] pdfxs + (a) show + (nd) + [6.0654 10.429 ] pdfxs + (A) show + (ndr\023eSeznec.) + [6.0654 6.05449 3.97086 0.305452 9.21811 6.0654 4.8436 4.85451 6.05449 4.85451 4.8436 + 10.069 ] pdfxs + (I) show + (mprovingc) + [9.08711 6.0654 4.2654 5.15996 5.74904 3.0327 6.0654 9.82901 4.8436 ] pdfxs + (a) show + (chebehavi) + [4.54905 6.05449 9.22901 6.35994 4.8436 6.0654 5.14905 5.75995 3.0327 ] pdfxs + (o) show + (r) + [8.63991 ] pdfxs + (o) show + (fdyn) + [7.71266 6.0654 5.74904 6.0654 ] pdfxs + (a) show + (mi-) + [9.08711 3.0327 3.63261 ] pdfxs + 27.879 -21.922 m + (c) + [4.8436 ] pdfxs + (a) show + (lly) + [3.0327 3.0327 10.1999 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (edd) + [4.85451 10.5054 6.05449 ] pdfxs + (at) show + (as) + [9.90537 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ures.) + [6.05449 4.27631 4.85451 4.29811 10.2872 ] pdfxs + (I) show + (n) show + 199.466 -21.922 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.10897 ] pdfxs + (o) show + (ft) + [7.99637 3.62179 ] pdfxs + (h) show + (eInt) + [9.66544 4.21089 6.13082 3.62179 ] pdfxs + (e) show + (rn) + [4.60356 6.13082 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (a) show + (lC) + [7.4399 7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (e) show + (nceonP) + [6.13082 4.46185 9.66544 5.58542 10.7781 7.39623 ] pdfxs + (a) show + (r) + [4.04721 ] pdfxs + (a) show + (ll) + [3.34903 2.78176 ] pdfxs + (e) show + (l) show + 27.879 -43.845 m + (Ar) + [7.83262 4.0363 ] pdfxs + (ch) show + (ite) + [3.34914 3.62179 4.46185 ] pdfxs + (c) show + (tur) + [3.62179 5.85816 4.04721 ] pdfxs + (e) show + (s) + [8.35625 ] pdfxs + (a) show + (ndC) + [6.14173 9.47994 7.79997 ] pdfxs + (o) show + (m) + [8.92348 ] pdfxs + (p) show + (il) + [3.34914 2.78176 ] pdfxs + (a) show + (ti) + [3.6327 3.33823 ] pdfxs + (o) show + (nTe) + [10.0362 6.97089 4.46185 ] pdfxs + (ch) show + (ni) + [6.14173 3.33823 ] pdfxs + (q) show + (u) + [5.85816 ] pdfxs + (e) show + (s\(PACT) + [8.36716 4.45083 6.56715 7.83262 7.79997 7.81088 ] pdfxs + (\)) show + 271.738 -43.845 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (322{329) show + (,Oc) + [6.6654 8.4872 4.8436 ] pdfxs + (to) show + (ber) + [6.37085 4.8436 7.909 ] pdfxs + (1998) show + (.) show + 0 -74.734 m + ([) + [3.0327 ] pdfxs + (137) show + (]David) + [8.4872 8.32365 5.15996 5.74904 3.0327 10.6799 ] pdfxs + (U) show + (n) + [6.0654 ] pdfxs + (ga) show + (r) + [8.89081 ] pdfxs + (a) show + (nd) + [6.0654 10.6799 ] pdfxs + (Ra) show + (nd) + [6.05449 6.0654 ] pdfxs + (a) show + (llB.Smi) + [3.0327 7.6472 7.72349 7.65811 6.05449 9.09802 3.02179 ] pdfxs + (t) show + (h.Self:Thepower) + [6.0654 10.7999 6.05449 4.85451 3.02179 3.33815 9.83991 7.88721 6.05449 9.46901 6.37085 + 5.14905 7.57085 4.85451 8.89081 ] pdfxs + (o) show + (fsimplicity.) + [7.95266 4.29811 3.0327 9.08711 6.0654 3.0327 3.0327 4.8436 3.0327 3.93823 4.84359 + 10.7999 ] pdfxs + (I) show + (n) show + 380.87 -74.734 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.2617 ] pdfxs + (o) show + (ft) + [8.16 3.62179 ] pdfxs + (he) show + 27.879 -96.656 m + (ACMSIGPLANc) + [7.83262 7.79997 13.6145 6.13082 4.21089 8.43268 7.40714 6.83993 8.10534 11.9344 4.46185 + ] pdfxs + (o) show + (nf) + [6.14173 3.33823 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 8.84727 ] pdfxs + (o) show + (nO) + [9.95988 8.36718 ] pdfxs + (b) show + (je) + [3.33823 4.46185 ] pdfxs + (c) show + (t-Ori) + [3.6327 3.89453 8.36718 4.60356 3.33823 ] pdfxs + (e) show + (ntedPro) + [6.14173 3.62179 4.46185 9.40357 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.0363 ] pdfxs + (a) show + (mmin) + [8.92348 8.92348 3.33823 6.14173 ] pdfxs + (g) show + (,Sy) + [7.1891 6.13082 5.29078 ] pdfxs + (s) show + (t) + [3.62179 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (s) show + (,L) + [7.1891 6.28357 ] pdfxs + (a) show + (n) + [6.14173 ] pdfxs + (g) show + (u) + [5.84725 ] pdfxs + (ages) show + (,) + [7.1891 ] pdfxs + (a) show + (ndA) + [6.13082 9.41448 8.10534 ] pdfxs + (p) show + (-) show + 27.879 -118.579 m + (p) show + (lic) + [2.79267 3.33823 4.46185 ] pdfxs + (a) show + (ti) + [3.6327 3.33823 ] pdfxs + (o) show + (ns) + [6.14173 8.35625 ] pdfxs + (\() show + (OOPSLA) + [8.36718 8.35627 7.40714 6.13082 6.83993 8.11625 ] pdfxs + (\)) show + 130.799 -118.579 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (1987) show + (.) show + 0 -149.468 m + ([) + [3.0327 ] pdfxs + (138) show + (]Frdric) + [8.4872 6.20722 4.27631 6.05449 4.27631 3.0327 7.61448 ] pdfxs + (V) show + (ivien) + [3.0327 5.74904 3.0327 4.85451 8.82538 ] pdfxs + (a) show + (ndM) + [6.05449 8.83628 9.99272 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (in) + [3.0327 8.82538 ] pdfxs + (R) show + (in) + [3.0327 6.05449 ] pdfxs + (a) show + (rd.) + [4.27631 6.0654 6.44722 ] pdfxs + (I) show + (ncremen) + [6.0654 4.8436 4.27631 4.8436 9.08711 4.85451 5.75995 ] pdfxs + (ta) show + (lizedp) + [3.02179 3.0327 4.85451 4.8436 8.82538 6.37085 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (er) + [4.85451 7.03628 ] pdfxs + (a) show + (ndesc) + [6.05449 8.83628 4.8436 4.30902 4.8436 ] pdfxs + (a) show + (pe) + [6.35994 7.61448 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis.) + [3.0327 5.75995 4.29811 3.0327 4.29811 6.45812 ] pdfxs + (I) show + (n) show + 413.625 -149.468 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (gs) show + 27.879 -171.39 m + (o) show + (ftheACMSIGPLANC) + [7.96364 3.62179 5.58542 9.63272 7.83262 7.79997 14.3999 6.14173 4.19998 8.44359 7.39623 + 6.83993 8.11625 12.7198 7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 9.63272 ] pdfxs + (o) show + (nPro) + [10.7562 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.0363 ] pdfxs + (a) show + (mmingLan) + [8.92348 8.92348 3.34914 6.13082 9.63272 6.28357 5.58542 6.13082 ] pdfxs + (g) show + (ua) + [5.84725 5.58542 ] pdfxs + (g) show + (e) + [9.63272 ] pdfxs + (Des) show + (i) + [3.34914 ] pdfxs + (g) show + (n) + [10.7453 ] pdfxs + (a) show + (ndImpl) + [6.14173 10.189 4.21089 8.91258 5.58542 2.78176 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + (a) show + (ti) + [3.6327 3.33823 ] pdfxs + (o) show + (n) show + 27.879 -193.313 m + (\() show + (PL) + [7.39623 6.83993 ] pdfxs + (D) show + (I) + [4.21089 ] pdfxs + (\)) show + 63.485 -193.313 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (35{46) show + (,) + [6.6654 ] pdfxs + (2001) show + (.) show + 3.05176e-05 -224.202 m + ([) + [3.0327 ] pdfxs + (139) show + (]DavidW) + [8.4872 8.32365 5.15996 5.74904 3.0327 10.2763 10.2981 ] pdfxs + (a) show + (ll.Gl) + [3.0327 3.0327 9.5781 8.5636 3.02179 ] pdfxs + (o) show + (b) + [6.0654 ] pdfxs + (a) show + (lre) + [7.24357 4.2654 4.85451 ] pdfxs + (g) show + (is) + [3.0327 4.29811 ] pdfxs + (t) show + (er) + [4.8436 8.48718 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [10.2654 ] pdfxs + (a) show + (tlink-) + [8.45456 3.0327 3.0327 6.05449 5.75995 3.63261 ] pdfxs + (t) show + (ime.) + [3.0327 9.08711 4.85451 9.5781 ] pdfxs + (I) show + (n) show + 298.103 -224.202 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.89079 ] pdfxs + (o) show + (ft) + [7.77819 3.62179 ] pdfxs + (h) show + (eACMSIGPLAN) + [9.44726 7.83262 7.81088 14.2035 6.14173 4.19998 8.44359 7.39623 6.83993 8.11625 8.10534 + ] pdfxs + 27.879 -246.124 m + (C) + [7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 9.20727 ] pdfxs + (o) show + (nPro) + [10.3308 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.0363 ] pdfxs + (a) show + (mmingL) + [8.92348 8.92348 3.34914 6.13082 9.20727 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ag) show + (e) + [9.20727 ] pdfxs + (Des) show + (i) + [3.34914 ] pdfxs + (g) show + (nandIm) + [10.3199 5.58542 6.13082 9.76357 4.21089 8.91258 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + (a) show + (ti) + [3.6327 3.33823 ] pdfxs + (o) show + (n) + [10.3308 ] pdfxs + (\() show + (PL) + [7.39623 6.83993 ] pdfxs + (D) show + (I) + [4.21089 ] pdfxs + (\)) show + 388.952 -246.124 m + /N614 10.909 Tf + (,P) + [6.98176 7.12357 ] pdfxs + (a) show + (lo) + [3.02179 9.40355 ] pdfxs + (A) show + (l) + [3.0327 ] pdfxs + (to) show + (,C) + [7.05812 7.8763 ] pdfxs + (A) show + (,) show + 27.879 -268.047 m + (1986) show + (.) show + 3.05176e-05 -298.936 m + ([) + [3.0327 ] pdfxs + (140) show + (]J) + [8.4872 5.5964 ] pdfxs + (o) show + (hnWh) + [6.0654 8.81447 11.2035 6.0654 ] pdfxs + (a) show + (ley) + [3.0327 4.8436 8.50902 ] pdfxs + (a) show + (ndM) + [6.05449 8.81447 10.0036 ] pdfxs + (o) show + (nicaS.) + [6.05449 3.0327 4.8436 8.20357 6.0654 5.78177 ] pdfxs + (La) show + (m.Cl) + [9.08711 6.4254 7.8763 3.0327 ] pdfxs + (o) show + (nin) + [6.05449 3.0327 6.0654 ] pdfxs + (g) show + (-b) + [3.63261 6.05449 ] pdfxs + (a) show + (sedc) + [4.30902 4.8436 8.81447 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (ex) + [4.8436 5.75995 ] pdfxs + (t) show + (-sensi) + [3.64352 4.29811 4.8436 6.0654 4.29811 3.0327 ] pdfxs + (t) show + (ivep) + [3.0327 5.4545 7.59266 6.37085 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (er) + [4.85451 7.01447 ] pdfxs + (a) show + (li) + [3.0327 3.0327 ] pdfxs + (a) show + (s) + [7.04718 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisusin) + [3.0327 5.74904 4.30902 3.0327 7.04718 6.0654 4.29811 3.0327 6.05449 ] pdfxs + (g) show + 27.879 -320.858 m + (bin) + [6.0654 3.02179 6.0654 ] pdfxs + (a) show + (rydecisi) + [4.27631 8.7381 6.05449 4.85451 4.8436 3.0327 4.29811 3.0327 ] pdfxs + (o) show + (ndi) + [9.04356 6.0654 3.0327 ] pdfxs + (ag) show + (r) + [4.2654 ] pdfxs + (a) show + (ms.In) + [9.09802 4.29811 6.7963 3.94897 6.0654 ] pdfxs + 165.022 -320.858 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [7.75626 ] pdfxs + (o) show + (ft) + [6.65456 3.62179 ] pdfxs + (h) show + (eACMSIGPLANC) + [8.32364 7.82171 7.81088 13.0799 6.13082 4.21089 8.44359 7.39623 6.83993 8.10534 11.4108 + 7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (e) show + (nce) + [6.14173 4.46185 8.31273 ] pdfxs + (o) show + (nPro) + [9.43624 7.40714 4.0363 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmin) + [8.92348 8.91258 3.34914 6.13082 ] pdfxs + (g) show + 27.879 -342.781 m + (L) + [6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ag) show + (e) + [8.92363 ] pdfxs + (Des) show + (i) + [3.34914 ] pdfxs + (g) show + (n) + [10.0362 ] pdfxs + (a) show + (ndIm) + [6.13082 9.47994 4.19998 8.92348 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [10.0362 ] pdfxs + (\() show + (PL) + [7.39623 6.85084 ] pdfxs + (D) show + (I) + [4.19998 ] pdfxs + (\)) show + 247.532 -342.781 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (131{144) show + (,) + [6.6654 ] pdfxs + (2004) show + (.) show + 3.05176e-05 -373.67 m + ([) + [3.0327 ] pdfxs + (141) show + (]P) + [8.4872 7.11266 ] pdfxs + (a) show + (ul) + [6.0654 7.02539 ] pdfxs + (R) show + (.Wils) + [7.0363 11.2035 3.0327 3.0327 4.30902 ] pdfxs + (o) show + (n.) + [6.05449 8.94538 ] pdfxs + (U) show + (niprocess) + [6.0654 3.0327 6.05449 4.27631 5.75995 4.8436 4.8436 4.30902 4.29811 ] pdfxs + (o) show + (r) + [8.27991 ] pdfxs + (ga) show + (rb) + [4.2654 6.0654 ] pdfxs + (ag) show + (ec) + [8.8472 4.8436 ] pdfxs + (o) show + (llec) + [3.0327 3.0327 4.8436 4.85451 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (ntechniques.) + [10.069 4.23277 4.85451 4.54905 6.05449 6.0654 3.02179 5.75995 6.0654 4.8436 4.30902 + 8.94538 ] pdfxs + (I) show + (n) show + 338.583 -373.67 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.69443 ] pdfxs + (o) show + (ft) + [7.58183 3.62179 ] pdfxs + (h) show + (eInt) + [9.26181 4.19998 6.13082 3.6327 ] pdfxs + (e) show + (rna-) + [4.59266 6.13082 5.58542 3.90544 ] pdfxs + 27.8791 -395.592 m + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (a) show + (l) + [6.109 ] pdfxs + (Wo) show + (r) + [4.60356 ] pdfxs + (ksho) show + (p) + [8.90176 ] pdfxs + (o) show + (nM) + [9.45806 9.7854 ] pdfxs + (e) show + (m) + [8.91258 ] pdfxs + (o) show + (ryM) + [4.60356 8.61802 9.7854 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (age) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + 227.193 -395.592 m + /N614 10.909 Tf + (,number) + [6.16358 5.75995 6.05449 8.79257 6.35994 4.85451 7.27628 ] pdfxs + (637) show + (,S) + [6.16358 6.05449 ] pdfxs + (a) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (-M) + [3.63261 10.0036 ] pdfxs + (a) show + (lo) + [3.02179 8.46538 ] pdfxs + (\() show + (Fr) + [6.20722 4.27631 ] pdfxs + (a) show + (nce) + [6.0654 4.8436 4.8436 ] pdfxs + (\)) show + (,) + [6.16358 ] pdfxs + (1992) show + (.Sprin) + [6.04358 6.05449 6.0654 4.2654 3.0327 6.0654 ] pdfxs + (g) show + (er-) + [4.8436 4.27631 3.63261 ] pdfxs + 27.8791 -417.515 m + (Verl) + [7.2763 4.8436 4.27631 3.0327 ] pdfxs + (ag) show + (.) show + 6.10352e-05 -448.404 m + ([) + [3.0327 ] pdfxs + (142) show + (]P) + [8.4872 7.11266 ] pdfxs + (a) show + (ul) + [6.0654 6.09813 ] pdfxs + (R) show + (.Wils) + [6.10904 11.2035 3.0327 3.0327 4.29811 ] pdfxs + (o) show + (n,Mich) + [6.0654 6.21813 9.99272 3.0327 4.54905 6.05449 ] pdfxs + (a) show + (elS.) + [4.85451 6.09813 6.0654 6.09813 ] pdfxs + (La) show + (m,) + [9.08711 6.21813 ] pdfxs + (a) show + (ndTh) + [6.0654 9.13083 7.8763 6.05449 ] pdfxs + (o) show + (m) + [9.09802 ] pdfxs + (a) show + (sG.M) + [7.37445 8.55269 6.10904 9.99272 ] pdfxs + (o) show + (her.E\013ec) + [6.0654 4.8436 4.27631 6.94903 7.41812 6.37077 4.8436 4.85451 ] pdfxs + (t) show + (ive) + [3.02179 5.4545 7.91993 ] pdfxs + (") show + (s) + [4.30902 ] pdfxs + (tat) show + (ic-) + [3.02179 4.85451 3.63261 ] pdfxs + (g) show + (r) + [4.27631 ] pdfxs + (a) show + (ph"re) + [6.05449 6.0654 8.51993 4.27631 4.85451 ] pdfxs + (o) show + (r) + [4.2654 ] pdfxs + (ga) show + (niz) + [6.0654 3.0327 4.8436 ] pdfxs + (a) show + (-) show + 27.8791 -470.326 m + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.68719 ] pdfxs + (t) show + (oimproveloc) + [9.0981 3.02179 9.09802 6.05449 4.27631 5.14905 5.4545 8.4872 3.0327 5.74904 4.85451 + ] pdfxs + (a) show + (lityin) + [3.0327 3.02179 3.94914 9.39264 3.02179 9.6981 ] pdfxs + (ga) show + (rb) + [4.27631 6.05449 ] pdfxs + (ag) show + (e-c) + [4.85451 3.63261 4.85451 ] pdfxs + (o) show + (llec) + [3.02179 3.0327 4.85451 4.8436 ] pdfxs + (t) show + (edsys) + [4.8436 9.6981 4.30902 5.74904 4.30902 ] pdfxs + (t) show + (ems.) + [4.8436 9.09802 4.29811 7.86538 ] pdfxs + (I) show + (n) show + 300.221 -470.326 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.35625 ] pdfxs + (o) show + (ft) + [7.25456 3.62179 ] pdfxs + (h) show + (eACMSIGPLAN) + [8.92363 7.82171 7.81088 13.6799 6.13082 4.21089 8.44359 7.39623 6.83993 8.11625 8.10534 + ] pdfxs + 27.8791 -492.249 m + (C) + [7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 9.29454 ] pdfxs + (o) show + (nPro) + [10.4181 7.39623 4.0363 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmingL) + [8.92348 8.92348 3.33823 6.14173 9.29454 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ag) show + (e) + [9.29454 ] pdfxs + (Des) show + (i) + [3.33823 ] pdfxs + (g) show + (n) + [10.4181 ] pdfxs + (a) show + (ndImpl) + [6.13082 9.85084 4.21089 8.91258 5.58542 2.78176 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + (a) show + (ti) + [3.6327 3.33823 ] pdfxs + (o) show + (n) + [10.4181 ] pdfxs + (\() show + (PL) + [7.39623 6.83993 ] pdfxs + (D) show + (I) + [4.21089 ] pdfxs + (\)) show + 389.552 -492.249 m + /N614 10.909 Tf + (,p) + [7.06903 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 8.34535 ] pdfxs + (177{191) show + (,) show + 27.8791 -514.172 m + (1991) show + (.) show + 6.10352e-05 -545.06 m + ([) + [3.0327 ] pdfxs + (143) show + (]) + [8.4872 ] pdfxs + (Ro) show + (bertP.Wils) + [6.35994 4.8436 4.27631 9.29455 6.52358 8.08356 11.2144 3.02179 3.0327 4.30902 ] pdfxs + (o) show + (n) + [11.1163 ] pdfxs + (a) show + (ndM) + [6.05449 11.1163 10.0036 ] pdfxs + (o) show + (nicaS.) + [6.05449 3.0327 4.85451 10.5054 6.0654 8.08356 ] pdfxs + (La) show + (m.E\013ectivec) + [9.08711 12.0981 7.41812 6.37077 4.8436 4.85451 4.23277 3.0327 5.4545 9.90537 4.85451 + ] pdfxs + (o) show + (n) + [5.74904 ] pdfxs + (t) show + (extsensi) + [4.85451 5.74904 9.30546 4.29811 4.85451 6.05449 4.30902 3.02179 ] pdfxs + (t) show + (ivep) + [3.0327 5.4545 9.90537 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er) + [4.8436 9.32717 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisf) + [3.0327 5.74904 4.30902 3.0327 9.34898 3.33815 ] pdfxs + (o) show + (rC) + [9.32717 7.8763 ] pdfxs + 27.8791 -566.983 m + (pr) + [6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms.) + [9.08711 4.30902 12.7744 ] pdfxs + (I) show + (n) show + 100.304 -566.983 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.8726 ] pdfxs + (o) show + (ft) + [8.77091 3.62179 ] pdfxs + (h) show + (eACMSIGPLANC) + [10.44 7.83262 7.79997 15.1963 6.14173 4.19998 8.44359 7.39623 6.83993 8.11625 13.5271 + 7.79997 ] pdfxs + (o) show + (nf) + [6.14173 3.33823 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 10.44 ] pdfxs + (o) show + (nPro) + [11.5526 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.0363 ] pdfxs + (a) show + (mmingL) + [8.92348 8.92348 3.34914 6.13082 10.44 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (age) show + 27.8791 -588.906 m + (Des) show + (i) + [3.34914 ] pdfxs + (g) show + (n) + [10.0362 ] pdfxs + (a) show + (ndIm) + [6.13082 9.47994 4.19998 8.92348 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [10.0362 ] pdfxs + (\() show + (PL) + [7.39623 6.85084 ] pdfxs + (D) show + (I) + [4.19998 ] pdfxs + (\)) show + 199.15 -588.906 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (1{12) show + (,) + [6.6654 ] pdfxs + (J) show + (une) + [6.0654 6.05449 8.4872 ] pdfxs + (1995) show + (.) show + 6.10352e-05 -619.794 m + ([) + [3.0327 ] pdfxs + (144) show + (]Er) + [8.4872 7.41812 4.27631 ] pdfxs + (a) show + (nY) + [10.4835 7.2763 ] pdfxs + (a) show + (hav) + [6.05449 5.14905 10.189 ] pdfxs + (a) show + (ndG.) + [6.05449 10.4945 8.55269 7.46175 ] pdfxs + (Ra) show + (m) + [9.08711 ] pdfxs + (a) show + (lin) + [3.0327 3.0327 6.05449 ] pdfxs + (ga) show + (m.Verifyings) + [9.09802 10.2108 7.2763 4.8436 4.27631 3.0327 3.33815 5.74904 3.0327 6.0654 9.87264 + 4.30902 ] pdfxs + (a) show + (fetypr) + [3.32724 4.85451 3.93823 10.1781 6.0654 4.27631 ] pdfxs + (o) show + (per) + [6.35994 4.8436 4.27631 ] pdfxs + (t) show + (iesusingsep) + [3.0327 4.8436 8.72717 6.0654 4.29811 3.0327 6.0654 9.87264 4.30902 4.8436 6.0654 + ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [10.4835 ] pdfxs + (a) show + (ndhe) + [6.0654 10.4835 6.0654 4.8436 ] pdfxs + (t) show + (er) + [4.8436 4.27631 ] pdfxs + (o) show + (-) show + 225.818 -657.201 m + (211) show + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (6) 7 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 0.000000 0.000000 translate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + 1 0 0 1 72 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + ([) + [3.0327 ] pdfxs + (126) show + (]) + [8.4872 ] pdfxs + (A) show + (mi) + [9.08711 3.0327 ] pdfxs + (ta) show + (bhSriv) + [6.05449 10.0254 6.05449 4.27631 3.0327 5.14904 ] pdfxs + (a) show + (stava) + [4.30902 4.23277 5.15996 5.14904 9.41446 ] pdfxs + (a) show + (nd) + [6.0654 10.0145 ] pdfxs + (D) show + (avidW) + [5.15996 5.74904 3.0327 10.0254 10.2981 ] pdfxs + (a) show + (ll.Apr) + [3.0327 3.0327 8.83629 12.1417 6.0654 4.2654 ] pdfxs + (a) show + (c) + [4.85451 ] pdfxs + (t) show + (ic) + [3.02179 4.85451 ] pdfxs + (a) show + (lsys) + [6.99267 4.29811 5.75995 4.29811 ] pdfxs + (t) show + (emf) + [4.85451 13.0471 3.33815 ] pdfxs + (o) show + (rin) + [8.23627 3.02179 5.75995 ] pdfxs + (t) show + (ermodulecode) + [4.85451 4.2654 9.09802 5.74904 6.0654 6.05449 3.0327 8.81447 4.8436 5.75995 6.0654 + 8.80356 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) show + 27.879 -21.922 m + (a) show + (tlink-) + [7.87638 3.0327 3.0327 6.05449 5.75995 3.63261 ] pdfxs + (t) show + (ime.) + [3.0327 9.08711 4.85451 3.0327 ] pdfxs + 91.806 -21.922 m + /N634 10.909 Tf + (Jo) show + (urn) + [5.85816 4.59266 6.14173 ] pdfxs + (a) show + (l) + [6.68718 ] pdfxs + (o) show + (fPro) + [7.25456 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.0363 ] pdfxs + (a) show + (mmingL) + [8.92348 8.92348 3.33823 6.14173 8.91272 6.29448 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ages) show + 261.066 -21.922 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (1\(1\)) show + (:) + [3.0327 ] pdfxs + (1{18) show + (,) + [6.6654 ] pdfxs + (D) show + (ec.) + [4.8436 4.85451 6.6654 ] pdfxs + (1992) show + (.) show + 0 -52.811 m + ([) + [3.0327 ] pdfxs + (127) show + (]T.B.S) + [8.4872 7.8763 3.0327 7.72349 7.37448 6.05449 ] pdfxs + (t) show + (eel.) + [4.85451 4.8436 3.0327 9.95991 ] pdfxs + (U) show + (nc) + [6.0654 4.8436 ] pdfxs + (o) show + (l:Themy) + [3.0327 9.29446 7.8763 6.05449 9.19629 8.78166 5.75995 ] pdfxs + (t) show + (h) + [10.3963 ] pdfxs + (a) show + (nd) + [6.0654 10.3963 ] pdfxs + (t) show + (hef) + [6.0654 9.18538 3.33815 ] pdfxs + (a) show + (c) + [4.8436 ] pdfxs + (t) show + (.) show + 245.318 -52.811 m + /N634 10.909 Tf + (Annu) + [7.83262 6.13082 6.13082 5.85816 ] pdfxs + (a) show + (lR) + [7.34172 7.39634 ] pdfxs + (ev) show + (i) + [3.34914 ] pdfxs + (e) show + (winAut) + [11.7926 3.34914 10.6799 7.83262 5.85816 3.62179 ] pdfxs + (o) show + (m) + [8.92348 ] pdfxs + (a) show + (tedPro) + [3.62179 4.46185 10.1345 7.39623 4.0363 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mming) + [8.92348 8.92348 3.33823 6.14173 9.56726 ] pdfxs + (2) show + 464.97 -52.811 m + /N614 10.909 Tf + (,) show + 27.879 -74.734 m + (1961) show + (.) show + -3.05176e-05 -105.623 m + ([) + [3.0327 ] pdfxs + (128) show + (]Bj) + [8.4872 7.72349 3.32724 ] pdfxs + (a) show + (rneSteens) + [4.27631 6.0654 9.44719 6.0654 4.23277 4.85451 4.8436 6.0654 4.29811 ] pdfxs + (gaa) show + (rd.P) + [4.27631 6.0654 10.7345 7.12357 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (s-) + [4.29811 3.63261 ] pdfxs + (t) show + (o) + [10.0581 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisbytypeinference) + [3.02179 5.75995 4.30902 3.02179 8.91262 5.74904 10.3635 3.93823 5.75995 6.35994 9.4581 + 3.02179 6.0654 3.32724 4.85451 4.27631 4.8436 6.0654 4.8436 9.44719 ] pdfxs + (o) show + (fpr) + [7.94175 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (mswi) + [9.08711 8.90171 7.8763 3.0327 ] pdfxs + (t) show + (hs) + [10.6581 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ures) + [6.0654 4.27631 4.8436 8.90171 ] pdfxs + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + 27.879 -127.545 m + (uni) + [6.0654 6.05449 3.0327 ] pdfxs + (o) show + (ns.) + [6.05449 4.30902 12.9599 ] pdfxs + (I) show + (n) show + 87.151 -127.545 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.92715 ] pdfxs + (o) show + (ft) + [8.82545 3.62179 ] pdfxs + (h) show + (eInt) + [10.4945 4.21089 6.13082 3.62179 ] pdfxs + (e) show + (rn) + [4.60356 6.13082 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (a) show + (lC) + [8.26898 7.79997 ] pdfxs + (o) show + (nf) + [6.14173 3.33823 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 10.4945 ] pdfxs + (o) show + (nC) + [11.6071 7.81088 ] pdfxs + (o) show + (mpil) + [8.91258 5.58542 3.33823 2.79267 ] pdfxs + (e) show + (rC) + [10.069 7.81088 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (s) show + (tru) + [3.62179 4.60356 5.85816 ] pdfxs + (c) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [11.6071 ] pdfxs + (\() show + (CC) + [7.79997 7.81088 ] pdfxs + (\)) show + 464.97 -127.545 m + /N614 10.909 Tf + (,) show + 27.8789 -149.468 m + (p) + [6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (136{150) show + (,) + [6.6654 ] pdfxs + (Lo) show + (nd) + [6.0654 6.05449 ] pdfxs + (o) show + (n,) + [6.0654 6.6654 ] pdfxs + (U) show + (K,) + [8.4872 6.6654 ] pdfxs + (1996) show + (.) show + -9.15527e-05 -180.357 m + ([) + [3.0327 ] pdfxs + (129) show + (]Bj) + [8.4872 7.72349 3.32724 ] pdfxs + (a) show + (rneS) + [4.27631 6.0654 9.52356 6.05449 ] pdfxs + (t) show + (eens) + [4.85451 4.8436 6.0654 4.29811 ] pdfxs + (gaa) show + (rd.P) + [4.27631 6.05449 10.9635 7.12357 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (s-) + [4.30902 3.63261 ] pdfxs + (t) show + (o) + [10.1235 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisin) + [3.0327 5.75995 4.29811 3.0327 8.97807 3.0327 10.7344 ] pdfxs + (a) show + (lm) + [3.02179 9.09802 ] pdfxs + (o) show + (stline) + [4.29811 8.92364 3.02179 3.0327 6.0654 4.8436 ] pdfxs + (a) show + (r) + [8.94536 ] pdfxs + (t) show + (ime.) + [3.0327 9.08711 4.85451 10.9635 ] pdfxs + (I) show + (n) show + 350.493 -180.357 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.31625 ] pdfxs + (o) show + (ft) + [8.20364 3.62179 ] pdfxs + (h) show + (eACM) + [9.88362 7.82171 7.81088 9.7854 ] pdfxs + 27.8789 -202.279 m + (SIGACT-SIGPLANSymp) + [6.13082 4.21089 8.43268 7.83262 7.81088 7.79997 3.90544 6.13082 4.21089 8.43268 7.40714 + 6.83993 8.10534 11.978 6.13082 5.29078 8.92348 5.01816 ] pdfxs + (os) show + (ium) + [3.34914 5.85816 12.7744 ] pdfxs + (o) show + (nPrin) + [10.0035 7.39623 4.60356 3.33823 6.14173 ] pdfxs + (c) show + (i) + [3.33823 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (s) + [8.32353 ] pdfxs + (o) show + (fPro) + [7.21092 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.0363 ] pdfxs + (a) show + (mmingL) + [8.92348 8.92348 3.33823 6.14173 8.88 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ages) show + 380.631 -202.279 m + /N614 10.909 Tf + (,p) + [6.63267 6.05449 ] pdfxs + (ag) show + (es) + [4.85451 7.89808 ] pdfxs + (32{41) show + (,) + [6.62176 ] pdfxs + (Ja) show + (n) show + 27.8789 -224.202 m + (1996) show + (.) show + -0.00012207 -255.091 m + ([) + [3.0327 ] pdfxs + (130) show + (]PhilS) + [8.4872 7.41812 6.0654 3.02179 5.9454 6.05449 ] pdfxs + (t) show + (ocks,B) + [5.75995 4.54905 5.74904 4.30902 6.07631 7.7344 ] pdfxs + (a) show + (rb) + [4.2654 6.0654 ] pdfxs + (a) show + (raG.) + [4.27631 8.35629 8.5636 5.93449 ] pdfxs + (R) show + (yder,Willi) + [5.75995 6.05449 4.85451 4.2654 6.08722 11.2144 3.0327 3.02179 3.0327 3.0327 ] pdfxs + (a) show + (m) + [11.9998 ] pdfxs + (La) show + (ndi,) + [6.05449 6.0654 3.02179 6.08722 ] pdfxs + (a) show + (ndSe) + [6.0654 8.96719 6.05449 4.85451 ] pdfxs + (a) show + (nZh) + [8.95628 6.67622 6.05449 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (.C) + [6.6763 7.8763 ] pdfxs + (o) show + (mp) + [9.08711 6.0654 ] pdfxs + (a) show + (ring\row) + [4.2654 3.0327 6.0654 8.35629 6.0654 5.14905 10.789 ] pdfxs + (a) show + (ndc) + [6.05449 8.96719 4.85451 ] pdfxs + (o) show + (n) + [5.74904 ] pdfxs + (t) show + (ex) + [4.85451 5.74904 ] pdfxs + (t) show + 27.8789 -277.013 m + (sensi) + [4.29811 4.85451 6.05449 4.30902 3.0327 ] pdfxs + (t) show + (ivity) + [3.02179 5.75995 3.0327 3.93823 10.2108 ] pdfxs + (o) show + (n) + [10.5054 ] pdfxs + (t) show + (hemodi\fc) + [6.0654 9.29447 9.08711 5.75995 6.05449 3.0327 6.0654 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n-side-e\013ec) + [6.0654 3.63261 4.29811 3.0327 6.0654 4.8436 3.63261 4.85451 6.35986 4.85451 4.8436 + ] pdfxs + (t) show + (spr) + [8.74898 6.0654 4.27631 ] pdfxs + (o) show + (blem.) + [6.05449 3.0327 4.8436 9.09802 10.2872 ] pdfxs + (I) show + (n) show + 298.262 -277.013 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.10897 ] pdfxs + (o) show + (ft) + [7.99637 3.62179 ] pdfxs + (h) show + (eACMSIGSOFT) + [9.67635 7.82171 7.81088 14.4326 6.13082 4.21089 8.43268 6.13082 8.36718 7.12357 7.81088 + ] pdfxs + 27.8789 -298.936 m + (Int) + [4.21089 6.13082 3.62179 ] pdfxs + (e) show + (rn) + [4.60356 6.13082 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (a) show + (lSymp) + [6.69809 6.13082 5.29078 8.92348 5.01816 ] pdfxs + (os) show + (ium) + [3.34914 5.85816 12.818 ] pdfxs + (o) show + (nSoftw) + [10.0362 6.13082 5.58542 3.33823 3.62179 7.2545 ] pdfxs + (a) show + (reT) + [4.04721 8.91272 6.97089 ] pdfxs + (es) show + (ting) + [3.62179 3.34914 6.13082 8.92363 ] pdfxs + (a) show + (ndAn) + [6.13082 9.47994 7.83262 6.13082 ] pdfxs + (a) show + (ly) + [2.79267 5.29078 ] pdfxs + (s) show + (i) + [3.34914 ] pdfxs + (s) show + 311.174 -298.936 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (21{31) show + (,) + [6.6654 ] pdfxs + (1998) show + (.) show + -0.000152588 -329.825 m + ([) + [3.0327 ] pdfxs + (131) show + (]M) + [8.4872 9.99272 ] pdfxs + (a) show + (s) + [4.30902 ] pdfxs + (a) show + (michiT) + [9.08711 3.0327 4.54905 6.05449 7.26539 6.97085 ] pdfxs + (a) show + (k) + [5.14904 ] pdfxs + (ag) show + (i) + [7.26539 ] pdfxs + (a) show + (ndKei) + [6.0654 10.2981 8.47629 4.85451 7.26539 ] pdfxs + (H) show + (ir) + [3.0327 4.2654 ] pdfxs + (a) show + (ki.Field) + [5.75995 3.0327 9.65446 7.11266 3.0327 4.85451 3.02179 10.2981 ] pdfxs + (a) show + (rrayc) + [4.27631 4.27631 5.14905 9.99264 4.8436 ] pdfxs + (o) show + (mpressi) + [9.09802 6.05449 4.27631 4.8436 4.30902 4.29811 3.0327 ] pdfxs + (o) show + (nind) + [10.2981 3.0327 10.2872 6.0654 ] pdfxs + (at) show + (ac) + [9.68719 4.85451 ] pdfxs + (a) show + (chesf) + [4.53815 6.0654 4.8436 8.54171 3.33815 ] pdfxs + (o) show + (rdyn) + [8.509 6.05449 5.75995 6.05449 ] pdfxs + (a) show + (mic) + [9.09802 3.0327 4.8436 ] pdfxs + (a) show + (lly) + [3.0327 3.0327 5.75995 ] pdfxs + 27.8788 -351.747 m + (a) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (edrecursived) + [4.8436 10.309 4.2654 4.85451 4.8436 6.0654 4.2654 4.30902 3.0327 5.4545 9.0872 + 6.05449 ] pdfxs + (at) show + (as) + [9.6981 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ure.) + [6.0654 4.2654 4.85451 9.66537 ] pdfxs + (I) show + (n) show + 213.549 -351.747 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.91261 ] pdfxs + (o) show + (f) + [7.81092 ] pdfxs + (5) show + (thInt) + [3.62179 10.0363 4.21089 6.13082 3.62179 ] pdfxs + (e) show + (rn) + [4.60356 6.13082 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (nalSymp) + [6.13082 5.58542 7.24354 6.13082 5.30169 8.92348 5.01816 ] pdfxs + (os) show + (ium) + [3.33823 5.85816 13.3853 ] pdfxs + (o) show + (nHi) + [10.5926 8.10534 3.34914 ] pdfxs + (gh) show + 27.8788 -373.67 m + (P) + [7.39623 ] pdfxs + (e) show + (rf) + [4.60356 3.34914 ] pdfxs + (o) show + (rm) + [4.59266 8.92348 ] pdfxs + (a) show + (nceC) + [6.14173 4.45094 8.92363 7.81088 ] pdfxs + (o) show + (m) + [8.92348 ] pdfxs + (p) show + (uting) + [5.84725 3.6327 3.33823 6.14173 8.91272 ] pdfxs + (\() show + (ISHPC') + [4.21089 6.13082 8.10534 7.40714 7.79997 3.34914 ] pdfxs + (03\)) show + 205.26 -373.67 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (127{145) show + (,Oc) + [6.6654 8.4872 4.8436 ] pdfxs + (to) show + (ber) + [6.35994 4.85451 7.909 ] pdfxs + (2003) show + (.) show + -0.000152588 -404.559 m + ([) + [3.0327 ] pdfxs + (132) show + (]M) + [8.4872 9.99272 ] pdfxs + (a) show + (dhusudh) + [6.0654 5.75995 6.05449 4.30902 6.05449 6.0654 6.05449 ] pdfxs + (a) show + (nT) + [11.3235 6.97085 ] pdfxs + (a) show + (lluri,ShingI.K) + [3.0327 3.0327 6.05449 4.27631 3.0327 8.69447 6.05449 6.0654 3.0327 6.05449 10.7126 + 3.94897 8.27993 8.4872 ] pdfxs + (o) show + (n) + [6.0654 ] pdfxs + (g) show + (,M) + [8.69447 10.0036 ] pdfxs + (a) show + (rk) + [4.2654 11.0181 ] pdfxs + (D) show + (.) + [8.29084 ] pdfxs + (H) show + (ill,) + [3.0327 3.0327 3.0327 8.69447 ] pdfxs + (a) show + (nd) + [6.05449 11.3235 ] pdfxs + (D) show + (avid) + [5.14905 5.75995 3.0327 11.3235 ] pdfxs + (A) show + (.P) + [8.29084 7.11266 ] pdfxs + (att) show + (ers) + [4.85451 4.2654 4.30902 ] pdfxs + (o) show + (n.Tr) + [6.05449 12.709 6.97085 4.27631 ] pdfxs + (a) show + (de) + [6.05449 4.85451 ] pdfxs + (o) show + (\013s) + [6.35986 4.29811 ] pdfxs + 27.8788 -426.481 m + (insupp) + [3.0327 10.3635 4.30902 6.05449 6.0654 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (t) show + (ingtwop) + [3.02179 6.0654 9.76355 3.93823 7.57085 9.76355 6.0654 ] pdfxs + (ag) show + (esizes.) + [9.15265 4.30902 3.02179 4.85451 4.8436 4.30902 9.86173 ] pdfxs + (I) show + (n) show + 189.796 -426.481 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.97807 ] pdfxs + (o) show + (ft) + [7.86546 3.62179 ] pdfxs + (h) show + (eInt) + [9.54544 4.19998 6.13082 3.6327 ] pdfxs + (e) show + (rn) + [4.59266 6.14173 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (a) show + (lConf) + [7.30899 7.79997 5.58542 6.13082 3.33823 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nceonC) + [6.13082 4.46185 9.53454 5.58542 10.6471 7.81088 ] pdfxs + (o) show + (m) + [8.92348 ] pdfxs + (p) show + (ut) + [5.84725 3.6327 ] pdfxs + (e) show + (r) show + 27.8788 -448.404 m + (Ar) + [7.83262 4.0363 ] pdfxs + (ch) show + (ite) + [3.34914 3.62179 4.46185 ] pdfxs + (c) show + (ture) + [3.62179 5.85816 4.04721 8.91272 ] pdfxs + (\() show + (ISCA) + [4.21089 6.13082 7.81088 8.10534 ] pdfxs + (\)) show + 124.412 -448.404 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (415{424) show + (,) + [6.6654 ] pdfxs + (1992) show + (.) show + -0.000152588 -479.293 m + ([) + [3.0327 ] pdfxs + (133) show + (]M) + [8.4872 9.99272 ] pdfxs + (a) show + (dsT) + [6.0654 8.81444 6.97085 ] pdfxs + (o) show + (f) + [3.32724 ] pdfxs + (t) show + (e) + [9.35992 ] pdfxs + (a) show + (nd) + [6.0654 10.5708 ] pdfxs + (La) show + (rsBirked) + [4.2654 8.81444 7.7344 3.02179 4.27631 5.4545 4.85451 6.05449 ] pdfxs + (a) show + (l.Are) + [3.0327 10.4726 12.6872 4.27631 4.8436 ] pdfxs + (g) show + (i) + [3.0327 ] pdfxs + (o) show + (ninference) + [10.5708 3.0327 6.0654 3.32724 4.85451 4.2654 4.85451 6.05449 4.85451 9.35992 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (go) show + (ri) + [4.2654 3.0327 ] pdfxs + (t) show + (hm.) + [6.05449 9.09802 3.0327 ] pdfxs + 334.915 -479.293 m + /N634 10.909 Tf + (ACMTr) + [7.83262 7.79997 14.4872 6.97089 4.04721 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (sac) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (ns) + [6.13082 9.17443 ] pdfxs + (o) show + (nPr) + [10.8435 7.39623 4.04721 ] pdfxs + (o) show + (-) show + 27.8788 -501.215 m + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmingL) + [8.91258 8.92348 3.34914 6.13082 8.92363 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (age) show + (s) + [8.36716 ] pdfxs + (a) show + (ndSy) + [6.13082 9.47994 6.13082 5.30169 ] pdfxs + (s) show + (t) + [3.62179 ] pdfxs + (e) show + (ms) + [8.92348 8.35625 ] pdfxs + (\() show + (TOPLAS) + [7.81088 8.35627 7.40714 6.83993 8.10534 6.14173 ] pdfxs + (\)) show + 248.18 -501.215 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (20\(4\)) show + (:) + [3.0327 ] pdfxs + (724{768) show + (,) + [6.6654 ] pdfxs + (J) show + (uly) + [6.05449 3.0327 9.39264 ] pdfxs + (1998) show + (.) show + -0.000183105 -532.104 m + ([) + [3.0327 ] pdfxs + (134) show + (]M) + [8.4872 9.99272 ] pdfxs + (a) show + (dsT) + [6.0654 9.02171 6.97085 ] pdfxs + (o) show + (f) + [3.32724 ] pdfxs + (t) show + (e) + [9.56719 ] pdfxs + (a) show + (nd) + [6.0654 10.7781 ] pdfxs + (J) show + (e) + [4.85451 ] pdfxs + (a) show + (n-PierreT) + [6.05449 3.63261 7.42902 3.0327 4.8436 4.27631 4.27631 9.56719 6.97085 ] pdfxs + (a) show + (lpin.) + [3.02179 6.0654 3.0327 6.05449 11.0944 ] pdfxs + (I) show + (mplemen) + [9.09802 6.05449 3.0327 4.85451 9.08711 4.8436 5.75995 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [10.7781 ] pdfxs + (o) show + (f) + [8.05084 ] pdfxs + (t) show + (hetypedc) + [6.0654 9.56719 3.93823 5.75995 6.35994 4.8436 10.789 4.8436 ] pdfxs + (a) show + (ll-by-v) + [3.0327 3.0327 3.63261 5.75995 5.75995 3.63261 5.14904 ] pdfxs + (a) show + (lue) + [3.0327 6.0654 4.8436 ] pdfxs + 420.364 -532.104 m + /N695 10.909 Tf + (\025) show + 426.727 -532.104 m + /N614 10.909 Tf + (-c) + [3.63261 4.85451 ] pdfxs + (a) show + (lculus) + [3.0327 4.8436 6.0654 3.02179 6.0654 4.29811 ] pdfxs + 27.8788 -554.027 m + (usingas) + [6.0654 4.29811 3.0327 6.05449 10.5926 10.5926 4.29811 ] pdfxs + (ta) show + (ck) + [4.54905 10.8981 ] pdfxs + (o) show + (fre) + [8.46538 4.27631 4.8436 ] pdfxs + (g) show + (i) + [3.0327 ] pdfxs + (o) show + (ns.) + [6.05449 4.30902 12.3381 ] pdfxs + (I) show + (n) show + 172.775 -554.027 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.7417 ] pdfxs + (o) show + (ft) + [8.62909 3.62179 ] pdfxs + (h) show + (eACMSIGACT-SIGPLANSymp) + [10.2982 7.83262 7.81088 15.0545 6.14173 4.19998 8.44359 7.83262 7.79997 7.81088 3.89453 + 6.14173 4.19998 8.44359 7.39623 6.83993 8.11625 13.3853 6.13082 5.30169 8.92348 5.01816 + ] pdfxs + (os) show + (ium) + [3.33823 5.85816 14.2034 ] pdfxs + (o) show + (n) show + 27.8788 -575.949 m + (Prin) + [7.39623 4.60356 3.34914 6.13082 ] pdfxs + (c) show + (i) + [3.34914 ] pdfxs + (p) show + (l) + [2.78176 ] pdfxs + (e) show + (s) + [8.36716 ] pdfxs + (o) show + (fPro) + [7.24365 7.40714 4.0363 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmingL) + [8.92348 8.92348 3.33823 6.13082 8.92363 6.28357 ] pdfxs + (a) show + (n) + [6.14173 ] pdfxs + (g) show + (u) + [5.84725 ] pdfxs + (ages) show + 208.569 -575.949 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (188{201) show + (,) + [6.6654 ] pdfxs + (1994) show + (.) show + -0.000183105 -606.838 m + ([) + [3.0327 ] pdfxs + (135) show + (]M) + [8.4872 9.99272 ] pdfxs + (a) show + (dsT) + [6.0654 8.6508 6.97085 ] pdfxs + (o) show + (f) + [3.32724 ] pdfxs + (t) show + (e) + [9.19629 ] pdfxs + (a) show + (nd) + [6.05449 10.4072 ] pdfxs + (J) show + (e) + [4.85451 ] pdfxs + (a) show + (n-PierreT) + [6.05449 3.63261 7.42902 3.0327 4.8436 4.27631 4.27631 9.18538 6.97085 ] pdfxs + (a) show + (lpin.) + [3.0327 6.0654 3.02179 6.0654 9.98173 ] pdfxs + (R) show + (e) + [4.8436 ] pdfxs + (g) show + (i) + [3.0327 ] pdfxs + (o) show + (n-b) + [6.0654 3.63261 6.0654 ] pdfxs + (a) show + (sedmem) + [4.29811 4.8436 10.4072 9.09802 4.8436 9.09802 ] pdfxs + (o) show + (rym) + [4.2654 10.1017 9.09802 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (ag) show + (emen) + [4.85451 9.08711 4.8436 5.75995 ] pdfxs + (t) show + (.) show + 389.124 -606.838 m + /N634 10.909 Tf + (Inform) + [4.21089 6.13082 3.33823 5.58542 4.59266 8.92348 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [10.6908 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (d) show + 27.8788 -628.761 m + (C) + [7.81088 ] pdfxs + (o) show + (mputation) + [8.91258 5.58542 5.84725 3.62179 5.58542 3.62179 3.33823 5.58542 6.13082 ] pdfxs + 89.4908 -628.761 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (132\(2\)) show + (:) + [3.02179 ] pdfxs + (109{176) show + (,Febru) + [6.6763 6.20722 4.85451 6.05449 4.27631 6.05449 ] pdfxs + (a) show + (ry) + [4.27631 9.39264 ] pdfxs + (1997) show + (.) show + 225.818 -657.201 m + (210) show + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 113.455 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (3) show + (.) + [3.0327 ] pdfxs + (2) show + (.2) + [3.0327 17.9344 ] pdfxs + (L) show + (oc) + [5.75995 4.8436 ] pdfxs + (a) show + (l) + [6.6654 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisPh) + [3.0327 5.74904 4.30902 3.0327 7.94172 7.41812 6.0654 ] pdfxs + (a) show + (se................................) + [4.29811 7.9963 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 13.1562 ] pdfxs + (51) show + 0 -13.549 m + (3) show + (.) + [3.0327 ] pdfxs + (2) show + (.3B) + [3.0327 17.9344 7.72349 ] pdfxs + (otto) show + (m-) + [9.08711 3.64352 ] pdfxs + (U) show + (p) + [9.6981 ] pdfxs + (A) show + (n) + [6.05449 ] pdfxs + (a) show + (lysisPh) + [3.0327 5.75995 4.29811 3.0327 7.94172 7.41812 6.0654 ] pdfxs + (a) show + (se............................) + [4.29811 13.7562 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (53) show + 0 -27.098 m + (3) show + (.) + [3.0327 ] pdfxs + (2) show + (.4T) + [3.0327 17.9344 6.97085 ] pdfxs + (o) show + (p-) + [6.05449 3.64352 ] pdfxs + (D) show + (own) + [5.14905 7.8763 9.6981 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisPh) + [3.02179 5.75995 4.30902 3.02179 7.94172 7.42902 6.05449 ] pdfxs + (a) show + (se.............................) + [4.30902 9.80719 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (59) show + 0 -40.647 m + (3) show + (.) + [3.0327 ] pdfxs + (2) show + (.5C) + [3.0327 17.9344 7.8763 ] pdfxs + (o) show + (mplexity) + [9.09802 6.05449 3.0327 4.8436 5.75995 3.0327 3.93823 9.39264 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis................................) + [3.0327 5.74904 4.30902 3.0327 10.2326 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (60) show + 0 -54.197 m + (3) show + (.) + [3.0327 ] pdfxs + (2) show + (.6B) + [3.0327 17.9344 7.72349 ] pdfxs + (o) show + (undingGr) + [6.0654 6.05449 6.0654 3.0327 6.05449 9.0981 8.55269 4.27631 ] pdfxs + (a) show + (phSize...............................) + [6.0654 9.6981 6.05449 3.0327 4.8436 15.5017 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (60) show + -25.091 -67.746 m + (3) show + (.3En) + [3.0327 16.6035 7.42902 6.05449 ] pdfxs + (g) show + (ineering) + [3.0327 6.05449 4.85451 4.8436 4.27631 3.0327 6.05449 9.0981 ] pdfxs + (a) show + (nE\016cientP) + [9.6981 7.41812 9.09802 4.8436 3.0327 4.8436 5.75995 7.87638 7.12357 ] pdfxs + (o) show + (inter) + [3.0327 5.75995 4.23277 4.85451 7.909 ] pdfxs + (A) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis........................) + [3.0327 5.75995 4.29811 3.0327 14.9344 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (61) show + 0 -81.295 m + (3) show + (.) + [3.0327 ] pdfxs + (3) show + (.1TheGl) + [3.0327 17.9344 7.8763 6.0654 8.4872 8.55269 3.0327 ] pdfxs + (o) show + (b) + [6.0654 ] pdfxs + (a) show + (lsGr) + [3.02179 7.94172 8.5636 4.27631 ] pdfxs + (a) show + (ph.................................) + [6.05449 9.75264 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 13.1562 ] pdfxs + (61) show + 0 -94.844 m + (3) show + (.) + [3.0327 ] pdfxs + (3) show + (.2E\016cientGr) + [3.0327 17.9344 7.42902 9.08711 4.8436 3.0327 4.85451 5.74904 7.88729 8.55269 4.27631 + ] pdfxs + (a) show + (phInlining..............................) + [6.0654 9.68719 3.94897 6.05449 3.0327 3.0327 6.05449 3.0327 6.0654 13.3744 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (63) show + 0 -108.393 m + (3) show + (.) + [3.0327 ] pdfxs + (3) show + (.3P) + [3.0327 17.9344 7.12357 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nin) + [6.05449 3.0327 6.0654 ] pdfxs + (g) show + 96 -108.393 m + /N695 10.909 Tf + (E) show + 104.053 -110.082 m + /N698 7.96999 Tf + (V) show + 115.001 -108.393 m + /N614 10.909 Tf + (f) + [3.33815 ] pdfxs + (o) show + (rE\016cientGl) + [7.909 7.41812 9.08711 4.85451 3.0327 4.8436 5.75995 7.87638 8.5636 3.0327 ] pdfxs + (o) show + (b) + [6.05449 ] pdfxs + (a) show + (lV) + [6.6654 7.2763 ] pdfxs + (a) show + (ri) + [4.27631 3.02179 ] pdfxs + (a) show + (ble) + [6.0654 3.0327 8.4872 ] pdfxs + (It) show + (er) + [4.8436 4.27631 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n.............) + [12.3163 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 13.1562 ] pdfxs + (64) show + 0 -121.943 m + (3) show + (.) + [3.0327 ] pdfxs + (3) show + (.4Shrinkin) + [3.0327 17.9344 6.0654 6.05449 4.27631 3.0327 6.05449 5.75995 3.0327 6.05449 ] pdfxs + (g) show + 84.333 -121.943 m + /N695 10.909 Tf + (E) show + 92.386 -123.631 m + /N698 7.96999 Tf + (V) show + 103.334 -121.943 m + /N614 10.909 Tf + (wi) + [7.8763 3.0327 ] pdfxs + (t) show + (hGl) + [9.6981 8.5636 3.02179 ] pdfxs + (o) show + (b) + [6.0654 ] pdfxs + (a) show + (lV) + [6.6654 7.2763 ] pdfxs + (a) show + (lueEquiv) + [3.02179 6.0654 8.4872 7.41812 5.75995 6.0654 3.02179 5.15995 ] pdfxs + (a) show + (lenceCl) + [3.0327 4.8436 6.0654 4.8436 8.4872 7.8763 3.0327 ] pdfxs + (a) show + (sses..............) + [4.29811 4.30902 4.8436 8.49808 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 13.1562 ] pdfxs + (64) show + -1.52588e-05 -135.492 m + (3) show + (.) + [3.0327 ] pdfxs + (3) show + (.5) + [3.0327 17.9344 ] pdfxs + (A) show + (v) + [5.4545 ] pdfxs + (o) show + (idin) + [3.0327 6.05449 3.0327 6.0654 ] pdfxs + (g) show + 81.273 -135.492 m + /N695 10.909 Tf + (N) show + 91.227 -131.533 m + /N703 7.96999 Tf + (2) show + 99.596 -135.492 m + /N614 10.909 Tf + (I) show + (nliningf) + [6.0654 3.02179 3.0327 6.0654 3.0327 6.05449 9.08719 3.33815 ] pdfxs + (o) show + (rFunc) + [7.909 6.20722 6.0654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nP) + [9.6981 7.11266 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (ers...................) + [4.8436 4.27631 12.8289 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 13.1672 + ] pdfxs + (66) show + -3.05176e-05 -149.041 m + (3) show + (.) + [3.0327 ] pdfxs + (3) show + (.6Mer) + [3.0327 17.9344 10.0036 4.8436 4.27631 ] pdfxs + (g) show + (eC) + [8.4872 7.8763 ] pdfxs + (a) show + (ll) + [3.0327 6.6654 ] pdfxs + (N) show + (odesf) + [5.75995 6.05449 4.85451 7.93081 3.33815 ] pdfxs + (o) show + (rEx) + [7.909 7.41812 5.75995 ] pdfxs + (t) show + (ern) + [4.85451 4.2654 6.0654 ] pdfxs + (a) show + (lFunc) + [6.6654 6.20722 6.0654 6.05449 4.85451 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns....................) + [6.05449 14.0835 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 + ] pdfxs + (66) show + -3.05176e-05 -162.59 m + (3) show + (.) + [3.0327 ] pdfxs + (3) show + (.7) + [3.0327 17.9344 ] pdfxs + (D) show + (irectC) + [3.0327 4.2654 4.85451 4.8436 7.87638 7.88721 ] pdfxs + (a) show + (ll) + [3.02179 6.6763 ] pdfxs + (N) show + (odes.................................) + [5.74904 6.0654 4.8436 14.9671 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (67) show + -25.091 -176.139 m + (3) show + (.4Experimen) + [3.0327 16.6035 7.42902 5.74904 6.37085 4.8436 4.27631 3.0327 9.08711 4.8436 5.75995 + ] pdfxs + (ta) show + (l) + [6.6654 ] pdfxs + (R) show + (esults....................................) + [4.85451 4.29811 6.0654 3.0327 4.23277 7.24354 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (67) show + -3.05176e-05 -189.689 m + (3) show + (.) + [3.0327 ] pdfxs + (4) show + (.1Benchm) + [3.0327 17.9344 7.72349 4.85451 6.05449 4.54905 6.0654 9.08711 ] pdfxs + (a) show + (rkSui) + [4.27631 9.39264 6.05449 6.0654 3.0327 ] pdfxs + (t) show + (e) + [8.47629 ] pdfxs + (a) show + (ndSimpleMe) + [6.0654 9.6981 6.05449 3.0327 9.08711 6.0654 3.0327 8.4872 9.99272 4.85451 ] pdfxs + (a) show + (suremen) + [4.29811 6.0654 4.2654 4.85451 9.08711 4.85451 5.74904 ] pdfxs + (t) show + (s...................) + [8.81444 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (67) show + -3.05176e-05 -203.238 m + (3) show + (.) + [3.0327 ] pdfxs + (4) show + (.2) + [3.0327 17.9344 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisTime&Mem) + [3.02179 5.75995 4.30902 3.02179 7.94172 7.8763 3.0327 9.09802 8.47629 12.1199 10.0036 + 4.85451 9.08711 ] pdfxs + (o) show + (ryC) + [4.27631 9.39264 7.8763 ] pdfxs + (o) show + (nsump) + [6.05449 4.30902 6.05449 9.09802 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n.....................) + [12.8181 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 + ] pdfxs + (70) show + -3.05176e-05 -216.787 m + (3) show + (.) + [3.0327 ] pdfxs + (4) show + (.3) + [3.0327 17.9344 ] pdfxs + (I) show + (nferredType) + [6.0654 3.32724 4.85451 4.2654 4.27631 4.8436 9.6981 7.58175 5.75995 6.35994 8.4872 + ] pdfxs + (I) show + (nf) + [6.05449 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n.............................) + [10.2108 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (71) show + -25.091 -230.336 m + (3) show + (.5) + [3.0327 16.6035 ] pdfxs + (R) show + (el) + [4.85451 3.02179 ] pdfxs + (at) show + (edW) + [4.85451 9.6981 10.2981 ] pdfxs + (o) show + (rk........................................) + [4.27631 11.389 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (74) show + -3.05176e-05 -243.885 m + (3) show + (.) + [3.0327 ] pdfxs + (5) show + (.1Sh) + [3.0327 17.9344 6.0654 6.05449 ] pdfxs + (a) show + (pe) + [6.35994 8.4872 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lyses...................................) + [3.0327 5.74904 4.30902 4.8436 9.03262 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (75) show + -3.05176e-05 -257.435 m + (3) show + (.) + [3.0327 ] pdfxs + (5) show + (.2Cl) + [3.0327 17.9344 7.8763 3.0327 ] pdfxs + (o) show + (nin) + [6.0654 3.02179 6.0654 ] pdfxs + (g) show + (-b) + [3.63261 6.0654 ] pdfxs + (a) show + (sedC) + [4.29811 4.85451 9.6981 7.8763 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (ex) + [4.8436 5.75995 ] pdfxs + (t) show + (-Sensi) + [3.63261 6.0654 4.8436 6.0654 4.29811 3.0327 ] pdfxs + (t) show + (ive) + [3.02179 5.4545 8.4872 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lyses....................) + [3.0327 5.74904 4.30902 4.8436 10.4181 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 13.1562 ] pdfxs + (75) show + -3.05176e-05 -270.984 m + (3) show + (.) + [3.0327 ] pdfxs + (5) show + (.3) + [3.0327 17.9344 ] pdfxs + (No) show + (n-cl) + [6.0654 3.63261 4.8436 3.0327 ] pdfxs + (o) show + (ningC) + [6.0654 3.02179 6.0654 9.08719 7.88721 ] pdfxs + (o) show + (n) + [5.74904 ] pdfxs + (t) show + (extSensitive) + [4.85451 5.75995 7.87638 6.05449 4.85451 6.05449 4.30902 3.0327 4.23277 3.0327 5.4545 + 8.4872 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lyses.....................) + [3.02179 5.75995 4.30902 4.8436 11.9999 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (76) show + -25.091 -284.533 m + (3) show + (.6) + [3.0327 16.6035 ] pdfxs + (Dat) show + (aS) + [9.08719 6.0654 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.0654 4.2654 8.4872 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis:Summ) + [3.0327 5.74904 4.30902 3.0327 4.29811 7.87629 6.0654 6.05449 9.09802 9.08711 ] pdfxs + (a) show + (ry) + [4.27631 9.39264 ] pdfxs + (o) show + (fC) + [6.97085 7.8763 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (ribu) + [4.2654 3.0327 6.0654 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns..................) + [6.05449 11.1817 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (77) show + -41.455 -308.991 m + (Ch) + [7.8763 6.0654 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (er4) + [4.85451 7.909 16.3635 ] pdfxs + (U) show + (sing) + [4.29811 3.0327 6.0654 9.08719 ] pdfxs + (Dat) show + (aStruc) + [9.08719 6.0654 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.0654 4.2654 8.4872 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisf) + [3.02179 5.75995 4.30902 3.02179 7.94172 3.33815 ] pdfxs + (o) show + (r) + [7.909 ] pdfxs + (A) show + (li) + [3.0327 3.02179 ] pdfxs + (a) show + (s) + [7.94172 ] pdfxs + (a) show + (nd) + [6.0654 9.6981 ] pdfxs + (I) show + (PMod) + [11.0617 9.99272 5.75995 6.0654 ] pdfxs + (/R) show + (ef) + [4.8436 6.97085 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis........) + [3.02179 5.75995 4.30902 3.02179 12.1526 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 13.1562 ] pdfxs + (79) show + -25.091 -322.54 m + (4) show + (.1) + [3.0327 16.6035 ] pdfxs + (A) show + (li) + [3.0327 3.0327 ] pdfxs + (a) show + (s) + [7.93081 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.0327 5.74904 4.30902 3.0327 7.94172 ] pdfxs + (a) show + (ndMod) + [6.05449 9.6981 10.0036 5.74904 6.0654 ] pdfxs + (/R) show + (efInf) + [4.85451 6.95994 3.94897 6.05449 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n........................) + [17.2689 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 13.1562 ] pdfxs + (79) show + -3.05176e-05 -336.09 m + (4) show + (.) + [3.0327 ] pdfxs + (1) show + (.1) + [3.0327 17.9344 ] pdfxs + (A) show + (li) + [3.0327 3.0327 ] pdfxs + (a) show + (s) + [7.93081 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.0327 5.74904 4.30902 3.0327 7.94172 ] pdfxs + (A) show + (ssump) + [4.29811 4.29811 6.0654 9.08711 6.0654 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 7.94172 ] pdfxs + (a) show + (nd) + [6.05449 9.6981 ] pdfxs + (A) show + (pplic) + [6.0654 6.05449 3.0327 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns..................) + [6.0654 10.5381 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (80) show + -3.05176e-05 -349.639 m + (4) show + (.) + [3.0327 ] pdfxs + (1) show + (.2Mod) + [3.0327 17.9344 10.0036 5.74904 6.0654 ] pdfxs + (/R) show + (ef) + [4.85451 6.95994 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 7.94172 ] pdfxs + (A) show + (ssump) + [4.29811 4.30902 6.05449 9.08711 6.0654 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 7.94172 ] pdfxs + (a) show + (nd) + [6.0654 9.68719 ] pdfxs + (A) show + (pplic) + [6.0654 6.0654 3.02179 3.0327 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (ns................) + [6.0654 8.02899 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (81) show + -25.091 -363.188 m + (4) show + (.2) + [3.0327 16.6035 ] pdfxs + (I) show + (mplemen) + [9.08711 6.0654 3.0327 4.8436 9.09802 4.8436 5.75995 ] pdfxs + (t) show + (ing) + [3.02179 6.0654 9.08719 ] pdfxs + (A) show + (li) + [3.0327 3.0327 ] pdfxs + (a) show + (s) + [7.94172 ] pdfxs + (a) show + (ndMod) + [6.05449 9.6981 10.0036 5.75995 6.05449 ] pdfxs + (/R) show + (ef) + [4.85451 6.97085 ] pdfxs + (A) show + (n) + [6.05449 ] pdfxs + (a) show + (lysiswi) + [3.0327 5.75995 4.29811 3.0327 7.94172 7.8763 3.0327 ] pdfxs + (t) show + (h) + [9.6981 ] pdfxs + (D) show + (S) + [6.05449 ] pdfxs + (A) show + (:) show + 262.909 -363.188 m + /N722 10.909 Tf + (ds-aa) show + 300.662 -363.188 m + /N614 10.909 Tf + (.............) + [8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 13.1562 ] pdfxs + (82) show + 0 -376.737 m + (4) show + (.) + [3.0327 ] pdfxs + (2) show + (.1C) + [3.0327 17.9344 7.8763 ] pdfxs + (o) show + (mpu) + [9.09802 6.05449 6.0654 ] pdfxs + (t) show + (ing) + [3.02179 6.0654 9.08719 ] pdfxs + (A) show + (li) + [3.0327 3.0327 ] pdfxs + (a) show + (s) + [7.94172 ] pdfxs + (A) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 7.94172 ] pdfxs + (R) show + (esp) + [4.8436 4.30902 6.35994 ] pdfxs + (o) show + (nses.......................) + [6.0654 4.29811 4.85451 8.32353 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (83) show + 0 -390.286 m + (4) show + (.) + [3.0327 ] pdfxs + (2) show + (.2C) + [3.0327 17.9344 7.8763 ] pdfxs + (o) show + (mpu) + [9.09802 6.05449 6.0654 ] pdfxs + (t) show + (ingMod) + [3.02179 6.0654 9.08719 10.0036 5.75995 6.05449 ] pdfxs + (/R) show + (ef) + [4.85451 6.97085 ] pdfxs + (R) show + (esp) + [4.8436 4.30902 6.35994 ] pdfxs + (o) show + (nses..........................) + [6.0654 4.29811 4.85451 7.14536 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (84) show + -25.091 -403.836 m + (4) show + (.3) + [3.0327 16.6035 ] pdfxs + (A) show + (li) + [3.0327 3.0327 ] pdfxs + (a) show + (s) + [7.93081 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.0327 5.74904 4.30902 3.0327 7.94172 ] pdfxs + (I) show + (mplemen) + [9.08711 6.0654 3.02179 4.85451 9.08711 4.85451 5.74904 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (nsf) + [6.05449 7.94172 3.33815 ] pdfxs + (o) show + (rC) + [7.909 7.8763 ] pdfxs + (o) show + (mp) + [9.08711 6.0654 ] pdfxs + (a) show + (ris) + [4.27631 3.02179 4.30902 ] pdfxs + (o) show + (n.....................) + [10.6035 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 + ] pdfxs + (87) show + 0 -417.385 m + (4) show + (.) + [3.0327 ] pdfxs + (3) show + (.) + [3.0327 ] pdfxs + (1) show + 34.909 -417.385 m + /N722 10.909 Tf + (local) show + 67.181 -417.385 m + /N614 10.909 Tf + (A) show + (li) + [3.0327 3.0327 ] pdfxs + (a) show + (s) + [7.93081 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis................................) + [3.0327 5.75995 4.29811 3.0327 8.81444 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 13.1562 ] pdfxs + (87) show + -1.52588e-05 -430.934 m + (4) show + (.) + [3.0327 ] pdfxs + (3) show + (.) + [3.0327 ] pdfxs + (2) show + 34.909 -430.934 m + /N722 10.909 Tf + (steens-fi) show + 90.09 -430.934 m + /N614 10.909 Tf + (A) show + (li) + [3.0327 3.0327 ] pdfxs + (a) show + (s) + [7.93081 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis.............................) + [3.0327 5.75995 4.29811 3.0327 11.3562 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 13.1562 ] pdfxs + (88) show + -1.52588e-05 -444.483 m + (4) show + (.) + [3.0327 ] pdfxs + (3) show + (.) + [3.0327 ] pdfxs + (3) show + 34.909 -444.483 m + /N722 10.909 Tf + (steens-fs) show + 90.09 -444.483 m + /N614 10.909 Tf + (A) show + (li) + [3.0327 3.0327 ] pdfxs + (a) show + (s) + [7.93081 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis.............................) + [3.0327 5.75995 4.29811 3.0327 11.3562 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 13.1562 ] pdfxs + (88) show + -1.52588e-05 -458.032 m + (4) show + (.) + [3.0327 ] pdfxs + (3) show + (.) + [3.0327 ] pdfxs + (4) show + 34.909 -458.032 m + /N722 10.909 Tf + (anders) show + 72.909 -458.032 m + /N614 10.909 Tf + (A) show + (li) + [3.0327 3.0327 ] pdfxs + (a) show + (s) + [7.93081 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis...............................) + [3.0327 5.74904 4.30902 3.0327 11.5744 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 13.1562 ] pdfxs + (89) show + -25.091 -471.582 m + (4) show + (.4) + [3.0327 16.6035 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisPrecisi) + [3.02179 5.75995 4.30902 3.02179 7.94172 7.42902 4.2654 4.85451 4.8436 3.0327 4.30902 + 3.02179 ] pdfxs + (o) show + (nwi) + [9.6981 7.8763 3.0327 ] pdfxs + (t) show + (haSyn) + [9.6981 9.08719 6.0654 5.75995 5.74904 ] pdfxs + (t) show + (he) + [6.0654 4.8436 ] pdfxs + (t) show + (icClient........................) + [3.0327 8.4872 7.8763 3.0327 3.0327 4.8436 5.75995 9.68727 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (89) show + -3.05176e-05 -485.131 m + (4) show + (.) + [3.0327 ] pdfxs + (4) show + (.1) + [3.0327 17.9344 ] pdfxs + (A) show + (li) + [3.0327 3.0327 ] pdfxs + (a) show + (sPrecisi) + [7.93081 7.42902 4.27631 4.8436 4.8436 3.0327 4.30902 3.0327 ] pdfxs + (o) show + (n...................................) + [14.2362 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 13.1562 ] pdfxs + (90) show + -3.05176e-05 -498.68 m + (4) show + (.) + [3.0327 ] pdfxs + (4) show + (.2Mod) + [3.0327 17.9344 10.0036 5.74904 6.0654 ] pdfxs + (/R) show + (efPrecisi) + [4.85451 6.97085 7.41812 4.27631 4.8436 4.85451 3.02179 4.30902 3.0327 ] pdfxs + (o) show + (n.................................) + [11.7163 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 13.1562 ] pdfxs + (95) show + -25.091 -512.229 m + (4) show + (.5) + [3.0327 16.6035 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisPrecisi) + [3.02179 5.75995 4.30902 3.02179 7.94172 7.42902 4.2654 4.85451 4.8436 3.0327 4.30902 + 3.02179 ] pdfxs + (o) show + (nwi) + [9.6981 7.8763 3.0327 ] pdfxs + (t) show + (hSc) + [9.6981 6.0654 4.8436 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (a) show + (r) + [7.909 ] pdfxs + (L) show + (o) + [5.75995 ] pdfxs + (o) show + (pOp) + [9.68719 8.4872 6.0654 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns...................) + [6.05449 10.7235 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (97) show + -3.05176e-05 -525.778 m + (4) show + (.) + [3.0327 ] pdfxs + (5) show + (.1) + [3.0327 17.9344 ] pdfxs + (N) show + (umber) + [6.0654 8.78166 6.35994 4.85451 7.909 ] pdfxs + (o) show + (fTr) + [6.97085 6.97085 4.2654 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nsPerf) + [6.05449 7.94172 7.12357 4.8436 4.27631 3.32724 ] pdfxs + (o) show + (rmed......................) + [4.27631 9.08711 4.85451 10.1781 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (98) show + -3.05176e-05 -539.328 m + (4) show + (.) + [3.0327 ] pdfxs + (5) show + (.2) + [3.0327 17.9344 ] pdfxs + (A) show + (li) + [3.0327 3.0327 ] pdfxs + (a) show + (s) + [7.93081 ] pdfxs + (a) show + (ndMod) + [6.0654 9.6981 10.0036 5.74904 6.0654 ] pdfxs + (/R) show + (efQueries............................) + [4.8436 6.97085 8.4872 6.0654 4.8436 4.27631 3.0327 4.8436 10.9635 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (103) show + -25.091 -552.877 m + (4) show + (.6Observ) + [3.0327 16.6035 8.4872 6.05449 4.30902 4.8436 4.27631 5.14904 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 7.94172 ] pdfxs + (a) show + (ndC) + [6.0654 9.6981 7.8763 ] pdfxs + (o) show + (nclusi) + [6.05449 4.85451 3.0327 6.05449 4.30902 3.02179 ] pdfxs + (o) show + (ns...............................) + [6.0654 9.23989 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 + ] pdfxs + (104) show + -41.455 -577.335 m + (Ch) + [7.8763 6.0654 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (er5) + [4.85451 7.909 16.3635 ] pdfxs + (A) show + (u) + [6.05449 ] pdfxs + (to) show + (m) + [9.09802 ] pdfxs + (a) show + (ticPo) + [4.23277 3.0327 8.4872 7.12357 5.75995 ] pdfxs + (o) show + (l) + [6.6654 ] pdfxs + (A) show + (lloc) + [3.02179 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n..............................) + [16.7889 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (108) show + -25.091 -590.884 m + (5) show + (.1TheTr) + [3.0327 16.6035 7.8763 6.0654 8.4872 6.95994 4.27631 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (nOverview) + [9.6981 8.4872 5.4545 4.85451 4.2654 5.75995 3.0327 4.8436 11.5199 ] pdfxs + (a) show + (ndEx) + [6.05449 9.6981 7.42902 5.75995 ] pdfxs + (a) show + (mple.......................) + [9.08711 6.0654 3.02179 10.0581 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (110) show + -3.05176e-05 -604.433 m + (5) show + (.) + [3.0327 ] pdfxs + (1) show + (.1Po) + [3.0327 17.9344 7.12357 5.75995 ] pdfxs + (o) show + (l) + [6.6654 ] pdfxs + (A) show + (lloc) + [3.02179 3.0327 5.75995 4.85451 ] pdfxs + (a) show + (t) + [4.23277 ] pdfxs + (o) show + (rRun) + [7.909 8.03985 6.05449 5.75995 ] pdfxs + (t) show + (ime) + [3.0327 9.08711 8.4872 ] pdfxs + (L) show + (ibr) + [3.02179 6.0654 4.27631 ] pdfxs + (a) show + (ry.........................) + [4.2654 16.4289 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (111) show + -3.05176e-05 -617.983 m + (5) show + (.) + [3.0327 ] pdfxs + (1) show + (.2Overview) + [3.0327 17.9344 8.4872 5.4545 4.8436 4.27631 5.75995 3.02179 4.85451 11.5199 ] pdfxs + (U) show + (sing) + [4.29811 3.0327 6.05449 9.0981 ] pdfxs + (a) show + (nEx) + [9.6981 7.41812 5.75995 ] pdfxs + (a) show + (mple............................) + [9.08711 6.0654 3.0327 7.62539 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (113) show + 185.121 -657.201 m + (viii) + [5.75995 3.0327 3.02179 3.0327 ] pdfxs + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (7) 8 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 595.275591 788.031496 translate + 180 rotate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 88.364 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (5) show + (.2TheC) + [3.0327 16.6035 7.8763 6.0654 8.4872 7.8763 ] pdfxs + (o) show + (rePo) + [4.2654 8.4872 7.12357 5.75995 ] pdfxs + (o) show + (l) + [6.6654 ] pdfxs + (A) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (nTr) + [9.6981 6.97085 4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n........................) + [13.6908 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 7.70175 ] pdfxs + (114) show + 25.091 -13.549 m + (5) show + (.) + [3.0327 ] pdfxs + (2) show + (.1) + [3.0327 17.9344 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis:FindingPo) + [3.02179 5.75995 4.30902 3.02179 4.30902 7.87629 7.12357 3.0327 6.05449 6.0654 3.0327 + 6.05449 9.08719 7.12357 5.75995 ] pdfxs + (o) show + (l) + [6.6654 ] pdfxs + (D) show + (escrip) + [4.8436 4.30902 4.8436 4.27631 3.0327 6.05449 ] pdfxs + (to) show + (rsf) + [4.27631 7.94172 3.32724 ] pdfxs + (o) show + (re) + [7.909 4.85451 ] pdfxs + (a) show + (chH) + [4.53815 9.6981 11.8254 ] pdfxs + (N) show + (ode..............) + [5.74904 6.0654 13.1453 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (114) show + 25.091 -27.098 m + (5) show + (.) + [3.0327 ] pdfxs + (2) show + (.2TheSimpleTr) + [3.0327 17.9344 7.8763 6.0654 8.4872 6.05449 3.0327 9.08711 6.0654 3.0327 8.47629 + 6.97085 4.27631 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (\(N) show + (o) + [9.08719 ] pdfxs + (I) show + (ndirectC) + [6.0654 6.0654 3.02179 4.27631 4.8436 4.85451 7.87638 7.8763 ] pdfxs + (a) show + (lls\).................) + [3.0327 3.0327 4.29811 10.3964 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (115) show + 25.091 -40.647 m + (5) show + (.) + [3.0327 ] pdfxs + (2) show + (.3P) + [3.0327 17.9344 7.12357 ] pdfxs + (a) show + (ssing) + [4.29811 4.30902 3.02179 6.0654 9.08719 ] pdfxs + (D) show + (escrip) + [4.85451 4.29811 4.85451 4.2654 3.0327 6.0654 ] pdfxs + (to) show + (rsf) + [4.2654 7.94172 3.33815 ] pdfxs + (o) show + (r) + [7.909 ] pdfxs + (I) show + (ndirectFunc) + [6.05449 6.0654 3.0327 4.2654 4.85451 4.8436 7.87638 6.21813 6.05449 6.0654 4.8436 + ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nC) + [9.6981 7.8763 ] pdfxs + (a) show + (lls.................) + [3.0327 3.0327 12.2071 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (118) show + 0 -54.197 m + (5) show + (.3) + [3.0327 16.6035 ] pdfxs + (A) show + (l) + [3.0327 ] pdfxs + (go) show + (ri) + [4.2654 3.0327 ] pdfxs + (t) show + (hmicC) + [6.0654 9.08711 3.0327 8.4872 7.8763 ] pdfxs + (o) show + (mplexity..................................) + [9.08711 6.0654 3.0327 4.8436 5.75995 3.0327 3.93823 13.0581 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (120) show + 0 -67.746 m + (5) show + (.4SimplePo) + [3.0327 16.6035 6.0654 3.02179 9.09802 6.05449 3.0327 8.4872 7.12357 5.74904 ] pdfxs + (o) show + (l) + [6.6654 ] pdfxs + (A) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (R) show + (e\fnements...........................) + [4.8436 6.0654 6.0654 4.8436 9.08711 4.85451 5.75995 4.23277 14.6071 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 7.70175 ] pdfxs + (121) show + 25.091 -81.295 m + (5) show + (.) + [3.0327 ] pdfxs + (4) show + (.1) + [3.0327 17.9344 ] pdfxs + (A) show + (r) + [4.27631 ] pdfxs + (g) show + (umentP) + [6.05449 9.09802 4.8436 5.75995 7.87638 7.12357 ] pdfxs + (a) show + (ssingf) + [4.29811 4.30902 3.0327 6.05449 9.08719 3.33815 ] pdfxs + (o) show + (rGl) + [7.909 8.5636 3.02179 ] pdfxs + (o) show + (b) + [6.0654 ] pdfxs + (a) show + (lPo) + [6.6654 7.12357 5.75995 ] pdfxs + (o) show + (ls........................) + [3.0327 8.21444 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (121) show + 25.091 -94.844 m + (5) show + (.) + [3.0327 ] pdfxs + (4) show + (.2po) + [3.0327 17.9344 6.35994 5.75995 ] pdfxs + (o) show + (lcre) + [3.0327 4.8436 4.27631 4.8436 ] pdfxs + (at) show + (e) + [4.85451 ] pdfxs + (/) show + (po) + [6.35994 5.75995 ] pdfxs + (o) show + (ldes) + [3.0327 6.05449 4.85451 4.29811 ] pdfxs + (t) show + (royPl) + [4.27631 5.14905 9.39264 7.42902 3.02179 ] pdfxs + (a) show + (cement........................) + [4.85451 4.8436 9.09802 4.8436 5.75995 13.6581 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (121) show + 0 -108.393 m + (5) show + (.5Experimen) + [3.0327 16.6035 7.42902 5.74904 6.37085 4.8436 4.27631 3.0327 9.08711 4.8436 5.75995 + ] pdfxs + (ta) show + (l) + [6.6654 ] pdfxs + (R) show + (esults....................................) + [4.85451 4.29811 6.0654 3.0327 4.23277 7.24354 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (123) show + 25.091 -121.943 m + (5) show + (.) + [3.0327 ] pdfxs + (5) show + (.1Me) + [3.0327 17.9344 10.0036 4.8436 ] pdfxs + (t) show + (hod) + [6.0654 5.74904 6.0654 ] pdfxs + (o) show + (l) + [3.0327 ] pdfxs + (og) show + (y) + [9.39264 ] pdfxs + (a) show + (ndBenchm) + [6.05449 9.6981 7.7344 4.8436 6.0654 4.53815 6.0654 9.08711 ] pdfxs + (a) show + (rks..........................) + [4.27631 5.75995 14.6617 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (123) show + 25.091 -135.492 m + (5) show + (.) + [3.0327 ] pdfxs + (5) show + (.2Po) + [3.0327 17.9344 7.12357 5.75995 ] pdfxs + (o) show + (l) + [6.6654 ] pdfxs + (A) show + (lloc) + [3.02179 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nS) + [9.6981 6.0654 ] pdfxs + (ta) show + (tis) + [4.23277 3.0327 4.30902 ] pdfxs + (t) show + (ics.............................) + [3.02179 4.85451 12.8071 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (124) show + 25.091 -149.041 m + (5) show + (.) + [3.0327 ] pdfxs + (5) show + (.3Po) + [3.0327 17.9344 7.12357 5.75995 ] pdfxs + (o) show + (l) + [6.6654 ] pdfxs + (A) show + (lloc) + [3.02179 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nC) + [9.6981 7.8763 ] pdfxs + (o) show + (mpileTime..........................) + [9.09802 6.05449 3.0327 3.0327 8.4872 7.8763 3.0327 9.08711 14.6944 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 7.70175 ] pdfxs + (125) show + 0 -162.59 m + (5) show + (.6) + [3.0327 16.6035 ] pdfxs + (R) show + (el) + [4.85451 3.02179 ] pdfxs + (at) show + (edW) + [4.85451 9.6981 10.2981 ] pdfxs + (o) show + (rk........................................) + [4.27631 11.389 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (126) show + 0 -176.139 m + (5) show + (.7) + [3.0327 16.6035 ] pdfxs + (R) show + (ese) + [4.85451 4.29811 4.8436 ] pdfxs + (a) show + (rchC) + [4.27631 4.54905 9.6981 7.8763 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (ribu) + [4.2654 3.0327 6.0654 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 7.94172 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (A) show + (u) + [6.0654 ] pdfxs + (to) show + (m) + [9.08711 ] pdfxs + (at) show + (icPo) + [3.0327 8.47629 7.12357 5.75995 ] pdfxs + (o) show + (l) + [6.6654 ] pdfxs + (A) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n.................) + [16.538 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (129) show + -16.364 -200.598 m + (Ch) + [7.8763 6.0654 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (er6Op) + [4.85451 7.909 16.3635 8.4872 6.05449 ] pdfxs + (t) show + (imizingPo) + [3.0327 9.08711 3.0327 4.8436 3.0327 6.0654 9.08719 7.12357 5.75995 ] pdfxs + (o) show + (l) + [6.6654 ] pdfxs + (A) show + (lloc) + [3.02179 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (edCode...........................) + [4.85451 9.6981 7.8763 5.75995 6.05449 13.7562 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 + ] pdfxs + (131) show + 0 -214.147 m + (6) show + (.1Po) + [3.0327 16.6035 7.12357 5.75995 ] pdfxs + (o) show + (lOp) + [6.6654 8.47629 6.0654 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns.....................................) + [6.0654 8.98898 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (132) show + 25.091 -227.696 m + (6) show + (.) + [3.0327 ] pdfxs + (1) show + (.1) + [3.0327 17.9344 ] pdfxs + (A) show + (v) + [5.4545 ] pdfxs + (o) show + (idingPo) + [3.0327 6.05449 3.0327 6.0654 9.08719 7.12357 5.75995 ] pdfxs + (o) show + (l) + [6.6654 ] pdfxs + (A) show + (lloc) + [3.0327 3.02179 5.75995 4.85451 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (nf) + [9.6981 3.33815 ] pdfxs + (o) show + (rSin) + [7.909 6.05449 3.0327 6.0654 ] pdfxs + (g) show + (le) + [3.02179 4.85451 ] pdfxs + (to) show + (nObjec) + [9.6981 8.47629 6.6763 3.32724 4.85451 4.8436 ] pdfxs + (t) show + (s:Selec) + [4.29811 7.8872 6.05449 4.85451 3.02179 4.85451 4.8436 ] pdfxs + (t) show + (ivePA.........) + [3.0327 5.4545 4.8436 6.52358 18.6871 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 7.70175 ] pdfxs + (132) show + 25.091 -241.245 m + (6) show + (.) + [3.0327 ] pdfxs + (1) show + (.) + [3.0327 ] pdfxs + (2) show + 60 -241.245 m + /N722 10.909 Tf + (poolfree) show + 109.454 -241.245 m + /N614 10.909 Tf + (Elimin) + [7.42902 3.02179 3.0327 9.08711 3.0327 6.0654 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n:Po) + [6.0654 7.87629 7.12357 5.75995 ] pdfxs + (o) show + (lFreeElim.......................) + [3.0327 6.20722 4.27631 4.8436 4.85451 7.41812 3.0327 3.0327 12.6325 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 7.70175 ] pdfxs + (133) show + 25.091 -254.794 m + (6) show + (.) + [3.0327 ] pdfxs + (1) show + (.3) + [3.0327 17.9344 ] pdfxs + (A) show + (v) + [5.4545 ] pdfxs + (o) show + (idObject) + [3.0327 9.6981 8.47629 6.6763 3.32724 4.85451 4.8436 7.87638 ] pdfxs + (H) show + (e) + [4.85451 ] pdfxs + (a) show + (derOverhe) + [6.05449 4.85451 7.909 8.4872 5.4545 4.8436 4.27631 6.05449 4.85451 ] pdfxs + (a) show + (d:Bump-P) + [6.05449 7.87629 7.7344 6.05449 9.09802 6.05449 3.64352 7.11266 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er.................) + [4.8436 10.2435 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (134) show + 25.091 -268.344 m + (6) show + (.) + [3.0327 ] pdfxs + (1) show + (.4) + [3.0327 17.9344 ] pdfxs + (A) show + (v) + [5.4545 ] pdfxs + (o) show + (iding) + [3.0327 6.05449 3.0327 6.0654 9.08719 ] pdfxs + (A) show + (li) + [3.0327 3.0327 ] pdfxs + (g) show + (nmentP) + [6.05449 9.09802 4.8436 5.75995 7.87638 7.12357 ] pdfxs + (a) show + (ddin) + [6.05449 6.0654 3.0327 6.05449 ] pdfxs + (g) show + (:) + [7.87629 ] pdfxs + (A) show + (li) + [3.0327 3.0327 ] pdfxs + (g) show + (nOpt.....................) + [6.0654 8.47629 6.0654 10.7564 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 7.70175 ] pdfxs + (136) show + 25.091 -281.893 m + (6) show + (.) + [3.0327 ] pdfxs + (1) show + (.5T) + [3.0327 17.9344 6.97085 ] pdfxs + (a) show + (ilP) + [3.0327 6.6654 7.12357 ] pdfxs + (a) show + (ddingOp) + [6.05449 6.0654 3.02179 6.0654 9.08719 8.4872 6.0654 ] pdfxs + (t) show + (imiz) + [3.02179 9.09802 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n............................) + [16.5053 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (137) show + 0 -295.442 m + (6) show + (.2C) + [3.0327 16.6035 7.8763 ] pdfxs + (o) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (o) show + (fDS) + [6.97085 8.32365 9.6981 ] pdfxs + (N) show + (odesin) + [5.75995 6.0654 4.8436 7.94172 3.0327 5.74904 ] pdfxs + (t) show + (oSh) + [9.0981 6.05449 6.0654 ] pdfxs + (a) show + (redPo) + [4.2654 4.85451 9.6981 7.12357 5.74904 ] pdfxs + (o) show + (ls.......................) + [3.0327 14.8144 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 7.70175 ] pdfxs + (137) show + 25.091 -308.991 m + (6) show + (.) + [3.0327 ] pdfxs + (2) show + (.1) + [3.0327 17.9344 ] pdfxs + (A) show + (l) + [3.0327 ] pdfxs + (go) show + (ri) + [4.2654 3.0327 ] pdfxs + (t) show + (hmEx) + [6.0654 12.7198 7.42902 5.75995 ] pdfxs + (t) show + (ensi) + [4.8436 6.0654 4.29811 3.0327 ] pdfxs + (o) show + (ns) + [6.05449 7.94172 ] pdfxs + (t) show + (oSupp) + [9.08719 6.0654 6.0654 6.05449 6.35994 ] pdfxs + (o) show + (rtC) + [4.27631 7.87638 7.88721 ] pdfxs + (o) show + (lloc) + [3.02179 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n..................) + [12.0872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (138) show + 25.091 -322.54 m + (6) show + (.) + [3.0327 ] pdfxs + (2) show + (.2) + [3.0327 17.9344 ] pdfxs + (N) show + (odeC) + [5.75995 6.05449 8.4872 7.8763 ] pdfxs + (o) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (H) show + (euris) + [4.8436 6.0654 4.2654 3.0327 4.30902 ] pdfxs + (t) show + (ics............................) + [3.02179 4.85451 9.29443 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (138) show + 25.091 -336.09 m + (6) show + (.) + [3.0327 ] pdfxs + (2) show + (.3Experienceswi) + [3.0327 17.9344 7.42902 5.74904 6.37085 4.8436 4.27631 3.0327 4.8436 6.0654 4.8436 + 4.8436 7.94172 7.88721 3.02179 ] pdfxs + (t) show + (h) + [9.6981 ] pdfxs + (N) show + (odeC) + [5.75995 6.05449 8.4872 7.8763 ] pdfxs + (o) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n........................) + [10.6581 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 7.70175 ] pdfxs + (139) show + 0 -349.639 m + (6) show + (.3Po) + [3.0327 16.6035 7.12357 5.75995 ] pdfxs + (o) show + (l) + [6.6654 ] pdfxs + (A) show + (lloc) + [3.02179 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (a) show + (ndOp) + [6.0654 9.6981 8.47629 6.0654 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nPerf) + [9.6981 7.11266 4.85451 4.27631 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nce) + [6.0654 4.8436 8.4872 ] pdfxs + (R) show + (esul) + [4.85451 4.29811 6.0654 3.02179 ] pdfxs + (t) show + (s.................) + [7.36354 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (141) show + 25.091 -363.188 m + (6) show + (.) + [3.0327 ] pdfxs + (3) show + (.1) + [3.0327 17.9344 ] pdfxs + (I) show + (mplemen) + [9.08711 6.0654 3.0327 4.8436 9.09802 4.8436 5.75995 ] pdfxs + (tat) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (a) show + (ndEv) + [6.0654 9.6981 7.41812 5.15995 ] pdfxs + (a) show + (lu) + [3.02179 6.0654 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nFr) + [9.68719 6.21813 4.27631 ] pdfxs + (a) show + (mew) + [9.08711 4.8436 7.58175 ] pdfxs + (o) show + (rk...................) + [4.27631 12.6544 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (142) show + 25.091 -376.737 m + (6) show + (.) + [3.0327 ] pdfxs + (3) show + (.2) + [3.0327 17.9344 ] pdfxs + (N) show + (umber) + [6.0654 8.78166 6.35994 4.85451 7.909 ] pdfxs + (o) show + (fPo) + [6.97085 7.12357 5.74904 ] pdfxs + (o) show + (lOp) + [6.6763 8.47629 6.0654 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nOpp) + [9.6981 8.47629 6.0654 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (t) show + (uni) + [6.05449 6.0654 3.0327 ] pdfxs + (t) show + (ies..................) + [3.0327 4.8436 14.9344 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (142) show + 25.091 -390.286 m + (6) show + (.) + [3.0327 ] pdfxs + (3) show + (.3Perf) + [3.0327 17.9344 7.12357 4.8436 4.27631 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nceB) + [6.0654 4.8436 8.4872 7.7344 ] pdfxs + (a) show + (seline,) + [4.29811 4.85451 3.02179 3.0327 6.0654 4.8436 6.6654 ] pdfxs + (A) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (ato) show + (r) + [7.909 ] pdfxs + (I) show + (n\ruence,) + [6.0654 6.05449 6.0654 4.8436 6.0654 4.8436 4.85451 6.6654 ] pdfxs + (a) show + (ndOverhe) + [6.05449 9.6981 8.4872 5.4545 4.8436 4.27631 6.0654 4.8436 ] pdfxs + (a) show + (d...........) + [15.5671 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 7.70175 ] pdfxs + (143) show + 25.091 -403.836 m + (6) show + (.) + [3.0327 ] pdfxs + (3) show + (.4) + [3.0327 17.9344 ] pdfxs + (Agg) show + (re) + [4.27631 4.8436 ] pdfxs + (gat) show + (ePerf) + [8.4872 7.12357 4.8436 4.27631 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nceE\013ect) + [6.0654 4.8436 8.4872 7.42902 6.35986 4.8436 4.85451 7.87638 ] pdfxs + (o) show + (fPo) + [6.97085 7.12357 5.75995 ] pdfxs + (o) show + (l) + [6.6654 ] pdfxs + (A) show + (llocati) + [3.02179 3.0327 5.75995 4.8436 5.46541 4.23277 3.0327 ] pdfxs + (o) show + (n&Optimiz) + [9.6981 12.1199 8.4872 6.0654 4.23277 3.0327 9.09802 3.02179 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (ns......) + [6.0654 13.3853 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (144) show + 25.091 -417.385 m + (6) show + (.) + [3.0327 ] pdfxs + (3) show + (.5Perf) + [3.0327 17.9344 7.12357 4.8436 4.27631 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nceC) + [6.0654 4.8436 8.4872 7.88721 ] pdfxs + (o) show + (n) + [5.74904 ] pdfxs + (t) show + (ribu) + [4.27631 3.0327 6.05449 6.0654 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (I) show + (ndividu) + [6.0654 6.05449 3.0327 5.75995 3.0327 6.05449 6.0654 ] pdfxs + (a) show + (lPo) + [6.6654 7.12357 5.75995 ] pdfxs + (o) show + (lOp) + [6.6654 8.4872 6.05449 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns..........) + [6.0654 10.1999 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 7.70175 ] pdfxs + (145) show + 25.091 -430.934 m + (6) show + (.) + [3.0327 ] pdfxs + (3) show + (.6C) + [3.0327 17.9344 7.8763 ] pdfxs + (a) show + (che) + [4.54905 6.05449 8.4872 ] pdfxs + (a) show + (ndT) + [6.0654 9.6981 7.8763 ] pdfxs + (L) show + (B) + [11.3671 ] pdfxs + (I) show + (mp) + [9.08711 6.0654 ] pdfxs + (a) show + (ct) + [4.8436 7.87638 ] pdfxs + (o) show + (fPo) + [6.97085 7.12357 5.75995 ] pdfxs + (o) show + (l) + [6.6654 ] pdfxs + (A) show + (lloc) + [3.0327 3.02179 5.75995 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n....................) + [8.93447 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (148) show + 25.091 -444.483 m + (6) show + (.) + [3.0327 ] pdfxs + (3) show + (.7) + [3.0327 17.9344 ] pdfxs + (A) show + (ccessP) + [4.8436 4.85451 4.8436 4.30902 7.94172 7.11266 ] pdfxs + (att) show + (ern) + [4.85451 4.2654 9.6981 ] pdfxs + (a) show + (nd) + [6.0654 9.6981 ] pdfxs + (L) show + (oc) + [5.74904 4.85451 ] pdfxs + (a) show + (lityCh) + [3.0327 3.02179 3.94914 9.39264 7.8763 6.05449 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (es......................) + [4.8436 15.3053 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 7.70175 ] pdfxs + (149) show + 0 -458.032 m + (6) show + (.4) + [3.0327 16.6035 ] pdfxs + (R) show + (ese) + [4.85451 4.29811 4.8436 ] pdfxs + (a) show + (rchC) + [4.27631 4.54905 9.6981 7.8763 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (ribu) + [4.2654 3.0327 6.0654 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 7.94172 ] pdfxs + (o) show + (fPo) + [6.97085 7.12357 5.75995 ] pdfxs + (o) show + (l) + [6.6654 ] pdfxs + (A) show + (lloc) + [3.0327 3.02179 5.75995 4.85451 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (nOptimiz) + [9.6981 8.4872 6.0654 4.23277 3.0327 9.09802 3.02179 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (ns...............) + [6.0654 15.0217 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (156) show + -16.364 -482.491 m + (Ch) + [7.8763 6.0654 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (er7Tr) + [4.85451 7.909 16.3635 6.97085 4.2654 ] pdfxs + (a) show + (nsp) + [6.0654 4.29811 6.0654 ] pdfxs + (a) show + (rentP) + [4.27631 4.8436 5.75995 7.87638 7.12357 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (erC) + [4.85451 7.909 7.8763 ] pdfxs + (o) show + (mpressi) + [9.08711 6.0654 4.2654 4.85451 4.29811 4.30902 3.0327 ] pdfxs + (o) show + (n...........................) + [10.1126 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (157) show + 0 -496.04 m + (7) show + (.1St) + [3.0327 16.6035 6.0654 4.23277 ] pdfxs + (at) show + (icP) + [3.0327 8.4872 7.12357 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (erC) + [4.85451 7.909 7.8763 ] pdfxs + (o) show + (mpressi) + [9.08711 6.0654 4.2654 4.85451 4.29811 4.30902 3.0327 ] pdfxs + (o) show + (n................................) + [14.869 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 + ] pdfxs + (159) show + 25.091 -509.589 m + (7) show + (.) + [3.0327 ] pdfxs + (1) show + (.1P) + [3.0327 17.9344 7.12357 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (erC) + [4.85451 7.909 7.8763 ] pdfxs + (o) show + (mpressi) + [9.08711 6.0654 4.27631 4.8436 4.29811 4.30902 3.0327 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (R) show + (un) + [6.05449 5.75995 ] pdfxs + (t) show + (ime) + [3.0327 9.08711 8.4872 ] pdfxs + (L) show + (ibr) + [3.0327 6.05449 4.27631 ] pdfxs + (a) show + (ry......................) + [4.2654 12.0326 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 7.70175 ] pdfxs + (161) show + 25.091 -523.138 m + (7) show + (.) + [3.0327 ] pdfxs + (1) show + (.2) + [3.0327 17.9344 ] pdfxs + (I) show + (n) + [5.75995 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (procedur) + [6.0654 4.27631 5.74904 4.85451 4.8436 6.0654 6.0654 4.2654 ] pdfxs + (a) show + (lP) + [6.6654 7.12357 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (erC) + [4.8436 7.909 7.8763 ] pdfxs + (o) show + (mpressi) + [9.09802 6.05449 4.27631 4.8436 4.30902 4.29811 3.0327 ] pdfxs + (o) show + (n.......................) + [9.87264 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 7.70175 ] pdfxs + (162) show + 25.091 -536.687 m + (7) show + (.) + [3.0327 ] pdfxs + (1) show + (.3) + [3.0327 17.9344 ] pdfxs + (I) show + (n) + [5.75995 ] pdfxs + (t) show + (erprocedur) + [4.8436 4.27631 6.05449 4.27631 5.75995 4.8436 4.85451 6.05449 6.0654 4.27631 ] pdfxs + (a) show + (lP) + [6.6654 7.12357 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (erC) + [4.8436 7.909 7.88721 ] pdfxs + (o) show + (mpressi) + [9.08711 6.0654 4.2654 4.85451 4.29811 4.30902 3.02179 ] pdfxs + (o) show + (n.......................) + [10.4835 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 7.70175 ] pdfxs + (165) show + 25.091 -550.237 m + (7) show + (.) + [3.0327 ] pdfxs + (1) show + (.4MinimizingPo) + [3.0327 17.9344 10.0036 3.02179 6.0654 3.0327 9.08711 3.0327 4.8436 3.0327 6.0654 + 9.08719 7.12357 5.75995 ] pdfxs + (o) show + (lSize) + [6.6654 6.05449 3.0327 4.85451 8.47629 ] pdfxs + (V) show + (i) + [3.0327 ] pdfxs + (o) show + (l) + [3.0327 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nswi) + [6.05449 7.94172 7.8763 3.0327 ] pdfxs + (t) show + (hS) + [9.6981 6.05449 ] pdfxs + (tat) show + (icC) + [3.0327 8.4872 7.8763 ] pdfxs + (o) show + (mpressi) + [9.08711 6.0654 4.2654 4.85451 4.29811 4.30902 3.0327 ] pdfxs + (o) show + (n...........) + [15.0762 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 7.70175 ] pdfxs + (166) show + 0 -563.786 m + (7) show + (.2) + [3.0327 16.6035 ] pdfxs + (D) show + (yn) + [5.75995 6.05449 ] pdfxs + (a) show + (micP) + [9.09802 3.02179 8.4872 7.12357 ] pdfxs + (o) show + (interC) + [3.0327 5.75995 4.23277 4.85451 7.909 7.8763 ] pdfxs + (o) show + (mpressi) + [9.08711 6.0654 4.27631 4.8436 4.30902 4.29811 3.0327 ] pdfxs + (o) show + (n..............................) + [17.1489 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (167) show + 25.091 -577.335 m + (7) show + (.) + [3.0327 ] pdfxs + (2) show + (.1) + [3.0327 17.9344 ] pdfxs + (I) show + (n) + [5.75995 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (procedur) + [6.0654 4.27631 5.74904 4.85451 4.8436 6.0654 6.0654 4.2654 ] pdfxs + (a) show + (l) + [6.6654 ] pdfxs + (D) show + (yn) + [5.75995 6.0654 ] pdfxs + (a) show + (micC) + [9.08711 3.0327 8.47629 7.88721 ] pdfxs + (o) show + (mpressi) + [9.08711 6.0654 4.2654 4.85451 4.29811 4.30902 3.02179 ] pdfxs + (o) show + (n......................) + [10.5163 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 7.70175 ] pdfxs + (167) show + 25.091 -590.884 m + (7) show + (.) + [3.0327 ] pdfxs + (2) show + (.2) + [3.0327 17.9344 ] pdfxs + (D) show + (yn) + [5.75995 6.05449 ] pdfxs + (a) show + (micC) + [9.09802 3.02179 8.4872 7.8763 ] pdfxs + (o) show + (mpressi) + [9.09802 6.05449 4.27631 4.8436 4.30902 4.29811 3.0327 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (R) show + (un) + [6.0654 5.74904 ] pdfxs + (t) show + (ime) + [3.0327 9.08711 8.4872 ] pdfxs + (L) show + (ibr) + [3.0327 6.0654 4.2654 ] pdfxs + (a) show + (ry.....................) + [4.27631 12.6653 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 7.70175 ] pdfxs + (169) show + 25.091 -604.433 m + (7) show + (.) + [3.0327 ] pdfxs + (2) show + (.3) + [3.0327 17.9344 ] pdfxs + (I) show + (n) + [5.75995 ] pdfxs + (t) show + (erprocedur) + [4.8436 4.27631 6.05449 4.27631 5.75995 4.8436 4.85451 6.05449 6.0654 4.27631 ] pdfxs + (a) show + (l) + [6.6654 ] pdfxs + (D) show + (yn) + [5.74904 6.0654 ] pdfxs + (a) show + (micC) + [9.08711 3.0327 8.4872 7.8763 ] pdfxs + (o) show + (mpressi) + [9.08711 6.0654 4.27631 4.8436 4.30902 4.29811 3.0327 ] pdfxs + (o) show + (n......................) + [11.1163 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 7.70175 ] pdfxs + (171) show + 0 -617.983 m + (7) show + (.3Op) + [3.0327 16.6035 8.4872 6.05449 ] pdfxs + (t) show + (imizingP) + [3.0327 9.08711 3.0327 4.85451 3.02179 6.0654 9.08719 7.12357 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (erC) + [4.8436 7.909 7.8763 ] pdfxs + (o) show + (mpressedCode..........................) + [9.09802 6.05449 4.27631 4.8436 4.30902 4.29811 4.85451 9.68719 7.88721 5.74904 6.0654 + 14.5744 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (172) show + 213.242 -657.201 m + (ix) + [3.0327 5.75995 ] pdfxs + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + 1 0 0 1 72 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + ([) + [3.0327 ] pdfxs + (117) show + (]Mo) + [8.4872 9.99272 5.75995 ] pdfxs + (o) show + (lyS) + [3.0327 10.9417 6.0654 ] pdfxs + (ag) show + (iv,Th) + [3.0327 5.75995 8.6072 7.8763 6.0654 ] pdfxs + (o) show + (m) + [9.08711 ] pdfxs + (a) show + (s) + [9.4908 ] pdfxs + (R) show + (eps,) + [4.85451 6.05449 4.30902 8.6072 ] pdfxs + (a) show + (nd) + [6.0654 11.2472 ] pdfxs + (R) show + (einh) + [4.85451 3.0327 6.05449 6.0654 ] pdfxs + (a) show + (rdWilhelm.S) + [4.2654 11.2581 11.2144 3.02179 3.0327 6.0654 4.8436 3.0327 9.08711 12.5017 6.0654 + ] pdfxs + (o) show + (lvingsh) + [3.02179 5.75995 3.0327 6.0654 10.6363 4.30902 6.05449 ] pdfxs + (a) show + (pe-) + [6.37085 4.8436 3.64352 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysispr) + [3.0327 5.75995 4.29811 3.0327 9.4908 6.0654 4.27631 ] pdfxs + (o) show + (blemsin) + [6.05449 3.0327 4.8436 9.09802 9.4908 3.0327 6.0654 ] pdfxs + 27.879 -21.922 m + (l) + [3.0327 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (eswi) + [4.8436 9.06535 7.8763 3.0327 ] pdfxs + (t) show + (hdes) + [10.8108 6.0654 4.8436 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (iveupd) + [3.0327 5.4545 9.61083 6.05449 6.37085 6.05449 ] pdfxs + (at) show + (in) + [3.0327 6.05449 ] pdfxs + (g) show + (.) show + 215.629 -21.922 m + /N634 10.909 Tf + (ACMTr) + [7.83262 7.79997 14.7163 6.97089 4.04721 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (sac) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (nsonPro) + [6.13082 9.39261 5.58542 11.0617 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (rammingLan) + [4.0363 5.58542 8.91258 8.92348 3.34914 6.13082 9.94908 6.28357 5.58542 6.13082 ] pdfxs + (g) show + (ua) + [5.84725 5.58542 ] pdfxs + (ge) show + (s) + [9.39261 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (d) show + 27.879 -43.845 m + (Sy) + [6.13082 5.30169 ] pdfxs + (s) show + (t) + [3.62179 ] pdfxs + (e) show + (ms) + [8.92348 8.35625 ] pdfxs + (\() show + (TOPLAS) + [7.81088 8.35627 7.40714 6.83993 8.10534 6.14173 ] pdfxs + (\)) show + 123.272 -43.845 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (20\(1\)) show + (,) + [6.6654 ] pdfxs + (Ja) show + (nu) + [5.75995 6.05449 ] pdfxs + (a) show + (ry) + [4.27631 9.39264 ] pdfxs + (1998) show + (.) show + 0 -74.734 m + ([) + [3.0327 ] pdfxs + (118) show + (]) + [8.4872 ] pdfxs + (Ro) show + (bertSed) + [6.35994 4.8436 4.27631 7.87638 6.0654 4.8436 6.0654 ] pdfxs + (g) show + (ewick.) + [4.8436 7.88721 3.02179 4.54905 5.75995 3.0327 ] pdfxs + 121.079 -74.734 m + /N634 10.909 Tf + (Al) + [7.83262 2.78176 ] pdfxs + (go) show + (rit) + [4.60356 3.34914 3.62179 ] pdfxs + (h) show + (m) + [8.92348 ] pdfxs + (s) show + 172.818 -74.734 m + /N614 10.909 Tf + (.) + [7.86538 ] pdfxs + (A) show + (ddis) + [6.0654 6.05449 3.0327 4.29811 ] pdfxs + (o) show + (n-Wesley,) + [6.0654 3.63261 10.309 4.8436 4.30902 3.02179 4.85451 4.84359 6.6763 ] pdfxs + (I) show + (nc.,) + [6.05449 4.85451 3.02179 6.6763 ] pdfxs + (R) show + (e) + [4.8436 ] pdfxs + (a) show + (din) + [6.0654 3.02179 6.0654 ] pdfxs + (g) show + (,M) + [6.6654 10.0036 ] pdfxs + (A) show + (,) + [6.6654 ] pdfxs + (1988) show + (.) show + 0 -105.623 m + ([) + [3.0327 ] pdfxs + (119) show + (]M) + [8.4872 9.99272 ] pdfxs + (att) show + (hew) + [6.0654 4.8436 12.4799 ] pdfxs + (L) show + (.Seidl) + [7.6363 6.05449 4.85451 3.02179 6.0654 7.62539 ] pdfxs + (a) show + (ndBenj) + [6.0654 10.6581 7.7344 4.8436 6.0654 3.32724 ] pdfxs + (a) show + (minG.) + [9.09802 3.02179 10.669 8.55269 7.6363 ] pdfxs + (Zo) show + (rn.Se) + [4.27631 6.05449 10.7454 6.05449 4.85451 ] pdfxs + (g) show + (re) + [4.2654 4.85451 ] pdfxs + (gat) show + (inghe) + [3.0327 6.05449 10.0581 6.05449 4.85451 ] pdfxs + (a) show + (p) + [10.6581 ] pdfxs + (o) show + (bjec) + [6.66539 3.33815 4.8436 4.85451 ] pdfxs + (t) show + (sbyreferencebehavi) + [8.90171 5.75995 10.3526 4.27631 4.8436 3.33815 4.8436 4.27631 4.8436 6.0654 4.8436 + 9.4581 6.35994 4.8436 6.0654 5.14905 5.75995 3.0327 ] pdfxs + (o) show + (r) show + 27.879 -127.545 m + (a) show + (ndlife) + [6.0654 10.9854 3.02179 3.0327 3.33815 4.8436 ] pdfxs + (t) show + (ime.) + [3.0327 9.08711 4.85451 11.7054 ] pdfxs + (I) show + (n) show + 112.472 -127.545 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.54533 ] pdfxs + (o) show + (ft) + [8.43273 3.6327 ] pdfxs + (h) show + (eInt) + [10.1018 4.21089 6.13082 3.62179 ] pdfxs + (e) show + (rn) + [4.60356 6.13082 ] pdfxs + (a) show + (ti) + [3.6327 3.33823 ] pdfxs + (o) show + (n) + [6.14173 ] pdfxs + (a) show + (lC) + [7.87626 7.79997 ] pdfxs + (o) show + (nf) + [6.14173 3.33823 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 10.1127 ] pdfxs + (o) show + (nAr) + [11.2144 7.83262 4.04721 ] pdfxs + (ch) show + (ite) + [3.34914 3.62179 4.46185 ] pdfxs + (c) show + (tur) + [3.62179 5.85816 4.0363 ] pdfxs + (a) show + (lSu) + [7.87626 6.14173 5.84725 ] pdfxs + (p) show + (p) + [5.01816 ] pdfxs + (o) show + (rtf) + [4.60356 8.7163 3.34914 ] pdfxs + (o) show + (r) show + 27.879 -149.468 m + (Pro) + [7.39623 4.04721 5.01816 ] pdfxs + (g) show + (rammingLan) + [4.0363 5.58542 8.91258 8.92348 3.34914 6.13082 9.92726 6.28357 5.58542 6.13082 ] pdfxs + (g) show + (ua) + [5.84725 5.58542 ] pdfxs + (ge) show + (s) + [9.37079 ] pdfxs + (a) show + (ndOp) + [6.13082 10.4836 8.36718 5.01816 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (a) show + (tingSy) + [3.62179 3.34914 6.13082 9.92726 6.13082 5.30169 ] pdfxs + (s) show + (t) + [3.62179 ] pdfxs + (e) show + (ms) + [8.92348 9.37079 ] pdfxs + (\() show + (ASPLOS) + [8.10534 6.13082 7.40714 6.83993 8.36718 6.13082 ] pdfxs + (\)) show + 318.057 -149.468 m + /N614 10.909 Tf + (,p) + [7.7672 6.05449 ] pdfxs + (ag) show + (es) + [4.85451 9.03262 ] pdfxs + (12{23) show + (,S) + [8.03993 6.05449 ] pdfxs + (a) show + (n) + [10.7999 ] pdfxs + (Jo) show + (se,) + [4.29811 4.85451 8.03993 ] pdfxs + (U) show + (S) + [6.05449 ] pdfxs + (A) show + (,) show + 27.879 -171.39 m + (1998) show + (.) show + 0 -202.279 m + ([) + [3.0327 ] pdfxs + (120) show + (]) + [8.4872 ] pdfxs + (L) show + (uiSh) + [6.05449 5.65086 6.05449 6.0654 ] pdfxs + (a) show + (.) + [6.19631 ] pdfxs + (D) show + (epend) + [4.85451 6.35994 4.8436 6.0654 6.05449 ] pdfxs + (a) show + (blesystemup) + [6.0654 3.0327 7.46176 4.29811 5.75995 4.30902 4.23277 4.85451 11.7053 6.05449 6.0654 + ] pdfxs + (g) show + (r) + [4.27631 ] pdfxs + (a) show + (des.) + [6.05449 4.85451 4.29811 6.20722 ] pdfxs + (I) show + (n) show + 225.194 -202.279 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [7.41808 ] pdfxs + (o) show + (fIEEERe) + [6.30547 4.21089 7.39623 7.40714 10.3635 7.39634 4.46185 ] pdfxs + (a) show + (lTimeSy) + [5.74901 7.81088 3.33823 8.92348 7.98546 6.13082 5.29078 ] pdfxs + (s) show + (t) + [3.6327 ] pdfxs + (e) show + (mSymposium) + [11.8798 6.13082 5.30169 8.91258 5.01816 5.58542 4.45083 3.34914 5.85816 8.92348 ] pdfxs + 464.97 -202.279 m + /N614 10.909 Tf + (,) show + 27.879 -224.202 m + (1998) show + (.) show + -3.05176e-05 -255.091 m + ([) + [3.0327 ] pdfxs + (121) show + (]) + [8.4872 ] pdfxs + (H) show + (ovavSh) + [5.14905 5.14904 5.14905 11.029 6.0654 6.05449 ] pdfxs + (a) show + (ch) + [4.54905 6.0654 ] pdfxs + (a) show + (m,M) + [9.08711 8.70538 10.0036 ] pdfxs + (att) show + (hewP) + [6.05449 4.85451 13.1453 7.12357 ] pdfxs + (ag) show + (e,BenPf) + [4.8436 8.71629 7.72349 4.8436 11.3344 7.42902 3.32724 ] pdfxs + (a) show + (\013,Eu-) + [6.35986 8.71629 7.41812 6.0654 3.63261 ] pdfxs + (J) show + (inG) + [3.0327 11.3344 8.55269 ] pdfxs + (o) show + (h,) + [6.0654 8.70538 ] pdfxs + (Nag) show + (endraMod) + [4.85451 6.05449 6.0654 4.2654 10.7345 9.99272 5.75995 6.0654 ] pdfxs + (a) show + (du) + [6.05449 6.0654 ] pdfxs + (g) show + (u,) + [6.05449 8.71629 ] pdfxs + (a) show + (nd) + [6.05449 11.3344 ] pdfxs + (Da) show + (n) show + 27.879 -277.013 m + (B) + [7.72349 ] pdfxs + (o) show + (neh.On) + [6.0654 4.8436 6.0654 6.80721 8.4872 9.05446 ] pdfxs + (t) show + (hee\013ec) + [6.05449 7.83266 4.85451 6.35986 4.85451 4.8436 ] pdfxs + (t) show + (iveness) + [3.0327 5.4545 4.8436 6.0654 4.8436 4.30902 7.28718 ] pdfxs + (o) show + (f) + [6.32722 ] pdfxs + (a) show + (ddress-sp) + [6.05449 6.0654 4.27631 4.8436 4.29811 4.30902 3.63261 4.30902 6.05449 ] pdfxs + (a) show + (cer) + [4.85451 7.83266 4.27631 ] pdfxs + (a) show + (nd) + [6.05449 6.0654 ] pdfxs + (o) show + (miz) + [9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n.) + [6.0654 6.80721 ] pdfxs + (I) show + (n) show + 329.041 -277.013 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (sACMC) + [7.76717 7.82171 7.81088 13.0908 7.79997 ] pdfxs + (o) show + (nf) + [6.14173 3.33823 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nc) + [6.13082 4.46185 ] pdfxs + (e) show + 27.879 -298.936 m + (o) show + (nC) + [10.0362 7.81088 ] pdfxs + (o) show + (m) + [8.92348 ] pdfxs + (p) show + (ut) + [5.84725 3.6327 ] pdfxs + (e) show + (r) + [8.49808 ] pdfxs + (a) show + (ndC) + [6.13082 9.47994 7.81088 ] pdfxs + (o) show + (mmunic) + [8.92348 8.91258 5.85816 6.13082 3.34914 4.46185 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (nsSe) + [6.13082 8.36716 6.13082 4.46185 ] pdfxs + (c) show + (urity\(CCS') + [5.85816 4.59266 3.34914 3.62179 9.20711 4.45083 7.81088 7.81088 10.0362 3.33823 ] pdfxs + (04\)) show + 290.495 -298.936 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (298{307) show + (,) + [6.6654 ] pdfxs + (2004) show + (.) show + -3.05176e-05 -329.825 m + ([) + [3.0327 ] pdfxs + (122) show + (]) + [8.4872 ] pdfxs + (Ra) show + (nSh) + [9.20719 6.0654 6.05449 ] pdfxs + (a) show + (h) + [6.0654 ] pdfxs + (a) show + (m,Er) + [9.08711 6.28358 7.41812 4.27631 ] pdfxs + (a) show + (nY) + [9.20719 7.2763 ] pdfxs + (a) show + (hav,Elli) + [6.0654 5.14905 5.75995 6.27267 7.42902 3.02179 3.0327 3.0327 ] pdfxs + (o) show + (tK.K) + [7.39638 8.4872 6.17449 8.4872 ] pdfxs + (o) show + (lodner,) + [3.0327 5.75995 6.05449 6.0654 4.8436 4.27631 6.27267 ] pdfxs + (a) show + (ndMo) + [6.0654 9.20719 10.0036 5.75995 ] pdfxs + (o) show + (lyS) + [3.0327 8.90174 6.0654 ] pdfxs + (ag) show + (iv.Es) + [3.0327 5.74904 7.07994 7.42902 4.29811 ] pdfxs + (ta) show + (blishingloc) + [6.05449 3.0327 3.0327 4.29811 6.0654 3.0327 6.05449 8.6072 3.0327 5.75995 4.8436 + ] pdfxs + (a) show + (l) + [6.1854 ] pdfxs + (t) show + (emp) + [4.8436 9.09802 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (a) show + (l) show + 27.879 -351.747 m + (he) + [6.0654 4.8436 ] pdfxs + (a) show + (ps) + [8.70538 4.29811 ] pdfxs + (a) show + (fetypr) + [3.33815 4.8436 3.93823 8.39993 6.0654 4.2654 ] pdfxs + (o) show + (per) + [6.37085 4.8436 4.27631 ] pdfxs + (t) show + (ieswith) + [3.0327 4.8436 6.949 7.8763 3.0327 4.23277 8.70538 ] pdfxs + (a) show + (pplic) + [6.0654 6.05449 3.0327 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.0654 6.93809 ] pdfxs + (t) show + (oc) + [8.09448 4.85451 ] pdfxs + (o) show + (mpile-) + [9.08711 6.0654 3.02179 3.0327 4.85451 3.63261 ] pdfxs + (t) show + (imemem) + [3.0327 9.08711 7.48357 9.09802 4.8436 9.09802 ] pdfxs + (o) show + (rym) + [4.2654 8.39993 9.09802 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (ag) show + (emen) + [4.85451 9.08711 4.8436 5.75995 ] pdfxs + (t) show + (.In) + [6.23994 3.94897 6.0654 ] pdfxs + 413.625 -351.747 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (gs) show + 27.879 -373.67 m + (o) show + (ft) + [7.25456 3.62179 ] pdfxs + (h) show + (eInt) + [8.92363 4.19998 6.13082 3.6327 ] pdfxs + (e) show + (rn) + [4.59266 6.14173 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (a) show + (lSymp) + [6.68718 6.14173 5.29078 8.92348 5.01816 ] pdfxs + (os) show + (ium) + [3.34914 5.84725 12.8289 ] pdfxs + (o) show + (nSt) + [10.0362 6.13082 3.62179 ] pdfxs + (a) show + (ticAn) + [3.6327 3.33823 8.92363 7.83262 6.13082 ] pdfxs + (a) show + (ly) + [2.79267 5.29078 ] pdfxs + (s) show + (is\(SAS) + [3.34914 8.36716 4.45083 6.14173 8.10534 6.13082 ] pdfxs + (\)) show + 302.416 -373.67 m + /N614 10.909 Tf + (,S) + [6.6654 6.0654 ] pdfxs + (a) show + (n) + [9.6981 ] pdfxs + (D) show + (ie) + [3.02179 4.85451 ] pdfxs + (go) show + (,) + [6.6654 ] pdfxs + (U) show + (S) + [6.05449 ] pdfxs + (A) show + (,June) + [6.6763 5.5964 6.0654 6.0654 8.47629 ] pdfxs + (2003) show + (.) show + -3.05176e-05 -404.559 m + ([) + [3.0327 ] pdfxs + (123) show + (]) + [8.4872 ] pdfxs + (Z) show + (h) + [6.05449 ] pdfxs + (o) show + (ngSh) + [6.0654 9.99264 6.0654 6.05449 ] pdfxs + (ao) show + (,Chris) + [7.79993 7.88721 6.05449 4.27631 3.0327 4.29811 ] pdfxs + (to) show + (pher) + [6.0654 6.05449 4.85451 8.81445 ] pdfxs + (L) show + (e) + [4.8436 ] pdfxs + (ag) show + (ue,) + [6.0654 4.8436 7.79993 ] pdfxs + (a) show + (ndS) + [6.0654 10.6035 6.05449 ] pdfxs + (t) show + (ef) + [4.85451 3.32724 ] pdfxs + (a) show + (nM) + [10.6035 10.0036 ] pdfxs + (o) show + (nnier.Implemen) + [6.05449 6.0654 3.0327 4.8436 4.27631 10.5599 3.94897 9.08711 6.05449 3.0327 4.85451 + 9.08711 4.8436 5.75995 ] pdfxs + (t) show + (ingTyped) + [3.0327 6.0654 9.99264 7.57085 5.75995 6.37085 4.8436 10.6035 ] pdfxs + (I) show + (n) + [5.75995 ] pdfxs + (t) show + (ermedi) + [4.8436 4.27631 9.08711 4.85451 6.05449 3.0327 ] pdfxs + (at) show + (e) show + 27.879 -426.481 m + (La) show + (n) + [6.0654 ] pdfxs + (g) show + (u) + [6.05449 ] pdfxs + (ag) show + (es.) + [4.85451 4.29811 10.069 ] pdfxs + (I) show + (n) show + 102.235 -426.481 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.04352 ] pdfxs + (o) show + (ft) + [7.93091 3.62179 ] pdfxs + (h) show + (eACMSIGPLANInt) + [9.59999 7.83262 7.79997 14.3672 6.13082 4.21089 8.44359 7.39623 6.83993 8.10534 12.698 + 4.19998 6.14173 3.62179 ] pdfxs + (e) show + (rn) + [4.60356 6.13082 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (a) show + (lConf) + [7.37445 7.79997 5.58542 6.13082 3.33823 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 9.59999 ] pdfxs + (o) show + (nFun) + [10.7235 6.28358 5.85816 6.13082 ] pdfxs + (c) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (a) show + (l) show + 27.879 -448.404 m + (Pro) + [7.39623 4.04721 5.01816 ] pdfxs + (g) show + (rammin) + [4.0363 5.58542 8.91258 8.92348 3.34914 6.13082 ] pdfxs + (g) show + 91.315 -448.404 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (313{323) show + (,) + [6.6654 ] pdfxs + (1998) show + (.) show + -3.05176e-05 -479.293 m + ([) + [3.0327 ] pdfxs + (124) show + (]) + [8.4872 ] pdfxs + (A) show + (n) + [6.05449 ] pdfxs + (a) show + (ndShukl) + [6.0654 11.4654 6.0654 5.75995 6.05449 5.75995 3.0327 ] pdfxs + (a) show + (.) + [13.1453 ] pdfxs + (L) show + (i) + [3.0327 ] pdfxs + (g) show + (htwei) + [5.75995 3.93823 7.58175 4.8436 3.0327 ] pdfxs + (g) show + (ht,cr) + [5.75995 4.23277 8.89083 4.8436 4.27631 ] pdfxs + (o) show + (ss-procedure) + [4.29811 4.30902 3.63261 6.0654 4.2654 5.75995 4.85451 4.8436 6.0654 6.05449 4.27631 + 10.2545 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (cingf) + [4.8436 3.0327 6.0654 10.8654 3.32724 ] pdfxs + (o) show + (rrun) + [9.68717 4.2654 6.0654 5.75995 ] pdfxs + (t) show + (ime) + [3.02179 9.09802 10.2545 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imiz) + [3.02179 9.09802 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n.M) + [6.05449 13.1562 10.0036 ] pdfxs + (a) show + (s) + [4.29811 ] pdfxs + (t) show + (er's) + [4.8436 4.27631 3.0327 4.29811 ] pdfxs + 27.879 -501.215 m + (t) show + (hesis,C) + [6.05449 4.85451 4.29811 3.0327 4.30902 6.3054 7.8763 ] pdfxs + (o) show + (mputerScience) + [9.08711 6.0654 6.0654 4.23277 4.85451 7.46173 6.05449 4.85451 3.0327 4.8436 6.0654 + 4.8436 8.03993 ] pdfxs + (D) show + (ep) + [4.8436 6.0654 ] pdfxs + (ta) show + (r) + [4.2654 ] pdfxs + (t) show + (men) + [9.09802 4.8436 5.75995 ] pdfxs + (t) show + (,) + [6.3054 ] pdfxs + (U) show + (niversity) + [6.0654 3.02179 5.4545 4.85451 4.27631 4.29811 3.0327 3.93823 8.94538 ] pdfxs + (o) show + (f) + [6.52358 ] pdfxs + (I) show + (llin) + [3.0327 3.0327 3.02179 6.0654 ] pdfxs + (o) show + (is) + [3.0327 7.48354 ] pdfxs + (a) show + (t) + [7.44002 ] pdfxs + (U) show + (rb) + [4.2654 6.0654 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (-Ch) + [3.64352 7.8763 6.0654 ] pdfxs + (a) show + (mp) + [9.08711 6.0654 ] pdfxs + (a) show + (i) + [3.02179 ] pdfxs + (g) show + (n,) + [6.0654 6.3054 ] pdfxs + (U) show + (rb) + [4.27631 6.05449 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (,) show + 27.879 -523.138 m + (IL) show + (,) + [6.6654 ] pdfxs + (A) show + (ug) + [6.0654 9.08719 ] pdfxs + (2003) show + (.) show + -3.05176e-05 -554.027 m + ([) + [3.0327 ] pdfxs + (125) show + (]J) + [8.4872 5.5964 ] pdfxs + (a) show + (mesE.Smi) + [9.09802 4.8436 9.46898 7.42902 8.19265 6.0654 9.08711 3.0327 ] pdfxs + (t) show + (h,Tim) + [6.05449 8.58538 7.8763 3.0327 9.08711 ] pdfxs + (ot) show + (hy) + [5.75995 10.9199 ] pdfxs + (H) show + (eil,Subr) + [4.85451 3.0327 3.02179 8.58538 6.05449 6.0654 6.05449 4.27631 ] pdfxs + (a) show + (m) + [9.09802 ] pdfxs + (a) show + (nyaS) + [5.74904 5.4545 10.6254 6.05449 ] pdfxs + (a) show + (s) + [4.30902 ] pdfxs + (t) show + (ry,) + [4.27631 4.84359 8.57447 ] pdfxs + (a) show + (ndToddBezenek.) + [6.0654 11.2254 6.97085 5.75995 6.05449 11.2363 7.72349 4.8436 4.85451 4.8436 6.0654 + 4.8436 5.75995 12.4253 ] pdfxs + (A) show + (chievinghi) + [4.54905 6.05449 3.0327 4.85451 5.74904 3.0327 6.0654 10.6145 6.0654 3.0327 ] pdfxs + (g) show + (h) show + 27.879 -575.949 m + (perf) + [6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nceviac) + [6.0654 4.8436 8.33448 5.74904 3.0327 8.93447 4.85451 ] pdfxs + (o) show + (-desi) + [3.63261 6.0654 4.8436 4.29811 3.0327 ] pdfxs + (g) show + (nedvir) + [6.0654 4.8436 9.54537 5.75995 3.02179 4.27631 ] pdfxs + (t) show + (u) + [6.0654 ] pdfxs + (a) show + (lm) + [6.50176 9.09802 ] pdfxs + (a) show + (chines.) + [4.53815 6.0654 3.0327 6.05449 4.85451 4.29811 7.61448 ] pdfxs + (I) show + (n) show + 265.835 -575.949 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.21444 ] pdfxs + (o) show + (ft) + [7.11274 3.62179 ] pdfxs + (h) show + (eInt) + [8.78182 4.19998 6.13082 3.6327 ] pdfxs + (e) show + (rnation) + [4.59266 6.13082 5.58542 3.62179 3.33823 5.58542 6.13082 ] pdfxs + (a) show + (l) + [6.54536 ] pdfxs + (Wo) show + (r) + [4.60356 ] pdfxs + (kshop) show + 27.879 -597.872 m + (o) show + (nInn) + [10.0362 4.21089 6.13082 6.13082 ] pdfxs + (ova) show + (ti) + [3.6327 3.33823 ] pdfxs + (v) show + (eAr) + [8.92363 7.83262 4.0363 ] pdfxs + (ch) show + (ite) + [3.34914 3.62179 4.46185 ] pdfxs + (c) show + (ture) + [3.62179 5.85816 4.04721 8.91272 ] pdfxs + (\() show + (I) + [4.21089 ] pdfxs + (W) show + (IA) + [4.19998 8.11625 ] pdfxs + (\)) show + 194.738 -597.872 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (1999) show + (.) show + 225.818 -657.201 m + (209) show + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (8) 9 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 0.000000 0.000000 translate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + 1 0 0 1 99.879 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (f) + [3.33815 ] pdfxs + (o) show + (rp) + [9.8399 6.0654 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (a) show + (llelizingc) + [3.0327 3.0327 4.8436 3.0327 3.0327 4.8436 3.0327 6.0654 11.029 4.8436 ] pdfxs + (o) show + (mpilers.) + [9.08711 6.0654 3.0327 3.0327 4.8436 4.27631 4.29811 3.0327 ] pdfxs + 140.394 0 m + /N634 10.909 Tf + (ACMTran) + [7.83262 7.79997 15.469 6.97089 4.0363 5.58542 6.13082 ] pdfxs + (sac) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (ns) + [6.13082 10.1453 ] pdfxs + (o) show + (nPro) + [11.8253 7.39623 4.0363 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmingL) + [8.92348 8.92348 3.33823 6.14173 10.7018 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (age) show + (s) + [10.1453 ] pdfxs + (a) show + (ndSy) + [6.13082 11.269 6.13082 5.29078 ] pdfxs + (s) show + (t) + [3.6327 ] pdfxs + (e) show + (m) + [8.91258 ] pdfxs + (s) show + 0 -21.922 m + (\() show + (TOPLAS) + [7.79997 8.36718 7.39623 6.85084 8.10534 6.13082 ] pdfxs + (\)) show + 53.575 -21.922 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (19\(6\)) show + (:) + [3.0327 ] pdfxs + (942{991) show + (,) + [6.6654 ] pdfxs + (1997) show + (.) show + -27.879 -52.811 m + ([) + [3.0327 ] pdfxs + (109) show + (]) + [8.4872 ] pdfxs + (A) show + (nne) + [6.05449 6.0654 9.29447 ] pdfxs + (Rog) show + (ers,M) + [4.8436 4.27631 4.29811 7.67993 10.0036 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (t) show + (inC.C) + [3.0327 10.5054 7.8763 7.47266 7.88721 ] pdfxs + (a) show + (rlisle,) + [4.2654 3.0327 3.0327 4.29811 3.0327 4.8436 7.67993 ] pdfxs + (Jo) show + (hn) + [6.0654 10.5054 ] pdfxs + (H) show + (.) + [7.47266 ] pdfxs + (R) show + (eppy,) + [4.8436 6.0654 5.75995 4.84359 7.67993 ] pdfxs + (a) show + (nd) + [6.05449 10.5054 ] pdfxs + (La) show + (urie) + [6.0654 4.27631 3.02179 9.29447 ] pdfxs + (J) show + (.) + [7.47266 ] pdfxs + (H) show + (endren.Supp) + [4.85451 6.05449 6.0654 4.27631 4.8436 6.0654 10.2654 6.0654 6.05449 6.0654 6.35994 + ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (t) show + (ingdy-) + [3.0327 6.05449 9.90537 6.05449 5.75995 3.63261 ] pdfxs + 0 -74.734 m + (n) + [6.0654 ] pdfxs + (a) show + (micd) + [9.08711 3.0327 7.95266 6.05449 ] pdfxs + (at) show + (as) + [8.56356 4.29811 ] pdfxs + (t) show + (ructures) + [4.27631 6.05449 4.85451 4.23277 6.0654 4.27631 4.8436 7.40718 ] pdfxs + (o) show + (ndis) + [9.16356 6.0654 3.02179 4.30902 ] pdfxs + (t) show + (ribu) + [4.2654 3.0327 6.0654 6.05449 ] pdfxs + (t) show + (edmem) + [4.85451 9.16356 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (rym) + [4.27631 8.8581 9.08711 ] pdfxs + (a) show + (chines.) + [4.54905 6.05449 3.0327 6.0654 4.8436 4.30902 3.0327 ] pdfxs + 268.406 -74.734 m + /N634 10.909 Tf + (ACMTr) + [7.83262 7.79997 13.1999 6.97089 4.0363 ] pdfxs + (a) show + (nsa) + [6.14173 4.45083 5.58542 ] pdfxs + (c) show + (tionsonPro) + [3.62179 3.33823 5.58542 6.13082 7.86535 5.58542 9.54533 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.0363 ] pdfxs + (a) show + (mmin) + [8.92348 8.92348 3.33823 6.14173 ] pdfxs + (g) show + 0 -96.656 m + (L) + [6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (age) show + (s) + [8.36716 ] pdfxs + (a) show + (ndSy) + [6.13082 9.47994 6.13082 5.30169 ] pdfxs + (s) show + (t) + [3.62179 ] pdfxs + (e) show + (ms) + [8.92348 8.35625 ] pdfxs + (\() show + (TOPLAS) + [7.81088 8.36718 7.39623 6.83993 8.10534 6.14173 ] pdfxs + (\)) show + 169.423 -96.656 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (17\(2\)) show + (,M) + [6.6654 10.0036 ] pdfxs + (a) show + (rch) + [4.2654 4.54905 9.6981 ] pdfxs + (1995) show + (.) show + -27.879 -127.545 m + ([) + [3.0327 ] pdfxs + (110) show + (]Ted) + [8.4872 6.95994 4.85451 10.1672 ] pdfxs + (Ro) show + (mer,Ge) + [9.08711 4.85451 4.27631 7.25448 8.55269 4.85451 ] pdfxs + (o) show + (\013Voelker,) + [10.4726 7.26539 5.75995 4.85451 3.02179 5.4545 4.85451 4.27631 7.25448 ] pdfxs + (D) show + (enis) + [4.8436 6.0654 3.02179 8.41081 ] pdfxs + (L) show + (ee,) + [4.85451 4.8436 7.25448 ] pdfxs + (A) show + (lecW) + [3.0327 4.85451 8.95629 10.2981 ] pdfxs + (o) show + (lm) + [3.0327 9.08711 ] pdfxs + (a) show + (n,WayneW) + [6.0654 7.25448 10.2981 5.15996 5.74904 6.0654 8.95629 10.2981 ] pdfxs + (o) show + (n) + [6.0654 ] pdfxs + (g) show + (,) + [7.25448 ] pdfxs + (Ha) show + (nk) + [6.0654 9.86173 ] pdfxs + (L) show + (evy,Bri) + [4.8436 5.75995 4.8545 7.25448 7.72349 4.27631 3.02179 ] pdfxs + (a) show + (nBer-) + [10.1781 7.72349 4.8436 4.27631 3.63261 ] pdfxs + 0 -149.468 m + (sh) + [4.29811 6.0654 ] pdfxs + (a) show + (d,) + [6.0654 7.42903 ] pdfxs + (a) show + (ndBr) + [6.0654 10.3199 7.72349 4.27631 ] pdfxs + (a) show + (dChen.) + [10.309 7.8763 6.0654 4.8436 6.0654 9.70901 ] pdfxs + (I) show + (ns) + [6.0654 4.29811 ] pdfxs + (t) show + (rumen) + [4.27631 6.05449 9.08711 4.85451 5.75995 ] pdfxs + (ta) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n) + [10.3199 ] pdfxs + (a) show + (nd) + [6.05449 10.3199 ] pdfxs + (o) show + (p) + [6.05449 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [10.3199 ] pdfxs + (o) show + (fWin) + [7.58175 11.2144 3.0327 6.0654 ] pdfxs + (32/I) show + (n) + [5.74904 ] pdfxs + (t) show + (elexecu) + [4.85451 7.28721 4.8436 5.75995 4.8436 4.85451 6.05449 ] pdfxs + (ta) show + (blesusin) + [6.0654 3.0327 4.8436 8.55262 6.0654 4.29811 3.0327 6.0654 ] pdfxs + (g) show + 0 -171.39 m + (Etch.) + [7.42902 4.23277 4.54905 6.0654 7.86538 ] pdfxs + (I) show + (n) show + 43.776 -171.39 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.35625 ] pdfxs + (o) show + (ft) + [7.25456 3.62179 ] pdfxs + (h) show + (eUSENIX) + [8.92363 8.10534 6.13082 7.40714 8.10534 4.21089 12.0108 ] pdfxs + (W) show + (in) + [3.33823 6.14173 ] pdfxs + (do) show + (wsNTWor) + [7.24359 8.36716 8.10534 11.7163 10.8871 5.58542 4.59266 ] pdfxs + (kshop) show + 293.204 -171.39 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (A) show + (u) + [6.0654 ] pdfxs + (g) show + (ust) + [6.05449 4.30902 7.87638 ] pdfxs + (1997) show + (.) show + -27.879 -202.279 m + ([) + [3.0327 ] pdfxs + (111) show + (]Theod) + [8.4872 7.8763 6.05449 4.85451 5.75995 6.05449 ] pdfxs + (o) show + (re) + [4.27631 7.77812 ] pdfxs + (H) show + (.) + [5.95631 ] pdfxs + (Ro) show + (mer,Wayne) + [9.08711 4.85451 4.2654 6.09813 10.309 5.14905 5.75995 6.05449 7.77812 ] pdfxs + (H) show + (.Ohlrich,) + [5.95631 8.4872 6.05449 3.0327 4.27631 3.0327 4.53815 6.0654 6.09813 ] pdfxs + (A) show + (nna) + [6.0654 6.05449 8.37811 ] pdfxs + (R) show + (.K) + [5.96722 8.47629 ] pdfxs + (a) show + (rlin,) + [4.27631 3.0327 3.0327 6.05449 6.09813 ] pdfxs + (a) show + (ndBri) + [6.0654 8.98901 7.72349 4.27631 3.02179 ] pdfxs + (a) show + (n) + [8.98901 ] pdfxs + (N) show + (.Bersh) + [5.95631 7.7344 4.8436 4.27631 4.29811 6.0654 ] pdfxs + (a) show + (d.) + [6.05449 6.70903 ] pdfxs + (R) show + (educing) + [4.85451 6.05449 6.0654 4.8436 3.0327 6.0654 8.37811 ] pdfxs + (t) show + (lb) + [3.0327 6.0654 ] pdfxs + -3.05176e-05 -224.202 m + (a) show + (ndmem) + [6.0654 9.41446 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ryoverhe) + [4.27631 9.10901 5.14905 5.4545 4.85451 4.27631 6.05449 4.85451 ] pdfxs + (a) show + (dusing) + [9.41446 6.05449 4.30902 3.0327 6.05449 8.81447 ] pdfxs + (o) show + (nlinesuperp) + [6.05449 3.0327 3.0327 6.0654 8.20357 4.29811 6.0654 6.35994 4.85451 4.2654 6.0654 + ] pdfxs + (ag) show + (epr) + [8.20357 6.0654 4.2654 ] pdfxs + (o) show + (m) + [9.09802 ] pdfxs + (o) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n.) + [6.0654 7.40721 ] pdfxs + (I) show + (n) show + 289.335 -224.202 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.10535 ] pdfxs + (o) show + (ft) + [6.99274 3.62179 ] pdfxs + (h) show + (eInt) + [8.66182 4.21089 6.13082 3.62179 ] pdfxs + (e) show + (rn) + [4.60356 6.13082 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (nal) + [6.13082 5.58542 2.79267 ] pdfxs + -3.05176e-05 -246.124 m + (C) + [7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 8.92363 ] pdfxs + (o) show + (nC) + [10.0362 7.81088 ] pdfxs + (o) show + (m) + [8.92348 ] pdfxs + (p) show + (ut) + [5.84725 3.6327 ] pdfxs + (e) show + (rAr) + [8.49808 7.83262 4.0363 ] pdfxs + (ch) show + (ite) + [3.34914 3.62179 4.46185 ] pdfxs + (c) show + (ture) + [3.62179 5.85816 4.04721 8.91272 ] pdfxs + (\() show + (ISCA) + [4.21089 6.13082 7.81088 8.10534 ] pdfxs + (\)) show + 219.477 -246.124 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (176{187) show + (,) + [6.6654 ] pdfxs + (N) show + (ewY) + [4.85451 11.509 7.2763 ] pdfxs + (o) show + (rk,) + [4.2654 5.75995 6.6654 ] pdfxs + (NY) show + (,) + [6.6654 ] pdfxs + (U) show + (S) + [6.0654 ] pdfxs + (A) show + (,) + [6.6654 ] pdfxs + (1995) show + (.) show + -27.879 -277.013 m + ([) + [3.0327 ] pdfxs + (112) show + (]) + [8.4872 ] pdfxs + (A) show + (mir) + [9.08711 3.0327 8.389 ] pdfxs + (Rot) show + (h) + [10.1781 ] pdfxs + (a) show + (ndGurind) + [6.0654 10.1781 8.5636 6.05449 4.27631 3.0327 6.05449 6.0654 ] pdfxs + (a) show + (rS.S) + [8.389 6.0654 7.14539 6.0654 ] pdfxs + (o) show + (hi.E\013ec) + [6.05449 3.0327 9.30537 7.42902 6.35986 4.8436 4.85451 ] pdfxs + (t) show + (ivejump-p) + [3.0327 5.4545 8.9672 3.32724 6.0654 9.08711 6.0654 3.63261 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (erprefe) + [4.8436 8.39991 6.05449 4.27631 4.8436 3.33815 4.8436 ] pdfxs + (t) show + (chingf) + [4.54905 6.05449 3.0327 6.0654 9.56719 3.33815 ] pdfxs + (o) show + (rlinkedd) + [8.389 3.0327 3.0327 6.05449 5.4545 4.85451 10.1781 6.05449 ] pdfxs + (at) show + (as) + [9.5781 4.29811 ] pdfxs + (t) show + (ruc-) + [4.27631 6.0654 4.8436 3.63261 ] pdfxs + -3.05176e-05 -298.936 m + (t) show + (ures.) + [6.05449 4.27631 4.85451 4.29811 12.3163 ] pdfxs + (I) show + (n) show + 51.17 -298.936 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.73079 ] pdfxs + (o) show + (ft) + [8.61818 3.6327 ] pdfxs + (h) show + (eInt) + [10.2873 4.21089 6.13082 3.62179 ] pdfxs + (e) show + (rn) + [4.60356 6.13082 ] pdfxs + (a) show + (ti) + [3.6327 3.33823 ] pdfxs + (o) show + (n) + [6.14173 ] pdfxs + (a) show + (lC) + [8.06171 7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 10.2982 ] pdfxs + (o) show + (nC) + [11.4108 7.79997 ] pdfxs + (o) show + (m) + [8.92348 ] pdfxs + (p) show + (ut) + [5.85816 3.62179 ] pdfxs + (e) show + (rAr) + [9.88352 7.82171 4.04721 ] pdfxs + (ch) show + (ite) + [3.34914 3.62179 4.46185 ] pdfxs + (c) show + (ture) + [3.62179 5.85816 4.0363 10.2982 ] pdfxs + (\() show + (ISCA) + [4.19998 6.14173 7.79997 8.10534 ] pdfxs + (\)) show + 437.091 -298.936 m + /N614 10.909 Tf + (,) show + -6.10352e-05 -320.858 m + (p) + [6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (111{121) show + (,May) + [6.6654 10.0036 5.14905 9.39264 ] pdfxs + (1999) show + (.) show + -27.8791 -351.747 m + ([) + [3.0327 ] pdfxs + (113) show + (]A) + [8.4872 7.8763 ] pdfxs + (ta) show + (n) + [6.05449 ] pdfxs + (a) show + (sR) + [9.64352 8.03985 ] pdfxs + (o) show + (un) + [6.05449 5.75995 ] pdfxs + (t) show + (ev) + [4.8436 11.1054 ] pdfxs + (a) show + (ndS) + [6.05449 11.4108 6.05449 ] pdfxs + (at) show + (ishCh) + [3.0327 4.29811 11.3999 7.88721 6.05449 ] pdfxs + (a) show + (ndr) + [6.0654 6.05449 4.27631 ] pdfxs + (a) show + (.O\013-linev) + [12.949 8.4872 6.35986 3.64352 3.02179 3.0327 6.0654 10.189 5.14904 ] pdfxs + (a) show + (ri) + [4.27631 3.0327 ] pdfxs + (a) show + (blesubs) + [6.05449 3.0327 10.189 4.30902 6.05449 6.0654 4.29811 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (t) show + (u) + [6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nf) + [11.3999 3.33815 ] pdfxs + (o) show + (rsc) + [9.61081 4.30902 4.8436 ] pdfxs + (a) show + (lingp) + [3.0327 3.0327 6.05449 10.7999 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (s-) + [4.29811 3.63261 ] pdfxs + (to) show + -6.10352e-05 -373.67 m + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis.) + [3.02179 5.75995 4.30902 3.02179 4.30902 6.3054 ] pdfxs + (I) show + (n) show + 56.3759 -373.67 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [7.47263 ] pdfxs + (o) show + (ft) + [6.37093 3.62179 ] pdfxs + (h) show + (eACMSIGPLANC) + [8.04 7.83262 7.81088 12.7963 6.13082 4.21089 8.44359 7.39623 6.83993 8.10534 11.138 + 7.79997 ] pdfxs + (o) show + (nf) + [6.14173 3.33823 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 8.04 ] pdfxs + (o) show + (nPro) + [9.15261 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (rammingL) + [4.0363 5.58542 8.91258 8.92348 3.34914 6.13082 8.04 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ag) show + (e) + [8.04 ] pdfxs + (Des) show + (i) + [3.34914 ] pdfxs + (g) show + (n) show + -6.10352e-05 -395.592 m + (a) show + (ndIm) + [6.13082 9.47994 4.21089 8.92348 ] pdfxs + (p) show + (l) + [2.78176 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (ntation\(PL) + [6.13082 3.62179 5.58542 3.62179 3.33823 5.58542 10.0362 4.45083 7.40714 6.83993 ] pdfxs + (D) show + (I) + [4.21089 ] pdfxs + (\)) show + 135.157 -395.592 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (47{56) show + (,) + [6.6654 ] pdfxs + (2000) show + (.) show + -27.8791 -426.481 m + ([) + [3.0327 ] pdfxs + (114) show + (]Erik) + [8.4872 7.41812 4.27631 3.0327 9.52355 ] pdfxs + (R) show + (uf.E\013ec) + [6.05449 3.33815 8.2472 7.42902 6.35986 4.85451 4.8436 ] pdfxs + (t) show + (ivesynchr) + [3.0327 5.4545 8.61811 4.29811 5.75995 6.05449 4.54905 6.0654 4.2654 ] pdfxs + (o) show + (niz) + [6.0654 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nremov) + [9.81809 4.27631 4.85451 9.08711 5.14905 5.14904 ] pdfxs + (a) show + (lf) + [6.7963 3.33815 ] pdfxs + (o) show + (rjav) + [8.03991 3.32724 5.15996 5.14904 ] pdfxs + (a) show + (.In) + [8.2472 3.94897 6.0654 ] pdfxs + 271.86 -426.481 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.47625 ] pdfxs + (o) show + (ft) + [7.37456 3.62179 ] pdfxs + (h) show + (eACMSIGPLAN) + [9.04363 7.83262 7.79997 13.7999 6.14173 4.19998 8.44359 7.39623 6.83993 8.11625 8.10534 + ] pdfxs + -3.05176e-05 -448.404 m + (C) + [7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 9.29454 ] pdfxs + (o) show + (nPro) + [10.4181 7.39623 4.0363 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmingL) + [8.92348 8.92348 3.33823 6.14173 9.29454 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ag) show + (e) + [9.29454 ] pdfxs + (Des) show + (i) + [3.33823 ] pdfxs + (g) show + (n) + [10.4181 ] pdfxs + (a) show + (ndImpl) + [6.13082 9.85084 4.21089 8.91258 5.58542 2.78176 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + (a) show + (ti) + [3.6327 3.33823 ] pdfxs + (o) show + (n) + [10.4181 ] pdfxs + (\() show + (PL) + [7.39623 6.83993 ] pdfxs + (D) show + (I) + [4.21089 ] pdfxs + (\)) show + 361.673 -448.404 m + /N614 10.909 Tf + (,p) + [7.06903 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 8.34535 ] pdfxs + (208{218) show + (,) show + -3.05176e-05 -470.326 m + (2000) show + (.) show + -27.879 -501.215 m + ([) + [3.0327 ] pdfxs + (115) show + (]Pe) + [8.4872 7.11266 4.85451 ] pdfxs + (t) show + (er) + [4.8436 15.578 ] pdfxs + (R) show + (undberg) + [6.05449 6.0654 6.0654 6.35994 4.8436 4.27631 16.7562 ] pdfxs + (a) show + (ndFredrikW) + [6.0654 17.3562 6.21813 4.2654 4.85451 6.05449 4.27631 3.0327 17.0508 10.309 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (g) show + (.TheFreeBenchv) + [30.7088 7.8763 6.05449 16.1562 6.20722 4.27631 4.8436 4.85451 7.72349 4.85451 6.05449 + 4.54905 17.3562 5.75995 ] pdfxs + (1) show + (.0Benchm) + [3.0327 16.7562 7.72349 4.85451 6.05449 4.54905 6.0654 9.08711 ] pdfxs + (a) show + (rkSui) + [4.27631 17.0508 6.0654 6.05449 3.0327 ] pdfxs + (t) show + (e.) + [4.85451 3.0327 ] pdfxs + -3.05176e-05 -523.138 m + /N722 10.909 Tf + (http://www.freebench.org) show + 137.453 -523.138 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (Ja) show + (n) + [9.6981 ] pdfxs + (2002) show + (.) show + -27.879 -554.027 m + ([) + [3.0327 ] pdfxs + (116) show + (]B) + [8.4872 7.72349 ] pdfxs + (a) show + (rb) + [4.27631 6.05449 ] pdfxs + (a) show + (ra) + [4.27631 8.85811 ] pdfxs + (R) show + (yder,Willi) + [5.75995 6.05449 4.85451 4.2654 6.47994 11.2144 3.0327 3.02179 3.0327 3.0327 ] pdfxs + (a) show + (m) + [12.4907 ] pdfxs + (La) show + (ndi,PhilipS) + [6.0654 6.05449 3.0327 6.47994 7.41812 6.0654 3.0327 3.0327 3.02179 9.46901 6.05449 + ] pdfxs + (t) show + (ocks,Se) + [5.75995 4.54905 5.74904 4.30902 6.47994 6.05449 4.85451 ] pdfxs + (a) show + (n) + [9.4581 ] pdfxs + (Z) show + (h) + [6.0654 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (,) + [6.47994 ] pdfxs + (a) show + (nd) + [6.0654 9.4581 ] pdfxs + (R) show + (i) + [3.0327 ] pdfxs + (t) show + (a) + [8.85811 ] pdfxs + (A) show + (l) + [3.02179 ] pdfxs + (t) show + (ucher.Aschemaf) + [6.0654 4.53815 6.0654 4.8436 4.27631 7.48357 11.5854 4.29811 4.54905 6.0654 4.8436 + 9.08711 8.85811 3.33815 ] pdfxs + (o) show + (r) show + -3.05176e-05 -575.949 m + (interprocedur) + [3.0327 5.75995 4.23277 4.85451 4.27631 6.05449 4.27631 5.75995 4.8436 4.8436 6.0654 + 6.0654 4.2654 ] pdfxs + (a) show + (lmodi\fc) + [6.38176 9.08711 5.75995 6.0654 3.02179 6.0654 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nside-e\013ect) + [9.40355 4.30902 3.0327 6.05449 4.85451 3.63261 4.8436 6.37077 4.8436 4.85451 7.58184 + ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysiswi) + [3.0327 5.74904 4.30902 3.0327 7.64718 7.8763 3.0327 ] pdfxs + (t) show + (hp) + [9.40355 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er) + [4.8436 7.62537 ] pdfxs + (a) show + (li) + [3.02179 3.0327 ] pdfxs + (a) show + (sin) + [4.30902 3.0327 6.05449 ] pdfxs + (g) show + (.) show + 334.807 -575.949 m + /N634 10.909 Tf + (ACMTr) + [7.83262 7.79997 13.4181 6.97089 4.04721 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (sac) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (ns) + [6.13082 8.10535 ] pdfxs + (o) show + (n) show + -3.05176e-05 -597.872 m + (Pro) + [7.39623 4.04721 5.01816 ] pdfxs + (g) show + (rammingL) + [4.0363 5.58542 8.91258 8.92348 3.34914 6.13082 8.92363 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (age) show + (s) + [8.36716 ] pdfxs + (a) show + (ndSy) + [6.13082 9.47994 6.13082 5.30169 ] pdfxs + (s) show + (t) + [3.62179 ] pdfxs + (e) show + (ms) + [8.92348 8.35625 ] pdfxs + (\() show + (TOPLAS) + [7.81088 8.35627 7.40714 6.83993 8.10534 6.13082 ] pdfxs + (\)) show + 236.762 -597.872 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (23\(2\)) show + (:) + [3.0327 ] pdfxs + (105{186) show + (,M) + [6.6654 10.0036 ] pdfxs + (a) show + (rch) + [4.2654 4.54905 9.6981 ] pdfxs + (2001) show + (.) show + 197.939 -657.201 m + (208) show + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 113.455 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (7) show + (.) + [3.0327 ] pdfxs + (3) show + (.1) + [3.0327 17.9344 ] pdfxs + (A) show + (ddressSp) + [6.0654 6.05449 4.27631 4.8436 4.30902 7.93081 6.0654 6.0654 ] pdfxs + (a) show + (ce) + [4.8436 8.4872 ] pdfxs + (R) show + (eserv) + [4.8436 4.30902 4.8436 4.27631 5.14904 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n............................) + [16.2653 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (172) show + 0 -13.549 m + (7) show + (.) + [3.0327 ] pdfxs + (3) show + (.2) + [3.0327 17.9344 ] pdfxs + (R) show + (educing) + [4.85451 6.05449 6.0654 4.8436 3.0327 6.05449 9.0981 ] pdfxs + (R) show + (edund) + [4.8436 6.0654 6.0654 6.05449 6.0654 ] pdfxs + (a) show + (ntPo) + [5.74904 7.88729 7.11266 5.75995 ] pdfxs + (o) show + (lB) + [3.0327 7.72349 ] pdfxs + (a) show + (se) + [4.30902 8.4872 ] pdfxs + (Loa) show + (ds......................) + [6.05449 14.0289 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 7.70175 ] pdfxs + (172) show + 0 -27.098 m + (7) show + (.) + [3.0327 ] pdfxs + (3) show + (.3) + [3.0327 17.9344 ] pdfxs + (R) show + (educing) + [4.85451 6.05449 6.0654 4.8436 3.0327 6.05449 9.0981 ] pdfxs + (D) show + (yn) + [5.74904 6.0654 ] pdfxs + (a) show + (mic) + [9.08711 3.0327 4.8436 ] pdfxs + 129.151 -27.098 m + /N722 10.909 Tf + (isComp) show + 167.151 -27.098 m + /N614 10.909 Tf + (C) + [7.8763 ] pdfxs + (o) show + (mp) + [9.09802 6.05449 ] pdfxs + (a) show + (ris) + [4.27631 3.0327 4.29811 ] pdfxs + (o) show + (ns.....................) + [6.0654 8.56353 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 7.70175 ] pdfxs + (173) show + 0 -40.647 m + (7) show + (.) + [3.0327 ] pdfxs + (3) show + (.4Struc) + [3.0327 17.9344 6.0654 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ureField) + [6.0654 4.2654 8.4872 7.12357 3.0327 4.8436 3.0327 9.6981 ] pdfxs + (R) show + (e) + [4.8436 ] pdfxs + (o) show + (rderingf) + [4.27631 6.0654 4.8436 4.27631 3.02179 6.0654 9.08719 3.33815 ] pdfxs + (o) show + (rP) + [7.909 7.12357 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (ers.....................) + [4.85451 4.2654 14.2144 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 7.70175 ] pdfxs + (173) show + 0 -54.197 m + (7) show + (.) + [3.0327 ] pdfxs + (3) show + (.5) + [3.0327 17.9344 ] pdfxs + (A) show + (dding) + [6.0654 6.05449 3.0327 6.05449 9.0981 ] pdfxs + (Ha) show + (rdwareSupp) + [4.2654 6.0654 7.57085 5.46541 4.2654 8.4872 6.0654 6.05449 6.0654 6.35994 ] pdfxs + (o) show + (rt.............................) + [4.27631 7.47275 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (174) show + -25.091 -67.746 m + (7) show + (.4Experimen) + [3.0327 16.6035 7.42902 5.74904 6.37085 4.8436 4.27631 3.0327 9.08711 4.8436 5.75995 + ] pdfxs + (ta) show + (l) + [6.6654 ] pdfxs + (R) show + (esults....................................) + [4.85451 4.29811 6.0654 3.0327 4.23277 7.24354 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (174) show + 0 -81.295 m + (7) show + (.) + [3.0327 ] pdfxs + (4) show + (.1Perf) + [3.0327 17.9344 7.12357 4.8436 4.27631 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nce) + [6.0654 4.8436 8.4872 ] pdfxs + (R) show + (esul) + [4.85451 4.29811 6.0654 3.0327 ] pdfxs + (t) show + (s................................) + [10.7781 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 + ] pdfxs + (175) show + 0 -94.844 m + (7) show + (.) + [3.0327 ] pdfxs + (4) show + (.2) + [3.0327 17.9344 ] pdfxs + (A) show + (rchi) + [4.27631 4.53815 6.0654 3.0327 ] pdfxs + (t) show + (ec) + [4.8436 4.8436 ] pdfxs + (t) show + (ureSpeci\fc) + [6.0654 4.27631 8.47629 6.0654 6.35994 4.85451 4.8436 3.0327 6.0654 8.47629 ] pdfxs + (I) show + (mp) + [9.09802 6.05449 ] pdfxs + (a) show + (ct) + [4.85451 7.87638 ] pdfxs + (o) show + (fP) + [6.97085 7.12357 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (erC) + [4.85451 7.909 7.8763 ] pdfxs + (o) show + (mpressi) + [9.08711 6.0654 4.2654 4.85451 4.29811 4.30902 3.0327 ] pdfxs + (o) show + (n..............) + [11.7163 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (177) show + -25.091 -108.393 m + (7) show + (.5) + [3.0327 16.6035 ] pdfxs + (R) show + (el) + [4.85451 3.02179 ] pdfxs + (at) show + (edW) + [4.85451 9.6981 10.2981 ] pdfxs + (o) show + (rk........................................) + [4.27631 11.389 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (178) show + -25.091 -121.943 m + (7) show + (.6P) + [3.0327 16.6035 7.12357 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (erC) + [4.85451 7.909 7.8763 ] pdfxs + (o) show + (mpressi) + [9.08711 6.0654 4.2654 4.85451 4.29811 4.30902 3.0327 ] pdfxs + (o) show + (nSumm) + [9.6981 6.05449 6.0654 9.08711 9.08711 ] pdfxs + (a) show + (ry..............................) + [4.27631 13.6362 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (179) show + -41.455 -146.401 m + (Ch) + [7.8763 6.0654 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (er8Specul) + [4.85451 7.909 16.3635 6.05449 6.37085 4.8436 4.85451 6.05449 3.0327 ] pdfxs + (at) show + (ive) + [3.0327 5.4545 8.47629 ] pdfxs + (A) show + (pplic) + [6.0654 6.05449 3.0327 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.0654 7.93081 ] pdfxs + (o) show + (fM) + [6.97085 10.0036 ] pdfxs + (a) show + (cr) + [4.85451 4.2654 ] pdfxs + (o) show + (sc) + [4.30902 4.8436 ] pdfxs + (o) show + (picTechniques................) + [6.0654 3.02179 8.4872 6.97085 4.85451 4.53815 6.0654 6.05449 3.0327 5.75995 6.05449 + 4.85451 13.7562 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (181) show + -25.091 -159.95 m + (8) show + (.1) + [3.0327 16.6035 ] pdfxs + (No) show + (n-Perf) + [6.0654 3.63261 7.12357 4.8436 4.27631 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nce) + [6.0654 4.8436 8.4872 ] pdfxs + (A) show + (pplic) + [6.0654 6.05449 3.0327 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.0654 7.93081 ] pdfxs + (o) show + (fM) + [6.97085 10.0036 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.29811 4.85451 ] pdfxs + (o) show + (picTechniques...............) + [6.05449 3.0327 8.4872 6.97085 4.8436 4.54905 6.0654 6.05449 3.0327 5.75995 6.05449 + 4.85451 10.8981 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (182) show + 0 -173.499 m + (8) show + (.) + [3.0327 ] pdfxs + (1) show + (.1) + [3.0327 17.9344 ] pdfxs + (H) show + (e) + [4.8436 ] pdfxs + (a) show + (pS) + [9.6981 6.0654 ] pdfxs + (a) show + (fetyf) + [3.32724 4.85451 3.93823 9.39264 3.33815 ] pdfxs + (o) show + (r) + [7.909 ] pdfxs + (La) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (eswi) + [4.8436 7.94172 7.8763 3.0327 ] pdfxs + (t) show + (hExplicit) + [9.6981 7.41812 5.75995 6.0654 3.0327 3.02179 4.85451 3.0327 7.87638 ] pdfxs + (D) show + (e) + [4.8436 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n.............) + [14.9017 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 7.70175 ] pdfxs + (182) show + 0 -187.049 m + (8) show + (.) + [3.0327 ] pdfxs + (1) show + (.2C) + [3.0327 17.9344 7.8763 ] pdfxs + (o) show + (nnec) + [6.0654 6.05449 4.85451 4.8436 ] pdfxs + (t) show + (ivity-B) + [3.0327 5.75995 3.02179 3.94914 5.74904 3.64352 7.72349 ] pdfxs + (a) show + (sedG) + [4.30902 4.8436 9.6981 8.5636 ] pdfxs + (a) show + (rb) + [4.2654 6.0654 ] pdfxs + (ag) show + (eC) + [8.4872 7.8763 ] pdfxs + (o) show + (llec) + [3.0327 3.02179 4.85451 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n.....................) + [15.7417 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 + ] pdfxs + (183) show + 0 -200.598 m + (8) show + (.) + [3.0327 ] pdfxs + (1) show + (.3) + [3.0327 17.9344 ] pdfxs + (Dat) show + (aM) + [9.08719 10.0036 ] pdfxs + (a) show + (rsh) + [4.2654 4.30902 6.05449 ] pdfxs + (a) show + (llingf) + [3.0327 3.0327 3.0327 6.05449 9.0981 3.32724 ] pdfxs + (o) show + (rP) + [7.909 7.12357 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er-B) + [4.8436 4.27631 3.63261 7.72349 ] pdfxs + (a) show + (sed) + [4.30902 4.8436 9.6981 ] pdfxs + (Dat) show + (aS) + [9.08719 6.0654 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ures..............) + [6.0654 4.27631 4.8436 11.2362 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (184) show + -25.091 -214.147 m + (8) show + (.2Pr) + [3.0327 16.6035 7.42902 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (mPerf) + [12.7307 7.11266 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nce-) + [6.0654 4.8436 4.85451 3.63261 ] pdfxs + (R) show + (el) + [4.8436 3.0327 ] pdfxs + (at) show + (edM) + [4.85451 9.68719 10.0036 ] pdfxs + (a) show + (cr) + [4.85451 4.2654 ] pdfxs + (o) show + (sc) + [4.30902 4.8436 ] pdfxs + (o) show + (pic) + [6.0654 3.02179 8.4872 ] pdfxs + (A) show + (pplic) + [6.0654 6.05449 3.0327 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns................) + [6.0654 9.08716 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (184) show + 0 -227.696 m + (8) show + (.) + [3.0327 ] pdfxs + (2) show + (.1) + [3.0327 17.9344 ] pdfxs + (A) show + (ut) + [6.0654 4.23277 ] pdfxs + (o) show + (m) + [9.09802 ] pdfxs + (at) show + (ic) + [3.02179 8.4872 ] pdfxs + (I) show + (ns) + [6.0654 4.29811 ] pdfxs + (ta) show + (nce) + [6.0654 4.8436 8.4872 ] pdfxs + (I) show + (n) + [5.75995 ] pdfxs + (t) show + (erleaving.........................) + [4.8436 4.27631 3.0327 4.8436 5.14905 5.75995 3.0327 6.0654 15.3599 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 7.70175 ] pdfxs + (184) show + 0 -241.245 m + (8) show + (.) + [3.0327 ] pdfxs + (2) show + (.2) + [3.0327 17.9344 ] pdfxs + (A) show + (ut) + [6.0654 4.23277 ] pdfxs + (o) show + (m) + [9.09802 ] pdfxs + (at) show + (icuse) + [3.02179 8.4872 6.0654 4.29811 8.4872 ] pdfxs + (o) show + (fSuperp) + [6.97085 6.0654 6.05449 6.35994 4.85451 4.27631 6.05449 ] pdfxs + (ag) show + (esf) + [4.85451 7.93081 3.33815 ] pdfxs + (o) show + (r) + [7.909 ] pdfxs + (I) show + (nprovedT) + [6.0654 6.05449 4.27631 5.14905 5.4545 4.8436 9.6981 7.88721 ] pdfxs + (L) show + (BE\013ec) + [11.3562 7.42902 6.35986 4.85451 4.8436 ] pdfxs + (t) show + (iveness.........) + [3.0327 5.4545 4.8436 6.0654 4.8436 4.30902 12.2944 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (186) show + 0 -254.794 m + (8) show + (.) + [3.0327 ] pdfxs + (2) show + (.3) + [3.0327 17.9344 ] pdfxs + (N) show + (ew) + [4.8436 11.5199 ] pdfxs + (A) show + (ppr) + [6.0654 6.05449 4.27631 ] pdfxs + (oa) show + (chesf) + [4.53815 6.0654 4.8436 7.94172 3.33815 ] pdfxs + (o) show + (rPrefetching.........................) + [7.909 7.41812 4.27631 4.85451 3.32724 4.85451 4.23277 4.54905 6.0654 3.02179 6.0654 + 15.1526 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (187) show + 0 -268.344 m + (8) show + (.) + [3.0327 ] pdfxs + (2) show + (.4) + [3.0327 17.9344 ] pdfxs + (Dat) show + (aS) + [9.08719 6.0654 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ureTravers) + [6.0654 4.2654 8.4872 6.97085 4.27631 5.14905 5.4545 4.8436 4.27631 4.30902 ] pdfxs + (a) show + (l-Order) + [3.02179 3.64352 8.47629 4.27631 6.0654 4.8436 7.909 ] pdfxs + (N) show + (ode) + [5.75995 6.05449 8.4872 ] pdfxs + (R) show + (eloc) + [4.85451 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n................) + [12.4799 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (188) show + 0 -281.893 m + (8) show + (.) + [3.0327 ] pdfxs + (2) show + (.5) + [3.0327 17.9344 ] pdfxs + (I) show + (den) + [6.0654 4.8436 5.75995 ] pdfxs + (t) show + (i\fc) + [3.0327 6.05449 4.85451 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (o) show + (fC) + [6.97085 7.8763 ] pdfxs + (oa) show + (rse-Gr) + [4.27631 4.29811 4.85451 3.63261 8.5636 4.27631 ] pdfxs + (a) show + (inP) + [3.02179 9.6981 7.12357 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (a) show + (llelW) + [3.0327 3.02179 4.85451 6.6654 10.2981 ] pdfxs + (o) show + (rk...................) + [4.27631 8.9781 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (189) show + -25.091 -295.442 m + (8) show + (.3Summ) + [3.0327 16.6035 6.0654 6.05449 9.08711 9.09802 ] pdfxs + (a) show + (ry..........................................) + [4.2654 14.5744 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 + ] pdfxs + (190) show + -41.455 -319.9 m + (Ch) + [7.8763 6.0654 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (er9C) + [4.85451 7.909 16.3635 7.8763 ] pdfxs + (o) show + (nclusi) + [6.0654 4.8436 3.0327 6.05449 4.30902 3.0327 ] pdfxs + (o) show + (n.......................................) + [16.5708 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (192) show + -41.455 -344.359 m + (R) show + (eferences...............................................) + [4.85451 3.32724 4.85451 4.2654 4.85451 6.05449 4.85451 4.8436 7.70172 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 7.70175 ] pdfxs + (196) show + -41.455 -368.817 m + (A) show + (uth) + [6.0654 4.23277 6.0654 ] pdfxs + (o) show + (r'sBi) + [4.27631 3.02179 7.94172 7.7344 3.02179 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (phy.........................................) + [6.0654 5.74904 16.0908 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 + ] pdfxs + (213) show + 189.666 -657.201 m + (x) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (9) 10 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 595.275591 788.031496 translate + 180 rotate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 72 629.34 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N622 24.787 Tf + (L) show + (istof) + [7.73363 11.0054 20.1519 13.9304 17.8217 ] pdfxs + (F) show + (ig) + [7.75841 13.9304 ] pdfxs + (u) show + (res) + [11.402 12.7157 11.0054 ] pdfxs + 16.364 -53.4 m + /N614 10.909 Tf + (2) show + (.1Ccodef) + [3.0327 16.6035 11.5199 4.8436 5.75995 6.05449 8.4872 3.33815 ] pdfxs + (o) show + (rc) + [7.909 4.8436 ] pdfxs + (o) show + (mplexmem) + [9.08711 6.0654 3.0327 4.8436 9.39264 9.09802 4.8436 9.09802 ] pdfxs + (o) show + (ry) + [4.2654 9.39264 ] pdfxs + (a) show + (ddressing.........................) + [6.0654 6.05449 4.27631 4.85451 4.29811 4.29811 3.0327 6.0654 16.2108 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 13.1562 ] pdfxs + (18) show + 16.364 -66.949 m + (2) show + (.2) + [3.0327 16.6035 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mcodef) + [13.6363 4.8436 5.75995 6.0654 8.47629 3.33815 ] pdfxs + (o) show + (rc) + [7.909 4.85451 ] pdfxs + (o) show + (mplexmem) + [9.08711 6.05449 3.0327 4.85451 9.39264 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 9.39264 ] pdfxs + (a) show + (ddressing.......................) + [6.05449 6.0654 4.2654 4.85451 4.29811 4.30902 3.0327 6.05449 10.4508 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (18) show + 16.364 -80.498 m + (2) show + (.3C++excep) + [3.0327 16.6035 7.8763 8.4872 12.1199 4.85451 5.74904 4.85451 4.8436 6.0654 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (nh) + [9.6981 6.0654 ] pdfxs + (a) show + (ndlingex) + [6.0654 6.05449 3.0327 3.0327 6.05449 9.0981 4.8436 5.75995 ] pdfxs + (a) show + (mple.............................) + [9.08711 6.0654 3.02179 8.55266 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 + ] pdfxs + (20) show + 16.364 -94.047 m + (2) show + (.4) + [3.0327 16.6035 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mcodef) + [13.9527 4.85451 5.74904 6.0654 8.80356 3.33815 ] pdfxs + (o) show + (r) + [8.22536 ] pdfxs + (t) show + (heC++ex) + [6.0654 8.80356 7.8763 8.4872 12.4363 4.85451 5.74904 ] pdfxs + (a) show + (mple.Theh) + [9.09802 6.05449 3.0327 4.85451 8.83629 7.8763 6.0654 8.80356 6.05449 ] pdfxs + (a) show + (ndlercodespeci\fedby) + [6.0654 6.0654 3.02179 4.85451 8.22536 4.85451 5.74904 6.0654 8.80356 4.30902 6.35994 + 4.8436 4.85451 3.0327 6.05449 4.85451 10.0145 5.75995 5.75995 ] pdfxs + 362.104 -94.047 m + /N722 10.909 Tf + (invoke) show + 400.424 -94.047 m + /N614 10.909 Tf + (execu) + [4.8436 5.75995 4.85451 4.8436 6.0654 ] pdfxs + (t) show + (es) + [4.8436 4.29811 ] pdfxs + 41.455 -107.597 m + (t) show + (hedes) + [6.05449 8.4872 6.0654 4.8436 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (to) show + (r........................................) + [4.27631 12.6653 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (21) show + 16.364 -121.146 m + (2) show + (.5) + [3.0327 16.6035 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Musesaruntimelibr) + [13.6363 6.05449 4.30902 4.8436 7.94172 9.08719 4.27631 6.0654 5.75995 4.23277 3.0327 + 9.09802 8.47629 3.0327 3.0327 6.05449 4.27631 ] pdfxs + (a) show + (ryf) + [4.27631 9.39264 3.32724 ] pdfxs + (o) show + (rC++excep) + [7.909 7.88721 8.47629 12.1308 4.8436 5.75995 4.8436 4.85451 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nssupp) + [6.0654 7.93081 4.30902 6.05449 6.0654 6.35994 ] pdfxs + (o) show + (rtbutexp) + [4.27631 7.87638 6.0654 6.05449 7.87638 4.85451 5.75995 6.35994 ] pdfxs + (o) show + (sesc) + [4.29811 4.85451 7.94172 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (o) show + (l-\row.) + [3.02179 3.64352 6.05449 5.14905 7.88721 18.7198 ] pdfxs + (21) show + 16.364 -134.695 m + (2) show + (.6) + [3.0327 16.6035 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Msystem) + [13.6363 4.29811 5.75995 4.30902 4.23277 4.85451 12.7307 ] pdfxs + (a) show + (rchi) + [4.2654 4.54905 6.0654 3.02179 ] pdfxs + (t) show + (ec) + [4.85451 4.8436 ] pdfxs + (t) show + (uredi) + [6.0654 4.2654 8.4872 6.0654 3.02179 ] pdfxs + (ag) show + (r) + [4.27631 ] pdfxs + (a) show + (m............................) + [12.8725 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (23) show + 16.364 -148.244 m + (2) show + (.7Execu) + [3.0327 16.6035 7.42902 5.74904 4.85451 4.8436 6.0654 ] pdfxs + (ta) show + (blesizesf) + [6.05449 3.0327 8.4872 4.29811 3.0327 4.8436 4.85451 7.94172 3.32724 ] pdfxs + (o) show + (r) + [7.909 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (M,) + [10.0036 6.6654 ] pdfxs + (X86) show + (,Sp) + [6.6654 6.0654 6.05449 ] pdfxs + (a) show + (rc) + [4.27631 8.4872 ] pdfxs + (\() show + (inKB\).....................) + [3.02179 9.6981 8.4872 7.72349 8.36728 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (32) show + 16.364 -161.793 m + (2) show + (.8) + [3.0327 16.6035 ] pdfxs + (I) show + (n) + [5.75995 ] pdfxs + (t) show + (erprocedur) + [4.8436 4.27631 6.05449 4.27631 5.75995 4.8436 4.85451 6.05449 6.0654 4.27631 ] pdfxs + (a) show + (l) + [6.6654 ] pdfxs + (o) show + (p) + [6.05449 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.85451 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (t) show + (imin) + [3.0327 9.08711 3.0327 6.05449 ] pdfxs + (g) show + (s) + [7.94172 ] pdfxs + (\() show + (insec) + [3.0327 9.6981 4.29811 4.85451 4.8436 ] pdfxs + (o) show + (nds\)....................) + [6.0654 6.05449 4.30902 8.56365 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 13.1562 ] pdfxs + (33) show + 16.364 -185.305 m + (3) show + (.) + [3.0327 ] pdfxs + (1) show + 41.455 -185.305 m + /N614 9.963 Tf + (Ccodeforrunningex) + [10.511 4.43354 5.26046 5.52946 7.75121 3.04867 4.97154 7.22316 3.90548 5.53942 5.52946 + 5.53942 2.76971 5.52946 8.29918 4.43354 5.26046 ] pdfxs + (a) show + (mple) + [8.2991 5.52946 2.76971 4.42357 ] pdfxs + 172.422 -185.305 m + /N614 10.909 Tf + (.................................) + [8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 13.1562 + ] pdfxs + (44) show + 16.364 -198.854 m + (3) show + (.) + [3.0327 ] pdfxs + (2) show + 41.455 -198.854 m + /N614 9.963 Tf + (Gr) + [7.82099 3.89552 ] pdfxs + (a) show + (ph) + [5.53942 8.8571 ] pdfxs + (Nota) show + (ti) + [3.86572 2.76971 ] pdfxs + (o) show + (n) show + 121.514 -198.854 m + /N614 10.909 Tf + (.......................................) + [8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 13.1562 ] pdfxs + (45) show + 16.364 -212.404 m + (3) show + (.) + [3.0327 ] pdfxs + (3) show + 41.455 -212.404 m + /N614 9.963 Tf + (L) show + (oc) + [5.26046 4.42357 ] pdfxs + (a) show + (l) + [6.08739 ] pdfxs + (D) show + (SGr) + [5.53942 7.81103 3.90548 ] pdfxs + (a) show + (phsf) + [5.52946 5.53942 7.25303 3.03871 ] pdfxs + (o) show + (r) show + 131.852 -212.404 m + /N722 9.963 Tf + (do) show + 1 0 0 1 142.94 -212.404 cm + q + [] 0 d + 0 J + 0.397995 w + n + 0 0.19899 m + 3.13799 0.19899 l + S + Q + 1 0 0 1 3.13799 0 cm + 0 0 m + (all) show + 19.012 0 m + /N614 9.963 Tf + (a) show + (nd) + [5.53942 5.53942 ] pdfxs + 38.384 0 m + /N722 9.963 Tf + (addG) show + 68.768 0 m + /N614 10.909 Tf + (............................) + [8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 13.1562 ] pdfxs + (46) show + -129.714 -13.549 m + (3) show + (.4Primi) + [3.0327 16.6035 7.42902 4.2654 3.0327 9.08711 3.0327 ] pdfxs + (t) show + (ive) + [3.0327 5.4545 8.4872 ] pdfxs + (o) show + (per) + [6.35994 4.8436 4.27631 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nsusedin) + [6.05449 7.94172 6.0654 4.29811 4.85451 9.68719 3.0327 9.6981 ] pdfxs + (t) show + (he) + [6.0654 8.47629 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (go) show + (rithm.......................) + [4.27631 3.0327 4.23277 6.0654 21.207 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (50) show + -129.714 -27.098 m + (3) show + (.5The) + [3.0327 16.6035 7.8763 6.0654 8.4872 ] pdfxs + (L) show + (oc) + [5.74904 4.85451 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (A) show + (n) + [6.05449 ] pdfxs + (a) show + (lysisfunc) + [3.0327 5.75995 4.29811 3.0327 7.94172 3.32724 6.0654 6.05449 4.85451 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n................................) + [14.3235 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 + ] pdfxs + (52) show + -129.714 -40.647 m + (3) show + (.6m) + [3.0327 16.6035 9.08711 ] pdfxs + (a) show + (ke) + [5.4545 4.85451 ] pdfxs + (N) show + (ode) + [5.75995 6.05449 8.4872 ] pdfxs + (a) show + (ndupd) + [6.05449 9.6981 6.0654 6.35994 6.0654 ] pdfxs + (at) show + (eType) + [4.8436 7.58175 5.74904 6.37085 8.4872 ] pdfxs + (o) show + (per) + [6.35994 4.8436 4.27631 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns..........................) + [6.05449 9.42534 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (53) show + -129.714 -54.196 m + (3) show + (.7C) + [3.0327 16.6035 7.8763 ] pdfxs + (o) show + (ns) + [6.0654 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (t) show + (heBU) + [6.0654 8.4872 7.72349 11.8144 ] pdfxs + (D) show + (S) + [9.6981 ] pdfxs + (g) show + (r) + [4.27631 ] pdfxs + (a) show + (phf) + [6.05449 9.6981 3.33815 ] pdfxs + (o) show + (r) show + 77.347 -54.196 m + /N722 10.909 Tf + (addGToList) show + 145.13 -54.196 m + /N614 10.909 Tf + (...................) + [8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 13.1562 ] pdfxs + (55) show + -129.714 -67.746 m + (3) show + (.8B) + [3.0327 16.6035 7.72349 ] pdfxs + (otto) show + (m-) + [9.08711 3.64352 ] pdfxs + (U) show + (pCl) + [9.6981 7.8763 3.0327 ] pdfxs + (o) show + (sure) + [4.29811 6.0654 4.2654 8.4872 ] pdfxs + (A) show + (l) + [3.0327 ] pdfxs + (go) show + (ri) + [4.27631 3.02179 ] pdfxs + (t) show + (hm..............................) + [6.0654 19.4834 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (57) show + -129.714 -81.295 m + (3) show + (.9) + [3.0327 16.6035 ] pdfxs + (Ha) show + (ndlingrecursi) + [6.0654 6.05449 3.0327 3.0327 6.05449 9.0981 4.2654 4.85451 4.8436 6.0654 4.2654 + 4.30902 3.0327 ] pdfxs + (o) show + (ndue) + [9.6981 6.05449 6.0654 8.47629 ] pdfxs + (t) show + (o) + [9.0981 ] pdfxs + (a) show + (nindirectc) + [9.6981 3.02179 6.0654 6.05449 3.0327 4.27631 4.8436 4.85451 7.87638 4.8436 ] pdfxs + (a) show + (llin) + [3.0327 6.6654 3.0327 9.6981 ] pdfxs + (t) show + (heB) + [6.0654 8.47629 7.7344 ] pdfxs + (ot) show + (t) + [4.23277 ] pdfxs + (o) show + (m-) + [9.09802 3.63261 ] pdfxs + (U) show + (pph) + [9.6981 6.0654 6.05449 ] pdfxs + (a) show + (se..........) + [4.30902 12.109 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 13.1562 ] pdfxs + (58) show + -129.714 -94.844 m + (3) show + (.) + [3.0327 ] pdfxs + (1) show + (0FinishedBU) + [11.149 7.12357 3.0327 6.05449 3.0327 4.29811 6.0654 4.8436 9.6981 7.7344 11.8144 + ] pdfxs + (g) show + (r) + [4.27631 ] pdfxs + (a) show + (phf) + [6.05449 9.6981 3.33815 ] pdfxs + (o) show + (r) show + 6.70996 -94.844 m + /N722 10.909 Tf + (main) show + 34.8289 -94.844 m + /N614 10.909 Tf + (................................) + [8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 13.1562 ] pdfxs + (59) show + -129.714 -108.393 m + (3) show + (.) + [3.0327 ] pdfxs + (1) show + (1CS) + [11.149 11.5199 6.05449 ] pdfxs + (o) show + (urce,) + [6.0654 4.2654 4.85451 4.8436 6.6654 ] pdfxs + (D) show + (SGr) + [6.0654 8.5636 4.2654 ] pdfxs + (a) show + (ph,) + [6.0654 6.05449 6.6654 ] pdfxs + (a) show + (nd) + [6.0654 9.6981 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mcodef) + [13.6363 4.8436 5.75995 6.0654 8.47629 3.33815 ] pdfxs + (o) show + (rGlob) + [7.909 8.5636 3.02179 5.46541 6.05449 ] pdfxs + (a) show + (lV) + [6.6654 7.2763 ] pdfxs + (a) show + (lueEquiv) + [3.0327 6.05449 8.4872 7.42902 5.74904 6.0654 3.0327 5.14904 ] pdfxs + (a) show + (lenceCl) + [3.0327 4.8436 6.0654 4.8436 8.4872 7.8763 3.0327 ] pdfxs + (a) show + (ssEx) + [4.29811 7.94172 7.42902 5.75995 ] pdfxs + (a) show + (mple.) + [9.08711 6.05449 3.0327 12.8726 13.1562 ] pdfxs + (65) show + -129.714 -121.942 m + (3) show + (.) + [3.0327 ] pdfxs + (1) show + (2Benchm) + [11.149 7.72349 4.85451 6.05449 4.54905 6.0654 9.08711 ] pdfxs + (a) show + (rkSui) + [4.27631 9.39264 6.05449 6.0654 3.0327 ] pdfxs + (t) show + (e) + [8.47629 ] pdfxs + (a) show + (ndB) + [6.0654 9.6981 7.72349 ] pdfxs + (a) show + (sic) + [4.30902 3.02179 8.4872 ] pdfxs + (D) show + (SAMe) + [6.0654 11.8144 10.0036 4.8436 ] pdfxs + (a) show + (suremen) + [4.29811 6.0654 4.27631 4.8436 9.08711 4.85451 5.75995 ] pdfxs + (t) show + (s.....................) + [7.29809 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 + ] pdfxs + (69) show + -129.714 -135.492 m + (3) show + (.) + [3.0327 ] pdfxs + (1) show + (3Sc) + [11.149 6.0654 4.8436 ] pdfxs + (a) show + (ling) + [3.0327 3.0327 6.05449 9.08719 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisTimewi) + [3.0327 5.75995 4.29811 3.0327 7.94172 7.8763 3.0327 9.08711 8.4872 7.8763 3.0327 + ] pdfxs + (t) show + (hPr) + [9.68719 7.42902 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (mSize) + [12.7307 6.0654 3.02179 4.85451 8.4872 ] pdfxs + (\(N) show + (umber) + [6.05449 8.79257 6.35994 4.8436 7.909 ] pdfxs + (o) show + (fMem) + [6.97085 10.0036 4.8436 9.09802 ] pdfxs + (o) show + (ryOper) + [4.2654 9.40355 8.47629 6.37085 4.8436 4.27631 ] pdfxs + (at) show + (ions\)....) + [3.02179 5.46541 6.05449 4.30902 8.05092 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (70) show + -129.714 -149.041 m + (3) show + (.) + [3.0327 ] pdfxs + (1) show + (4Sc) + [11.149 6.0654 4.8436 ] pdfxs + (a) show + (ling) + [3.0327 3.0327 6.05449 9.08719 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisSp) + [3.0327 5.75995 4.29811 3.0327 7.94172 6.05449 6.0654 ] pdfxs + (a) show + (cewi) + [4.8436 8.4872 7.8763 3.0327 ] pdfxs + (t) show + (hPr) + [9.6981 7.41812 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (mSize) + [12.7198 6.0654 3.0327 4.8436 8.4872 ] pdfxs + (\(N) show + (umber) + [6.05449 8.79257 6.35994 4.85451 7.909 ] pdfxs + (o) show + (fMem) + [6.97085 9.99272 4.85451 9.08711 ] pdfxs + (o) show + (ryOper) + [4.27631 9.39264 8.4872 6.35994 4.8436 4.27631 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns\)...) + [6.05449 4.30902 14.1163 8.47629 8.4872 13.1562 ] pdfxs + (71) show + -129.714 -162.59 m + (3) show + (.) + [3.0327 ] pdfxs + (1) show + (5) + [11.149 ] pdfxs + (D) show + (SA) + [6.05449 11.8254 ] pdfxs + (A) show + (n) + [6.05449 ] pdfxs + (a) show + (lysisTime) + [3.0327 5.75995 4.29811 3.0327 7.94172 7.8763 3.0327 9.08711 8.4872 ] pdfxs + (a) show + (ndSp) + [6.0654 9.6981 6.05449 6.0654 ] pdfxs + (a) show + (ceC) + [4.8436 8.4872 7.8763 ] pdfxs + (o) show + (nsumpti) + [6.0654 4.29811 6.0654 9.08711 6.0654 4.23277 3.0327 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (Dat) show + (a...................) + [13.8108 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (72) show + -129.714 -176.139 m + (3) show + (.) + [3.0327 ] pdfxs + (1) show + (6) + [11.149 ] pdfxs + (N) show + (umber) + [6.0654 8.78166 6.35994 4.85451 7.60355 ] pdfxs + (o) show + (f) + [6.66539 ] pdfxs + (Loa) show + (d&S) + [9.39264 11.8144 6.05449 ] pdfxs + (to) show + (reins) + [4.27631 8.18175 3.02179 6.0654 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nswhich) + [6.05449 7.63627 7.8763 6.0654 3.02179 4.54905 9.39264 ] pdfxs + (a) show + (ccessn) + [4.8436 4.85451 4.8436 4.30902 7.63627 6.05449 ] pdfxs + (o) show + (n-c) + [6.0654 3.63261 4.8436 ] pdfxs + (o) show + (ll) + [3.0327 3.0327 ] pdfxs + (a) show + (psed,c) + [6.0654 4.29811 4.8436 6.0654 6.4254 4.8436 ] pdfxs + (o) show + (mple) + [9.08711 6.0654 3.0327 4.8436 ] pdfxs + (t) show + (e,) + [4.85451 6.41449 ] pdfxs + (D) show + (S) + [9.39264 ] pdfxs + (N) show + (odes) + [5.75995 6.05449 4.85451 10.2981 ] pdfxs + (73) show + -129.714 -199.651 m + (4) show + (.1) + [3.0327 16.6035 ] pdfxs + (R) show + (esul) + [4.85451 4.29811 6.0654 3.02179 ] pdfxs + (t) show + (s) + [7.94172 ] pdfxs + (o) show + (fEx) + [6.97085 7.41812 5.75995 ] pdfxs + (a) show + (mpleP) + [9.09802 6.05449 3.0327 8.4872 7.12357 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (er) + [4.8436 7.909 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisClients.......................) + [3.0327 5.75995 4.29811 3.0327 7.94172 7.8763 3.0327 3.02179 4.85451 5.75995 4.23277 + 8.72717 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 13.1562 ] pdfxs + (81) show + -129.714 -213.2 m + (4) show + (.2Ex) + [3.0327 16.6035 7.42902 5.74904 ] pdfxs + (a) show + (mpleclien) + [9.09802 6.05449 3.0327 8.4872 4.8436 3.0327 3.0327 4.8436 5.75995 ] pdfxs + (t) show + (s) + [7.94172 ] pdfxs + (o) show + (fmod) + [6.97085 9.08711 5.75995 6.05449 ] pdfxs + (/) show + (refresul) + [4.27631 4.8436 6.97085 4.27631 4.8436 4.30902 6.05449 3.0327 ] pdfxs + (t) show + (s............................) + [12.7526 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (82) show + -129.714 -226.749 m + (4) show + (.3Percent) + [3.0327 16.6035 7.12357 4.8436 4.27631 4.8436 4.85451 5.75995 7.87638 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (AA) show + (-EV) + [3.63261 7.42902 6.97085 ] pdfxs + (A) show + (L) + [10.4508 ] pdfxs + (A) show + (li) + [3.0327 3.02179 ] pdfxs + (a) show + (sQueries) + [7.94172 8.4872 6.0654 4.8436 4.27631 3.02179 4.85451 7.94172 ] pdfxs + (R) show + (e) + [4.8436 ] pdfxs + (t) show + (urned) + [6.0654 4.2654 6.0654 4.8436 9.6981 ] pdfxs + (\\) show + (May) + [10.0036 5.14905 9.39264 ] pdfxs + (A) show + (li) + [3.0327 3.0327 ] pdfxs + (a) show + (s"...............) + [4.29811 9.47992 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (91) show + -129.714 -240.299 m + (4) show + (.4) + [3.0327 16.6035 ] pdfxs + (AA) show + (-EV) + [3.63261 7.42902 6.97085 ] pdfxs + (A) show + (LMod) + [10.4508 10.0036 5.75995 6.05449 ] pdfxs + (/R) show + (efQuery) + [4.85451 6.97085 8.47629 6.0654 4.8436 4.27631 9.39264 ] pdfxs + (R) show + (esp) + [4.85451 4.29811 6.37085 ] pdfxs + (o) show + (nses) + [6.05449 4.30902 4.8436 7.94172 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (\\) show + (MayMod) + [9.99272 5.15996 9.39264 9.99272 5.75995 9.6981 ] pdfxs + (o) show + (r) + [7.909 ] pdfxs + (R) show + (ef"..............) + [4.85451 4.17814 8.50902 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (91) show + -129.714 -253.848 m + (4) show + (.5) + [3.0327 16.6035 ] pdfxs + (AA) show + (-EV) + [3.63261 7.42902 6.97085 ] pdfxs + (A) show + (LMod) + [10.4508 10.0036 5.75995 6.05449 ] pdfxs + (/R) show + (efQuery) + [4.85451 6.97085 8.47629 6.0654 4.8436 4.27631 9.39264 ] pdfxs + (R) show + (esp) + [4.85451 4.29811 6.37085 ] pdfxs + (o) show + (nses) + [6.05449 4.30902 4.8436 7.94172 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (\\N) show + (oMod) + [9.08719 10.0036 5.75995 9.68719 ] pdfxs + (o) show + (rRef"..............) + [7.909 8.03985 4.8436 4.17814 15.7853 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (91) show + -129.714 -267.397 m + (4) show + (.6) + [3.0327 16.6035 ] pdfxs + (AA) show + (-EV) + [3.63261 7.42902 6.97085 ] pdfxs + (A) show + (LMod) + [10.4508 10.0036 5.75995 6.05449 ] pdfxs + (/R) show + (efQuery) + [4.85451 6.97085 8.47629 6.0654 4.8436 4.27631 9.39264 ] pdfxs + (R) show + (esp) + [4.85451 4.29811 6.37085 ] pdfxs + (o) show + (nses) + [6.05449 4.30902 4.8436 7.94172 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (\\) show + (MayOnly) + [9.99272 5.15996 9.39264 8.4872 6.05449 3.0327 9.39264 ] pdfxs + (R) show + (ef"...............) + [4.85451 4.17814 11.869 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (92) show + -129.714 -280.946 m + (4) show + (.7) + [3.0327 16.6035 ] pdfxs + (AA) show + (-EV) + [3.63261 7.42902 6.97085 ] pdfxs + (A) show + (LMod) + [10.4508 10.0036 5.75995 6.05449 ] pdfxs + (/R) show + (efQuery) + [4.85451 6.97085 8.47629 6.0654 4.8436 4.27631 9.39264 ] pdfxs + (R) show + (esp) + [4.85451 4.29811 6.37085 ] pdfxs + (o) show + (nses) + [6.05449 4.30902 4.8436 7.94172 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (\\) show + (MayModOnly"..............) + [9.99272 5.15996 9.39264 9.99272 5.75995 9.6981 8.4872 6.05449 3.0327 5.75995 15.5999 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 13.1562 ] pdfxs + (92) show + -129.714 -294.495 m + (4) show + (.8) + [3.0327 16.6035 ] pdfxs + (AA) show + (-EV) + [3.63261 7.42902 6.97085 ] pdfxs + (A) show + (LMod) + [10.4508 10.0036 5.75995 6.05449 ] pdfxs + (/R) show + (efQuery) + [4.85451 6.97085 8.47629 6.0654 4.8436 4.27631 9.39264 ] pdfxs + (R) show + (esp) + [4.85451 4.29811 6.37085 ] pdfxs + (o) show + (nsesf) + [6.05449 4.30902 4.8436 7.94172 3.32724 ] pdfxs + (o) show + (rds-) + [7.909 6.0654 4.29811 3.64352 ] pdfxs + (a) show + (a.....................) + [11.269 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 + ] pdfxs + (92) show + -129.714 -308.044 m + (4) show + (.9Sc) + [3.0327 16.6035 6.0654 4.8436 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (a) show + (r) + [7.909 ] pdfxs + (L) show + (o) + [5.75995 ] pdfxs + (o) show + (pOp) + [9.68719 8.4872 6.0654 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nTr) + [9.6981 6.97085 4.2654 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (ns.......................) + [6.0654 15.2071 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 13.1562 ] pdfxs + (97) show + -129.714 -321.594 m + (4) show + (.) + [3.0327 ] pdfxs + (1) show + (0) + [11.149 ] pdfxs + (N) show + (umber) + [6.0654 8.78166 6.35994 4.85451 7.909 ] pdfxs + (o) show + (fMem) + [6.97085 9.99272 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 9.39264 ] pdfxs + (L) show + (oc) + [5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nsPr) + [6.0654 7.93081 7.42902 4.27631 ] pdfxs + (o) show + (m) + [9.08711 ] pdfxs + (ot) show + (edTo) + [4.8436 9.6981 6.97085 9.08719 ] pdfxs + (R) show + (e) + [4.85451 ] pdfxs + (g) show + (is) + [3.0327 4.29811 ] pdfxs + (t) show + (ers.................) + [4.85451 4.2654 13.9089 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 13.1562 ] pdfxs + (99) show + -129.714 -335.143 m + (4) show + (.) + [3.0327 ] pdfxs + (1) show + (1) + [11.149 ] pdfxs + (N) show + (umber) + [6.0654 8.78166 6.35994 4.85451 7.909 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (Loa) show + (ds) + [6.05449 7.94172 ] pdfxs + (Ho) show + (is) + [3.0327 4.29811 ] pdfxs + (t) show + (ed) + [4.85451 9.6981 ] pdfxs + (o) show + (rSunk............................) + [7.909 6.05449 6.0654 6.05449 15.7853 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 + ] pdfxs + (100) show + 83.5279 -365.096 m + (xi) + [5.75995 3.0327 ] pdfxs + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + 1 0 0 1 72 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + ([) + [3.0327 ] pdfxs + (100) show + (]ToddMowry,M) + [8.4872 6.95994 5.75995 6.0654 11.4763 9.99272 5.15996 7.8763 4.2654 4.8545 8.89083 + 9.99272 ] pdfxs + (o) show + (nicaS.) + [6.0654 3.0327 4.8436 10.8654 6.0654 8.44356 ] pdfxs + (La) show + (m,) + [9.08711 8.89083 ] pdfxs + (a) show + (nd) + [6.0654 11.4654 ] pdfxs + (A) show + (no) + [6.0654 5.75995 ] pdfxs + (o) show + (pGup) + [11.4763 8.55269 6.0654 6.05449 ] pdfxs + (ta) show + (.) + [13.1672 ] pdfxs + (D) show + (esi) + [4.8436 4.30902 3.0327 ] pdfxs + (g) show + (n) + [11.4654 ] pdfxs + (a) show + (ndev) + [6.0654 11.4763 4.8436 5.14904 ] pdfxs + (a) show + (lu) + [3.0327 6.0654 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [11.4763 ] pdfxs + (o) show + (fac) + [8.74901 10.8654 4.85451 ] pdfxs + (o) show + (mpiler) + [9.08711 6.0654 3.02179 3.0327 4.85451 4.27631 ] pdfxs + 27.879 -21.922 m + (a) show + (l) + [3.0327 ] pdfxs + (go) show + (ri) + [4.2654 3.0327 ] pdfxs + (t) show + (hmf) + [6.0654 13.6907 3.32724 ] pdfxs + (o) show + (rprefe) + [8.8799 6.0654 4.2654 4.85451 3.32724 4.85451 ] pdfxs + (t) show + (chin) + [4.53815 6.0654 3.0327 6.05449 ] pdfxs + (g) show + (.) + [10.7454 ] pdfxs + (I) show + (n) show + 174.342 -21.922 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.25079 ] pdfxs + (o) show + (ft) + [8.13819 3.62179 ] pdfxs + (h) show + (eInt) + [9.80726 4.21089 6.13082 3.62179 ] pdfxs + (e) show + (rn) + [4.60356 6.13082 ] pdfxs + (a) show + (ti) + [3.6327 3.33823 ] pdfxs + (o) show + (n) + [6.14173 ] pdfxs + (a) show + (lC) + [7.57081 7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 9.80726 ] pdfxs + (o) show + (nAr) + [10.9308 7.82171 4.04721 ] pdfxs + (ch) show + (ite) + [3.34914 3.62179 4.46185 ] pdfxs + (c) show + (tur) + [3.62179 5.85816 4.0363 ] pdfxs + (a) show + (l) show + 27.879 -43.845 m + (Su) + [6.13082 5.85816 ] pdfxs + (p) show + (p) + [5.01816 ] pdfxs + (o) show + (rtf) + [4.60356 6.58904 3.34914 ] pdfxs + (o) show + (rPro) + [7.57081 7.40714 4.0363 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmingL) + [8.92348 8.91258 3.34914 6.13082 7.99637 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (age) show + (s) + [7.42899 ] pdfxs + (a) show + (ndOp) + [6.13082 8.55267 8.36718 5.01816 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (a) show + (tingSyst) + [3.6327 3.33823 6.13082 7.99637 6.13082 5.30169 4.45083 3.6327 ] pdfxs + (e) show + (ms) + [8.91258 7.4399 ] pdfxs + (\() show + (ASPLOS) + [8.10534 6.13082 7.40714 6.83993 8.35627 6.14173 ] pdfxs + (\)) show + 364.199 -43.845 m + /N614 10.909 Tf + (,p) + [5.65086 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 6.92718 ] pdfxs + (62{73) show + (,B) + [5.85813 7.72349 ] pdfxs + (o) show + (s) + [4.30902 ] pdfxs + (to) show + (n,) + [6.05449 3.0327 ] pdfxs + 27.879 -65.768 m + (U) show + (S) + [6.0654 ] pdfxs + (A) show + (,Oc) + [6.6654 8.47629 4.85451 ] pdfxs + (to) show + (ber) + [6.35994 4.85451 7.909 ] pdfxs + (1992) show + (.) show + 0 -96.656 m + ([) + [3.0327 ] pdfxs + (101) show + (]) + [8.4872 ] pdfxs + (Ro) show + (bertM.Mu) + [6.35994 4.8436 4.27631 7.70183 9.99272 6.47994 10.0036 6.0654 ] pdfxs + (t) show + (h.) + [6.05449 3.0327 ] pdfxs + 114.957 -96.656 m + /N634 10.909 Tf + (Alt) + [8.10534 2.79267 3.62179 ] pdfxs + (o) show + (:APl) + [8.28 11.8471 7.39623 2.79267 ] pdfxs + (a) show + (tf) + [3.62179 3.34914 ] pdfxs + (o) show + (rmf) + [4.59266 12.6544 3.34914 ] pdfxs + (o) show + (rO) + [8.33444 8.36718 ] pdfxs + (b) show + (je) + [3.33823 4.46185 ] pdfxs + (c) show + (tCodeModi\fc) + [7.36358 7.79997 5.01816 5.58542 8.74909 9.7745 5.01816 5.58542 3.33823 6.13082 4.46185 + ] pdfxs + (a) show + (ti) + [3.6327 3.33823 ] pdfxs + (o) show + (n) show + 337.279 -96.656 m + /N614 10.909 Tf + (.Ph.d.Thesis,) + [7.57084 7.41812 6.0654 3.0327 6.05449 6.47994 7.88721 6.05449 4.85451 4.29811 3.0327 + 4.29811 6.52358 ] pdfxs + (D) show + (ep) + [4.8436 6.0654 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (t) show + (men) + [9.09802 4.8436 5.75995 ] pdfxs + (t) show + 27.879 -118.579 m + (o) show + (fC) + [6.97085 7.8763 ] pdfxs + (o) show + (mputerScience,) + [9.08711 6.0654 6.0654 4.23277 4.85451 7.909 6.05449 4.85451 3.0327 4.8436 6.0654 + 4.8436 4.85451 6.6654 ] pdfxs + (U) show + (niversity) + [6.05449 3.0327 5.4545 4.85451 4.2654 4.30902 3.02179 3.94914 9.39264 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (A) show + (riz) + [4.2654 3.0327 4.8436 ] pdfxs + (o) show + (n) + [6.0654 ] pdfxs + (a) show + (,) + [6.6654 ] pdfxs + (1999) show + (.) show + 0 -149.468 m + ([) + [3.0327 ] pdfxs + (102) show + (]ErikM.) + [8.4872 7.41812 4.27631 3.0327 8.7272 10.0036 5.99995 ] pdfxs + (N) show + (ys) + [5.75995 4.29811 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (o) show + (m,) + [9.08711 6.14176 ] pdfxs + (Ho) show + (n) + [6.05449 ] pdfxs + (g) show + (-Se) + [3.63261 6.0654 4.8436 ] pdfxs + (o) show + (kKim,) + [8.7381 8.4872 3.02179 9.09802 6.13086 ] pdfxs + (a) show + (ndWenmeiW.) + [6.0654 9.03265 10.2981 4.85451 9.03265 9.08711 4.85451 5.99995 11.2144 5.99995 ] pdfxs + (H) show + (wu.B) + [7.8763 6.0654 6.78539 7.72349 ] pdfxs + (otto) show + (m-up) + [9.08711 3.64352 6.05449 9.03265 ] pdfxs + (a) show + (nd) + [6.0654 9.03265 ] pdfxs + (to) show + (p-downc) + [6.05449 3.64352 6.05449 5.14905 7.88721 9.03265 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (ex) + [4.8436 5.75995 ] pdfxs + (t) show + (-) show + 27.879 -171.39 m + (sensi) + [4.29811 4.85451 6.05449 4.30902 3.0327 ] pdfxs + (t) show + (ivesumm) + [3.02179 5.4545 8.21448 4.30902 6.05449 9.09802 9.08711 ] pdfxs + (a) show + (ry-b) + [4.27631 5.74904 3.64352 6.05449 ] pdfxs + (a) show + (sedp) + [4.30902 4.8436 9.42537 6.37085 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (er) + [4.85451 7.63628 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis.) + [3.0327 5.75995 4.29811 3.0327 4.30902 7.41812 ] pdfxs + (I) show + (n) show + 244.646 -171.39 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (softheInt) + [8.10535 5.58542 6.99274 3.62179 5.58542 8.66182 4.21089 6.13082 3.62179 ] pdfxs + (e) show + (rn) + [4.60356 6.13082 ] pdfxs + (a) show + (ti) + [3.6327 3.33823 ] pdfxs + (o) show + (n) + [6.14173 ] pdfxs + (a) show + (lSymp) + [6.43627 6.14173 5.29078 8.92348 5.01816 ] pdfxs + (os) show + (ium) + [3.34914 5.84725 12.578 ] pdfxs + (o) show + (n) show + 27.879 -193.313 m + (StaticAn) + [6.13082 3.62179 5.58542 3.62179 3.33823 8.92363 7.83262 6.13082 ] pdfxs + (a) show + (ly) + [2.79267 5.29078 ] pdfxs + (s) show + (is) + [3.34914 8.36716 ] pdfxs + (\() show + (SAS) + [6.13082 8.10534 6.13082 ] pdfxs + (\)) show + 132.193 -193.313 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (2004) show + (.) show + 0 -224.202 m + ([) + [3.0327 ] pdfxs + (103) show + (]ErikM.) + [8.4872 7.41812 4.27631 3.0327 8.95628 10.0036 6.23994 ] pdfxs + (N) show + (ys) + [5.75995 4.29811 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (o) show + (m,) + [9.08711 6.31631 ] pdfxs + (Ho) show + (n) + [6.0654 ] pdfxs + (g) show + (-Se) + [3.63261 6.0654 4.8436 ] pdfxs + (o) show + (kKim,) + [8.96719 8.4872 3.0327 9.08711 6.32722 ] pdfxs + (a) show + (ndWenmeiW.) + [6.05449 9.27264 10.2981 4.85451 9.26173 9.08711 4.85451 6.23994 11.2035 6.23994 ] pdfxs + (H) show + (wu.) + [7.8763 6.0654 7.16721 ] pdfxs + (I) show + (mp) + [9.08711 6.37085 ] pdfxs + (o) show + (r) + [4.2654 ] pdfxs + (ta) show + (nce) + [6.0654 4.8436 8.06175 ] pdfxs + (o) show + (fhe) + [6.53449 6.0654 4.8436 ] pdfxs + (a) show + (pspeci) + [9.27264 4.29811 6.35994 4.85451 4.8436 3.0327 ] pdfxs + (a) show + (liz) + [3.0327 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) show + 27.879 -246.124 m + (inp) + [3.0327 11.149 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (er) + [4.85451 9.3599 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis.) + [3.0327 5.75995 4.29811 3.0327 4.30902 12.1853 ] pdfxs + (I) show + (n) show + 145.778 -246.124 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (soft) + [9.68715 5.58542 8.57455 3.6327 ] pdfxs + (h) show + (e) + [10.2545 ] pdfxs + (200) show + (1ACMSIGPLAN-SIGSOFT) + [10.8108 7.83262 7.79997 15.0217 6.13082 4.21089 8.43268 7.40714 6.83993 8.10534 8.11625 + 3.89453 6.14173 4.19998 8.44359 6.13082 8.36718 7.12357 13.0363 ] pdfxs + (Wo) show + (r) + [4.60356 ] pdfxs + (ksho) show + (p) + [10.8108 ] pdfxs + (o) show + (n) show + 27.879 -268.047 m + (Pro) + [7.39623 4.04721 5.01816 ] pdfxs + (g) show + (ramAn) + [4.0363 5.58542 14.0616 7.83262 6.13082 ] pdfxs + (a) show + (lysisf) + [2.79267 5.30169 4.45083 3.34914 9.61079 3.34914 ] pdfxs + (o) show + (rS) + [9.7417 6.14173 ] pdfxs + (o) show + (ftw) + [3.33823 3.6327 7.24359 ] pdfxs + (a) show + (reTo) + [4.04721 10.1673 6.97089 5.01816 ] pdfxs + (o) show + (ls) + [2.78176 9.61079 ] pdfxs + (a) show + (ndEn) + [6.13082 10.7236 7.40714 6.13082 ] pdfxs + (g) show + (ine) + [3.34914 6.13082 4.46185 ] pdfxs + (e) show + (ring) + [4.59266 3.34914 6.13082 10.1673 ] pdfxs + (\() show + (PASTE) + [6.56715 8.10534 6.13082 7.81088 7.39623 ] pdfxs + (\)) show + 341.548 -268.047 m + /N614 10.909 Tf + (,p) + [8.01811 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 9.29443 ] pdfxs + (43{48) show + (,) + [8.35629 ] pdfxs + (N) show + (ewY) + [4.85451 12.8726 7.26539 ] pdfxs + (o) show + (rk,) + [4.27631 5.75995 3.0327 ] pdfxs + 27.879 -289.97 m + (NY) show + (,) + [6.6654 ] pdfxs + (U) show + (S) + [6.0654 ] pdfxs + (A) show + (,) + [6.6654 ] pdfxs + (2004) show + (.) show + 0 -320.858 m + ([) + [3.0327 ] pdfxs + (104) show + (]David) + [8.4872 8.32365 5.15996 5.74904 3.0327 10.9199 ] pdfxs + (J) show + (.Pe) + [7.8872 7.12357 4.8436 ] pdfxs + (a) show + (rce) + [4.27631 4.8436 9.70901 ] pdfxs + (a) show + (ndP) + [6.05449 10.9199 7.12357 ] pdfxs + (a) show + (ul) + [6.0654 7.87629 ] pdfxs + (H) show + (.) + [7.8872 ] pdfxs + (J) show + (.Kelly.Adyn) + [7.8872 8.4872 4.85451 3.02179 3.0327 4.8545 11.4981 13.0363 6.0654 5.74904 6.0654 + ] pdfxs + (a) show + (mic) + [9.08711 3.0327 9.70901 ] pdfxs + (a) show + (l) + [3.02179 ] pdfxs + (go) show + (ri) + [4.27631 3.0327 ] pdfxs + (t) show + (hmf) + [6.05449 13.9525 3.32724 ] pdfxs + (o) show + (r) + [9.13081 ] pdfxs + (to) show + (p) + [6.37085 ] pdfxs + (o) show + (l) + [3.02179 ] pdfxs + (og) show + (ic) + [3.0327 4.85451 ] pdfxs + (a) show + (llys) + [3.02179 3.0327 10.6145 4.30902 ] pdfxs + (o) show + (r) + [4.2654 ] pdfxs + (t) show + (ingdi-) + [3.0327 6.05449 10.3199 6.05449 3.0327 3.63261 ] pdfxs + 27.879 -342.781 m + (rected) + [4.27631 4.8436 4.85451 4.23277 4.85451 10.8981 ] pdfxs + (a) show + (cyclic) + [4.85451 5.75995 4.8436 3.0327 3.0327 9.68719 ] pdfxs + (g) show + (r) + [4.27631 ] pdfxs + (a) show + (phs.) + [6.05449 6.0654 4.29811 11.4654 ] pdfxs + (I) show + (n) show + 156.42 -342.781 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.46897 ] pdfxs + (o) show + (ft) + [8.35637 3.6327 ] pdfxs + (h) show + (e) + [10.0254 ] pdfxs + (3) show + (rdInt) + [4.04721 10.5927 4.19998 6.13082 3.6327 ] pdfxs + (e) show + (rn) + [4.59266 6.14173 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (a) show + (l) + [7.7999 ] pdfxs + (Wo) show + (r) + [4.60356 ] pdfxs + (ksho) show + (p) + [10.5927 ] pdfxs + (o) show + (nE\016) + [11.149 7.39623 9.62178 ] pdfxs + (c) show + (i) + [3.33823 ] pdfxs + (e) show + (nt) + [6.13082 8.63993 ] pdfxs + (a) show + (n) + [6.14173 ] pdfxs + (d) show + 27.879 -364.703 m + (E) + [7.39623 ] pdfxs + (x) show + (p) + [5.01816 ] pdfxs + (e) show + (rim) + [4.60356 3.34914 8.91258 ] pdfxs + (e) show + (nt) + [6.14173 3.62179 ] pdfxs + (a) show + (lAl) + [6.38173 7.82171 2.79267 ] pdfxs + (go) show + (rit) + [4.60356 3.33823 3.6327 ] pdfxs + (h) show + (ms) + [8.91258 8.0508 ] pdfxs + (\(W) show + (EA) + [7.39623 11.7053 ] pdfxs + (2004\)) show + 210.52 -364.703 m + /N614 10.909 Tf + (,) + [6.39267 ] pdfxs + (L) show + (ec) + [4.85451 4.8436 ] pdfxs + (t) show + (ure) + [6.05449 4.27631 8.14902 ] pdfxs + (Not) show + (esinC) + [4.8436 7.60354 3.02179 9.35992 7.8763 ] pdfxs + (o) show + (mpu) + [9.09802 6.05449 6.0654 ] pdfxs + (t) show + (erScience.Sprin) + [4.8436 7.57082 6.0654 4.8436 3.0327 4.8436 6.0654 4.8436 4.85451 6.32722 6.05449 + 6.0654 4.2654 3.0327 6.0654 ] pdfxs + (g) show + (er-Verl) + [4.8436 4.27631 3.63261 7.2763 4.8436 4.27631 3.0327 ] pdfxs + (ag) show + (,) show + 27.879 -386.626 m + (2004) show + (.) show + 0 -417.515 m + ([) + [3.0327 ] pdfxs + (105) show + (]David) + [8.4872 8.32365 5.15996 5.74904 3.0327 10.0581 ] pdfxs + (J) show + (.Pe) + [7.02539 7.11266 4.85451 ] pdfxs + (a) show + (rce,P) + [4.27631 4.8436 4.85451 7.11266 7.11266 ] pdfxs + (a) show + (ul) + [6.0654 7.02539 ] pdfxs + (H) show + (.) + [7.02539 ] pdfxs + (J) show + (.Kelly,) + [7.01448 8.4872 4.85451 3.02179 3.0327 4.8545 7.11266 ] pdfxs + (a) show + (ndChris) + [6.05449 10.0581 7.8763 6.0654 4.2654 3.0327 8.30172 ] pdfxs + (Ha) show + (nkin.Onlinecyclede) + [6.05449 5.75995 3.0327 6.05449 8.93447 8.4872 6.0654 3.02179 3.0327 6.0654 8.83629 + 4.85451 5.74904 4.85451 3.0327 8.83629 6.0654 4.8436 ] pdfxs + (t) show + (ec) + [4.85451 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [10.0472 ] pdfxs + (a) show + (nddi\013erence) + [6.0654 10.0581 6.05449 3.0327 6.35986 4.85451 4.2654 4.85451 6.05449 4.85451 4.8436 + ] pdfxs + 27.879 -439.437 m + (pr) + [6.0654 4.2654 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (agat) show + (i) + [3.02179 ] pdfxs + (o) show + (nf) + [11.1163 3.32724 ] pdfxs + (o) show + (rp) + [9.31626 6.37085 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (er) + [4.85451 9.31626 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis.) + [3.02179 5.75995 4.30902 3.02179 4.30902 12.0653 ] pdfxs + (I) show + (n) show + 211.559 -439.437 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.65442 ] pdfxs + (o) show + (ft) + [8.55273 3.62179 ] pdfxs + (h) show + (eInt) + [10.2218 4.19998 6.13082 3.6327 ] pdfxs + (e) show + (rn) + [4.59266 6.14173 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (a) show + (lIEEE) + [7.98535 4.21089 7.39623 7.39623 12.5998 ] pdfxs + (Wo) show + (r) + [4.60356 ] pdfxs + (ksho) show + (p) + [10.7781 ] pdfxs + (o) show + (n) show + 27.879 -461.36 m + (S) + [6.13082 ] pdfxs + (o) show + (urceCo) + [5.85816 4.04721 4.45094 8.92363 7.81088 5.01816 ] pdfxs + (d) show + (eAn) + [8.92363 7.82171 6.14173 ] pdfxs + (a) show + (ly) + [2.78176 5.30169 ] pdfxs + (s) show + (is) + [3.33823 8.36716 ] pdfxs + (a) show + (ndM) + [6.13082 9.47994 9.7854 ] pdfxs + (a) show + (ni) + [6.13082 3.34914 ] pdfxs + (p) show + (ul) + [5.85816 2.78176 ] pdfxs + (a) show + (ti) + [3.6327 3.33823 ] pdfxs + (o) show + (n) + [10.0362 ] pdfxs + (\() show + (SCAM) + [6.14173 7.79997 8.10534 9.7854 ] pdfxs + (\)) show + 263.132 -461.36 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (2003) show + (.) show + 0 -492.249 m + ([) + [3.0327 ] pdfxs + (106) show + (]) + [8.4872 ] pdfxs + (R) show + (odricM.) + [5.74904 6.0654 4.27631 3.02179 8.45447 10.0036 6.63267 ] pdfxs + (Ra) show + (bb) + [6.05449 6.0654 ] pdfxs + (a) show + (h) + [9.66537 ] pdfxs + (a) show + (ndKrishna) + [6.05449 9.66537 8.4872 4.2654 3.0327 4.30902 6.05449 6.0654 9.05447 ] pdfxs + (V) show + (.P) + [6.63267 7.12357 ] pdfxs + (a) show + (lem.) + [3.02179 4.85451 9.08711 7.81084 ] pdfxs + (Dat) show + (arem) + [9.05447 4.27631 4.8436 9.09802 ] pdfxs + (a) show + (ppingf) + [6.05449 6.0654 3.02179 6.0654 9.05447 3.33815 ] pdfxs + (o) show + (rdesi) + [7.87628 6.05449 4.85451 4.29811 3.0327 ] pdfxs + (g) show + (nsp) + [9.66537 4.29811 6.0654 ] pdfxs + (a) show + (ce) + [4.8436 8.45447 ] pdfxs + (o) show + (p) + [6.05449 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.66537 ] pdfxs + (o) show + (f) show + 27.879 -514.171 m + (embeddedmem) + [4.8436 8.79257 6.35994 4.85451 6.05449 6.0654 4.8436 10.4072 9.08711 4.85451 9.08711 + ] pdfxs + (o) show + (rysys) + [4.27631 10.1017 4.29811 5.75995 4.29811 ] pdfxs + (t) show + (ems.) + [4.85451 9.08711 4.30902 3.0327 ] pdfxs + 169.779 -514.171 m + /N634 10.909 Tf + (Tran) + [6.97089 4.0363 5.58542 6.13082 ] pdfxs + (sac) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (ns) + [6.13082 9.01079 ] pdfxs + (o) show + (nEmbe) + [10.6908 7.39623 8.92348 4.46185 4.46185 ] pdfxs + (dd) show + (edC) + [4.46185 10.1236 7.81088 ] pdfxs + (o) show + (m) + [8.92348 ] pdfxs + (p) show + (utingSy) + [5.85816 3.62179 3.34914 6.13082 9.56726 6.13082 5.30169 ] pdfxs + (s) show + (t) + [3.62179 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (s) show + 396.814 -514.171 m + /N614 10.909 Tf + (,) + [7.54902 ] pdfxs + (2\(2\)) show + (:) + [3.0327 ] pdfxs + (186{218) show + (,) show + 27.879 -536.094 m + (2003) show + (.) show + -3.05176e-05 -566.983 m + ([) + [3.0327 ] pdfxs + (107) show + (]Chrisl) + [8.4872 7.8763 6.05449 4.27631 3.0327 4.29811 3.0327 ] pdfxs + (a) show + (in) + [3.0327 11.0072 ] pdfxs + (Ra) show + (z) + [4.8436 ] pdfxs + (a) show + (\fm) + [6.0654 9.08711 ] pdfxs + (a) show + (hef) + [6.0654 4.8436 3.33815 ] pdfxs + (a) show + (.Astudy) + [11.7599 13.1235 4.30902 4.23277 6.0654 6.0654 10.7017 ] pdfxs + (o) show + (fside-e\013ect) + [8.26902 4.30902 3.02179 6.0654 4.85451 3.63261 4.8436 6.37077 4.8436 4.85451 9.18546 + ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysesf) + [3.0327 5.75995 4.29811 4.85451 9.23989 3.33815 ] pdfxs + (o) show + (rjav) + [9.21808 3.32724 5.15996 5.14904 ] pdfxs + (a) show + (.M) + [11.7599 10.0036 ] pdfxs + (a) show + (s) + [4.29811 ] pdfxs + (t) show + (er's) + [4.85451 4.2654 3.0327 9.2508 ] pdfxs + (t) show + (hesis,McGill) + [6.05449 4.85451 4.29811 3.0327 4.29811 8.30175 10.0036 4.8436 8.5636 3.0327 3.0327 + 3.0327 ] pdfxs + 27.879 -588.905 m + (U) show + (niversity,) + [6.0654 3.02179 5.4545 4.85451 4.2654 4.30902 3.0327 3.93823 4.84359 6.6654 ] pdfxs + (D) show + (ec1) + [4.85451 8.47629 5.46541 ] pdfxs + (999) show + (.) show + -3.05176e-05 -619.794 m + ([) + [3.0327 ] pdfxs + (108) show + (]M) + [8.4872 9.99272 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (inC.) + [3.0327 10.5163 7.8763 7.49448 ] pdfxs + (R) show + (in) + [3.0327 6.0654 ] pdfxs + (a) show + (rd) + [4.2654 10.5272 ] pdfxs + (a) show + (ndPedroC.) + [6.0654 10.5163 7.12357 4.8436 6.0654 4.27631 9.91628 7.8763 7.49448 ] pdfxs + (D) show + (iniz.C) + [3.0327 6.05449 3.0327 4.8436 10.3308 7.8763 ] pdfxs + (o) show + (mmu) + [9.09802 8.78166 6.0654 ] pdfxs + (tat) show + (ivity) + [3.02179 5.75995 3.0327 3.93823 10.2217 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis:anew) + [3.0327 5.75995 4.29811 3.0327 4.30902 9.52355 9.91628 6.0654 4.8436 12.349 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 8.7708 ] pdfxs + (t) show + (echnique) + [4.8436 4.54905 6.05449 6.0654 3.0327 5.74904 6.0654 4.8436 ] pdfxs + 225.818 -657.201 m + (207) show + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (10) 11 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 0.000000 0.000000 translate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + 1 0 0 1 77.455 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + ([) + [3.0327 ] pdfxs + (90) show + (]Chris) + [8.4872 7.8763 6.05449 4.27631 3.0327 8.32353 ] pdfxs + (Latt) show + (ner) + [6.0654 4.8436 8.30173 ] pdfxs + (a) show + (nd) + [6.0654 10.0799 ] pdfxs + (V) show + (ikr) + [3.0327 5.75995 4.27631 ] pdfxs + (a) show + (m) + [13.1125 ] pdfxs + (A) show + (dve.Tr) + [6.0654 5.4545 4.8436 9.03265 6.97085 4.2654 ] pdfxs + (a) show + (nsp) + [6.0654 4.29811 6.0654 ] pdfxs + (a) show + (rentP) + [4.27631 4.8436 5.75995 8.2691 7.42902 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (erC) + [4.8436 8.30173 7.88721 ] pdfxs + (o) show + (mpressi) + [9.08711 6.05449 4.27631 4.85451 4.29811 4.29811 3.0327 ] pdfxs + (o) show + (nf) + [10.0908 3.33815 ] pdfxs + (o) show + (r) + [8.29082 ] pdfxs + (L) show + (inked) + [3.0327 6.0654 5.4545 4.8436 10.0908 ] pdfxs + (Dat) show + (aS) + [9.47992 6.05449 ] pdfxs + (t) show + (ruc-) + [4.27631 6.0654 4.8436 3.63261 ] pdfxs + 22.424 -21.922 m + (t) show + (ures.) + [6.05449 4.27631 4.85451 4.29811 8.54174 ] pdfxs + (I) show + (n) show + 68.559 -21.922 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (softheACM) + [8.56353 5.58542 7.45092 3.62179 5.58542 9.11999 7.83262 7.81088 13.8872 ] pdfxs + (Wo) show + (r) + [4.60356 ] pdfxs + (ksho) show + (p) + [9.68721 ] pdfxs + (o) show + (nM) + [10.2544 9.7745 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (o) show + (rySy) + [4.60356 9.40347 6.14173 5.29078 ] pdfxs + (s) show + (t) + [3.62179 ] pdfxs + (e) show + (mP) + [13.0362 7.39623 ] pdfxs + (e) show + (rf) + [4.60356 3.34914 ] pdfxs + (o) show + (rm) + [4.59266 8.92348 ] pdfxs + (a) show + (nc) + [6.13082 4.46185 ] pdfxs + (e) show + 396.673 -21.922 m + /N614 10.909 Tf + (,Chic) + [6.94903 7.8763 6.0654 3.0327 4.8436 ] pdfxs + (ago) show + (,I) + [6.94903 3.94897 ] pdfxs + (L) show + (,) show + 22.424 -43.845 m + (J) show + (un) + [6.05449 9.6981 ] pdfxs + (2005) show + (.) show + 1.52588e-05 -74.734 m + ([) + [3.0327 ] pdfxs + (91) show + (]D) + [8.4872 8.32365 ] pdfxs + (o) show + (n) + [6.0654 ] pdfxs + (g) show + (lin) + [3.0327 3.0327 8.51992 ] pdfxs + (L) show + (i) + [3.02179 ] pdfxs + (a) show + (ng) + [6.0654 7.90902 ] pdfxs + (a) show + (ndM) + [6.0654 8.51992 10.0036 ] pdfxs + (a) show + (ry) + [4.2654 8.22538 ] pdfxs + (J) show + (e) + [4.8436 ] pdfxs + (a) show + (n) + [8.51992 ] pdfxs + (Ha) show + (rr) + [4.27631 4.2654 ] pdfxs + (o) show + (ld.E\016cientp) + [3.0327 6.0654 5.9454 7.42902 9.08711 4.8436 3.0327 4.85451 5.74904 6.70912 6.35994 + ] pdfxs + (o) show + (ints-) + [3.0327 5.75995 4.23277 4.30902 3.63261 ] pdfxs + (t) show + (o) + [7.91993 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysisf) + [3.0327 5.75995 4.29811 3.0327 6.76355 3.32724 ] pdfxs + (o) show + (rwh) + [6.74174 7.8763 6.05449 ] pdfxs + (o) show + (le-pr) + [3.0327 4.85451 3.63261 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (m) + [11.5525 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis.) + [3.0327 5.75995 4.29811 3.0327 4.30902 3.0327 ] pdfxs + 22.424 -96.656 m + (I) show + (n) show + 37.392 -96.656 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.58897 ] pdfxs + (o) show + (ft) + [8.46546 3.6327 ] pdfxs + (h) show + (eEurope) + [10.1454 7.39623 5.85816 4.0363 5.58542 5.01816 4.45094 ] pdfxs + (a) show + (nS) + [11.269 6.13082 ] pdfxs + (o) show + (ftwareEn) + [3.34914 3.62179 7.24359 5.58542 4.0363 10.1454 7.40714 6.13082 ] pdfxs + (g) show + (ine) + [3.33823 6.14173 4.46185 ] pdfxs + (e) show + (ringC) + [4.59266 3.34914 6.13082 10.1454 7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (e) show + (nce\(ESEC) + [6.14173 4.45094 10.1563 4.45083 7.40714 6.13082 7.39623 7.81088 ] pdfxs + (\)) show + 382.245 -96.656 m + /N614 10.909 Tf + (,p) + [7.99629 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 9.27262 ] pdfxs + (199{215) show + (,) show + 22.424 -118.579 m + (1999) show + (.) show + 1.52588e-05 -149.468 m + ([) + [3.0327 ] pdfxs + (92) show + (]D) + [8.4872 8.32365 ] pdfxs + (o) show + (n) + [6.0654 ] pdfxs + (g) show + (lin) + [3.0327 3.0327 9.23992 ] pdfxs + (L) show + (i) + [3.0327 ] pdfxs + (a) show + (ng) + [6.0654 8.63993 ] pdfxs + (a) show + (ndM) + [6.05449 9.25083 10.0036 ] pdfxs + (a) show + (ry) + [4.2654 8.94538 ] pdfxs + (J) show + (e) + [4.85451 ] pdfxs + (a) show + (n) + [9.23992 ] pdfxs + (Ha) show + (rr) + [4.27631 4.27631 ] pdfxs + (o) show + (ld.E\016cientc) + [3.02179 6.0654 7.13448 7.41812 9.09802 4.8436 3.0327 4.8436 5.75995 7.42911 4.85451 + ] pdfxs + (o) show + (mpu) + [9.08711 6.05449 6.0654 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.23992 ] pdfxs + (o) show + (fp) + [6.52358 6.0654 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (a) show + (me) + [9.09802 4.8436 ] pdfxs + (t) show + (erizedp) + [4.8436 4.27631 3.0327 4.8436 4.85451 9.23992 6.37085 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (erinf) + [4.85451 7.45083 3.0327 6.0654 3.32724 ] pdfxs + (o) show + (r-) + [4.27631 3.63261 ] pdfxs + 22.424 -171.39 m + (m) + [9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nf) + [9.27264 3.33815 ] pdfxs + (o) show + (rin) + [7.48355 3.0327 5.74904 ] pdfxs + (t) show + (erprocedur) + [4.85451 4.2654 6.0654 4.27631 5.74904 4.85451 4.8436 6.0654 6.05449 4.27631 ] pdfxs + (a) show + (l) + [6.23994 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis.) + [3.0327 5.75995 4.29811 3.0327 4.29811 7.17812 ] pdfxs + (I) show + (n) show + 209.059 -171.39 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [7.97444 ] pdfxs + (o) show + (ft) + [6.85092 3.6327 ] pdfxs + (h) show + (eInt) + [8.53091 4.19998 6.14173 3.62179 ] pdfxs + (e) show + (rn) + [4.59266 6.14173 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (a) show + (lSymp) + [6.30536 6.13082 5.30169 8.91258 5.01816 ] pdfxs + (os) show + (ium) + [3.34914 5.85816 12.4362 ] pdfxs + (o) show + (nStati) + [9.64351 6.13082 3.62179 5.58542 3.62179 3.33823 ] pdfxs + (c) show + 22.424 -193.313 m + (An) + [7.83262 6.13082 ] pdfxs + (a) show + (ly) + [2.79267 5.29078 ] pdfxs + (s) show + (is) + [3.34914 8.35625 ] pdfxs + (\() show + (SAS) + [6.14173 8.10534 6.13082 ] pdfxs + (\)) show + 95.514 -193.313 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (J) show + (uly) + [6.0654 3.02179 9.39264 ] pdfxs + (2) show + (0) + [5.46541 ] pdfxs + (01) show + (.) show + 1.52588e-05 -224.202 m + ([) + [3.0327 ] pdfxs + (93) show + (]Tim) + [8.4872 7.8763 3.0327 13.058 ] pdfxs + (L) show + (indh) + [3.0327 6.05449 6.0654 6.05449 ] pdfxs + (o) show + (lm) + [3.0327 13.058 ] pdfxs + (a) show + (ndFr) + [6.0654 10.0254 6.21813 4.27631 ] pdfxs + (a) show + (nkYellin.) + [6.05449 9.73082 7.26539 4.85451 3.0327 3.02179 3.0327 6.0654 3.0327 ] pdfxs + 185.378 -224.202 m + /N634 10.909 Tf + (T) + [7.81088 ] pdfxs + (h) show + (e) + [9.22908 ] pdfxs + (Jav) show + (aVirtu) + [9.78539 8.10534 3.34914 4.59266 3.6327 5.84725 ] pdfxs + (a) show + (lM) + [7.00354 9.7854 ] pdfxs + (ach) show + (ineSpe) + [3.33823 6.14173 9.22908 6.13082 5.01816 4.46185 ] pdfxs + (c) show + (i\fcation) + [3.33823 6.14173 4.45094 5.58542 3.62179 3.33823 5.58542 6.13082 ] pdfxs + 375.684 -224.202 m + /N614 10.909 Tf + (.) + [8.8581 ] pdfxs + (A) show + (ddis) + [6.0654 6.05449 3.0327 4.30902 ] pdfxs + (o) show + (n-Wesley,) + [6.05449 3.64352 10.2981 4.8436 4.30902 3.0327 4.8436 4.8545 3.0327 ] pdfxs + 22.424 -246.124 m + (R) show + (e) + [4.85451 ] pdfxs + (a) show + (din) + [6.05449 3.0327 6.05449 ] pdfxs + (g) show + (,M) + [6.6763 9.99272 ] pdfxs + (A) show + (,) + [6.6654 ] pdfxs + (1997) show + (.) show + 1.52588e-05 -277.013 m + ([) + [3.0327 ] pdfxs + (94) show + (]Chi-Keung) + [8.4872 7.8763 6.05449 3.0327 3.63261 8.4872 4.85451 6.05449 6.0654 9.75264 ] pdfxs + (L) show + (uk) + [6.05449 10.0581 ] pdfxs + (a) show + (ndToddC.Mowry.) + [6.0654 10.3526 6.97085 5.75995 6.05449 10.3635 7.8763 7.33084 9.99272 5.15996 7.8763 + 4.27631 4.84359 9.83991 ] pdfxs + (A) show + (u) + [6.05449 ] pdfxs + (to) show + (m) + [9.09802 ] pdfxs + (a) show + (ticc) + [4.23277 3.0327 9.15265 4.8436 ] pdfxs + (o) show + (mpiler-inser) + [9.08711 6.0654 3.0327 3.0327 4.8436 4.27631 3.63261 3.0327 6.05449 4.30902 4.8436 + 4.27631 ] pdfxs + (t) show + (edprefe) + [4.8436 10.3635 6.05449 4.27631 4.8436 3.33815 4.8436 ] pdfxs + (t) show + (chingf) + [4.54905 6.0654 3.02179 6.0654 9.75264 3.32724 ] pdfxs + (o) show + (rp) + [8.57445 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er-) + [4.8436 4.27631 3.63261 ] pdfxs + 22.424 -298.936 m + (b) + [6.0654 ] pdfxs + (a) show + (sed) + [4.29811 4.8436 9.6981 ] pdfxs + (a) show + (pplic) + [6.0654 6.05449 3.0327 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns.) + [6.0654 4.29811 3.0327 ] pdfxs + 117.685 -298.936 m + /N634 10.909 Tf + (IEEETr) + [4.21089 7.39623 7.39623 11.3017 6.97089 4.04721 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (sac) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (ns) + [6.13082 8.36716 ] pdfxs + (o) show + (nC) + [10.0362 7.81088 ] pdfxs + (o) show + (m) + [8.92348 ] pdfxs + (p) show + (ut) + [5.84725 3.6327 ] pdfxs + (e) show + (r) + [4.59266 ] pdfxs + (s) show + 279.859 -298.936 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (48\(2\)) show + (:) + [3.0327 ] pdfxs + (134{141) show + (,) + [6.6654 ] pdfxs + (1999) show + (.) show + 0 -329.825 m + ([) + [3.0327 ] pdfxs + (95) show + (]ErikMeijer) + [8.4872 7.41812 4.27631 3.0327 8.33447 9.99272 4.85451 3.0327 3.32724 4.85451 6.85083 + ] pdfxs + (a) show + (nd) + [6.05449 8.63992 ] pdfxs + (Jo) show + (hnG) + [6.05449 8.63992 8.5636 ] pdfxs + (o) show + (u) + [6.0654 ] pdfxs + (g) show + (h.A) + [6.05449 6.14176 10.7563 ] pdfxs + (t) show + (echnic) + [4.85451 4.53815 6.0654 6.0654 3.02179 4.85451 ] pdfxs + (a) show + (loverview) + [5.60722 5.14905 5.4545 4.85451 4.2654 5.75995 3.0327 4.8436 10.4617 ] pdfxs + (o) show + (f) + [5.91267 ] pdfxs + (t) show + (heC) + [6.05449 7.42903 7.8763 ] pdfxs + (o) show + (mmm) + [9.09802 9.08711 9.08711 ] pdfxs + (o) show + (n) + [8.63992 ] pdfxs + (La) show + (n) + [6.0654 ] pdfxs + (g) show + (u) + [6.05449 ] pdfxs + (ag) show + (e) + [7.42903 ] pdfxs + (I) show + (nfr) + [6.0654 3.32724 4.27631 ] pdfxs + (a) show + (s) + [4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ure,) + [6.05449 4.27631 4.85451 3.0327 ] pdfxs + 22.424 -351.747 m + (2002) show + (.) show + 52.109 -351.747 m + /N722 10.909 Tf + (http://research.microsoft.com/) show + (~) + [-6.63231e-05 ] pdfxs + (emeijer) show + (/) + [11.4544 ] pdfxs + (Papers/CLR.pdf) show + 355.651 -351.747 m + /N614 10.909 Tf + (.) show + 0 -382.636 m + ([) + [3.0327 ] pdfxs + (96) show + (]Micr) + [8.4872 9.99272 3.0327 4.8436 4.27631 ] pdfxs + (o) show + (s) + [4.30902 ] pdfxs + (o) show + (ftC) + [3.32724 7.63638 7.88721 ] pdfxs + (o) show + (rp.M) + [4.2654 6.0654 7.47266 10.0036 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (ag) show + (edex) + [4.85451 9.4581 4.8436 5.75995 ] pdfxs + (t) show + (ensi) + [4.8436 6.0654 4.29811 3.0327 ] pdfxs + (o) show + (nsf) + [6.0654 7.69081 3.33815 ] pdfxs + (o) show + (rC++speci\fc) + [7.66901 7.8763 8.4872 11.8799 4.29811 6.37085 4.8436 4.85451 3.0327 6.05449 4.85451 + ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n..) + [6.0654 7.47266 3.0327 ] pdfxs + (N) show + (ETFr) + [7.41812 11.2799 6.20722 4.27631 ] pdfxs + (a) show + (mew) + [9.08711 4.85451 7.57085 ] pdfxs + (o) show + (rkC) + [4.27631 9.15265 7.8763 ] pdfxs + (o) show + (mpiler) + [9.09802 6.05449 3.0327 3.0327 4.8436 7.66901 ] pdfxs + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + 22.424 -404.559 m + (La) show + (n) + [6.0654 ] pdfxs + (g) show + (u) + [6.05449 ] pdfxs + (ag) show + (e) + [8.4872 ] pdfxs + (R) show + (eference.) + [4.8436 3.33815 4.8436 4.27631 4.85451 6.05449 4.85451 4.8436 3.0327 ] pdfxs + 0 -435.448 m + ([) + [3.0327 ] pdfxs + (97) show + (]) + [8.4872 ] pdfxs + (A) show + (naMil) + [6.05449 10.0908 10.0036 3.0327 3.02179 ] pdfxs + (a) show + (nov) + [6.0654 5.14905 5.14904 ] pdfxs + (a) show + (,At) + [7.91993 7.8872 4.23277 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (s) + [8.94535 ] pdfxs + (Ro) show + (un) + [6.05449 5.75995 ] pdfxs + (t) show + (ev,) + [4.8436 5.75995 7.91993 ] pdfxs + (a) show + (ndB) + [6.0654 10.6908 7.7344 ] pdfxs + (a) show + (rb) + [4.2654 6.0654 ] pdfxs + (a) show + (ra) + [4.27631 10.0908 ] pdfxs + (R) show + (yder.P) + [5.75995 6.05449 4.85451 4.2654 10.8545 7.12357 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (a) show + (me) + [9.09802 4.8436 ] pdfxs + (t) show + (erized) + [4.8436 4.27631 3.0327 4.8436 4.85451 10.7017 ] pdfxs + (o) show + (bjectsensi) + [6.66539 3.32724 4.85451 4.8436 8.88001 4.30902 4.8436 6.0654 4.29811 3.0327 ] pdfxs + (t) show + (ivityf) + [3.02179 5.75995 3.0327 3.93823 10.3963 3.33815 ] pdfxs + (o) show + (r) show + 22.424 -457.37 m + (p) + [6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (s-to) + [4.29811 3.64352 4.23277 8.19266 ] pdfxs + (a) show + (ndside-e\013ect) + [6.0654 8.79265 4.30902 3.0327 6.05449 4.85451 3.63261 4.8436 6.37077 4.8436 4.85451 + 6.97093 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysesf) + [3.0327 5.75995 4.29811 4.8436 7.04718 3.32724 ] pdfxs + (o) show + (rjav) + [7.01447 3.32724 5.15996 5.14904 ] pdfxs + (a) show + (.) + [6.40358 ] pdfxs + (I) show + (n) show + 233.701 -457.37 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [7.52717 ] pdfxs + (o) show + (ft) + [6.42547 3.62179 ] pdfxs + (h) show + (eACMSIGSOFTInt) + [8.09455 7.83262 7.81088 12.8508 6.13082 4.21089 8.44359 6.13082 8.35627 7.12357 10.8872 + 4.19998 6.13082 3.6327 ] pdfxs + (e) show + (rn) + [4.59266 6.14173 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (a) show + (l) show + 22.424 -479.293 m + (Symp) + [6.13082 5.30169 8.92348 5.01816 ] pdfxs + (os) show + (iumonS) + [3.33823 5.85816 12.818 5.58542 10.0362 6.13082 ] pdfxs + (o) show + (ftw) + [3.34914 3.62179 7.24359 ] pdfxs + (a) show + (reT) + [4.04721 8.92363 6.97089 ] pdfxs + (e) show + (sting) + [4.45083 3.6327 3.33823 6.14173 8.91272 ] pdfxs + (a) show + (ndAn) + [6.14173 9.47994 7.82171 6.14173 ] pdfxs + (a) show + (ly) + [2.78176 5.30169 ] pdfxs + (s) show + (i) + [3.33823 ] pdfxs + (s) show + 239.483 -479.293 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (1{11) show + (,) + [6.6654 ] pdfxs + (2002) show + (.) show + 0 -510.182 m + ([) + [3.0327 ] pdfxs + (98) show + (]Je\013reyC.M) + [8.4872 5.5964 4.85451 6.35986 4.27631 4.8436 9.74173 7.8763 7.01448 9.99272 ] pdfxs + (og) show + (ul,) + [6.0654 3.0327 7.09085 ] pdfxs + (J) show + (oelF.B) + [5.75995 4.8436 7.01448 7.11266 7.01448 7.72349 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (le) + [3.0327 4.8436 ] pdfxs + (tt) show + (,) + [7.09085 ] pdfxs + (Ro) show + (bert) + [6.37085 4.8436 4.27631 8.21456 ] pdfxs + (N) show + (.May) + [7.01448 9.99272 5.15996 5.4545 ] pdfxs + (o) show + (,) + [7.09085 ] pdfxs + (a) show + (nd) + [6.0654 10.0363 ] pdfxs + (A) show + (mi) + [9.08711 3.0327 ] pdfxs + (ta) show + (bhSriv) + [6.05449 10.0472 6.05449 4.27631 3.0327 5.14904 ] pdfxs + (a) show + (s) + [4.29811 ] pdfxs + (t) show + (av) + [5.15996 5.14904 ] pdfxs + (a) show + (.Perf) + [8.87992 7.12357 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (nce) + [6.05449 4.85451 4.8436 ] pdfxs + 22.424 -532.104 m + (implic) + [3.0327 9.08711 6.0654 3.02179 3.0327 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (ns) + [6.0654 7.94172 ] pdfxs + (o) show + (fmultiplep) + [6.97085 8.78166 6.0654 3.0327 4.23277 3.0327 6.0654 3.0327 8.47629 6.37085 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (ersizes.) + [4.85451 7.909 4.29811 3.0327 4.8436 4.85451 4.29811 7.86538 ] pdfxs + (I) show + (n) show + 219.291 -532.104 m + /N634 10.909 Tf + (USENIX) + [8.10534 6.14173 7.39623 8.10534 4.21089 12.0108 ] pdfxs + (W) show + (int) + [3.33823 6.14173 3.62179 ] pdfxs + (e) show + (r) show + 298.878 -532.104 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (187{200) show + (,) + [6.6654 ] pdfxs + (1995) show + (.) show + 0 -562.993 m + ([) + [3.0327 ] pdfxs + (99) show + (]GregM) + [8.4872 8.55269 4.27631 4.8436 10.1999 10.0036 ] pdfxs + (o) show + (rrise) + [4.2654 4.27631 3.0327 4.29811 4.85451 ] pdfxs + (tt) show + (,) + [8.03993 ] pdfxs + (D) show + (avidW) + [5.14905 5.75995 3.0327 10.7999 10.309 ] pdfxs + (a) show + (lker,K) + [3.0327 5.4545 4.8436 4.27631 8.03993 8.4872 ] pdfxs + (a) show + (rlCr) + [4.27631 7.7672 7.88721 4.2654 ] pdfxs + (a) show + (ry,) + [4.27631 4.84359 8.05084 ] pdfxs + (a) show + (nd) + [6.0654 10.7999 ] pdfxs + (N) show + (e) + [4.85451 ] pdfxs + (a) show + (lGlew.Fr) + [7.7672 8.5636 3.02179 4.85451 7.8763 11.1599 6.21813 4.2654 ] pdfxs + (o) show + (mSys) + [13.8325 6.0654 5.75995 4.29811 ] pdfxs + (t) show + (emF) + [4.85451 13.8325 11.8581 ] pdfxs + (t) show + (otyped) + [10.1999 3.93823 5.74904 6.37085 4.8436 10.8108 ] pdfxs + (a) show + (s-) + [4.29811 3.63261 ] pdfxs + 22.424 -584.916 m + (semblyl) + [4.29811 4.85451 8.78166 6.0654 3.0327 9.8181 3.0327 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (u) + [6.05449 ] pdfxs + (ag) show + (e.) + [4.85451 3.0327 ] pdfxs + 110.24 -584.916 m + /N634 10.909 Tf + (ACMTr) + [7.83262 7.79997 14.0835 6.97089 4.0363 ] pdfxs + (a) show + (n) + [6.14173 ] pdfxs + (sac) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (ns) + [6.13082 8.75989 ] pdfxs + (o) show + (nPro) + [10.429 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmingL) + [8.91258 8.92348 3.34914 6.13082 9.31636 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (age) show + (s) + [8.75989 ] pdfxs + (a) show + (ndSy) + [6.13082 9.87266 6.14173 5.29078 ] pdfxs + (s) show + (t) + [3.62179 ] pdfxs + (e) show + (ms) + [8.92348 8.75989 ] pdfxs + (\() show + (TOPLAS) + [7.79997 8.36718 7.39623 6.85084 8.10534 6.13082 ] pdfxs + (\)) show + 459.515 -584.916 m + /N614 10.909 Tf + (,) show + 22.424 -606.838 m + (21\(3\)) show + (:) + [3.0327 ] pdfxs + (528{569) show + (,May) + [6.6654 9.99272 5.15996 9.39264 ] pdfxs + (1999) show + (.) show + 220.363 -657.201 m + (206) show + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 88.364 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (4) show + (.) + [3.0327 ] pdfxs + (1) show + (2) + [11.149 ] pdfxs + (N) show + (umber) + [6.0654 8.78166 6.35994 4.85451 7.909 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (I) show + (ns) + [6.05449 4.30902 ] pdfxs + (t) show + (ructi) + [4.27631 6.05449 4.85451 4.23277 3.0327 ] pdfxs + (o) show + (ns) + [6.0654 7.94172 ] pdfxs + (Ho) show + (is) + [3.02179 4.30902 ] pdfxs + (t) show + (ed) + [4.8436 9.6981 ] pdfxs + (o) show + (rSunk.........................) + [7.909 6.0654 6.05449 6.0654 12.5126 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (101) show + 0 -13.549 m + (4) show + (.) + [3.0327 ] pdfxs + (1) show + (3Percent) + [11.149 7.12357 4.8436 4.27631 4.8436 4.85451 5.75995 7.87638 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (LI) show + (CM) + [7.8763 13.6363 ] pdfxs + (A) show + (li) + [3.0327 3.0327 ] pdfxs + (a) show + (sQueries) + [7.93081 8.4872 6.0654 4.8436 4.27631 3.0327 4.8436 7.94172 ] pdfxs + (R) show + (e) + [4.8436 ] pdfxs + (t) show + (urned) + [6.0654 4.27631 6.05449 4.85451 9.68719 ] pdfxs + (\\) show + (May) + [10.0036 5.14905 9.40355 ] pdfxs + (A) show + (li) + [3.02179 3.0327 ] pdfxs + (a) show + (s".................) + [4.30902 13.2653 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (102) show + 0 -27.098 m + (4) show + (.) + [3.0327 ] pdfxs + (1) show + (4Percent) + [11.149 7.12357 4.8436 4.27631 4.8436 4.85451 5.75995 7.87638 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (LI) show + (CMMod) + [7.8763 13.6363 10.0036 5.75995 6.05449 ] pdfxs + (/R) show + (efQuery) + [4.85451 6.97085 8.47629 6.0654 4.8436 4.27631 9.39264 ] pdfxs + (R) show + (esp) + [4.85451 4.29811 6.35994 ] pdfxs + (o) show + (nses) + [6.0654 4.29811 4.85451 7.94172 ] pdfxs + (R) show + (e) + [4.8436 ] pdfxs + (t) show + (urned) + [6.0654 4.2654 6.0654 4.8436 9.6981 ] pdfxs + (\\) show + (Mod) + [10.0036 5.75995 9.6981 ] pdfxs + (a) show + (nd) + [6.05449 9.6981 ] pdfxs + (R) show + (ef"........) + [4.85451 4.17814 9.23992 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 + ] pdfxs + (102) show + 0 -40.647 m + (4) show + (.) + [3.0327 ] pdfxs + (1) show + (5) + [11.149 ] pdfxs + (D) show + (SA) + [6.05449 11.8254 ] pdfxs + (LI) show + (CMMod) + [7.8763 13.6363 10.0036 5.75995 6.05449 ] pdfxs + (/R) show + (efQuery) + [4.85451 6.97085 8.47629 6.0654 4.8436 4.27631 9.39264 ] pdfxs + (R) show + (esp) + [4.85451 4.29811 6.37085 ] pdfxs + (o) show + (nsesBre) + [6.05449 4.30902 4.8436 7.94172 7.72349 4.27631 4.8436 ] pdfxs + (a) show + (kdown...................) + [5.75995 6.0654 5.14905 7.8763 11.7817 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 7.70175 ] pdfxs + (102) show + 0 -64.159 m + (5) show + (.1) + [3.0327 16.6035 ] pdfxs + (I) show + (n) + [5.75995 ] pdfxs + (t) show + (erf) + [4.8436 4.27631 3.32724 ] pdfxs + (a) show + (ce) + [4.85451 8.4872 ] pdfxs + (t) show + (o) + [9.08719 ] pdfxs + (t) show + (hePo) + [6.05449 8.4872 7.12357 5.75995 ] pdfxs + (o) show + (l) + [6.6654 ] pdfxs + (A) show + (lloc) + [3.0327 3.02179 5.75995 4.85451 ] pdfxs + (ato) show + (r) + [7.909 ] pdfxs + (R) show + (un) + [6.05449 5.75995 ] pdfxs + (t) show + (ime) + [3.0327 9.08711 8.4872 ] pdfxs + (L) show + (ibr) + [3.0327 6.05449 4.27631 ] pdfxs + (a) show + (ry....................) + [4.27631 16.4399 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 + ] pdfxs + (111) show + 0 -77.708 m + (5) show + (.2Ex) + [3.0327 16.6035 7.42902 5.74904 ] pdfxs + (a) show + (mpleillus) + [9.09802 6.05449 3.0327 8.4872 3.0327 3.02179 3.0327 6.0654 4.29811 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (at) show + (ing) + [3.02179 6.0654 9.08719 ] pdfxs + (t) show + (hePo) + [6.0654 8.4872 7.11266 5.75995 ] pdfxs + (o) show + (l) + [6.6654 ] pdfxs + (A) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nTr) + [9.6981 6.95994 4.27631 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n................) + [10.1563 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (112) show + 0 -91.258 m + (5) show + (.3BU) + [3.0327 16.6035 7.72349 11.8254 ] pdfxs + (D) show + (SGr) + [6.05449 8.5636 4.27631 ] pdfxs + (a) show + (phsf) + [6.05449 6.0654 7.93081 3.33815 ] pdfxs + (o) show + (rfunc) + [7.909 3.33815 6.05449 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nsinFi) + [6.05449 7.94172 3.0327 9.6981 7.12357 3.02179 ] pdfxs + (g) show + (ure) + [6.0654 4.27631 8.47629 ] pdfxs + (5) show + (.2\() + [3.0327 9.0981 4.23277 ] pdfxs + (a) show + (\)......................) + [13.8654 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 7.70175 ] pdfxs + (112) show + 0 -104.807 m + (5) show + (.4Pseudocodef) + [3.0327 16.6035 7.42902 4.29811 4.8436 6.0654 6.0654 9.08719 4.8436 5.75995 6.0654 + 8.47629 3.33815 ] pdfxs + (o) show + (rb) + [7.909 6.0654 ] pdfxs + (a) show + (sic) + [4.29811 3.0327 8.4872 ] pdfxs + (a) show + (l) + [3.02179 ] pdfxs + (go) show + (ri) + [4.27631 3.0327 ] pdfxs + (t) show + (hm..............................) + [6.05449 12.458 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (115) show + 0 -118.356 m + (5) show + (.5Po) + [3.0327 16.6035 7.12357 5.75995 ] pdfxs + (o) show + (l) + [6.6654 ] pdfxs + (A) show + (lloc) + [3.02179 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nEx) + [9.6981 7.42902 5.74904 ] pdfxs + (a) show + (mplewi) + [9.09802 6.05449 3.0327 8.4872 7.8763 3.0327 ] pdfxs + (t) show + (hFunc) + [9.6981 6.20722 6.0654 6.05449 4.85451 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (nP) + [9.6981 7.12357 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (ers....................) + [4.8436 4.27631 13.0471 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 7.70175 ] pdfxs + (117) show + 0 -131.905 m + (5) show + (.6Pseudocodef) + [3.0327 16.6035 7.42902 4.29811 4.8436 6.0654 6.0654 9.08719 4.8436 5.75995 6.0654 + 8.47629 3.33815 ] pdfxs + (o) show + (rc) + [7.909 4.85451 ] pdfxs + (o) show + (mple) + [9.08711 6.05449 3.0327 4.85451 ] pdfxs + (t) show + (epo) + [8.47629 6.37085 5.74904 ] pdfxs + (o) show + (l) + [6.6763 ] pdfxs + (a) show + (lloc) + [3.02179 3.0327 5.75995 4.8436 ] pdfxs + (ato) show + (r.........................) + [11.6399 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (119) show + 0 -145.454 m + (5) show + (.7) + [3.0327 16.6035 ] pdfxs + (A) show + (ftermovin) + [3.33815 4.23277 4.85451 7.909 9.08711 5.14905 5.75995 3.0327 6.0654 ] pdfxs + (g) show + 91.788 -145.454 m + /N722 10.909 Tf + (pooldestroy\(&PD1\)) show + 192.787 -145.454 m + /N614 10.909 Tf + (e) + [4.8436 ] pdfxs + (a) show + (rlier........................) + [4.27631 3.0327 3.0327 4.8436 14.1489 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 7.70175 ] pdfxs + (122) show + 0 -168.966 m + (6) show + (.1Fi) + [3.0327 16.6035 7.12357 3.0327 ] pdfxs + (g) show + (ure) + [6.05449 4.27631 8.4872 ] pdfxs + (5) show + (.2) + [3.02179 9.0981 ] pdfxs + (a) show + (f) + [3.32724 ] pdfxs + (t) show + (erelimin) + [4.85451 7.909 4.8436 3.0327 3.0327 9.08711 3.0327 6.05449 ] pdfxs + (at) show + (in) + [3.0327 6.0654 ] pdfxs + (g) show + 159.848 -168.966 m + /N722 10.909 Tf + (poolfree) show + 209.302 -168.966 m + /N614 10.909 Tf + (c) + [4.8436 ] pdfxs + (a) show + (lls.......................) + [3.0327 3.0327 15.2398 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 7.70175 ] pdfxs + (133) show + 0 -182.515 m + (6) show + (.2) + [3.0327 16.6035 ] pdfxs + (A) show + (fterelimin) + [3.33815 4.23277 4.85451 7.909 4.8436 3.0327 3.0327 9.08711 3.0327 6.0654 ] pdfxs + (at) show + (in) + [3.02179 6.0654 ] pdfxs + (g) show + 110.576 -182.515 m + /N722 10.909 Tf + (poolfree) show + 160.03 -182.515 m + /N614 10.909 Tf + (c) + [4.8436 ] pdfxs + (a) show + (lls) + [3.0327 3.0327 7.94172 ] pdfxs + (a) show + (ndde) + [6.05449 9.6981 6.0654 4.8436 ] pdfxs + (a) show + (dlo) + [9.6981 3.0327 5.75995 ] pdfxs + (o) show + (ps....................) + [6.05449 14.4544 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 7.70175 + ] pdfxs + (134) show + -1.52588e-05 -196.065 m + (6) show + (.3St) + [3.0327 16.6035 6.0654 4.23277 ] pdfxs + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + (a) show + (rdPo) + [4.2654 9.6981 7.12357 5.75995 ] pdfxs + (o) show + (l) + [6.6654 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (16) show + (-by) + [3.63261 5.75995 5.75995 ] pdfxs + (t) show + (eObjec) + [8.47629 8.4872 6.66539 3.33815 4.8436 4.85451 ] pdfxs + (t) show + (swi) + [7.93081 7.88721 3.02179 ] pdfxs + (t) show + (h) + [9.6981 ] pdfxs + (D) show + (ef) + [4.8436 3.33815 ] pdfxs + (a) show + (ult) + [6.0654 3.02179 7.88729 ] pdfxs + (8) show + (-By) + [3.63261 7.72349 5.75995 ] pdfxs + (t) show + (e) + [8.4872 ] pdfxs + (A) show + (li) + [3.0327 3.02179 ] pdfxs + (g) show + (nment...........) + [6.0654 9.08711 4.85451 5.74904 9.20728 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (134) show + -1.52588e-05 -209.614 m + (6) show + (.4Bump-P) + [3.0327 16.6035 7.72349 6.0654 9.08711 6.0654 3.63261 7.12357 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (erPo) + [4.85451 7.909 7.12357 5.74904 ] pdfxs + (o) show + (l) + [6.6763 ] pdfxs + (o) show + (f) + [6.95994 ] pdfxs + (16) show + (-by) + [3.64352 5.75995 5.74904 ] pdfxs + (t) show + (eObjec) + [8.4872 8.4872 6.66539 3.32724 4.85451 4.8436 ] pdfxs + (t) show + (swi) + [7.94172 7.8763 3.0327 ] pdfxs + (t) show + (h) + [9.6981 ] pdfxs + (D) show + (ef) + [4.8436 3.33815 ] pdfxs + (a) show + (ult) + [6.05449 3.0327 7.87638 ] pdfxs + (8) show + (-By) + [3.64352 7.72349 5.75995 ] pdfxs + (t) show + (e) + [8.47629 ] pdfxs + (A) show + (li) + [3.0327 3.0327 ] pdfxs + (g) show + (nment........) + [6.0654 9.08711 4.8436 5.75995 11.0291 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 7.70175 ] pdfxs + (135) show + -1.52588e-05 -223.163 m + (6) show + (.5) + [3.0327 16.6035 ] pdfxs + (No) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (lPo) + [6.6654 7.12357 5.75995 ] pdfxs + (o) show + (l) + [6.6654 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (16) show + (-by) + [3.63261 5.75995 5.75995 ] pdfxs + (t) show + (eObjec) + [8.47629 8.4872 6.66539 3.33815 4.8436 4.85451 ] pdfxs + (t) show + (swi) + [7.93081 7.88721 3.02179 ] pdfxs + (t) show + (h) + [9.6981 ] pdfxs + (R) show + (educed) + [4.85451 6.05449 6.0654 4.8436 4.85451 9.6981 ] pdfxs + (4) show + (-By) + [3.63261 7.72349 5.75995 ] pdfxs + (t) show + (e) + [8.4872 ] pdfxs + (A) show + (li) + [3.0327 3.02179 ] pdfxs + (g) show + (nment...........) + [6.0654 9.08711 4.85451 5.74904 11.9345 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (136) show + -1.52588e-05 -236.712 m + (6) show + (.6Ex) + [3.0327 16.6035 7.42902 5.74904 ] pdfxs + (a) show + (mpleS) + [9.09802 6.05449 3.0327 8.4872 6.05449 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (urewi) + [6.05449 4.27631 8.4872 7.8763 3.0327 ] pdfxs + (t) show + (hT) + [9.6981 6.97085 ] pdfxs + (a) show + (ilP) + [3.02179 6.6654 7.12357 ] pdfxs + (a) show + (dding..........................) + [6.0654 6.05449 3.0327 6.0654 15.7526 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (137) show + -1.52588e-05 -250.261 m + (6) show + (.7) + [3.0327 16.6035 ] pdfxs + (L) show + (inked) + [3.0327 6.05449 5.4545 4.85451 9.6981 ] pdfxs + (L) show + (ist) + [3.02179 4.30902 7.87638 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (Do) show + (ubleswi) + [6.0654 6.05449 3.0327 4.8436 7.94172 7.8763 3.0327 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (o) show + (ut) + [6.05449 7.87638 ] pdfxs + (N) show + (odeC) + [5.75995 6.0654 8.47629 7.88721 ] pdfxs + (o) show + (llocati) + [3.02179 3.0327 5.75995 4.8436 5.46541 4.23277 3.0327 ] pdfxs + (o) show + (n....................) + [11.9017 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (140) show + -1.52588e-05 -263.811 m + (6) show + (.8) + [3.0327 16.6035 ] pdfxs + (L) show + (inked) + [3.0327 6.05449 5.4545 4.85451 9.6981 ] pdfxs + (L) show + (ist) + [3.02179 4.30902 7.87638 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (Do) show + (ubleswi) + [6.0654 6.05449 3.0327 4.8436 7.94172 7.8763 3.0327 ] pdfxs + (t) show + (hPerfect) + [9.6981 7.12357 4.8436 4.27631 3.32724 4.85451 4.8436 7.87638 ] pdfxs + (N) show + (odeC) + [5.75995 6.0654 8.4872 7.8763 ] pdfxs + (o) show + (lloc) + [3.0327 3.02179 5.75995 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n.................) + [15.9708 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (140) show + -1.52588e-05 -277.36 m + (6) show + (.9St) + [3.0327 16.6035 6.0654 4.23277 ] pdfxs + (at) show + (isticsf) + [3.0327 4.30902 4.23277 3.0327 4.85451 7.93081 3.33815 ] pdfxs + (o) show + (rPo) + [7.909 7.12357 5.75995 ] pdfxs + (o) show + (lOp) + [6.6654 8.4872 6.05449 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns.............................) + [6.0654 12.7853 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (142) show + -1.52588e-05 -290.909 m + (6) show + (.) + [3.0327 ] pdfxs + (1) show + (0) + [11.149 ] pdfxs + (Agg) show + (re) + [4.27631 4.8436 ] pdfxs + (gat) show + (eexecuti) + [8.4872 4.8436 5.75995 4.8436 4.85451 6.0654 4.23277 3.0327 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (t) show + (imer) + [3.0327 9.08711 8.4872 4.27631 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (s) + [7.94172 ] pdfxs + (\(L) show + (eft) + [4.8436 3.33815 7.87638 ] pdfxs + (1) show + (.0=) + [3.0327 9.08719 12.1199 ] pdfxs + (No) show + (P) + [6.52358 ] pdfxs + (A) show + (,) + [6.6654 ] pdfxs + (R) show + (i) + [3.0327 ] pdfxs + (g) show + (ht) + [5.74904 7.88729 ] pdfxs + (1) show + (.0=B) + [3.02179 9.0981 12.1199 7.72349 ] pdfxs + (a) show + (seP) + [4.30902 4.8436 6.51267 ] pdfxs + (A) show + (\).......) + [7.00366 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (145) show + -1.52588e-05 -304.458 m + (6) show + (.) + [3.0327 ] pdfxs + (1) show + (1Po) + [11.149 7.12357 5.75995 ] pdfxs + (o) show + (lOp) + [6.6654 8.47629 6.0654 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nC) + [9.6981 7.8763 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (ribu) + [4.2654 3.0327 6.0654 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.0654 7.93081 ] pdfxs + (\(1) show + (.0=) + [3.0327 9.08719 12.1308 ] pdfxs + (N) show + (oPo) + [9.08719 7.12357 5.74904 ] pdfxs + (o) show + (l) + [6.6763 ] pdfxs + (A) show + (lloc) + [3.02179 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n\).............) + [6.0654 14.2036 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (147) show + -1.52588e-05 -318.007 m + (6) show + (.) + [3.0327 ] pdfxs + (1) show + (2Po) + [11.149 7.12357 5.75995 ] pdfxs + (o) show + (lOp) + [6.6654 8.47629 6.0654 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nC) + [9.6981 7.8763 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (ribu) + [4.2654 3.0327 6.0654 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.0654 7.93081 ] pdfxs + (\(1) show + (.0=PAwi) + [3.0327 9.08719 12.1308 6.51267 11.8144 7.8763 3.0327 ] pdfxs + (t) show + (h) + [9.6981 ] pdfxs + (a) show + (llPo) + [3.0327 6.6654 7.12357 5.74904 ] pdfxs + (o) show + (lOp) + [3.0327 8.4872 6.05449 ] pdfxs + (t) show + (s\)............) + [4.30902 11.2691 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 7.70175 ] pdfxs + (147) show + -1.52588e-05 -331.557 m + (6) show + (.) + [3.0327 ] pdfxs + (1) show + (3) + [11.149 ] pdfxs + (L1/L2/) show + (T) + [7.8763 ] pdfxs + (L) show + (BC) + [11.3671 7.8763 ] pdfxs + (a) show + (cheMiss) + [4.54905 6.05449 8.4872 10.0036 3.0327 4.29811 7.94172 ] pdfxs + (Rat) show + (i) + [3.0327 ] pdfxs + (o) show + (s..............................) + [10.9962 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (148) show + -1.52588e-05 -345.106 m + (6) show + (.) + [3.0327 ] pdfxs + (1) show + (4ch) + [11.149 4.54905 6.05449 ] pdfxs + (o) show + (mp) + [9.09802 9.68719 ] pdfxs + (A) show + (ccessP) + [4.85451 4.8436 4.85451 4.29811 7.94172 7.12357 ] pdfxs + (att) show + (ernwi) + [4.8436 4.27631 9.6981 7.8763 3.0327 ] pdfxs + (t) show + (hS) + [9.68719 6.0654 ] pdfxs + (ta) show + (nd) + [6.05449 6.0654 ] pdfxs + (a) show + (rdm) + [4.27631 9.6981 9.08711 ] pdfxs + (a) show + (lloc) + [3.0327 3.02179 5.75995 4.85451 ] pdfxs + (/) show + (free....................) + [3.32724 4.27631 4.8436 10.2981 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 7.70175 ] pdfxs + (151) show + -1.52588e-05 -358.655 m + (6) show + (.) + [3.0327 ] pdfxs + (1) show + (5ch) + [11.149 4.54905 6.05449 ] pdfxs + (o) show + (mp) + [9.09802 9.68719 ] pdfxs + (A) show + (ccessP) + [4.85451 4.8436 4.85451 4.29811 7.94172 7.12357 ] pdfxs + (att) show + (ernwi) + [4.8436 4.27631 9.6981 7.8763 3.0327 ] pdfxs + (t) show + (hPo) + [9.68719 7.12357 5.75995 ] pdfxs + (o) show + (l) + [6.6654 ] pdfxs + (A) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n.......................) + [13.2326 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 7.70175 ] pdfxs + (151) show + -1.52588e-05 -372.204 m + (6) show + (.) + [3.0327 ] pdfxs + (1) show + (6ft) + [11.149 3.33815 7.87638 ] pdfxs + (A) show + (ccessP) + [4.8436 4.85451 4.8436 4.30902 7.93081 7.12357 ] pdfxs + (att) show + (ernwi) + [4.8436 4.27631 9.6981 7.8763 3.0327 ] pdfxs + (t) show + (hS) + [9.6981 6.05449 ] pdfxs + (ta) show + (nd) + [6.0654 6.05449 ] pdfxs + (a) show + (rdm) + [4.27631 9.6981 9.08711 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (/) show + (free.......................) + [3.33815 4.2654 4.85451 8.47629 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (153) show + -1.52588e-05 -385.753 m + (6) show + (.) + [3.0327 ] pdfxs + (1) show + (7ft) + [11.149 3.33815 7.87638 ] pdfxs + (A) show + (ccessP) + [4.8436 4.85451 4.8436 4.30902 7.93081 7.12357 ] pdfxs + (att) show + (ernwi) + [4.8436 4.27631 9.6981 7.8763 3.0327 ] pdfxs + (t) show + (hPo) + [9.6981 7.12357 5.74904 ] pdfxs + (o) show + (l) + [6.6654 ] pdfxs + (A) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n..........................) + [11.4217 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (153) show + -1.52588e-05 -409.265 m + (7) show + (.1) + [3.0327 16.6035 ] pdfxs + (L) show + (inked) + [3.0327 6.05449 5.4545 4.85451 9.6981 ] pdfxs + (L) show + (ist) + [3.02179 4.30902 7.87638 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (4) show + (-by) + [3.63261 5.75995 5.75995 ] pdfxs + (t) show + (ech) + [8.4872 4.53815 6.0654 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (a) show + (c) + [4.8436 ] pdfxs + (t) show + (ers..............................) + [4.8436 4.27631 8.72717 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 + ] pdfxs + (157) show + -1.52588e-05 -422.814 m + (7) show + (.2Po) + [3.0327 16.6035 7.12357 5.75995 ] pdfxs + (o) show + (l) + [6.6654 ] pdfxs + (A) show + (lloc) + [3.02179 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (ed) + [4.85451 9.6981 ] pdfxs + (L) show + (inked) + [3.0327 6.05449 5.4545 4.85451 9.68719 ] pdfxs + (L) show + (ist................................) + [3.0327 4.30902 15.2945 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 7.70175 ] pdfxs + (158) show + -1.52588e-05 -436.364 m + (7) show + (.3P) + [3.0327 16.6035 7.12357 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (erC) + [4.85451 7.909 7.8763 ] pdfxs + (o) show + (mpressed) + [9.08711 6.0654 4.27631 4.8436 4.29811 4.30902 4.8436 9.6981 ] pdfxs + (L) show + (inked) + [3.0327 6.0654 5.4545 4.8436 9.6981 ] pdfxs + (L) show + (ist..............................) + [3.0327 4.29811 7.24366 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 + ] pdfxs + (158) show + -1.52588e-05 -449.913 m + (7) show + (.4Simplelinkedlistex) + [3.0327 16.6035 6.0654 3.02179 9.09802 6.05449 3.0327 8.4872 3.0327 3.02179 6.0654 + 5.4545 4.8436 9.6981 3.0327 3.0327 4.29811 7.88729 4.8436 5.75995 ] pdfxs + (a) show + (mple.................................) + [9.08711 6.0654 3.02179 10.6035 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (159) show + -1.52588e-05 -463.462 m + (7) show + (.5Ex) + [3.0327 16.6035 7.42902 5.74904 ] pdfxs + (a) show + (mple) + [9.09802 6.05449 3.0327 8.4872 ] pdfxs + (a) show + (f) + [3.32724 ] pdfxs + (t) show + (ers) + [4.85451 7.909 4.29811 ] pdfxs + (tat) show + (icc) + [3.0327 8.4872 4.8436 ] pdfxs + (o) show + (mpressi) + [9.08711 6.0654 4.27631 4.8436 4.29811 4.30902 3.0327 ] pdfxs + (o) show + (n.............................) + [12.3926 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (160) show + -1.52588e-05 -477.011 m + (7) show + (.6Po) + [3.0327 16.6035 7.12357 5.75995 ] pdfxs + (o) show + (lC) + [6.6654 7.8763 ] pdfxs + (o) show + (mpressi) + [9.08711 6.0654 4.2654 4.85451 4.29811 4.30902 3.0327 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (R) show + (un) + [6.05449 5.75995 ] pdfxs + (t) show + (ime) + [3.0327 9.08711 8.4872 ] pdfxs + (L) show + (ibr) + [3.0327 6.05449 4.27631 ] pdfxs + (a) show + (ry............................) + [4.2654 9.39264 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (161) show + -1.52588e-05 -490.56 m + (7) show + (.7Pseudocodef) + [3.0327 16.6035 7.42902 4.29811 4.8436 6.0654 6.0654 9.08719 4.8436 5.75995 6.0654 + 8.47629 3.33815 ] pdfxs + (o) show + (rp) + [7.909 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (erc) + [4.8436 7.909 4.85451 ] pdfxs + (o) show + (mpressi) + [9.08711 6.0654 4.2654 4.85451 4.29811 4.30902 3.02179 ] pdfxs + (o) show + (n...........................) + [12.9708 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (162) show + -1.52588e-05 -504.11 m + (7) show + (.8Ex) + [3.0327 16.6035 7.42902 5.74904 ] pdfxs + (a) show + (mplewi) + [9.09802 6.05449 3.0327 8.4872 7.8763 3.0327 ] pdfxs + (t) show + (hTH) + [9.6981 7.8763 11.8144 ] pdfxs + (a) show + (ndn) + [6.0654 9.6981 6.05449 ] pdfxs + (o) show + (n-THnodes...........................) + [6.0654 3.63261 7.8763 11.8254 6.05449 5.75995 6.0654 4.8436 7.17809 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 7.70175 ] pdfxs + (163) show + -1.52588e-05 -517.659 m + (7) show + (.9) + [3.0327 16.6035 ] pdfxs + (R) show + (ewri) + [4.85451 7.8763 4.2654 3.0327 ] pdfxs + (t) show + (erulesf) + [8.4872 4.27631 6.05449 3.0327 4.8436 7.94172 3.33815 ] pdfxs + (o) show + (rp) + [7.909 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (erc) + [4.8436 7.909 4.8436 ] pdfxs + (o) show + (mpressi) + [9.09802 6.05449 4.27631 4.8436 4.30902 4.29811 3.0327 ] pdfxs + (o) show + (n...........................) + [8.96719 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (164) show + -1.52588e-05 -531.208 m + (7) show + (.) + [3.0327 ] pdfxs + (1) show + (0) + [11.149 ] pdfxs + (I) show + (n) + [5.75995 ] pdfxs + (t) show + (erprocedur) + [4.8436 4.27631 6.05449 4.27631 5.75995 4.8436 4.85451 6.05449 6.0654 4.27631 ] pdfxs + (a) show + (lrewriterules................................) + [6.6654 4.2654 4.85451 7.8763 4.27631 3.0327 4.23277 8.4872 4.27631 6.05449 3.0327 + 4.85451 4.29811 11.029 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 7.70175 ] pdfxs + (165) show + -1.52588e-05 -544.757 m + (7) show + (.) + [3.0327 ] pdfxs + (1) show + (1Ex) + [11.149 7.42902 5.74904 ] pdfxs + (a) show + (mple) + [9.09802 6.05449 3.0327 8.4872 ] pdfxs + (a) show + (f) + [3.32724 ] pdfxs + (t) show + (erdyn) + [4.85451 7.909 6.05449 5.75995 6.0654 ] pdfxs + (a) show + (micc) + [9.08711 3.0327 8.4872 4.8436 ] pdfxs + (o) show + (mpressi) + [9.08711 6.0654 4.27631 4.8436 4.29811 4.30902 3.0327 ] pdfxs + (o) show + (n...........................) + [15.1744 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (168) show + -1.52588e-05 -558.306 m + (7) show + (.) + [3.0327 ] pdfxs + (1) show + (2) + [11.149 ] pdfxs + (D) show + (yn) + [5.75995 6.05449 ] pdfxs + (a) show + (micp) + [9.09802 3.02179 8.4872 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (erc) + [4.8436 7.909 4.85451 ] pdfxs + (o) show + (mpressi) + [9.08711 6.0654 4.2654 4.85451 4.29811 4.30902 3.0327 ] pdfxs + (o) show + (nrules............................) + [9.68719 4.27631 6.0654 3.02179 4.85451 9.99261 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 7.70175 ] pdfxs + (169) show + -1.52588e-05 -571.855 m + (7) show + (.) + [3.0327 ] pdfxs + (1) show + (3) + [11.149 ] pdfxs + (D) show + (yn) + [5.75995 6.05449 ] pdfxs + (a) show + (micexp) + [9.09802 3.02179 8.4872 4.85451 5.74904 6.0654 ] pdfxs + (a) show + (nsi) + [6.0654 4.29811 3.0327 ] pdfxs + (o) show + (nex) + [9.6981 4.8436 5.75995 ] pdfxs + (a) show + (mple................................) + [9.08711 6.0654 3.0327 8.32357 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 7.70175 ] pdfxs + (170) show + -1.52588e-05 -585.405 m + (7) show + (.) + [3.0327 ] pdfxs + (1) show + (4) + [11.149 ] pdfxs + (R) show + (ewri) + [4.85451 7.8763 4.2654 3.0327 ] pdfxs + (t) show + (erulesf) + [8.4872 4.27631 6.05449 3.0327 4.8436 7.94172 3.33815 ] pdfxs + (o) show + (rn) + [7.909 6.05449 ] pdfxs + (o) show + (n-c) + [6.0654 3.63261 4.85451 ] pdfxs + (o) show + (mpressedpo) + [9.08711 6.0654 4.2654 4.85451 4.29811 4.30902 4.8436 9.6981 6.35994 5.75995 ] pdfxs + (o) show + (ls..........................) + [3.0327 7.17809 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (171) show + -1.52588e-05 -598.954 m + (7) show + (.) + [3.0327 ] pdfxs + (15) show + 25.091 -598.954 m + /N722 10.909 Tf + (MakeList) show + 1 0 0 1 71.596 -598.954 cm + q + [] 0 d + 0 J + 0.397995 w + n + 0 0.19899 m + 3.43599 0.19899 l + S + Q + 1 0 0 1 3.43599 0 cm + 0 0 m + (pc32) show + 26.545 0 m + /N614 10.909 Tf + (a) show + (fter) + [3.33815 4.23277 4.85451 7.909 ] pdfxs + (o) show + (p) + [6.05449 ] pdfxs + (t) show + (imiz) + [3.0327 9.09802 3.02179 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n............................) + [17.1817 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 7.70175 ] pdfxs + (173) show + -75.032 -13.549 m + (7) show + (.) + [3.0327 ] pdfxs + (1) show + (6P) + [11.149 7.12357 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (erC) + [4.85451 7.909 7.8763 ] pdfxs + (o) show + (mpressi) + [9.08711 6.0654 4.2654 4.85451 4.29811 4.30902 3.0327 ] pdfxs + (o) show + (nBenchm) + [9.6981 7.72349 4.8436 6.0654 4.54905 6.05449 9.08711 ] pdfxs + (a) show + (rk) + [4.27631 9.39264 ] pdfxs + (R) show + (esults.........................) + [4.85451 4.29811 6.0654 3.0327 4.23277 8.12717 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 + 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (175) show + -75.032 -27.098 m + (7) show + (.) + [3.0327 ] pdfxs + (1) show + (7llubenchm) + [11.149 3.0327 3.0327 6.05449 6.35994 4.85451 6.05449 4.54905 6.0654 9.08711 ] pdfxs + (a) show + (rk:) + [4.27631 5.74904 7.8872 ] pdfxs + (t) show + (imetoprocess) + [3.02179 9.09802 8.4872 4.23277 9.0981 6.05449 4.27631 5.75995 4.8436 4.85451 4.29811 + 7.94172 ] pdfxs + (o) show + (nenodevspr) + [6.05449 8.4872 6.0654 5.75995 6.05449 8.4872 5.75995 7.93081 6.0654 4.27631 ] pdfxs + (o) show + (blemsize................) + [6.05449 3.0327 4.85451 12.7198 4.30902 3.02179 4.85451 11.8472 8.47629 8.4872 8.4872 + 8.4872 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 + 8.4872 7.70175 ] pdfxs + (176) show + 136.695 -58.247 m + (xii) + [5.75995 3.0327 3.0327 ] pdfxs + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (11) 12 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 595.275591 788.031496 translate + 180 rotate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 88.364 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (8) show + (.1) + [3.0327 16.6035 ] pdfxs + (L) show + (inked-listp) + [3.0327 6.05449 5.4545 4.85451 6.05449 3.64352 3.02179 3.0327 4.30902 7.87638 6.35994 + ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er-ch) + [4.8436 4.27631 3.63261 4.54905 6.05449 ] pdfxs + (a) show + (singex) + [4.30902 3.0327 6.05449 9.0981 4.8436 5.75995 ] pdfxs + (a) show + (mple............................) + [9.08711 6.0654 3.02179 8.8472 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 + 8.47629 8.4872 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 + 8.4872 8.4872 8.4872 8.47629 8.4872 8.4872 8.4872 8.47629 8.4872 7.70175 ] pdfxs + (187) show + 210.212 -657.201 m + (xiii) + [5.75995 3.0327 3.02179 3.0327 ] pdfxs + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + 1 0 0 1 77.455 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + ([) + [3.0327 ] pdfxs + (80) show + (]) + [8.4872 ] pdfxs + (No) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (nP.) + [10.0145 6.51267 6.98176 ] pdfxs + (Jo) show + (uppi.) + [6.0654 6.05449 6.0654 3.0327 8.81447 ] pdfxs + (I) show + (mprovingdirec) + [9.09802 6.05449 4.27631 5.14905 5.75995 3.0327 6.05449 9.41446 6.05449 3.0327 4.27631 + 4.8436 4.85451 ] pdfxs + (t) show + (-m) + [3.63261 9.08711 ] pdfxs + (a) show + (ppedc) + [6.0654 6.35994 4.85451 10.0145 4.8436 ] pdfxs + (a) show + (cheperf) + [4.54905 6.05449 8.81447 6.35994 4.8436 4.27631 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (nceby) + [6.05449 4.85451 8.80356 5.74904 9.71992 ] pdfxs + (t) show + (he) + [6.05449 8.80356 ] pdfxs + (a) show + (ddi) + [6.0654 6.05449 3.0327 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [10.0145 ] pdfxs + (o) show + (fasm) + [7.28721 9.41446 4.29811 9.09802 ] pdfxs + (a) show + (ll) + [3.02179 3.0327 ] pdfxs + 22.424 -21.922 m + (fully-) + [3.33815 6.05449 3.0327 3.0327 5.74904 3.64352 ] pdfxs + (a) show + (ssoci) + [4.29811 4.30902 5.74904 4.85451 3.0327 ] pdfxs + (at) show + (ivec) + [3.02179 5.4545 9.0872 4.85451 ] pdfxs + (a) show + (che) + [4.54905 6.05449 9.0872 ] pdfxs + (a) show + (ndprefe) + [6.0654 10.2981 6.05449 4.27631 4.85451 3.32724 4.85451 ] pdfxs + (t) show + (chbu\013ers.) + [4.53815 10.2981 6.0654 6.05449 6.37077 4.8436 4.27631 4.29811 9.66537 ] pdfxs + (I) show + (n) show + 252.315 -21.922 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.91261 ] pdfxs + (o) show + (ft) + [7.81092 3.62179 ] pdfxs + (h) show + (eInt) + [9.46908 4.21089 6.13082 3.62179 ] pdfxs + (e) show + (rn) + [4.60356 6.13082 ] pdfxs + (a) show + (ti) + [3.6327 3.33823 ] pdfxs + (o) show + (n) + [6.14173 ] pdfxs + (a) show + (lC) + [7.24354 7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (e) show + (nc) + [6.13082 4.46185 ] pdfxs + (e) show + 22.424 -43.845 m + (o) show + (nC) + [10.0362 7.81088 ] pdfxs + (o) show + (m) + [8.92348 ] pdfxs + (p) show + (ut) + [5.84725 3.6327 ] pdfxs + (e) show + (rAr) + [8.49808 7.83262 4.0363 ] pdfxs + (ch) show + (ite) + [3.34914 3.62179 4.46185 ] pdfxs + (c) show + (ture) + [3.62179 5.85816 4.04721 8.91272 ] pdfxs + (\() show + (ISCA) + [4.21089 6.13082 7.81088 8.10534 ] pdfxs + (\)) show + 185.447 -43.845 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (364{373) show + (,) + [6.6654 ] pdfxs + (N) show + (ewY) + [4.85451 11.509 7.2763 ] pdfxs + (o) show + (rk,) + [4.2654 5.75995 6.6654 ] pdfxs + (NY) show + (,) + [6.6654 ] pdfxs + (U) show + (S) + [6.0654 ] pdfxs + (A) show + (,) + [6.6654 ] pdfxs + (1990) show + (.) show + 0 -74.734 m + ([) + [3.0327 ] pdfxs + (81) show + (]Th) + [8.4872 7.8763 6.05449 ] pdfxs + (o) show + (m) + [9.09802 ] pdfxs + (a) show + (sKis) + [8.11626 8.4872 3.0327 4.29811 ] pdfxs + (t) show + (ler) + [3.0327 4.8436 8.09446 ] pdfxs + (a) show + (ndMich) + [6.0654 9.88355 9.99272 3.0327 4.54905 6.05449 ] pdfxs + (a) show + (elFr) + [4.85451 6.85085 6.20722 4.27631 ] pdfxs + (a) show + (nz.C) + [6.0654 4.8436 8.41084 7.88721 ] pdfxs + (o) show + (n) + [5.74904 ] pdfxs + (t) show + (inu) + [3.0327 5.75995 6.05449 ] pdfxs + (o) show + (uspr) + [6.0654 8.12717 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (m) + [12.9053 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imiz) + [3.02179 9.09802 3.02179 4.85451 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n:Ac) + [6.05449 8.2472 11.9999 4.85451 ] pdfxs + (a) show + (ses) + [4.29811 8.67266 4.29811 ] pdfxs + (t) show + (udy.) + [6.0654 6.05449 4.8545 3.0327 ] pdfxs + 437.127 -74.734 m + /N634 10.909 Tf + (ACM) + [7.83262 7.79997 9.7854 ] pdfxs + 22.424 -96.656 m + (Tran) + [6.97089 4.0363 5.58542 6.13082 ] pdfxs + (sac) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (ns) + [6.13082 8.36716 ] pdfxs + (o) show + (nPro) + [10.0362 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.0363 ] pdfxs + (a) show + (mmingL) + [8.92348 8.92348 3.34914 6.13082 8.92363 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (age) show + (sandSy) + [8.35625 5.58542 6.13082 9.47994 6.13082 5.29078 ] pdfxs + (s) show + (t) + [3.6327 ] pdfxs + (e) show + (ms) + [8.91258 8.36716 ] pdfxs + (\() show + (TOPLAS) + [7.79997 8.36718 7.39623 6.85084 8.10534 6.13082 ] pdfxs + (\)) show + 339.616 -96.656 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (25\(4\)) show + (:) + [3.0327 ] pdfxs + (500{548) show + (,) + [6.6654 ] pdfxs + (J) show + (ul) + [6.05449 6.6654 ] pdfxs + (2003) show + (.) show + 0 -127.545 m + ([) + [3.0327 ] pdfxs + (82) show + (]Sum) + [8.4872 6.05449 6.0654 9.08711 ] pdfxs + (a) show + (ntKowshik,) + [5.75995 8.43274 8.4872 5.14905 7.8763 4.30902 6.05449 3.0327 5.75995 7.36357 ] pdfxs + (D) show + (in) + [3.0327 6.05449 ] pdfxs + (a) show + (k) + [5.15995 ] pdfxs + (a) show + (r) + [8.46536 ] pdfxs + (D) show + (hurj) + [5.74904 6.0654 4.27631 3.32724 ] pdfxs + (at) show + (i,) + [3.0327 7.36357 ] pdfxs + (a) show + (nd) + [6.0654 10.2545 ] pdfxs + (V) show + (ikr) + [3.02179 5.75995 4.27631 ] pdfxs + (a) show + (m) + [13.2871 ] pdfxs + (A) show + (dve.Ensuringcodes) + [6.05449 5.4545 4.85451 9.52355 7.42902 6.0654 4.29811 6.0654 4.2654 3.0327 6.0654 + 9.64355 4.85451 5.74904 6.0654 9.04356 4.29811 ] pdfxs + (a) show + (fetywi) + [3.33815 4.8436 3.93823 9.95991 7.8763 3.0327 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (o) show + (utrun-) + [6.0654 8.43274 4.27631 6.05449 6.0654 3.63261 ] pdfxs + 22.424 -149.468 m + (t) show + (imechecksf) + [3.0327 9.08711 8.49811 4.53815 6.0654 4.8436 4.54905 5.75995 7.94172 3.33815 ] pdfxs + (o) show + (rre) + [7.91991 4.2654 4.85451 ] pdfxs + (a) show + (l-) + [3.0327 3.63261 ] pdfxs + (t) show + (imec) + [3.0327 9.08711 8.4872 4.85451 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (o) show + (lsys) + [6.6763 4.30902 5.74904 4.30902 ] pdfxs + (t) show + (ems.In) + [4.8436 9.09802 4.29811 7.8872 3.94897 6.0654 ] pdfxs + 238.883 -149.468 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.36716 ] pdfxs + (o) show + (ftheInt) + [7.25456 3.62179 5.58542 8.92363 4.21089 6.13082 3.62179 ] pdfxs + (e) show + (rn) + [4.60356 6.13082 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (a) show + (lC) + [6.69809 7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 8.92363 ] pdfxs + (o) show + (n) show + 22.424 -171.39 m + (C) + [7.81088 ] pdfxs + (o) show + (mpil) + [8.91258 5.58542 3.33823 2.79267 ] pdfxs + (e) show + (r) + [4.59266 ] pdfxs + (s) show + (,Ar) + [7.0582 7.83262 4.04721 ] pdfxs + (ch) show + (ite) + [3.34914 3.62179 4.46185 ] pdfxs + (c) show + (ture) + [3.62179 5.85816 4.0363 8.68363 ] pdfxs + (a) show + (ndSynt) + [6.14173 9.23994 6.13082 5.30169 6.13082 3.62179 ] pdfxs + (hes) show + (isforEmbe) + [3.34914 8.12716 3.33823 5.58542 8.25808 7.40714 8.92348 4.45094 4.46185 ] pdfxs + (d) show + (dedSy) + [5.58542 4.45094 9.25085 6.13082 5.29078 ] pdfxs + (s) show + (t) + [3.6327 ] pdfxs + (e) show + (ms) + [8.91258 8.12716 ] pdfxs + (\() show + (CASES) + [7.81088 8.10534 6.13082 7.40714 6.13082 ] pdfxs + (\)) show + 360.733 -171.39 m + /N614 10.909 Tf + (,Gren) + [6.41449 8.55269 4.27631 4.8436 6.0654 ] pdfxs + (o) show + (ble,Oct) + [6.0654 3.02179 4.85451 6.45812 8.4872 4.8436 7.62547 ] pdfxs + (2002) show + (.) show + 0 -202.279 m + ([) + [3.0327 ] pdfxs + (83) show + (]Willi) + [8.4872 11.2035 3.0327 3.0327 3.0327 3.02179 ] pdfxs + (a) show + (m) + [13.898 ] pdfxs + (La) show + (ndi,B) + [6.0654 6.05449 3.0327 8.1272 7.7344 ] pdfxs + (a) show + (rb) + [4.2654 6.0654 ] pdfxs + (a) show + (ra) + [4.2654 10.2654 ] pdfxs + (R) show + (yder,) + [5.75995 6.05449 4.85451 4.27631 8.1272 ] pdfxs + (a) show + (ndSe) + [6.05449 10.8654 6.0654 4.8436 ] pdfxs + (a) show + (n) + [10.8654 ] pdfxs + (Z) show + (h) + [6.0654 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (.) + [11.3454 ] pdfxs + (I) show + (n) + [5.75995 ] pdfxs + (t) show + (erprocedur) + [4.8436 4.27631 6.05449 4.27631 5.75995 4.8436 4.85451 6.05449 6.0654 4.27631 ] pdfxs + (a) show + (lmodi\fc) + [7.83266 9.08711 5.75995 6.05449 3.0327 6.0654 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nsidee\013ec) + [10.8654 4.29811 3.0327 6.0654 9.65446 4.8436 6.37077 4.8436 4.8436 ] pdfxs + (t) show + 22.424 -224.202 m + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysiswi) + [3.02179 5.75995 4.30902 3.02179 9.03262 7.8763 3.0327 ] pdfxs + (t) show + (hp) + [10.789 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er) + [4.8436 8.9999 ] pdfxs + (a) show + (li) + [3.0327 3.0327 ] pdfxs + (a) show + (sin) + [4.29811 3.0327 6.0654 ] pdfxs + (g) show + (.) + [11.1163 ] pdfxs + (I) show + (n) show + 190.846 -224.202 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.35988 ] pdfxs + (o) show + (ft) + [8.25818 3.62179 ] pdfxs + (h) show + (eACMSIGPLANC) + [9.92726 7.83262 7.79997 14.6945 6.13082 4.19998 8.44359 7.39623 6.85084 8.10534 13.0144 + 7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 9.92726 ] pdfxs + (o) show + (nPr) + [11.0399 7.39623 4.04721 ] pdfxs + (o) show + (-) show + 22.424 -246.124 m + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmingL) + [8.91258 8.92348 3.34914 6.13082 8.92363 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ag) show + (e) + [8.92363 ] pdfxs + (Des) show + (i) + [3.33823 ] pdfxs + (g) show + (nandIm) + [10.0362 5.58542 6.13082 9.47994 4.19998 8.92348 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (m) + [8.91258 ] pdfxs + (e) show + (nt) + [6.14173 3.62179 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [10.0362 ] pdfxs + (\() show + (PL) + [7.39623 6.83993 ] pdfxs + (D) show + (I) + [4.21089 ] pdfxs + (\)) show + 292.955 -246.124 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (A) show + (lbuquerque,) + [3.0327 6.05449 6.0654 5.75995 6.05449 4.85451 4.27631 5.74904 6.0654 4.8436 6.6654 + ] pdfxs + (N) show + (M,) + [10.0036 6.6654 ] pdfxs + (J) show + (une) + [6.0654 6.05449 8.4872 ] pdfxs + (1993) show + (.) show + 3.05176e-05 -277.013 m + ([) + [3.0327 ] pdfxs + (84) show + (]J) + [8.4872 5.5964 ] pdfxs + (a) show + (mes) + [9.09802 4.8436 8.8908 ] pdfxs + (R) show + (.) + [7.62539 ] pdfxs + (La) show + (rus) + [4.27631 6.05449 8.8908 ] pdfxs + (a) show + (ndP) + [6.0654 10.6472 7.12357 ] pdfxs + (a) show + (ul) + [6.05449 7.62539 ] pdfxs + (N) show + (.) + [7.61448 ] pdfxs + (H) show + (il\fn) + [3.0327 3.0327 6.05449 6.0654 ] pdfxs + (g) show + (er.De) + [4.8436 4.27631 10.7126 8.32365 4.85451 ] pdfxs + (t) show + (ec) + [4.8436 4.85451 ] pdfxs + (t) show + (ingc) + [3.02179 6.0654 10.0472 4.8436 ] pdfxs + (o) show + (n\ric) + [6.0654 6.05449 3.0327 4.8436 ] pdfxs + (t) show + (sbetweens) + [8.8908 6.37085 4.8436 3.93823 7.58175 4.8436 4.85451 10.6472 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ure) + [6.05449 4.27631 9.43629 ] pdfxs + (a) show + (ccesses.) + [4.85451 4.8436 4.8436 4.30902 4.29811 4.85451 4.29811 10.7126 ] pdfxs + (I) show + (n) show + 22.424 -298.936 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.93443 ] pdfxs + (o) show + (ft) + [7.82182 3.62179 ] pdfxs + (h) show + (eACMSIGPLANC) + [9.50181 7.83262 7.79997 14.2581 6.13082 4.21089 8.44359 7.39623 6.83993 8.10534 12.5889 + 7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 9.50181 ] pdfxs + (o) show + (nPro) + [10.6144 7.39623 4.0363 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmingL) + [8.92348 8.92348 3.33823 6.14173 9.4909 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ag) show + (e) + [9.50181 ] pdfxs + (De) show + (si) + [4.45083 3.34914 ] pdfxs + (g) show + (n) + [10.6144 ] pdfxs + (a) show + (ndIm-) + [6.13082 10.0581 4.19998 8.92348 3.90544 ] pdfxs + 22.424 -320.858 m + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (m) + [8.91258 ] pdfxs + (e) show + (nt) + [6.14173 3.62179 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [10.0362 ] pdfxs + (\() show + (PL) + [7.39623 6.83993 ] pdfxs + (D) show + (I) + [4.21089 ] pdfxs + (\)) show + 123.266 -320.858 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (21{34) show + (,) + [6.6654 ] pdfxs + (J) show + (uly) + [6.05449 3.0327 9.39264 ] pdfxs + (1988) show + (.) show + 3.05176e-05 -351.747 m + ([) + [3.0327 ] pdfxs + (85) show + (]Chris) + [8.4872 7.8763 6.05449 4.27631 3.0327 35.4869 ] pdfxs + (Latt) show + (ner.) + [6.05449 4.85451 4.2654 89.9665 ] pdfxs + (L) show + (L) + [5.59632 ] pdfxs + (V) show + (M) + [41.1597 ] pdfxs + (A) show + (li) + [3.0327 3.0327 ] pdfxs + (a) show + (s) + [35.4869 ] pdfxs + (A) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 35.4869 ] pdfxs + (I) show + (nfr) + [6.0654 3.32724 4.27631 ] pdfxs + (a) show + (s) + [4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ure.) + [6.05449 4.27631 4.85451 3.0327 ] pdfxs + 22.424 -373.67 m + /N722 10.909 Tf + (http://llvm.cs.uiuc.edu/docs/AliasAnalysis.html) show + 291.603 -373.67 m + /N614 10.909 Tf + (.) show + 3.05176e-05 -404.559 m + ([) + [3.0327 ] pdfxs + (86) show + (]Chris) + [8.4872 7.8763 6.05449 4.27631 3.0327 18.6107 ] pdfxs + (La) show + (t) + [4.23277 ] pdfxs + (t) show + (ner) + [6.0654 4.8436 18.578 ] pdfxs + (a) show + (nd) + [6.0654 20.3671 ] pdfxs + (V) show + (ikr) + [3.0327 5.74904 4.27631 ] pdfxs + (a) show + (m) + [23.3997 ] pdfxs + (A) show + (dve.) + [6.05449 5.4545 4.85451 39.6542 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (M) + [24.2944 ] pdfxs + (La) show + (n) + [6.0654 ] pdfxs + (g) show + (u) + [6.05449 ] pdfxs + (ag) show + (e) + [19.1562 ] pdfxs + (R) show + (eferenceM) + [4.85451 3.32724 4.85451 4.2654 4.85451 6.05449 4.85451 19.1562 9.99272 ] pdfxs + (a) show + (nu) + [5.75995 6.0654 ] pdfxs + (a) show + (l.) + [3.0327 3.0327 ] pdfxs + 22.424 -426.481 m + /N722 10.909 Tf + (http://llvm.cs.uiuc.edu/docs/LangRef.html) show + 257.24 -426.481 m + /N614 10.909 Tf + (.) show + 3.05176e-05 -457.37 m + ([) + [3.0327 ] pdfxs + (87) show + (]Chris) + [8.4872 7.8763 6.05449 4.27631 3.0327 8.34535 ] pdfxs + (Latt) show + (ner) + [6.05449 4.85451 8.31264 ] pdfxs + (a) show + (nd) + [6.0654 10.1017 ] pdfxs + (V) show + (ikr) + [3.0327 5.75995 4.2654 ] pdfxs + (a) show + (m) + [13.1344 ] pdfxs + (A) show + (dve.) + [6.0654 5.4545 4.8436 9.08719 ] pdfxs + (A) show + (rchi) + [4.27631 4.53815 6.0654 3.0327 ] pdfxs + (t) show + (ec) + [4.8436 4.8436 ] pdfxs + (t) show + (uref) + [6.0654 4.27631 8.89083 3.32724 ] pdfxs + (o) show + (ra) + [8.32355 9.49083 ] pdfxs + (N) show + (ex) + [4.85451 5.75995 ] pdfxs + (t) show + (-Gener) + [3.63261 8.5636 4.8436 6.0654 4.8436 4.27631 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (nGCC.In) + [10.1126 8.55269 7.88721 7.8763 9.07628 3.94897 6.0654 ] pdfxs + 408.17 -457.37 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (gs) show + 22.424 -479.293 m + (o) show + (ft) + [7.25456 3.62179 ] pdfxs + (h) show + (eFir) + [8.92363 7.11266 3.34914 4.60356 ] pdfxs + (s) show + (tAnnu) + [7.52722 7.82171 6.14173 6.13082 5.85816 ] pdfxs + (a) show + (lGCC) + [6.68718 8.44359 7.79997 11.7054 ] pdfxs + (Deve) show + (l) + [2.79267 ] pdfxs + (o) show + (p) + [5.01816 ] pdfxs + (e) show + (r) + [4.60356 ] pdfxs + (s) show + ('Summit) + [7.24365 6.13082 5.85816 8.92348 8.92348 3.33823 3.62179 ] pdfxs + 241.395 -479.293 m + /N614 10.909 Tf + (,O) + [6.6654 8.4872 ] pdfxs + (tt) show + (aw) + [5.14905 7.57085 ] pdfxs + (a) show + (,C) + [6.6654 7.88721 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (d) + [6.0654 ] pdfxs + (a) show + (,May) + [6.6654 10.0036 5.14905 9.39264 ] pdfxs + (2003) show + (.) show + 4.57764e-05 -510.182 m + ([) + [3.0327 ] pdfxs + (88) show + (]Chris) + [8.4872 7.8763 6.05449 4.27631 3.0327 8.73808 ] pdfxs + (Latt) show + (ner) + [6.0654 4.8436 8.71627 ] pdfxs + (a) show + (nd) + [6.05449 10.5054 ] pdfxs + (V) show + (ikr) + [3.0327 5.75995 4.2654 ] pdfxs + (a) show + (m) + [13.538 ] pdfxs + (A) show + (dve.) + [6.05449 5.4545 4.85451 10.2545 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (M:AC) + [10.0036 7.47266 12.6217 7.8763 ] pdfxs + (o) show + (mpil) + [9.08711 6.0654 3.0327 3.02179 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nFr) + [10.5054 6.20722 4.27631 ] pdfxs + (a) show + (mew) + [9.08711 4.85451 7.57085 ] pdfxs + (o) show + (rkf) + [4.27631 10.1999 3.32724 ] pdfxs + (o) show + (r) + [8.71627 ] pdfxs + (L) show + (ifel) + [3.0327 3.32724 4.85451 3.02179 ] pdfxs + (o) show + (ngPr) + [6.0654 9.89446 7.42902 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (m) show + 22.424 -532.104 m + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.02179 5.75995 4.30902 3.02179 8.01808 ] pdfxs + (a) show + (ndTr) + [6.05449 9.77446 6.95994 4.27631 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n.) + [6.0654 8.07266 ] pdfxs + (I) show + (n) show + 182.774 -532.104 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.42171 ] pdfxs + (o) show + (ft) + [7.32001 3.62179 ] pdfxs + (h) show + (eInt) + [8.98909 4.19998 6.14173 3.62179 ] pdfxs + (e) show + (rn) + [4.59266 6.14173 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (a) show + (lSymp) + [6.75263 6.14173 5.29078 8.92348 5.01816 ] pdfxs + (os) show + (ium) + [3.34914 5.84725 12.8944 ] pdfxs + (o) show + (nCodeG) + [10.1017 7.79997 5.01816 5.58542 8.97818 8.44359 ] pdfxs + (e) show + (n-) + [6.13082 3.90544 ] pdfxs + 22.424 -554.027 m + (e) show + (r) + [4.04721 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [10.0362 ] pdfxs + (a) show + (ndO) + [6.13082 9.47994 8.36718 ] pdfxs + (p) show + (timi) + [3.62179 3.34914 8.91258 3.34914 ] pdfxs + (za) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [10.0362 ] pdfxs + (\() show + (CGO) + [7.79997 8.44359 8.36718 ] pdfxs + (\)) show + 180.153 -554.027 m + /N614 10.909 Tf + (,S) + [6.6654 6.0654 ] pdfxs + (a) show + (nJ) + [9.6981 5.5964 ] pdfxs + (o) show + (se,) + [4.30902 4.8436 6.6763 ] pdfxs + (U) show + (S) + [6.05449 ] pdfxs + (A) show + (,M) + [6.6654 10.0036 ] pdfxs + (a) show + (r) + [7.909 ] pdfxs + (2004) show + (.) show + 3.05176e-05 -584.916 m + ([) + [3.0327 ] pdfxs + (89) show + (]Chris) + [8.4872 7.8763 6.05449 4.27631 3.0327 7.52718 ] pdfxs + (Latt) show + (ner) + [6.0654 4.8436 7.50537 ] pdfxs + (a) show + (nd) + [6.0654 9.29446 ] pdfxs + (V) show + (ikr) + [3.02179 5.75995 4.27631 ] pdfxs + (a) show + (m) + [12.3162 ] pdfxs + (A) show + (dve.) + [6.0654 5.4545 4.8436 7.21085 ] pdfxs + (A) show + (u) + [6.0654 ] pdfxs + (to) show + (m) + [9.08711 ] pdfxs + (at) show + (icpo) + [3.0327 8.07266 6.37085 5.74904 ] pdfxs + (o) show + (l) + [6.26176 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n:) + [6.05449 7.67993 ] pdfxs + (I) show + (mprovingperf) + [9.09802 6.05449 4.27631 5.14905 5.75995 3.0327 6.05449 8.68356 6.37085 4.8436 4.27631 + 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (ncebyc) + [6.0654 4.8436 8.08357 5.75995 8.98901 4.8436 ] pdfxs + (o) show + (n-) + [6.0654 3.63261 ] pdfxs + 22.424 -606.838 m + (t) show + (r) + [4.27631 ] pdfxs + (o) show + (llingd) + [3.02179 3.0327 3.0327 6.05449 8.91265 6.05449 ] pdfxs + (at) show + (as) + [8.91265 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (urelay) + [6.05449 4.27631 8.30175 3.0327 5.14905 5.4545 ] pdfxs + (o) show + (utinthehe) + [6.05449 7.70183 3.0327 9.51264 4.23277 6.0654 8.30175 6.05449 4.85451 ] pdfxs + (a) show + (p.) + [6.05449 7.57084 ] pdfxs + (I) show + (n) show + 239.155 -606.838 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.19262 ] pdfxs + (o) show + (ft) + [7.08001 3.62179 ] pdfxs + (h) show + (eACMSIGPLANC) + [8.74909 7.83262 7.81088 13.5163 6.13082 4.19998 8.44359 7.39623 6.83993 8.11625 11.8362 + 7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (e) show + (nc) + [6.14173 4.46185 ] pdfxs + (e) show + 22.424 -628.761 m + (o) show + (nPro) + [10.0362 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmingL) + [8.91258 8.92348 3.34914 6.13082 8.92363 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ag) show + (e) + [8.92363 ] pdfxs + (Des) show + (i) + [3.33823 ] pdfxs + (g) show + (nandIm) + [10.0362 5.58542 6.13082 9.47994 4.19998 8.92348 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (m) + [8.91258 ] pdfxs + (e) show + (nt) + [6.14173 3.62179 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [10.0362 ] pdfxs + (\() show + (PL) + [7.39623 6.83993 ] pdfxs + (D) show + (I) + [4.21089 ] pdfxs + (\)) show + 325.028 -628.761 m + /N614 10.909 Tf + (,Chic) + [6.6654 7.8763 6.0654 3.0327 4.8436 ] pdfxs + (ago) show + (,) + [6.6654 ] pdfxs + (IL) show + (,) + [6.6654 ] pdfxs + (J) show + (un) + [6.0654 9.6981 ] pdfxs + (2005) show + (.) show + 220.363 -657.201 m + (205) show + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (12) 13 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 0.000000 0.000000 translate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + 1 0 0 1 77.455 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + ([) + [3.0327 ] pdfxs + (70) show + (]Gern) + [8.4872 8.55269 4.85451 4.2654 6.0654 ] pdfxs + (o) show + (t) + [8.96728 ] pdfxs + (H) show + (eiser,KevinElphins) + [4.8436 3.0327 4.29811 4.85451 4.27631 8.01811 8.4872 4.8436 5.75995 3.0327 10.789 + 7.41812 3.0327 6.05449 6.0654 3.0327 6.05449 4.30902 ] pdfxs + (to) show + (ne,) + [6.05449 4.85451 8.01811 ] pdfxs + (J) show + (erryVoch) + [4.85451 4.2654 4.27631 10.4835 7.26539 5.75995 4.54905 5.75995 ] pdfxs + (t) show + (elo) + [4.8436 3.0327 5.75995 ] pdfxs + (o) show + (,S) + [8.01811 6.0654 ] pdfxs + (t) show + (ephen) + [4.8436 6.0654 6.05449 4.85451 10.7781 ] pdfxs + (R) show + (ussell,) + [6.0654 4.29811 4.30902 4.8436 3.0327 3.0327 8.01811 ] pdfxs + (a) show + (ndJochen) + [6.0654 10.789 5.5964 5.75995 4.54905 6.05449 4.85451 10.7781 ] pdfxs + (L) show + (ied) + [3.0327 4.85451 6.05449 ] pdfxs + (t) show + (ke.) + [5.4545 4.85451 3.0327 ] pdfxs + 22.424 -21.922 m + (TheMun) + [7.8763 6.0654 8.33448 9.99272 6.0654 6.05449 ] pdfxs + (g) show + (isin) + [6.52358 4.29811 3.0327 6.05449 ] pdfxs + (g) show + (le-) + [3.0327 4.85451 3.63261 ] pdfxs + (a) show + (ddress-sp) + [6.0654 6.05449 4.27631 4.8436 4.30902 4.29811 3.64352 4.29811 6.0654 ] pdfxs + (a) show + (ce) + [4.8436 8.33448 ] pdfxs + (o) show + (per) + [6.35994 4.85451 4.2654 ] pdfxs + (at) show + (ingsys) + [3.0327 6.0654 8.93447 4.29811 5.75995 4.30902 ] pdfxs + (t) show + (em.) + [4.8436 9.08711 3.0327 ] pdfxs + 265.922 -21.922 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (sofSoftw) + [8.21444 5.58542 7.10183 6.13082 5.58542 3.33823 3.62179 7.2545 ] pdfxs + (a) show + (r) + [4.04721 ] pdfxs + (e{) show + (Pr) + [7.39623 4.04721 ] pdfxs + (ac) show + (ticeandE) + [3.62179 3.34914 4.45094 8.78182 5.58542 6.13082 9.33812 7.39623 ] pdfxs + (x) show + (-) show + 22.424 -43.845 m + (p) + [5.01816 ] pdfxs + (e) show + (ri) + [4.60356 3.33823 ] pdfxs + (e) show + (nc) + [6.14173 4.45094 ] pdfxs + (e) show + 61.036 -43.845 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (28\(9\)) show + (:) + [3.0327 ] pdfxs + (901{928) show + (,) + [6.6654 ] pdfxs + (1998) show + (.) show + 1.52588e-05 -74.734 m + ([) + [3.0327 ] pdfxs + (71) show + (]) + [8.4872 ] pdfxs + (La) show + (urie) + [6.05449 4.27631 3.0327 8.33448 ] pdfxs + (J) show + (.) + [6.52358 ] pdfxs + (H) show + (endren) + [4.8436 6.0654 6.05449 4.27631 4.8436 9.55628 ] pdfxs + (a) show + (nd) + [6.0654 9.54537 ] pdfxs + (A) show + (lex) + [3.0327 4.8436 5.75995 ] pdfxs + (a) show + (ndru) + [6.0654 6.05449 4.27631 9.55628 ] pdfxs + (N) show + (ic) + [3.02179 4.85451 ] pdfxs + (o) show + (l) + [3.0327 ] pdfxs + (a) show + (u.P) + [6.05449 7.6363 7.12357 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (a) show + (llelizingpr) + [3.0327 3.0327 4.8436 3.0327 3.0327 4.8436 3.0327 6.0654 8.94538 6.05449 4.27631 + ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (mswi) + [9.08711 7.78899 7.88721 3.02179 ] pdfxs + (t) show + (hrecursived) + [9.55628 4.27631 4.8436 4.8436 6.0654 4.27631 4.29811 3.0327 5.4545 8.33448 6.0654 + ] pdfxs + (at) show + (as) + [8.94538 4.29811 ] pdfxs + (t) show + (ruc-) + [4.27631 6.0654 4.8436 3.63261 ] pdfxs + 22.424 -96.656 m + (t) show + (ures.) + [6.05449 4.27631 4.85451 4.29811 3.0327 ] pdfxs + 54.018 -96.656 m + /N634 10.909 Tf + (IEEETr) + [4.21089 7.39623 7.39623 11.3017 6.97089 4.04721 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (sac) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (ns) + [6.13082 8.36716 ] pdfxs + (o) show + (nPar) + [10.0362 7.39623 5.58542 4.0363 ] pdfxs + (a) show + (ll) + [3.34903 2.78176 ] pdfxs + (e) show + (l) + [6.69809 ] pdfxs + (a) show + (nd) + [6.13082 9.47994 ] pdfxs + (D) show + (i) + [3.34914 ] pdfxs + (s) show + (tri) + [3.62179 4.59266 3.34914 ] pdfxs + (b) show + (utedSyst) + [5.85816 3.62179 4.46185 9.47994 6.13082 5.30169 4.45083 3.6327 ] pdfxs + (e) show + (m) show + 315.883 -96.656 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (35{47) show + (,) + [6.6654 ] pdfxs + (1990) show + (.) show + 0 -127.545 m + ([) + [3.0327 ] pdfxs + (72) show + (]Mich) + [8.4872 9.99272 3.0327 4.54905 6.05449 ] pdfxs + (a) show + (el) + [4.85451 6.74176 ] pdfxs + (H) show + (ind.WhichPoin) + [3.0327 6.0654 6.05449 8.11629 11.2035 6.0654 3.0327 4.53815 9.78537 7.11266 5.46541 + 3.02179 5.75995 ] pdfxs + (t) show + (er) + [4.8436 7.99628 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysisSh) + [3.0327 5.75995 4.29811 3.0327 8.02899 6.05449 6.0654 ] pdfxs + (o) show + (uldI) + [6.05449 3.0327 9.77446 7.65803 ] pdfxs + (U) show + (se?) + [4.30902 4.8436 11.6072 ] pdfxs + (I) show + (n) show + 295.498 -127.545 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.43262 ] pdfxs + (o) show + (ft) + [7.33092 3.62179 ] pdfxs + (h) show + (eACMSIGSOFT) + [9 7.82171 7.81088 13.7563 6.13082 4.21089 8.44359 6.13082 8.35627 7.12357 7.81088 + ] pdfxs + 22.424 -149.468 m + (Int) + [4.21089 6.13082 3.62179 ] pdfxs + (e) show + (rn) + [4.60356 6.13082 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (a) show + (lSymp) + [6.69809 6.13082 5.29078 8.92348 5.01816 ] pdfxs + (os) show + (ium) + [3.34914 5.85816 12.818 ] pdfxs + (o) show + (nSoftw) + [10.0362 6.13082 5.58542 3.33823 3.62179 7.2545 ] pdfxs + (a) show + (reT) + [4.04721 8.91272 6.97089 ] pdfxs + (es) show + (ting) + [3.62179 3.34914 6.13082 8.92363 ] pdfxs + (a) show + (ndAn) + [6.13082 9.47994 7.83262 6.13082 ] pdfxs + (a) show + (ly) + [2.79267 5.29078 ] pdfxs + (s) show + (i) + [3.34914 ] pdfxs + (s) show + 305.719 -149.468 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (2000) show + (.) show + 0 -180.357 m + ([) + [3.0327 ] pdfxs + (73) show + (]Mich) + [8.4872 9.99272 3.0327 4.54905 6.05449 ] pdfxs + (a) show + (el) + [4.85451 7.98538 ] pdfxs + (H) show + (ind.P) + [3.0327 6.05449 6.0654 11.7926 7.12357 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er) + [4.8436 9.22899 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis:) + [3.02179 5.75995 4.30902 3.02179 4.30902 10.5163 ] pdfxs + (H) show + (aven'twes) + [5.14905 5.4545 4.85451 6.05449 3.0327 9.19637 7.58175 9.79628 4.30902 ] pdfxs + (o) show + (lved) + [3.0327 5.4545 4.8436 11.0181 ] pdfxs + (t) show + (hispr) + [6.05449 3.0327 9.26171 6.05449 4.27631 ] pdfxs + (o) show + (blemye) + [6.0654 3.02179 4.85451 14.0507 5.4545 4.8436 ] pdfxs + (t) show + (?) + [17.7708 ] pdfxs + (I) show + (n) show + 394.132 -180.357 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (sof) + [9.56715 5.58542 3.34914 ] pdfxs + 22.424 -202.279 m + (t) + [3.62179 ] pdfxs + (h) show + (e) + [8.81454 ] pdfxs + (2) show + (0) + [5.58542 ] pdfxs + (0) show + (1ACMSIGPLAN-SIGSOFT) + [9.37084 7.83262 7.79997 13.5817 6.13082 4.21089 8.43268 7.40714 6.83993 8.10534 8.10534 + 3.90544 6.13082 4.21089 8.44359 6.13082 8.35627 7.12357 11.6072 ] pdfxs + (Wo) show + (r) + [4.59266 ] pdfxs + (ksh) show + (op) + [5.58542 9.37084 ] pdfxs + (o) show + (nPro) + [9.92715 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (ramAn) + [4.0363 5.58542 12.7089 7.83262 6.13082 ] pdfxs + (a) show + (lysisf) + [2.79267 5.30169 4.45083 3.34914 8.25807 3.34914 ] pdfxs + (o) show + (rS) + [8.38899 6.14173 ] pdfxs + (o) show + (ftw) + [3.33823 3.6327 7.24359 ] pdfxs + (a) show + (reTo) + [4.04721 8.81454 6.97089 5.01816 ] pdfxs + (o) show + (ls) + [2.78176 8.25807 ] pdfxs + (a) show + (n) + [6.14173 ] pdfxs + (d) show + 22.424 -224.202 m + (En) + [7.39623 6.14173 ] pdfxs + (g) show + (ine) + [3.33823 6.13082 4.46185 ] pdfxs + (e) show + (ring) + [4.60356 3.34914 6.13082 8.92363 ] pdfxs + (\() show + (PASTE) + [6.55624 8.11625 6.13082 7.79997 7.40714 ] pdfxs + (\)) show + 127.866 -224.202 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (54{61) show + (,) + [6.6654 ] pdfxs + (2001) show + (.) show + -3.05176e-05 -255.091 m + ([) + [3.0327 ] pdfxs + (74) show + (]M) + [8.4872 9.99272 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (in) + [3.0327 9.78537 ] pdfxs + (H) show + (irzel,) + [3.02179 4.27631 4.85451 4.8436 3.0327 6.77449 ] pdfxs + (A) show + (mer) + [9.09802 4.8436 7.99628 ] pdfxs + (D) show + (iw) + [3.0327 7.57085 ] pdfxs + (a) show + (n,) + [6.0654 6.77449 ] pdfxs + (a) show + (ndM) + [6.0654 9.78537 10.0036 ] pdfxs + (at) show + (thew) + [4.23277 6.0654 4.8436 11.6072 ] pdfxs + (H) show + (er) + [4.85451 4.2654 ] pdfxs + (t) show + (z.C) + [4.85451 8.1272 7.88721 ] pdfxs + (o) show + (nnectivity-b) + [6.05449 6.0654 4.8436 4.85451 4.23277 3.0327 5.75995 3.0327 3.93823 5.75995 3.63261 + 6.0654 ] pdfxs + (a) show + (sed) + [4.29811 4.8436 9.79628 ] pdfxs + (ga) show + (rb) + [4.2654 6.0654 ] pdfxs + (ag) show + (ec) + [8.57447 4.8436 ] pdfxs + (o) show + (llec) + [3.0327 3.0327 4.8436 4.85451 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (n.) + [6.0654 8.13811 ] pdfxs + (I) show + (n) show + 22.424 -277.013 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.33806 ] pdfxs + (o) show + (ft) + [8.21455 3.6327 ] pdfxs + (h) show + (eACMSIGPLANconf) + [9.89453 7.83262 7.79997 14.6617 6.13082 4.21089 8.43268 7.40714 6.83993 8.10534 12.9926 + 4.45094 5.58542 6.13082 3.33823 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 9.89453 ] pdfxs + (o) show + (nO) + [11.018 8.35627 ] pdfxs + (b) show + (je) + [3.34914 4.46185 ] pdfxs + (c) show + (t-Ori) + [3.62179 3.90544 8.36718 4.59266 3.34914 ] pdfxs + (e) show + (ntedPro) + [6.13082 3.62179 4.46185 10.4508 7.40714 4.0363 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmin) + [8.92348 8.92348 3.33823 6.13082 ] pdfxs + (g) show + (,Sy) + [8.47637 6.13082 5.29078 ] pdfxs + (s) show + (t) + [3.62179 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (s) show + (,) show + 22.424 -298.936 m + (L) + [6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ages) show + (,) + [7.25456 ] pdfxs + (a) show + (ndA) + [6.13082 9.47994 8.10534 ] pdfxs + (pp) show + (lications) + [2.79267 3.34914 4.45094 5.58542 3.62179 3.33823 5.58542 6.13082 8.35625 ] pdfxs + (\() show + (OOPSLA) + [8.36718 8.36718 7.39623 6.13082 6.83993 8.11625 ] pdfxs + (\)) show + 216.404 -298.936 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (359{373) show + (,) + [6.6654 ] pdfxs + (2003) show + (.) show + -3.05176e-05 -329.825 m + ([) + [3.0327 ] pdfxs + (75) show + (]) + [8.4872 ] pdfxs + (X) show + (i) + [3.02179 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (l) + [3.0327 ] pdfxs + (o) show + (ng) + [6.05449 9.87264 ] pdfxs + (H) show + (u) + [6.05449 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (,S) + [7.6363 6.05449 ] pdfxs + (t) show + (ephenBl) + [4.85451 6.05449 6.0654 4.8436 10.4726 7.7344 3.02179 ] pdfxs + (a) show + (ckburn,K) + [4.54905 5.75995 6.05449 6.0654 4.27631 6.05449 7.6363 8.4872 ] pdfxs + (at) show + (hrynMcKinley,Eli) + [6.05449 4.27631 5.75995 10.4726 10.0036 4.8436 8.4872 3.0327 6.05449 3.0327 4.8436 + 4.8545 7.6363 7.41812 3.0327 3.0327 ] pdfxs + (o) show + (tM) + [8.65092 10.0036 ] pdfxs + (o) show + (ss,) + [4.29811 4.30902 7.6363 ] pdfxs + (Z) show + (henlinW) + [6.0654 4.8436 6.0654 3.02179 3.0327 10.4726 10.309 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (,) + [7.6363 ] pdfxs + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + 22.424 -351.747 m + (PerryChen) + [7.12357 4.8436 4.27631 4.27631 9.35992 7.8763 6.0654 4.8436 6.0654 ] pdfxs + (g) show + (.The) + [7.81084 7.88721 6.05449 8.45447 ] pdfxs + (ga) show + (rb) + [4.27631 6.05449 ] pdfxs + (ag) show + (ec) + [8.46538 4.8436 ] pdfxs + (o) show + (llec) + [3.0327 3.0327 4.8436 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.66537 ] pdfxs + (a) show + (dv) + [6.0654 5.14904 ] pdfxs + (a) show + (n) + [5.75995 ] pdfxs + (tag) show + (e:improvingpr) + [4.8436 7.86538 3.0327 9.08711 6.0654 4.2654 5.15996 5.74904 3.0327 6.0654 9.05447 + 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (mloc) + [12.698 3.0327 5.75995 4.8436 ] pdfxs + (a) show + (lity.) + [3.0327 3.0327 3.93823 4.84359 7.82175 ] pdfxs + (I) show + (n) show + 408.17 -351.747 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (gs) show + 22.424 -373.67 m + (o) show + (ft) + [8.42182 3.62179 ] pdfxs + (h) show + (eACMSIGPLANc) + [10.0909 7.83262 7.79997 14.8581 6.13082 4.21089 8.43268 7.40714 6.83993 8.10534 13.178 + 4.46185 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 10.0909 ] pdfxs + (o) show + (nO) + [11.2035 8.36718 ] pdfxs + (b) show + (je) + [3.33823 4.46185 ] pdfxs + (c) show + (t-Ori) + [3.62179 3.90544 8.36718 4.60356 3.33823 ] pdfxs + (e) show + (ntedPro) + [6.13082 3.6327 4.46185 10.6472 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.0363 ] pdfxs + (a) show + (mmin) + [8.92348 8.92348 3.33823 6.14173 ] pdfxs + (g) show + (,Sy) + [8.70545 6.13082 5.30169 ] pdfxs + (s) show + (t) + [3.62179 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (s) show + (,L) + [8.70545 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ages) show + (,) show + 22.424 -395.592 m + (a) show + (ndA) + [6.13082 9.47994 8.11625 ] pdfxs + (pp) show + (lic) + [2.78176 3.34914 4.46185 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (ns) + [6.13082 8.36716 ] pdfxs + (\() show + (OOPSLA) + [8.35627 8.36718 7.39623 6.14173 6.83993 8.10534 ] pdfxs + (\)) show + 160.217 -395.592 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (69{80) show + (,) + [6.6654 ] pdfxs + (2004) show + (.) show + -4.57764e-05 -426.481 m + ([) + [3.0327 ] pdfxs + (76) show + (]) + [8.4872 ] pdfxs + (I) show + (BMC) + [7.72349 13.6363 7.8763 ] pdfxs + (o) show + (rp.) + [4.27631 6.05449 7.87629 ] pdfxs + (X) show + (LFORT) + [10.4508 6.81812 8.4872 7.12349 7.8763 ] pdfxs + (RAN) show + (:Ei) + [6.6654 7.42902 3.02179 ] pdfxs + (g) show + (htWaystoBo) + [5.75995 7.87638 10.309 5.14905 5.75995 7.94172 4.23277 9.0981 7.72349 5.75995 ] pdfxs + (o) show + (stPerf) + [4.29811 7.88729 7.11266 4.85451 4.27631 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nce.Whi) + [6.0654 4.8436 4.85451 7.86538 11.2035 6.0654 3.0327 ] pdfxs + (t) show + (eP) + [8.47629 7.12357 ] pdfxs + (a) show + (per,) + [6.37085 4.8436 4.27631 6.6654 ] pdfxs + (2000) show + (.) show + -4.57764e-05 -457.37 m + ([) + [3.0327 ] pdfxs + (77) show + (]Ber) + [8.4872 7.72349 4.8436 4.27631 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nd) + [6.05449 10.0908 ] pdfxs + (J) show + (e) + [4.8436 ] pdfxs + (a) show + (nne) + [6.0654 6.05449 4.85451 ] pdfxs + (t) show + (,) + [7.14539 ] pdfxs + (A) show + (lexey) + [3.0327 4.8436 5.75995 4.85451 9.78537 ] pdfxs + (Log) show + (inov,Th) + [3.02179 6.0654 5.14905 5.75995 7.1563 7.8763 6.05449 ] pdfxs + (o) show + (m) + [9.09802 ] pdfxs + (a) show + (s) + [8.32353 ] pdfxs + (R) show + (eps,) + [4.85451 6.05449 4.30902 7.1563 ] pdfxs + (a) show + (ndMo) + [6.05449 10.0908 9.99272 5.75995 ] pdfxs + (o) show + (lyS) + [3.0327 9.78537 6.05449 ] pdfxs + (ag) show + (iv.Arel) + [3.0327 5.75995 9.02174 12.2072 4.27631 4.8436 3.0327 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [6.05449 ] pdfxs + (a) show + (l) + [7.05812 ] pdfxs + (a) show + (ppr) + [6.0654 6.05449 4.27631 ] pdfxs + (oa) show + (ch) + [4.54905 6.0654 ] pdfxs + 22.424 -479.293 m + (t) show + (oin) + [9.49083 3.02179 5.75995 ] pdfxs + (t) show + (erprocedur) + [4.8436 4.27631 6.0654 4.2654 5.75995 4.85451 4.8436 6.0654 6.05449 4.27631 ] pdfxs + (a) show + (lsh) + [7.05812 4.30902 6.05449 ] pdfxs + (a) show + (pe) + [6.37085 8.87993 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis.) + [3.0327 5.75995 4.29811 3.0327 4.29811 9.05447 ] pdfxs + (I) show + (n) show + 204.538 -479.293 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.72716 ] pdfxs + (o) show + (ft) + [7.61455 3.62179 ] pdfxs + (h) show + (eInt) + [9.28363 4.21089 6.13082 3.62179 ] pdfxs + (e) show + (rn) + [4.60356 6.13082 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (a) show + (lSymp) + [7.05808 6.13082 5.30169 8.92348 5.01816 ] pdfxs + (os) show + (ium) + [3.33823 5.85816 13.1889 ] pdfxs + (o) show + (nSt) + [10.3962 6.14173 3.62179 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (c) show + 22.424 -501.215 m + (An) + [7.83262 6.13082 ] pdfxs + (a) show + (ly) + [2.79267 5.29078 ] pdfxs + (s) show + (is) + [3.34914 8.35625 ] pdfxs + (\() show + (SAS) + [6.14173 8.10534 6.13082 ] pdfxs + (\)) show + 95.5139 -501.215 m + /N614 10.909 Tf + (,Ver) + [6.6654 7.2763 4.8436 4.27631 ] pdfxs + (o) show + (n) + [6.0654 ] pdfxs + (a) show + (,) + [6.6654 ] pdfxs + (Ita) show + (ly,) + [3.02179 4.8545 6.6654 ] pdfxs + (A) show + (u) + [6.0654 ] pdfxs + (g) show + (ust) + [6.05449 4.30902 7.87638 ] pdfxs + (2004) show + (.) show + -4.57764e-05 -532.104 m + ([) + [3.0327 ] pdfxs + (78) show + (]Trev) + [8.4872 6.95994 4.27631 4.85451 5.4545 ] pdfxs + (o) show + (r) + [9.55626 ] pdfxs + (J) show + (im,GregM) + [3.0327 9.08711 8.7381 8.55269 4.27631 4.8436 10.7454 10.0036 ] pdfxs + (o) show + (rrise) + [4.27631 4.2654 3.0327 4.29811 4.85451 ] pdfxs + (tt) show + (,) + [8.7272 ] pdfxs + (Da) show + (nGr) + [11.3454 8.5636 4.27631 ] pdfxs + (o) show + (ssm) + [4.29811 4.30902 9.08711 ] pdfxs + (a) show + (n,Mich) + [6.0654 8.7272 10.0036 3.0327 4.53815 6.0654 ] pdfxs + (a) show + (el) + [4.8436 8.32356 ] pdfxs + (H) show + (icks,) + [3.0327 4.53815 5.75995 4.29811 8.7381 ] pdfxs + (Ja) show + (mesCheney,) + [9.08711 4.85451 9.58898 7.8763 6.0654 4.8436 6.0654 4.8436 4.8545 8.7272 ] pdfxs + (a) show + (ndY) + [6.0654 11.3454 7.2763 ] pdfxs + (a) show + (nlin) + [6.05449 3.0327 3.0327 6.05449 ] pdfxs + (g) show + 22.424 -554.027 m + (W) + [10.2981 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (.Cycl) + [9.61082 7.8763 5.75995 4.85451 3.02179 ] pdfxs + (o) show + (ne:As) + [6.0654 4.8436 9.05447 12.4035 4.29811 ] pdfxs + (a) show + (fedi) + [3.33815 9.06538 6.0654 3.0327 ] pdfxs + (a) show + (lect) + [3.02179 4.85451 4.8436 8.46546 ] pdfxs + (o) show + (fC.) + [7.55993 7.8763 9.61082 ] pdfxs + (I) show + (n) show + 221.26 -554.027 m + /N634 10.909 Tf + (USENIXAnnu) + [8.10534 6.14173 7.39623 8.10534 4.21089 12.5453 7.83262 6.13082 6.13082 5.85816 ] pdfxs + (a) show + (lTe) + [7.23263 6.97089 4.46185 ] pdfxs + (ch) show + (nic) + [6.13082 3.34914 4.46185 ] pdfxs + (a) show + (lC) + [7.22172 7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nc) + [6.13082 4.46185 ] pdfxs + (e) show + 407.844 -554.027 m + /N614 10.909 Tf + (,M) + [7.3963 10.0036 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (erey,) + [4.8436 4.27631 4.8436 4.8545 3.0327 ] pdfxs + 22.424 -575.949 m + (C) + [7.8763 ] pdfxs + (A) show + (,) + [6.6654 ] pdfxs + (2002) show + (.) show + -4.57764e-05 -606.838 m + ([) + [3.0327 ] pdfxs + (79) show + (]) + [8.4872 ] pdfxs + (R) show + (ich) + [3.02179 4.54905 6.0654 ] pdfxs + (a) show + (rd) + [4.2654 10.7126 ] pdfxs + (Jo) show + (nes.) + [6.05449 4.85451 4.29811 3.0327 ] pdfxs + 101.668 -606.838 m + /N634 10.909 Tf + (G) + [8.44359 ] pdfxs + (a) show + (rb) + [4.59266 4.46185 ] pdfxs + (ag) show + (eC) + [9.8509 7.81088 ] pdfxs + (o) show + (lle) + [3.34903 2.78176 4.46185 ] pdfxs + (c) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n.Al) + [6.13082 8.18182 7.83262 2.78176 ] pdfxs + (go) show + (rit) + [4.60356 3.34914 3.62179 ] pdfxs + (h) show + (msf) + [8.92348 9.28352 3.34914 ] pdfxs + (o) show + (rAut) + [9.43625 7.82171 5.85816 3.62179 ] pdfxs + (o) show + (m) + [8.92348 ] pdfxs + (a) show + (tic) + [3.62179 3.34914 9.8509 ] pdfxs + (D) show + (yn) + [5.30169 6.13082 ] pdfxs + (a) show + (micM) + [8.92348 3.33823 9.8509 9.7854 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (o) show + (ryMan) + [4.59266 10.1344 9.7745 5.58542 6.13082 ] pdfxs + (age) show + (-) show + 22.424 -628.761 m + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + 46.121 -628.761 m + /N614 10.909 Tf + (.) + [7.86538 ] pdfxs + (Jo) show + (hnWiley&S) + [6.0654 9.68719 11.2144 3.0327 3.0327 4.8436 9.39264 12.1199 6.0654 ] pdfxs + (o) show + (ns,) + [6.0654 4.29811 6.6654 ] pdfxs + (1999) show + (.) show + 220.363 -657.201 m + (204) show + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 72 634.321 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N622 20.663 Tf + (C) + [16.7991 ] pdfxs + (hap) show + (ter1) + [9.07113 10.6001 17.2536 11.6333 ] pdfxs + 0 -49.813 m + /N622 24.787 Tf + (I) show + (ntro) + [14.7235 10.832 11.402 14.6988 ] pdfxs + (duc) show + (tio) + [10.8568 7.73363 13.9552 ] pdfxs + (n) show + 0 -111.586 m + /N614 10.909 Tf + (Mem) + [10.0036 4.8436 9.08711 ] pdfxs + (o) show + (rysys) + [4.27631 8.67265 4.29811 5.75995 4.29811 ] pdfxs + (t) show + (emperf) + [4.85451 11.9998 6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nceis) + [6.0654 4.8436 7.7563 3.0327 7.22172 ] pdfxs + (o) show + (ne) + [6.05449 7.7563 ] pdfxs + (o) show + (f) + [6.25085 ] pdfxs + (t) show + (hem) + [6.05449 7.76721 9.08711 ] pdfxs + (a) show + (inf) + [3.0327 8.96719 3.33815 ] pdfxs + (a) show + (c) + [4.8436 ] pdfxs + (to) show + (rslimi) + [4.27631 7.21082 3.0327 3.0327 9.08711 3.0327 ] pdfxs + (t) show + (ing) + [3.02179 6.0654 8.3672 ] pdfxs + (a) show + (pplic) + [6.05449 6.0654 3.0327 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nperf) + [8.96719 6.35994 4.85451 4.27631 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nce) + [6.0654 4.8436 7.76721 ] pdfxs + (o) show + (nmodern) + [8.96719 9.08711 5.75995 6.0654 4.8436 4.27631 6.0654 ] pdfxs + 0 -133.509 m + (a) show + (rchi) + [4.27631 4.53815 6.0654 3.0327 ] pdfxs + (t) show + (ec) + [4.8436 4.8436 ] pdfxs + (t) show + (ures.Today,modernc) + [6.0654 4.27631 4.8436 4.29811 10.6035 6.97085 5.74904 6.0654 5.14905 4.8545 7.79993 + 9.08711 5.75995 6.05449 4.85451 4.2654 10.6035 4.85451 ] pdfxs + (o) show + (mpilers) + [9.08711 6.0654 3.02179 3.0327 4.85451 4.2654 8.84717 ] pdfxs + (a) show + (re) + [4.27631 9.39265 ] pdfxs + (a) show + (ble) + [6.05449 3.0327 9.39265 ] pdfxs + (t) show + (o) + [9.99264 ] pdfxs + (agg) show + (ressively) + [4.27631 4.8436 4.30902 4.29811 3.0327 5.4545 4.8436 3.0327 10.2981 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lyze) + [3.0327 5.74904 4.85451 9.39265 ] pdfxs + (a) show + (nd) + [6.05449 10.6035 ] pdfxs + (o) show + (ptimizepr) + [6.0654 4.23277 3.0327 9.09802 3.02179 4.85451 9.39265 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms) + [9.08711 4.29811 ] pdfxs + 0 -155.431 m + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tusedense) + [7.61456 6.05449 4.30902 8.21448 6.05449 4.85451 6.05449 4.30902 8.20357 ] pdfxs + (a) show + (rrays,s) + [4.27631 4.27631 5.14905 5.75995 4.29811 6.44722 4.30902 ] pdfxs + (o) show + (me) + [9.08711 4.85451 ] pdfxs + (t) show + (imesprovidingmul) + [3.02179 9.09802 4.8436 7.66899 6.05449 4.27631 5.14905 5.75995 3.0327 6.0654 3.02179 + 6.0654 8.81447 8.79257 6.05449 3.0327 ] pdfxs + (t) show + (iplef) + [3.0327 6.05449 3.0327 8.21448 3.33815 ] pdfxs + (a) show + (c) + [4.8436 ] pdfxs + (to) show + (rs) + [4.27631 7.65808 ] pdfxs + (o) show + (fperf) + [6.69812 6.37085 4.8436 4.27631 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nceimprovemen) + [6.0654 4.8436 8.21448 3.0327 9.08711 6.0654 4.27631 5.14905 5.4545 4.8436 9.09802 + 4.8436 5.75995 ] pdfxs + (t) show + (.P) + [7.78902 7.11266 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er-) + [4.8436 4.27631 3.63261 ] pdfxs + 0 -177.354 m + (b) + [6.0654 ] pdfxs + (a) show + (sedrecursived) + [4.29811 4.8436 9.13083 4.27631 4.8436 4.85451 6.05449 4.27631 4.30902 3.02179 5.4545 + 7.91993 6.0654 ] pdfxs + (at) show + (as) + [8.51993 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ures,) + [6.05449 4.27631 4.8436 4.30902 6.20722 ] pdfxs + (o) show + (n) + [9.13083 ] pdfxs + (t) show + (he) + [6.0654 7.90903 ] pdfxs + (ot) show + (herh) + [6.0654 4.8436 7.34174 6.0654 ] pdfxs + (a) show + (nd,haveproven) + [6.05449 6.0654 6.20722 6.0654 5.14905 5.4545 7.91993 6.0654 4.2654 5.14905 5.4545 + 4.85451 9.13083 ] pdfxs + (t) show + (obemuchm) + [8.51993 6.35994 7.91993 8.79257 6.05449 4.54905 9.13083 9.08711 ] pdfxs + (o) show + (redi\016cult{b) + [4.27631 7.90903 6.0654 3.0327 9.08711 4.85451 6.05449 3.0327 7.30911 8.51993 6.37085 + ] pdfxs + (ot) show + (h) + [9.11992 ] pdfxs + (to) show + 0 -199.276 m + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lyze) + [3.02179 5.75995 4.85451 8.38902 ] pdfxs + (a) show + (nd) + [6.05449 9.59991 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imize{) + [3.0327 9.08711 3.0327 4.8436 8.38902 8.99992 ] pdfxs + (a) show + (ndthusc) + [6.05449 9.61082 4.23277 5.75995 6.0654 7.84354 4.8436 ] pdfxs + (o) show + (mpilershaveh) + [9.09802 6.05449 3.0327 3.0327 4.8436 4.27631 7.84354 6.05449 5.15996 5.4545 8.38902 + 6.05449 ] pdfxs + (a) show + (dmuchlesssuccessimproving) + [9.59991 8.79257 6.0654 4.53815 9.59991 3.0327 4.85451 4.29811 7.84354 4.30902 6.05449 + 4.85451 4.8436 4.85451 4.29811 7.84354 3.0327 9.08711 6.0654 4.2654 5.15996 5.74904 + 3.0327 6.0654 8.98901 ] pdfxs + (t) show + (heperf) + [6.0654 8.38902 6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nce) + [6.05449 4.85451 4.8436 ] pdfxs + 0 -221.199 m + (o) show + (f) + [6.97085 ] pdfxs + (t) show + (hesepr) + [6.05449 4.85451 4.29811 8.4872 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms.) + [9.08711 4.30902 3.0327 ] pdfxs + 16.936 -243.121 m + (Theprim) + [7.8763 6.0654 9.8181 6.05449 4.27631 3.0327 9.08711 ] pdfxs + (a) show + (ryexis) + [4.27631 10.7235 4.85451 5.74904 3.0327 4.30902 ] pdfxs + (t) show + (ing) + [3.02179 6.0654 10.429 ] pdfxs + (a) show + (ppr) + [6.05449 6.0654 4.2654 ] pdfxs + (oa) show + (chesf) + [4.54905 6.0654 4.8436 9.27262 3.33815 ] pdfxs + (o) show + (r) + [9.2399 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lyzing) + [3.0327 5.75995 4.8436 3.0327 6.0654 10.4181 ] pdfxs + (a) show + (nd) + [6.0654 11.029 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rmingp) + [4.27631 9.08711 3.0327 6.0654 10.4181 6.37085 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (er-in) + [4.8436 4.27631 3.63261 3.0327 5.75995 ] pdfxs + (t) show + (ensivepr) + [4.8436 6.0654 4.29811 3.0327 5.4545 9.8181 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms) + [9.08711 4.29811 ] pdfxs + 0 -265.044 m + (f) + [3.33815 ] pdfxs + (a) show + (llin) + [3.02179 7.75629 3.0327 5.75995 ] pdfxs + (t) show + (otwobr) + [10.1781 3.93823 7.58175 10.1781 6.0654 4.2654 ] pdfxs + (oa) show + (dc) + [10.789 4.85451 ] pdfxs + (at) show + (e) + [4.8436 ] pdfxs + (go) show + (ries:sc) + [4.27631 3.0327 4.8436 4.29811 10.069 4.29811 4.85451 ] pdfxs + (a) show + (l) + [3.02179 ] pdfxs + (a) show + (r) + [8.9999 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 9.03262 ] pdfxs + (\() show + (such) + [4.30902 6.05449 4.54905 10.789 ] pdfxs + (a) show + (sre) + [9.02171 4.27631 4.85451 ] pdfxs + (g) show + (is) + [3.02179 4.30902 ] pdfxs + (t) show + (erpr) + [4.8436 8.9999 6.0654 4.2654 ] pdfxs + (o) show + (m) + [9.09802 ] pdfxs + (ot) show + (i) + [3.02179 ] pdfxs + (o) show + (n[) + [10.789 3.0327 ] pdfxs + (37) show + (],de) + [3.0327 8.02902 6.0654 4.8436 ] pdfxs + (a) show + (ds) + [10.789 4.29811 ] pdfxs + (to) show + (re) + [4.27631 4.8436 ] pdfxs + 0 -286.966 m + (elimin) + [4.8436 3.0327 3.0327 9.08711 3.0327 6.0654 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n,) + [6.0654 6.01086 ] pdfxs + (g) show + (reedyprefe) + [4.2654 4.85451 4.8436 6.0654 8.57447 6.05449 4.27631 4.8436 3.33815 4.8436 ] pdfxs + (t) show + (ching[) + [4.54905 6.05449 3.0327 6.0654 8.26902 3.0327 ] pdfxs + (94) show + (],e) + [3.02179 6.01086 4.85451 ] pdfxs + (t) show + (c.) + [4.8436 3.0327 ] pdfxs + (\)) show + (,) + [5.99995 ] pdfxs + (a) show + (nds) + [6.0654 8.87992 4.29811 ] pdfxs + (t) show + (ructure) + [4.27631 6.05449 4.85451 4.23277 6.0654 4.27631 7.65812 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.0654 7.11264 ] pdfxs + (\() show + (s) + [4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ure\feldre) + [6.05449 4.27631 7.65812 6.0654 4.8436 3.0327 8.87992 4.2654 4.85451 ] pdfxs + (o) show + (rderin) + [4.27631 6.05449 4.85451 4.2654 3.0327 6.0654 ] pdfxs + (g) show + (,) show + 0 -308.889 m + (s) + [4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (urespli) + [6.05449 4.27631 8.82538 4.29811 6.0654 3.02179 3.0327 ] pdfxs + (tt) show + (ing[) + [3.0327 6.05449 9.42537 3.0327 ] pdfxs + (28) show + (],jump-p) + [3.0327 7.07994 3.33815 6.05449 9.09802 6.05449 3.64352 6.35994 ] pdfxs + (o) show + (interprefe) + [3.0327 5.75995 4.23277 4.85451 8.24718 6.05449 4.27631 4.8436 3.33815 4.8436 ] pdfxs + (t) show + (ching[) + [4.54905 6.05449 3.0327 6.0654 9.42537 3.02179 ] pdfxs + (112) show + (,) + [7.00357 ] pdfxs + (94) show + (],e) + [3.0327 7.07994 4.85451 ] pdfxs + (t) show + (c.) + [4.8436 3.0327 ] pdfxs + (\)) show + (.These) + [8.87992 7.8763 6.0654 4.8436 4.30902 8.81447 ] pdfxs + (a) show + (ppr) + [6.0654 6.05449 4.27631 ] pdfxs + (oa) show + (ches) + [4.54905 6.05449 4.85451 8.26899 ] pdfxs + (a) show + (re) + [4.27631 8.81447 ] pdfxs + (att) show + (r) + [4.27631 ] pdfxs + (a) show + (c) + [4.8436 ] pdfxs + (t) show + (ive) + [3.0327 5.4545 4.8436 ] pdfxs + 0 -330.811 m + (bec) + [6.35994 4.85451 4.8436 ] pdfxs + (a) show + (use) + [6.0654 4.29811 8.71629 ] pdfxs + (t) show + (hey) + [6.05449 4.85451 9.62173 ] pdfxs + (o) show + (nlyrequireloc) + [6.0654 3.02179 9.62173 4.27631 4.85451 5.74904 6.0654 3.0327 4.2654 8.71629 3.0327 + 5.75995 4.8436 ] pdfxs + (a) show + (lchan) + [6.89448 4.54905 6.05449 5.46541 6.05449 ] pdfxs + (g) show + (es) + [4.85451 8.1599 ] pdfxs + (t) show + (othepr) + [9.32719 4.23277 6.0654 8.71629 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (m:afewins) + [9.08711 8.33447 9.32719 3.32724 4.85451 11.7381 3.0327 6.05449 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nsin) + [6.0654 8.1599 3.0327 9.92718 ] pdfxs + (t) show + (he\frstc) + [6.0654 8.70538 6.0654 4.27631 4.29811 8.10547 4.85451 ] pdfxs + (a) show + (se) + [4.29811 8.71629 ] pdfxs + (a) show + (nd) + [6.05449 9.92718 ] pdfxs + (a) show + 0 -352.734 m + (sin) + [4.29811 3.0327 6.0654 ] pdfxs + (g) show + (les) + [3.0327 8.47629 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (urede\fni) + [6.0654 4.27631 8.47629 6.0654 4.8436 6.0654 6.05449 3.0327 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nin) + [9.6981 3.0327 9.68719 ] pdfxs + (t) show + (hesec) + [6.0654 8.4872 4.29811 4.85451 4.8436 ] pdfxs + (o) show + (nd.) + [6.0654 6.05449 3.0327 ] pdfxs + 16.936 -374.656 m + (U) show + (nf) + [6.0654 3.32724 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (t) show + (un) + [6.05449 6.0654 ] pdfxs + (at) show + (ely,) + [4.8436 3.0327 4.84359 6.64358 ] pdfxs + (t) show + (hisisprecisely) + [6.0654 3.0327 7.90899 3.0327 7.90899 6.05449 4.27631 4.85451 4.8436 3.0327 4.29811 + 4.85451 3.02179 9.37083 ] pdfxs + (t) show + (hepr) + [6.05449 8.46538 6.05449 4.27631 ] pdfxs + (o) show + (perty) + [6.35994 4.85451 4.2654 3.93823 9.37083 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tlimi) + [7.85456 3.0327 3.0327 9.08711 3.0327 ] pdfxs + (t) show + (s) + [7.90899 ] pdfxs + (t) show + (hep) + [6.05449 8.46538 6.35994 ] pdfxs + (ot) show + (en) + [4.8436 5.75995 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (a) show + (l) + [6.63267 ] pdfxs + (ga) show + (in) + [3.0327 9.66537 ] pdfxs + (o) show + (f) + [6.94903 ] pdfxs + (t) show + (hese) + [6.05449 4.85451 4.29811 8.45447 ] pdfxs + (a) show + (ppr) + [6.0654 6.05449 4.27631 ] pdfxs + (oa) show + (ches.) + [4.54905 6.05449 4.85451 4.29811 3.0327 ] pdfxs + 0 -396.579 m + (Sc) + [6.0654 4.8436 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (a) show + (r) + [9.30536 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imiz) + [3.02179 9.09802 3.02179 4.85451 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 9.33807 ] pdfxs + (a) show + (reinheren) + [4.27631 9.88355 3.0327 6.05449 6.0654 4.8436 4.27631 4.85451 5.74904 ] pdfxs + (t) show + (lylimi) + [3.0327 10.789 3.0327 3.0327 9.08711 3.0327 ] pdfxs + (t) show + (ed) + [4.8436 11.1054 ] pdfxs + (t) show + (om) + [10.4835 9.09802 ] pdfxs + (a) show + (kingloc) + [5.74904 3.0327 6.0654 10.4835 3.0327 5.75995 4.8436 ] pdfxs + (a) show + (lperf) + [8.07266 6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nceimprovemen) + [6.05449 4.85451 9.88355 3.0327 9.08711 6.0654 4.2654 5.15996 5.4545 4.8436 9.08711 + 4.85451 5.75995 ] pdfxs + (t) show + (sbec) + [9.33807 6.35994 4.8436 4.85451 ] pdfxs + (a) show + (use) + [6.05449 4.30902 4.8436 ] pdfxs + 0 -418.502 m + (t) show + (hey) + [6.05449 4.85451 9.07628 ] pdfxs + (o) show + (nlymodifyafewins) + [6.05449 3.0327 9.07628 9.08711 5.75995 6.0654 3.02179 3.33815 9.07628 8.77083 3.32724 + 4.85451 11.1926 3.0327 6.0654 4.29811 ] pdfxs + (t) show + (ructi) + [4.27631 6.05449 4.85451 4.23277 3.0327 ] pdfxs + (o) show + (ns) + [6.0654 7.61445 ] pdfxs + (a) show + (ta) + [7.56002 8.77083 ] pdfxs + (t) show + (ime) + [3.0327 9.08711 8.17084 ] pdfxs + (\() show + (f) + [3.32724 ] pdfxs + (o) show + (rex) + [7.59264 4.8436 5.75995 ] pdfxs + (a) show + (mple,ap) + [9.09802 6.05449 3.0327 4.8436 6.41449 8.77083 6.0654 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (t) show + (icul) + [3.0327 4.85451 6.05449 3.0327 ] pdfxs + (a) show + (rl) + [7.59264 3.02179 ] pdfxs + (oa) show + (d) + [9.38173 ] pdfxs + (o) show + (rs) + [7.59264 4.29811 ] pdfxs + (to) show + (re) + [4.27631 4.8436 ] pdfxs + (\)) show + (.Thesec) + [7.77811 7.8763 6.05449 8.17084 4.29811 4.85451 4.8436 ] pdfxs + (o) show + (nd) + [6.0654 6.0654 ] pdfxs + 0 -440.424 m + (a) show + (ppr) + [6.0654 6.05449 4.27631 ] pdfxs + (oa) show + (chism) + [4.53815 9.49082 3.0327 7.72354 9.08711 ] pdfxs + (o) show + (re) + [4.27631 8.26902 ] pdfxs + (agg) show + (ressive) + [4.27631 4.8436 4.30902 4.29811 3.0327 5.4545 8.26902 ] pdfxs + (a) show + (ndm) + [6.0654 9.47991 9.08711 ] pdfxs + (o) show + (repr) + [4.27631 8.26902 6.0654 4.27631 ] pdfxs + (o) show + (misin) + [9.08711 3.0327 4.29811 3.0327 6.0654 ] pdfxs + (g) show + (,but) + [6.49085 6.0654 6.05449 7.66911 ] pdfxs + (g) show + (ener) + [4.8436 6.0654 4.8436 4.27631 ] pdfxs + (a) show + (llyrequires) + [3.0327 3.0327 9.17446 4.27631 4.8436 5.75995 6.0654 3.02179 4.27631 4.85451 7.72354 + ] pdfxs + (t) show + (hepr) + [6.05449 8.26902 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (mtobewrit) + [12.5234 4.23277 8.87992 6.37085 8.26902 7.8763 4.27631 3.0327 4.23277 ] pdfxs + (t) show + (en) + [4.85451 6.0654 ] pdfxs + 0 -462.347 m + (inatype-s) + [3.0327 10.0581 9.4581 3.93823 5.74904 6.37085 4.8436 3.64352 4.29811 ] pdfxs + (a) show + (fes) + [3.33815 8.8472 4.29811 ] pdfxs + (o) show + (urce-l) + [6.0654 4.2654 4.85451 4.8436 3.64352 3.02179 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (e) + [8.8472 ] pdfxs + (a) show + (ndislimi) + [6.05449 10.0581 3.0327 8.30172 3.0327 3.0327 9.08711 3.0327 ] pdfxs + (t) show + (ed) + [4.8436 10.0581 ] pdfxs + (t) show + (o) + [9.4581 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rmin) + [4.27631 9.08711 3.0327 6.05449 ] pdfxs + (g) show + 297.238 -462.347 m + /N634 10.909 Tf + (a) show + (llin) + [3.34903 7.02536 3.33823 6.14173 ] pdfxs + (s) show + (t) + [3.62179 ] pdfxs + (a) show + (nc) + [6.13082 4.46185 ] pdfxs + (es) show + 360.396 -462.347 m + /N614 10.909 Tf + (o) show + (fap) + [7.33084 9.4581 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (iculartype) + [3.0327 4.8436 6.0654 3.02179 5.46541 8.269 3.93823 5.75995 6.35994 8.8472 ] pdfxs + (o) show + (r) show + -3.05176e-05 -484.269 m + (n) + [6.0654 ] pdfxs + (o) show + (ne) + [6.05449 9.76355 ] pdfxs + (o) show + (f) + [8.25811 ] pdfxs + (t) show + (hem) + [6.05449 4.85451 14.0071 ] pdfxs + (\() show + (f) + [3.33815 ] pdfxs + (o) show + (rex) + [9.18536 4.85451 5.74904 ] pdfxs + (a) show + (mple,a\feld) + [9.09802 6.05449 3.0327 4.8436 8.27993 10.3635 6.0654 4.8436 3.0327 10.9854 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tisunusedin) + [9.16364 3.0327 9.21807 6.0654 5.74904 6.0654 4.29811 4.85451 10.9744 3.0327 10.9854 + ] pdfxs + (o) show + (neins) + [6.05449 9.77446 3.02179 6.0654 4.29811 ] pdfxs + (ta) show + (nce) + [6.0654 4.8436 9.77446 ] pdfxs + (o) show + (fad) + [8.2472 10.3745 6.05449 ] pdfxs + (at) show + (as) + [10.3745 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ure,butn) + [6.0654 4.2654 4.85451 8.26902 6.0654 6.05449 9.16364 6.05449 ] pdfxs + (ot) show + -3.05176e-05 -506.192 m + (a) show + (n) + [6.0654 ] pdfxs + (o) show + (ther,c) + [4.23277 6.0654 4.8436 4.27631 6.6654 4.85451 ] pdfxs + (a) show + (nn) + [6.05449 6.0654 ] pdfxs + (o) show + (tberemovedfr) + [7.87638 6.35994 8.4872 4.27631 4.8436 9.09802 5.14905 5.4545 4.8436 9.6981 3.33815 + 4.2654 ] pdfxs + (o) show + (mei) + [12.7307 4.85451 3.02179 ] pdfxs + (t) show + (her) + [6.0654 4.8436 4.27631 ] pdfxs + (\)) show + (.) show + 16.936 -528.114 m + (M) + [10.0036 ] pdfxs + (o) show + (stimp) + [4.29811 6.73093 3.0327 9.08711 6.37085 ] pdfxs + (o) show + (r) + [4.2654 ] pdfxs + (ta) show + (n) + [5.75995 ] pdfxs + (t) show + (ly,nei) + [3.0327 4.84359 5.74904 6.05449 4.85451 3.0327 ] pdfxs + (t) show + (her) + [6.05449 4.85451 6.75265 ] pdfxs + (o) show + (f) + [5.8254 ] pdfxs + (t) show + (hese) + [6.05449 4.85451 4.29811 7.34176 ] pdfxs + (a) show + (ppr) + [6.05449 6.0654 4.27631 ] pdfxs + (oa) show + (chesis) + [4.53815 6.0654 4.8436 6.79627 3.0327 6.78537 ] pdfxs + (a) show + (ble) + [6.0654 3.02179 7.34176 ] pdfxs + (t) show + (o) + [7.94175 ] pdfxs + (atta) show + (ck) + [4.53815 8.2472 ] pdfxs + (t) show + (hero) + [6.0654 7.33085 4.27631 5.75995 ] pdfxs + (o) show + (tc) + [6.72002 4.85451 ] pdfxs + (a) show + (use) + [6.0654 4.29811 7.33085 ] pdfxs + (o) show + (f) + [5.8254 ] pdfxs + (t) show + (hepr) + [6.0654 7.33085 6.0654 4.2654 ] pdfxs + (o) show + (blem:) + [6.0654 3.0327 4.8436 9.08711 7.30903 ] pdfxs + (t) show + (he) + [6.05449 4.8436 ] pdfxs + -3.05176e-05 -550.037 m + (c) + [4.8436 ] pdfxs + (o) show + (mpilerc) + [9.09802 6.05449 3.0327 3.0327 4.8436 7.46173 4.8436 ] pdfxs + (a) show + (nn) + [6.0654 6.05449 ] pdfxs + (o) show + (t) + [7.42911 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lyze) + [3.0327 5.74904 4.85451 8.02902 ] pdfxs + (o) show + (rc) + [7.46173 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (o) show + (l) + [6.21813 ] pdfxs + (t) show + (helay) + [6.05449 8.03993 3.0327 5.14905 5.4545 ] pdfxs + (o) show + (ut) + [6.05449 7.42911 ] pdfxs + (o) show + (f) + [6.52358 ] pdfxs + (o) show + (bjec) + [6.66539 3.32724 4.85451 4.8436 ] pdfxs + (t) show + (s) + [7.48354 ] pdfxs + (o) show + (n) + [9.25083 ] pdfxs + (t) show + (hehe) + [6.05449 8.02902 6.0654 4.8436 ] pdfxs + (a) show + (p.Inp) + [6.0654 7.72357 3.94897 9.23992 6.0654 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (t) show + (icul) + [3.0327 4.8436 6.0654 3.0327 ] pdfxs + (a) show + (r,) + [4.2654 6.3054 ] pdfxs + (t) show + (here) + [6.0654 8.02902 4.27631 4.8436 ] pdfxs + (a) show + (s) + [4.30902 ] pdfxs + (o) show + (n) + [9.23992 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (at) show + 231.273 -582.481 m + (1) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (13) 14 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 595.275591 788.031496 translate + 180 rotate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + 1 0 0 1 72 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (recursived) + [4.27631 4.8436 4.85451 6.05449 4.27631 4.29811 3.0327 5.4545 8.44357 6.0654 ] pdfxs + (at) show + (as) + [9.04356 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (uresexhibitpo) + [6.0654 4.2654 4.85451 7.89808 4.85451 5.74904 6.0654 3.0327 6.05449 3.0327 7.84365 + 6.35994 5.75995 ] pdfxs + (o) show + (rloc) + [7.86537 3.0327 5.75995 4.8436 ] pdfxs + (a) show + (lityis) + [3.0327 3.0327 3.93823 9.34901 3.0327 7.89808 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (t) + [7.83274 ] pdfxs + (t) show + (heirnodes) + [6.0654 4.8436 3.0327 7.86537 6.0654 5.75995 6.05449 4.85451 7.89808 ] pdfxs + (a) show + (re) + [4.2654 8.45447 ] pdfxs + (o) show + (f) + [3.32724 ] pdfxs + (t) show + (endistribu) + [4.85451 9.65446 6.05449 3.0327 4.30902 4.23277 4.27631 3.0327 6.05449 6.0654 ] pdfxs + (t) show + (ed) + [4.8436 9.66537 ] pdfxs + (t) show + (hr) + [6.05449 4.27631 ] pdfxs + (o) show + (u) + [6.05449 ] pdfxs + (g) show + (h) + [6.0654 ] pdfxs + (o) show + (u) + [6.05449 ] pdfxs + (t) show + 0 -21.922 m + (t) show + (hehe) + [6.05449 9.05447 6.0654 4.8436 ] pdfxs + (a) show + (pwi) + [10.2654 7.8763 3.0327 ] pdfxs + (t) show + (hli) + [10.2545 3.0327 3.0327 ] pdfxs + (tt) show + (lec) + [3.02179 9.05447 4.8436 ] pdfxs + (o) show + (rrel) + [4.27631 4.27631 4.8436 3.0327 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nbetween) + [10.2545 6.37085 4.8436 3.93823 7.58175 4.8436 4.85451 10.2545 ] pdfxs + (t) show + (helay) + [6.0654 9.04356 3.0327 5.14905 5.4545 ] pdfxs + (o) show + (ut) + [6.0654 8.44365 ] pdfxs + (o) show + (fthenodes) + [7.53811 4.23277 6.0654 9.05447 6.05449 5.75995 6.0654 4.8436 8.50899 ] pdfxs + (a) show + (nd) + [6.05449 10.2654 ] pdfxs + (t) show + (he) + [6.05449 9.05447 ] pdfxs + (a) show + (ccess) + [4.8436 4.85451 4.8436 4.30902 4.29811 ] pdfxs + (/t) show + (ravers) + [4.27631 5.14905 5.4545 4.8436 4.27631 4.29811 ] pdfxs + (a) show + (lp) + [7.23266 6.0654 ] pdfxs + (att) show + (ern) + [4.8436 4.27631 6.0654 ] pdfxs + 0 -43.845 m + (o) show + (fthepr) + [8.06175 4.23277 6.0654 9.56719 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (m.Bec) + [9.09802 11.1381 7.72349 4.85451 4.8436 ] pdfxs + (a) show + (usethe) + [6.0654 4.29811 9.5781 4.23277 6.0654 9.56719 ] pdfxs + (a) show + (ccessp) + [4.85451 4.8436 4.85451 4.29811 9.03262 6.05449 ] pdfxs + (att) show + (erns) + [4.8436 4.27631 6.0654 9.02171 ] pdfxs + (o) show + (f) + [8.06175 ] pdfxs + (t) show + (heserecursived) + [6.05449 4.85451 4.29811 9.56719 4.27631 4.85451 4.8436 6.0654 4.2654 4.30902 3.0327 + 5.4545 9.56719 6.0654 ] pdfxs + (a) show + (tas) + [4.23277 10.1781 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ures) + [6.0654 4.27631 4.8436 9.02171 ] pdfxs + (a) show + (ren) + [4.27631 9.5781 6.05449 ] pdfxs + (o) show + (tdirec) + [8.96728 6.0654 3.02179 4.27631 4.8436 4.85451 ] pdfxs + (t) show + (ly) + [3.0327 5.75995 ] pdfxs + 0 -65.768 m + (c) + [4.8436 ] pdfxs + (o) show + (nnec) + [6.0654 6.0654 4.8436 4.8436 ] pdfxs + (t) show + (ed) + [4.85451 10.2654 ] pdfxs + (t) show + (o) + [9.65446 ] pdfxs + (t) show + (helay) + [6.05449 9.05447 3.0327 5.14905 5.4545 ] pdfxs + (o) show + (ut) + [6.05449 8.45456 ] pdfxs + (o) show + (f) + [7.5272 ] pdfxs + (t) show + (he) + [6.0654 9.05447 ] pdfxs + (o) show + (bjec) + [6.66539 3.32724 4.85451 4.8436 ] pdfxs + (t) show + (s) + [8.50899 ] pdfxs + (o) show + (nthehe) + [10.2654 4.23277 6.0654 9.05447 6.05449 4.85451 ] pdfxs + (a) show + (p,s) + [6.05449 7.37448 4.30902 ] pdfxs + (ta) show + (nd) + [6.05449 6.0654 ] pdfxs + (a) show + (rd) + [4.2654 10.2654 ] pdfxs + (t) show + (echniquesf) + [4.85451 4.53815 6.0654 6.05449 3.0327 5.75995 6.05449 4.85451 8.50899 3.32724 ] pdfxs + (o) show + (rimproving) + [8.47627 3.0327 9.08711 6.0654 4.2654 5.15996 5.74904 3.0327 6.0654 9.65446 ] pdfxs + (t) show + (hec) + [6.0654 9.04356 4.85451 ] pdfxs + (a) show + (che) + [4.53815 6.0654 4.8436 ] pdfxs + 0 -87.69 m + (perf) + [6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nce) + [6.0654 4.8436 8.4872 ] pdfxs + (o) show + (fdense) + [6.97085 6.05449 4.85451 6.05449 4.30902 8.4872 ] pdfxs + (a) show + (rraysc) + [4.2654 4.27631 5.14905 5.75995 7.94172 4.8436 ] pdfxs + (a) show + (nn) + [6.0654 6.05449 ] pdfxs + (o) show + (tbe) + [7.87638 6.37085 8.4872 ] pdfxs + (a) show + (pplied) + [6.05449 6.0654 3.02179 3.0327 4.85451 9.6981 ] pdfxs + (t) show + (onodesinarecursived) + [9.08719 6.05449 5.75995 6.0654 4.8436 7.94172 3.0327 9.6981 9.08719 4.27631 4.8436 + 4.85451 6.05449 4.27631 4.29811 3.0327 5.4545 8.4872 6.05449 ] pdfxs + (at) show + (as) + [9.0981 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ure.) + [6.05449 4.27631 4.8436 3.0327 ] pdfxs + 16.936 -109.613 m + (Agg) show + (ressively) + [4.27631 4.8436 4.30902 4.29811 3.0327 5.4545 4.8436 3.0327 10.0035 ] pdfxs + (o) show + (ptimizingpr) + [6.0654 4.23277 3.0327 9.09802 3.02179 4.85451 3.0327 6.05449 9.6981 6.0654 4.27631 + ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (ms) + [9.09802 8.54171 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (theavilyuserecursived) + [8.48728 6.05449 4.85451 5.14905 5.75995 3.0327 3.02179 10.0035 6.0654 4.29811 9.09811 + 4.27631 4.8436 4.8436 6.0654 4.27631 4.29811 3.0327 5.4545 9.09811 6.05449 ] pdfxs + (at) show + (astruc) + [9.6981 4.30902 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (uresisinheren) + [6.0654 4.2654 4.85451 8.54171 3.0327 8.55262 3.0327 6.05449 6.0654 4.8436 4.27631 + 4.8436 5.75995 ] pdfxs + (t) show + (lydif-) + [3.0327 10.0035 6.05449 3.0327 3.33815 3.63261 ] pdfxs + 0 -131.535 m + (\fcultf) + [6.0654 4.8436 6.0654 3.02179 8.92364 3.32724 ] pdfxs + (o) show + (rsever) + [8.95627 4.29811 4.85451 5.4545 4.8436 4.27631 ] pdfxs + (a) show + (lre) + [7.70175 4.27631 4.8436 ] pdfxs + (a) show + (s) + [4.30902 ] pdfxs + (o) show + (ns.Firs) + [6.05449 4.30902 10.9963 7.11266 3.0327 4.27631 4.29811 ] pdfxs + (t) show + (,in) + [7.96357 3.0327 5.75995 ] pdfxs + (t) show + (erprocedur) + [4.8436 4.27631 6.05449 4.27631 5.75995 4.8436 4.85451 6.05449 6.0654 4.27631 ] pdfxs + (a) show + (l) + [7.70175 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisis) + [3.02179 5.75995 4.30902 3.02179 8.97807 3.0327 4.29811 ] pdfxs + 291.741 -131.535 m + /N634 10.909 Tf + (re) + [4.04721 4.45094 ] pdfxs + (q) show + (uire) + [5.85816 3.34914 4.0363 4.46185 ] pdfxs + (d) show + 333.216 -131.535 m + /N614 10.909 Tf + (f) + [3.33815 ] pdfxs + (o) show + (r) + [8.94536 ] pdfxs + (a) show + (nyre) + [5.75995 10.429 4.27631 4.8436 ] pdfxs + (a) show + (l-w) + [3.0327 3.63261 7.58175 ] pdfxs + (o) show + (rldpr) + [4.2654 3.0327 10.7344 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (m:) + [9.09802 3.0327 ] pdfxs + 0 -153.458 m + (recursived) + [4.27631 4.8436 4.85451 6.05449 4.27631 4.29811 3.0327 5.4545 8.81447 6.05449 ] pdfxs + (at) show + (as) + [9.42537 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ures) + [6.05449 4.27631 4.8436 8.26899 ] pdfxs + (a) show + (re) + [4.27631 8.81447 ] pdfxs + (o) show + (f) + [3.32724 ] pdfxs + (t) show + (encre) + [4.85451 10.0254 4.8436 4.27631 4.8436 ] pdfxs + (at) show + (ed,) + [4.8436 6.0654 7.07994 ] pdfxs + (t) show + (raversed,) + [4.2654 5.15996 5.4545 4.8436 4.27631 4.29811 4.85451 6.05449 7.07994 ] pdfxs + (a) show + (nddes) + [6.05449 10.0254 6.0654 4.8436 4.30902 ] pdfxs + (t) show + (royedwi) + [4.2654 5.15996 5.4545 4.8436 10.0254 7.8763 3.0327 ] pdfxs + (t) show + (hrecursivefunc) + [10.0254 4.27631 4.8436 4.8436 6.0654 4.27631 4.29811 3.0327 5.4545 8.81447 3.32724 + 6.0654 6.05449 4.85451 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns,) + [6.05449 4.30902 7.06903 ] pdfxs + (a) show + (re) + [4.27631 4.8436 ] pdfxs + 0 -175.38 m + (o) show + (ftenp) + [3.33815 4.23277 4.85451 10.0799 6.0654 ] pdfxs + (a) show + (ssed) + [4.29811 4.29811 4.85451 10.0799 ] pdfxs + (t) show + (hr) + [6.05449 4.27631 ] pdfxs + (o) show + (u) + [6.0654 ] pdfxs + (g) show + (h) + [6.05449 ] pdfxs + (o) show + (ut) + [6.0654 8.25819 ] pdfxs + (t) show + (hepr) + [6.0654 8.86902 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (m,) + [9.08711 7.14539 ] pdfxs + (a) show + (nd) + [6.0654 10.0799 ] pdfxs + (o) show + (f) + [3.32724 ] pdfxs + (t) show + (enused) + [4.85451 10.0799 6.05449 4.30902 4.8436 10.0799 ] pdfxs + (t) show + (obuildl) + [9.47992 6.05449 6.0654 3.0327 3.0327 10.0799 3.02179 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (g) show + (er) + [4.85451 8.29082 ] pdfxs + (agg) show + (re) + [4.2654 4.85451 ] pdfxs + (gat) show + (es) + [8.86902 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ures) + [6.05449 4.27631 4.8436 8.32353 ] pdfxs + (\() show + (e.) + [4.85451 3.02179 ] pdfxs + (g) show + (.) + [9.03265 ] pdfxs + (a) show + 0 -197.303 m + (list) + [3.0327 3.0327 4.29811 8.24728 ] pdfxs + (o) show + (flis) + [7.35266 3.02179 3.0327 4.30902 ] pdfxs + (t) show + (s) + [4.29811 ] pdfxs + (\)) show + (.Sec) + [8.99992 6.05449 4.85451 4.8436 ] pdfxs + (o) show + (nd,) + [6.0654 6.05449 3.0327 ] pdfxs + 104.032 -197.303 m + /N634 10.909 Tf + (ex) show + (tr) + [3.62179 4.04721 ] pdfxs + (e) show + (m) + [8.91258 ] pdfxs + (e) show + (ly) + [2.79267 9.54529 ] pdfxs + (agg) show + (r) + [4.0363 ] pdfxs + (ess) show + (i) + [3.34914 ] pdfxs + (ve) show + 204.051 -197.303 m + /N614 10.909 Tf + (f) + [3.33815 ] pdfxs + (o) show + (rms) + [4.2654 9.09802 8.31262 ] pdfxs + (o) show + (fin) + [7.34175 3.0327 5.74904 ] pdfxs + (t) show + (erprocedur) + [4.85451 4.2654 6.0654 4.27631 5.74904 4.85451 4.8436 6.0654 6.05449 4.27631 ] pdfxs + (a) show + (l) + [7.0363 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 8.31262 ] pdfxs + (a) show + (rerequired:modern) + [4.2654 8.86902 4.2654 4.85451 5.74904 6.0654 3.0327 4.2654 4.85451 6.05449 8.62901 + 9.08711 5.75995 6.0654 4.8436 4.27631 6.0654 ] pdfxs + 0 -219.225 m + (s) + [4.29811 ] pdfxs + (o) show + (ftw) + [3.33815 3.93823 7.58175 ] pdfxs + (a) show + (redesi) + [4.2654 8.18175 6.0654 4.8436 4.30902 3.02179 ] pdfxs + (g) show + (ntechniquesenc) + [9.40355 4.23277 4.85451 4.54905 6.05449 6.0654 3.0327 5.74904 6.0654 4.8436 7.63627 + 4.85451 6.05449 4.85451 ] pdfxs + (o) show + (ur) + [6.05449 4.27631 ] pdfxs + (ag) show + (e) + [8.18175 ] pdfxs + (t) show + (heuse) + [6.05449 8.18175 6.0654 4.29811 8.18175 ] pdfxs + (o) show + (fmodul) + [6.6763 9.08711 5.75995 6.05449 6.0654 3.0327 ] pdfxs + (a) show + (r) + [7.60355 ] pdfxs + (a) show + (ndreus) + [6.05449 9.40355 4.2654 4.85451 6.05449 4.30902 ] pdfxs + (a) show + (bled) + [6.05449 3.0327 8.18175 6.0654 ] pdfxs + (a) show + (tas) + [4.23277 8.79265 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (urelibr) + [6.05449 4.27631 8.18175 3.0327 3.0327 6.05449 4.27631 ] pdfxs + (a) show + (ries,) + [4.27631 3.02179 4.85451 4.29811 6.4254 ] pdfxs + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + 0 -241.148 m + (t) show + (heselibr) + [6.05449 4.85451 4.29811 9.90537 3.0327 3.0327 6.05449 4.27631 ] pdfxs + (a) show + (riesmaybeusedindi\013erentwaysindi\013erentp) + [4.27631 3.02179 4.85451 9.35989 9.08711 5.14905 10.8108 6.35994 9.90537 6.0654 4.29811 + 4.85451 11.1163 3.02179 11.1163 6.0654 3.02179 6.37077 4.8436 4.27631 4.8436 5.75995 + 9.29455 7.58175 5.14905 5.75995 9.35989 3.02179 11.1163 6.0654 3.0327 6.35986 4.8436 + 4.27631 4.8436 5.75995 9.29455 6.37085 ] pdfxs + (o) show + (r) + [4.2654 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.0654 9.34898 ] pdfxs + (o) show + (f) + [8.38902 ] pdfxs + (t) show + (hepr) + [6.0654 9.89446 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (m.) + [9.09802 12.1308 ] pdfxs + (I) show + (de) + [6.05449 4.85451 ] pdfxs + (a) show + (lly,we) + [3.0327 3.02179 4.8545 8.43265 7.58175 4.8436 ] pdfxs + 0 -263.07 m + (w) + [7.57085 ] pdfxs + (o) show + (uldlike) + [6.0654 3.0327 9.92718 3.0327 3.0327 5.4545 8.71629 ] pdfxs + (t) show + (obe) + [9.32719 6.35994 8.7272 ] pdfxs + (a) show + (ble) + [6.05449 3.0327 8.71629 ] pdfxs + (t) show + (o) + [9.32719 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imizeindividu) + [3.02179 9.09802 3.0327 4.8436 8.71629 3.0327 6.0654 6.05449 3.0327 5.75995 3.0327 + 6.05449 6.0654 ] pdfxs + (a) show + (lins) + [6.89448 3.0327 6.0654 4.29811 ] pdfxs + (ta) show + (nces) + [6.0654 4.8436 4.85451 8.17081 ] pdfxs + (o) show + (fap) + [7.19993 9.32719 6.0654 ] pdfxs + (a) show + (rticul) + [4.27631 4.23277 3.0327 4.85451 6.05449 3.0327 ] pdfxs + (a) show + (rd) + [8.149 6.05449 ] pdfxs + (at) show + (as) + [9.32719 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ure,evenif) + [6.05449 4.27631 4.85451 6.95994 4.8436 5.4545 4.85451 9.92718 3.0327 7.19993 ] pdfxs + (a) show + (ll) + [3.0327 6.90539 ] pdfxs + (o) show + (f) show + 0 -284.993 m + (t) show + (heins) + [6.05449 8.83629 3.0327 6.05449 4.30902 ] pdfxs + (ta) show + (nces) + [6.05449 4.85451 4.8436 8.2799 ] pdfxs + (o) show + (f) + [7.31993 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (ttype) + [8.22547 3.93823 5.75995 6.35994 8.83629 ] pdfxs + (a) show + (reprocessed) + [4.27631 8.82538 6.0654 4.2654 5.75995 4.8436 4.85451 4.29811 4.30902 4.8436 10.0472 + ] pdfxs + (a) show + (ndcre) + [6.05449 10.0472 4.8436 4.27631 4.8436 ] pdfxs + (at) show + (edwi) + [4.85451 10.0363 7.8763 3.0327 ] pdfxs + (t) show + (hc) + [10.0472 4.8436 ] pdfxs + (o) show + (mm) + [9.08711 9.09802 ] pdfxs + (o) show + (nfunc) + [10.0363 3.33815 6.05449 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.0654 8.2799 ] pdfxs + (\(t) show + (r) + [4.27631 ] pdfxs + (a) show + (di) + [6.05449 3.0327 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [6.05449 ] pdfxs + (a) show + (lsc) + [7.01448 4.29811 4.85451 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (a) show + (ble) + [6.05449 3.0327 4.8436 ] pdfxs + 0 -306.915 m + (p) + [6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (s-to) + [4.29811 3.64352 4.23277 10.309 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lyses) + [3.02179 5.75995 4.30902 4.8436 9.15262 ] pdfxs + (a) show + (reinsu\016cientf) + [4.27631 9.6981 3.0327 6.05449 4.30902 6.05449 9.09802 4.8436 3.0327 4.8436 5.75995 + 9.09819 3.32724 ] pdfxs + (o) show + (r) + [9.13081 ] pdfxs + (t) show + (hesepr) + [6.05449 4.85451 4.29811 9.6981 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms) + [9.08711 4.30902 ] pdfxs + (\)) show + (.Third,c) + [11.5199 7.8763 6.0654 3.02179 4.27631 6.0654 8.18175 4.8436 ] pdfxs + (o) show + (mpilersf) + [9.09802 6.05449 3.0327 3.0327 4.8436 4.27631 9.15262 3.33815 ] pdfxs + (o) show + (rs) + [9.1199 4.29811 ] pdfxs + (tat) show + (ic) + [3.0327 4.8436 ] pdfxs + (a) show + (llyc) + [3.0327 3.0327 10.6035 4.85451 ] pdfxs + (o) show + (mpiled) + [9.08711 6.0654 3.0327 3.02179 4.85451 6.0654 ] pdfxs + 0 -328.838 m + (l) + [3.0327 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (es) + [4.8436 8.72717 ] pdfxs + (g) show + (ener) + [4.8436 6.0654 4.8436 4.27631 ] pdfxs + (a) show + (llydon) + [3.0327 3.02179 10.1781 6.0654 9.87264 6.05449 ] pdfxs + (o) show + (thavec) + [8.66183 6.0654 5.14905 5.4545 9.26174 4.85451 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (o) show + (lover) + [7.45084 5.14905 5.4545 4.85451 8.68354 ] pdfxs + (t) show + (hemem) + [6.0654 9.26174 9.09802 4.8436 9.08711 ] pdfxs + (o) show + (rym) + [4.27631 10.1781 9.08711 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (ag) show + (ementrun) + [4.8436 9.09802 4.8436 5.75995 8.66183 4.2654 6.0654 5.75995 ] pdfxs + (t) show + (ime,) + [3.02179 9.09802 4.8436 7.6472 ] pdfxs + (g) show + (re) + [4.27631 4.8436 ] pdfxs + (at) show + (lylimi) + [3.0327 10.1672 3.0327 3.0327 9.08711 3.0327 ] pdfxs + (t) show + (in) + [3.0327 6.05449 ] pdfxs + (g) show + 0 -350.761 m + (t) show + (heinf) + [6.05449 8.7272 3.0327 6.05449 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.93809 ] pdfxs + (a) show + (ndc) + [6.05449 9.93809 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (o) show + (lith) + [6.90539 3.02179 8.12729 6.05449 ] pdfxs + (a) show + (sover) + [8.18172 5.14905 5.4545 4.85451 8.13809 ] pdfxs + (t) show + (heruntimelay) + [6.0654 8.7272 4.2654 6.0654 5.75995 4.23277 3.0327 9.09802 8.71629 3.0327 5.14905 + 5.4545 ] pdfxs + (o) show + (ut) + [6.0654 8.11638 ] pdfxs + (o) show + (fad) + [7.21084 9.32719 6.0654 ] pdfxs + (a) show + (tas) + [4.23277 9.3381 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ure.Fin) + [6.05449 4.27631 4.8436 8.59629 7.12357 3.0327 6.05449 ] pdfxs + (a) show + (lly,c) + [3.0327 3.0327 4.84359 6.97085 4.8436 ] pdfxs + (o) show + (mpilers) + [9.09802 6.05449 3.0327 3.0327 4.8436 4.27631 4.29811 ] pdfxs + 0 -372.683 m + (desi) + [6.0654 4.8436 4.29811 3.0327 ] pdfxs + (g) show + (ned) + [6.0654 4.8436 9.90537 ] pdfxs + (t) show + (o) + [9.30537 ] pdfxs + (o) show + (p) + [6.05449 ] pdfxs + (t) show + (imizeuns) + [3.0327 9.08711 3.0327 4.85451 8.69447 6.05449 6.0654 4.29811 ] pdfxs + (a) show + (fel) + [3.33815 8.69447 3.0327 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (es) + [4.8436 8.14899 ] pdfxs + (\() show + (likeC) + [3.0327 3.0327 5.4545 8.69447 11.7272 ] pdfxs + (o) show + (rC++\)mustc) + [8.11627 7.8763 8.4872 8.4872 8.08365 8.79257 6.05449 4.30902 8.08365 4.85451 ] pdfxs + (o) show + (rrec) + [4.2654 4.27631 4.8436 4.85451 ] pdfxs + (t) show + (lyh) + [3.02179 9.61082 6.05449 ] pdfxs + (a) show + (ndlepr) + [6.0654 6.0654 3.02179 8.69447 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (ms) + [9.09802 8.14899 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tc) + [8.09456 4.8436 ] pdfxs + (a) show + (s) + [4.29811 ] pdfxs + (t) show + 0 -394.606 m + (p) + [6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (ers) + [4.8436 4.27631 8.61808 ] pdfxs + (o) show + (rrely) + [8.58536 4.27631 4.85451 3.02179 10.0799 ] pdfxs + (o) show + (n) + [10.3745 ] pdfxs + (t) show + (hepreciselay) + [6.0654 9.16356 6.05449 4.27631 4.85451 4.8436 3.0327 4.29811 9.16356 3.0327 5.14905 + 5.4545 ] pdfxs + (o) show + (ut) + [6.0654 8.56365 ] pdfxs + (o) show + (fd) + [7.6472 6.05449 ] pdfxs + (at) show + (ainmem) + [9.77446 3.0327 10.3745 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 10.069 ] pdfxs + (\() show + (e.) + [4.85451 3.0327 ] pdfxs + (g) show + (.,pr) + [3.02179 7.5163 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (ms) + [9.09802 8.61808 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tc) + [8.56365 4.8436 ] pdfxs + (o) show + (pys) + [5.75995 10.0799 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ures) + [6.05449 4.27631 4.8436 8.61808 ] pdfxs + (to) show + 0 -416.528 m + (disk) + [6.0654 3.02179 4.30902 9.39264 ] pdfxs + (o) show + (r) + [7.909 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (ssanetw) + [4.29811 7.94172 9.0981 6.05449 4.85451 3.93823 7.57085 ] pdfxs + (o) show + (rk) + [4.27631 5.75995 ] pdfxs + (\)) show + (.) show + 16.936 -438.451 m + (Thr) + [7.8763 6.0654 4.27631 ] pdfxs + (o) show + (u) + [6.05449 ] pdfxs + (g) show + (h) + [6.0654 ] pdfxs + (o) show + (ut) + [6.05449 7.04729 ] pdfxs + (t) show + (hisw) + [6.05449 3.0327 7.11264 7.57085 ] pdfxs + (o) show + (rk,weuse) + [4.27631 5.74904 5.99995 7.58175 7.64721 6.0654 4.29811 7.65812 ] pdfxs + (t) show + (he) + [6.05449 7.64721 ] pdfxs + (t) show + (erm) + [4.85451 4.2654 11.9016 ] pdfxs + (\\) show + (d) + [6.05449 ] pdfxs + (at) show + (astruc) + [8.25811 4.30902 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ure"tome) + [6.0654 4.2654 4.85451 8.25811 4.23277 8.25811 9.09802 4.8436 ] pdfxs + (a) show + (n) + [8.86901 ] pdfxs + (a) show + (n) show + 338.644 -438.451 m + /N634 10.909 Tf + (in) + [3.34914 6.13082 ] pdfxs + (s) show + (t) + [3.62179 ] pdfxs + (a) show + (nc) + [6.13082 4.46185 ] pdfxs + (e) show + 380.198 -438.451 m + /N614 10.909 Tf + (o) show + (fahe) + [6.13085 8.25811 6.0654 4.8436 ] pdfxs + (a) show + (p) + [8.86901 ] pdfxs + (a) show + (lloc) + [3.0327 3.02179 5.75995 4.85451 ] pdfxs + (at) show + (ed) + [4.8436 6.0654 ] pdfxs + -3.05176e-05 -460.373 m + (recursived) + [4.27631 4.8436 4.85451 6.05449 4.27631 4.29811 3.0327 5.4545 8.31266 6.05449 ] pdfxs + (at) show + (astruc) + [8.91265 4.30902 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (urep) + [6.0654 4.2654 8.31266 6.35994 ] pdfxs + (ot) show + (en) + [4.8436 5.75995 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (a) show + (llyf) + [3.0327 3.02179 9.2181 3.33815 ] pdfxs + (o) show + (rmedwi) + [4.27631 9.08711 4.8436 9.52355 7.8763 3.0327 ] pdfxs + (t) show + (hmul) + [9.52355 8.78166 6.0654 3.02179 ] pdfxs + (t) show + (iplenodetypes) + [3.0327 6.0654 3.02179 8.31266 6.0654 5.74904 6.0654 8.30175 3.94914 5.74904 6.37085 + 4.8436 7.76717 ] pdfxs + (\() show + (e.) + [4.8436 3.0327 ] pdfxs + (g) show + (.a) + [7.82175 8.91265 ] pdfxs + (g) show + (r) + [4.2654 ] pdfxs + (a) show + (phwith`ed) + [6.0654 9.52355 7.8763 3.0327 4.23277 9.52355 3.0327 4.8436 6.0654 ] pdfxs + (g) show + (e') + [4.8436 6.49085 ] pdfxs + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + -3.05176e-05 -482.296 m + (`node') + [3.0327 6.05449 5.75995 6.0654 4.8436 6.35994 ] pdfxs + (o) show + (bjec) + [6.66539 3.32724 4.85451 4.8436 ] pdfxs + (t) show + (s) + [4.29811 ] pdfxs + (\)) show + (.Thisw) + [7.77811 7.8763 6.0654 3.0327 7.62536 7.57085 ] pdfxs + (o) show + (rkisn) + [4.27631 9.07628 3.0327 7.62536 6.0654 ] pdfxs + (o) show + (tc) + [7.56002 4.85451 ] pdfxs + (o) show + (ncernedwi) + [6.05449 4.85451 4.8436 4.27631 6.05449 4.85451 9.38173 7.8763 3.0327 ] pdfxs + (t) show + (hcl) + [9.38173 4.85451 3.02179 ] pdfxs + (a) show + (ssi\fc) + [4.30902 4.29811 3.0327 6.0654 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.38173 ] pdfxs + (o) show + (fad) + [6.65449 8.78174 6.05449 ] pdfxs + (at) show + (as) + [8.78174 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ureins) + [6.05449 4.27631 8.17084 3.0327 6.0654 4.29811 ] pdfxs + (ta) show + (nce) + [6.05449 4.85451 8.17084 ] pdfxs + (a) show + (ss) + [7.62536 4.30902 ] pdfxs + (o) show + (me) + [9.08711 4.8436 ] pdfxs + -3.05176e-05 -504.218 m + (hi) + [6.0654 3.02179 ] pdfxs + (g) show + (h-levelc) + [6.0654 3.63261 3.0327 4.8436 5.4545 4.85451 6.81812 4.8436 ] pdfxs + (o) show + (ncep) + [6.0654 4.8436 4.85451 6.05449 ] pdfxs + (t) show + (u) + [6.0654 ] pdfxs + (a) show + (ltype) + [6.80721 3.94914 5.74904 6.37085 8.62902 ] pdfxs + (\() show + (e.) + [4.8436 3.0327 ] pdfxs + (g) show + (.abin) + [8.32356 9.23992 6.0654 3.0327 6.05449 ] pdfxs + (a) show + (ry) + [4.27631 9.54537 ] pdfxs + (t) show + (ree) + [4.2654 4.85451 8.62902 ] pdfxs + (o) show + (ralinkedlis) + [8.06173 9.23992 3.0327 3.02179 6.0654 5.4545 4.8436 9.85082 3.0327 3.0327 4.29811 + ] pdfxs + (t\)) show + (,ins) + [6.85085 3.0327 6.05449 4.30902 ] pdfxs + (t) show + (e) + [4.8436 ] pdfxs + (a) show + (d,wefocus) + [6.0654 6.85085 7.57085 8.63993 3.32724 5.75995 4.85451 6.05449 8.09444 ] pdfxs + (o) show + (n) + [9.83991 ] pdfxs + (t) show + (hepr) + [6.0654 8.62902 6.0654 4.2654 ] pdfxs + (o) show + (per) + [6.37085 4.8436 4.27631 ] pdfxs + (t) show + (ies) + [3.02179 4.85451 4.29811 ] pdfxs + -3.05176e-05 -526.141 m + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [7.88729 ] pdfxs + (a) show + (reindependent) + [4.2654 8.4872 3.0327 6.05449 6.0654 4.8436 6.37085 4.8436 6.0654 6.05449 4.85451 + 5.75995 7.87638 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (t) show + (hehi) + [6.05449 8.4872 6.0654 3.02179 ] pdfxs + (g) show + (hlevelc) + [9.6981 3.0327 4.8436 5.4545 4.85451 6.6654 4.8436 ] pdfxs + (o) show + (nceptu) + [6.0654 4.8436 4.85451 6.0654 4.23277 6.0654 ] pdfxs + (a) show + (ltype) + [6.6654 3.93823 5.75995 6.35994 8.4872 ] pdfxs + (\() show + (e.) + [4.8436 3.0327 ] pdfxs + (g) show + (.nodelay) + [7.87629 6.0654 5.75995 6.05449 8.4872 3.0327 5.14905 5.4545 ] pdfxs + (o) show + (utpr) + [6.0654 7.87638 6.05449 4.27631 ] pdfxs + (o) show + (per) + [6.37085 4.8436 4.27631 ] pdfxs + (t) show + (ies) + [3.02179 4.85451 4.29811 ] pdfxs + (\)) show + (.) show + 16.936 -548.063 m + (Pri) + [7.42902 4.2654 3.0327 ] pdfxs + (o) show + (r) + [8.96718 ] pdfxs + (t) show + (o) + [10.1454 ] pdfxs + (o) show + (urw) + [6.05449 8.96718 7.57085 ] pdfxs + (o) show + (rk,sh) + [4.27631 5.75995 7.98538 4.29811 6.0654 ] pdfxs + (a) show + (pe) + [6.35994 9.54537 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysisw) + [3.0327 5.75995 4.29811 3.0327 8.98898 7.58175 ] pdfxs + (a) show + (s) + [8.98898 ] pdfxs + (t) show + (he) + [6.0654 9.53447 ] pdfxs + (o) show + (nlyex) + [6.0654 3.02179 10.4508 4.85451 5.74904 ] pdfxs + (ta) show + (nt) + [5.75995 8.93455 ] pdfxs + (a) show + (ppr) + [6.0654 6.05449 4.27631 ] pdfxs + (oa) show + (chf) + [4.54905 10.7454 3.33815 ] pdfxs + (o) show + (rperf) + [8.95627 6.37085 4.8436 4.27631 3.32724 ] pdfxs + (o) show + (rmingm) + [4.27631 9.08711 3.0327 6.0654 10.1454 9.08711 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.30902 4.8436 ] pdfxs + (o) show + (pic) + [6.0654 3.02179 4.8436 ] pdfxs + -3.05176e-05 -569.986 m + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lyses) + [3.02179 5.75995 4.30902 4.8436 7.11264 ] pdfxs + (o) show + (fpr) + [6.13085 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms) + [9.08711 7.11264 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tused) + [7.04729 6.0654 4.29811 7.65812 6.0654 ] pdfxs + (a) show + (tas) + [4.23277 8.25811 4.30902 ] pdfxs + (t) show + (ructures.Sh) + [4.27631 6.05449 4.85451 4.23277 6.0654 4.27631 4.8436 4.30902 7.59266 6.0654 6.05449 + ] pdfxs + (a) show + (pe) + [6.37085 7.64721 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisis) + [3.0327 5.74904 4.30902 3.0327 7.10173 3.0327 7.11264 ] pdfxs + (a) show + (ble) + [6.05449 3.0327 7.64721 ] pdfxs + (t) show + (oprovides) + [8.25811 6.0654 4.27631 5.14905 5.75995 3.02179 6.0654 7.65812 4.29811 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (o) show + (ngcl) + [6.05449 8.25811 4.85451 3.02179 ] pdfxs + (a) show + (ssi\fc) + [4.30902 4.29811 3.0327 6.0654 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) show + -3.05176e-05 -591.908 m + (o) show + (fd) + [7.81084 6.05449 ] pdfxs + (at) show + (as) + [9.92719 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (uresin) + [6.0654 4.27631 4.8436 8.78171 3.02179 10.5381 ] pdfxs + (t) show + (hepr) + [6.0654 9.31629 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (m) + [13.5707 ] pdfxs + (a) show + (sv) + [8.7708 5.15995 ] pdfxs + (a) show + (ri) + [4.2654 3.0327 ] pdfxs + (o) show + (ushi) + [6.0654 8.7708 6.0654 3.0327 ] pdfxs + (g) show + (h-leveltypes,such) + [6.05449 3.64352 3.02179 4.85451 5.4545 4.8436 7.50539 3.93823 5.75995 6.35994 4.85451 + 4.29811 7.72357 4.29811 6.0654 4.53815 10.5381 ] pdfxs + (a) show + (sasin) + [8.78171 9.92719 4.29811 3.0327 6.0654 ] pdfxs + (g) show + (ly-) + [3.02179 5.75995 8.11621 ] pdfxs + (o) show + (rd) + [8.749 6.05449 ] pdfxs + (o) show + (ubly-linked) + [6.0654 6.05449 3.0327 5.75995 3.63261 3.0327 3.0327 6.05449 5.4545 4.85451 6.0654 + ] pdfxs + -3.05176e-05 -613.831 m + (lis) + [3.0327 3.0327 4.29811 ] pdfxs + (t) show + (,abin) + [8.91265 10.8981 6.05449 3.0327 6.0654 ] pdfxs + (a) show + (ry) + [4.2654 11.1926 ] pdfxs + (t) show + (ree,e) + [4.27631 4.8436 4.85451 8.91265 4.85451 ] pdfxs + (t) show + (c.) + [4.8436 13.2872 ] pdfxs + (U) show + (nf) + [6.05449 3.33815 ] pdfxs + (o) show + (r) + [4.2654 ] pdfxs + (t) show + (un) + [6.0654 6.05449 ] pdfxs + (at) show + (ely,sh) + [4.85451 3.02179 4.8545 8.91265 4.30902 6.05449 ] pdfxs + (a) show + (pe) + [6.37085 10.2872 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysesc) + [3.0327 5.75995 4.29811 4.85451 9.73079 4.85451 ] pdfxs + (a) show + (nn) + [6.05449 6.0654 ] pdfxs + (o) show + (th) + [9.67636 6.0654 ] pdfxs + (a) show + (ndlen) + [6.05449 6.0654 3.0327 10.2872 6.05449 ] pdfxs + (o) show + (n-type-s) + [6.0654 3.63261 3.93823 5.75995 6.35994 4.85451 3.63261 4.29811 ] pdfxs + (a) show + (fepr) + [3.33815 10.2872 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms,) + [9.08711 4.30902 3.0327 ] pdfxs + 231.273 -657.201 m + (2) show + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + 1 0 0 1 77.455 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + ([) + [3.0327 ] pdfxs + (61) show + (]) + [8.4872 ] pdfxs + (Ra) show + (keshGhiya) + [5.4545 4.8436 4.30902 10.309 8.5636 6.05449 3.0327 5.4545 9.70901 ] pdfxs + (a) show + (nd) + [6.0654 10.3199 ] pdfxs + (La) show + (urie) + [6.05449 4.27631 3.0327 9.09811 ] pdfxs + (J) show + (.) + [7.28721 ] pdfxs + (H) show + (endren.Pu) + [4.8436 6.0654 6.05449 4.27631 4.8436 6.0654 9.70901 7.42902 6.05449 ] pdfxs + (tt) show + (ingp) + [3.0327 6.05449 9.70901 6.37085 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (er) + [4.85451 8.51991 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 8.55262 ] pdfxs + (t) show + (ow) + [9.70901 7.58175 ] pdfxs + (o) show + (rk.) + [4.2654 5.75995 9.70901 ] pdfxs + (I) show + (n) show + 394.776 0 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (sof) + [8.92352 5.58542 3.34914 ] pdfxs + 22.424 -21.922 m + (t) + [3.62179 ] pdfxs + (h) show + (eACMSIGACT-SIGPLANSymp) + [9.66544 7.82171 7.81088 14.4217 6.13082 4.21089 8.43268 7.83262 7.81088 7.79997 3.90544 + 6.13082 4.21089 8.43268 7.40714 6.83993 8.10534 12.7526 6.13082 5.30169 8.91258 5.01816 + ] pdfxs + (os) show + (ium) + [3.34914 5.85816 13.5598 ] pdfxs + (o) show + (nPrin) + [10.7671 7.40714 4.59266 3.34914 6.13082 ] pdfxs + (c) show + (i) + [3.34914 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (s) + [9.09807 ] pdfxs + (o) show + (fPro) + [7.98546 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (rammingL) + [4.0363 5.58542 8.91258 8.92348 3.34914 6.13082 9.65454 6.28357 ] pdfxs + (a) show + (n) + [6.14173 ] pdfxs + (g) show + (u) + [5.84725 ] pdfxs + (ages) show + 428.756 -21.922 m + /N614 10.909 Tf + (,p) + [7.66902 6.05449 ] pdfxs + (ag) show + (es) + [4.85451 4.29811 ] pdfxs + 22.424 -43.845 m + (121{133) show + (,) + [6.6654 ] pdfxs + (N) show + (ewY) + [4.85451 11.509 7.2763 ] pdfxs + (o) show + (rk,) + [4.2654 5.75995 6.6654 ] pdfxs + (NY) show + (,) + [6.6763 ] pdfxs + (U) show + (S) + [6.05449 ] pdfxs + (A) show + (,) + [6.6654 ] pdfxs + (1998) show + (.) show + 1.52588e-05 -74.734 m + ([) + [3.0327 ] pdfxs + (62) show + (]) + [8.4872 ] pdfxs + (Ra) show + (keshGhiy) + [5.4545 4.8436 4.30902 9.75264 8.5636 6.05449 3.0327 5.4545 ] pdfxs + (a) show + (,) + [6.74176 ] pdfxs + (Da) show + (niel) + [6.0654 3.02179 4.85451 6.71994 ] pdfxs + (L) show + (avery,) + [5.15996 5.4545 4.8436 4.27631 4.84359 6.74176 ] pdfxs + (a) show + (nd) + [6.0654 9.75264 ] pdfxs + (D) show + (avidSehr.Ontheimp) + [5.14905 5.75995 3.0327 9.75264 6.0654 4.8436 6.0654 4.27631 8.03993 8.4872 9.76355 + 4.23277 6.0654 8.54175 3.0327 9.08711 6.37085 ] pdfxs + (o) show + (r) + [4.2654 ] pdfxs + (ta) show + (nce) + [6.0654 4.8436 8.55266 ] pdfxs + (o) show + (fp) + [7.02539 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (s-) + [4.29811 3.64352 ] pdfxs + (t) show + (o) + [9.14174 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 7.99626 ] pdfxs + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + 22.424 -96.656 m + (ot) show + (hermem) + [6.05449 4.85451 6.89447 9.08711 4.8436 9.09802 ] pdfxs + (o) show + (rydis) + [4.2654 8.37811 6.0654 3.0327 4.29811 ] pdfxs + (a) show + (mbi) + [8.79257 6.05449 3.0327 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (nmethodsf) + [8.68356 9.08711 4.85451 4.23277 6.0654 5.75995 6.05449 6.92718 3.32724 ] pdfxs + (o) show + (rCpr) + [6.89447 10.4945 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (ms.) + [9.09802 4.29811 6.20722 ] pdfxs + (I) show + (n) show + 298.507 -96.656 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (soft) + [7.41808 5.58542 6.30547 3.62179 ] pdfxs + (h) show + (eACMSIGPLAN) + [7.98546 7.83262 7.81088 12.7417 6.14173 4.19998 8.44359 7.39623 6.83993 8.11625 8.10534 + ] pdfxs + 22.424 -118.579 m + (C) + [7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 8.92363 ] pdfxs + (o) show + (nPro) + [10.0362 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmingL) + [8.91258 8.92348 3.34914 6.13082 8.92363 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ag) show + (e) + [8.92363 ] pdfxs + (Des) show + (i) + [3.33823 ] pdfxs + (g) show + (nandIm) + [10.0362 5.58542 6.13082 9.47994 4.19998 8.92348 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (m) + [8.91258 ] pdfxs + (e) show + (nt) + [6.14173 3.62179 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [10.0362 ] pdfxs + (\() show + (PL) + [7.39623 6.83993 ] pdfxs + (D) show + (I) + [4.21089 ] pdfxs + (\)) show + 381.482 -118.579 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (2001) show + (.) show + 0 -149.468 m + ([) + [3.0327 ] pdfxs + (63) show + (]D) + [8.4872 8.32365 ] pdfxs + (a) show + (nGr) + [10.1781 8.5636 4.2654 ] pdfxs + (o) show + (ssm) + [4.30902 4.29811 9.09802 ] pdfxs + (a) show + (n,GregM) + [6.05449 7.26539 8.55269 4.27631 4.85451 9.56719 9.99272 ] pdfxs + (o) show + (rrise) + [4.27631 4.27631 3.02179 4.30902 4.8436 ] pdfxs + (tt) show + (,Trev) + [7.26539 6.97085 4.2654 4.85451 5.4545 ] pdfxs + (o) show + (r) + [8.37809 ] pdfxs + (J) show + (im,Mich) + [3.0327 9.08711 7.26539 10.0036 3.02179 4.54905 6.0654 ] pdfxs + (a) show + (el) + [4.8436 7.14539 ] pdfxs + (H) show + (icks,Y) + [3.0327 4.53815 5.75995 4.29811 7.26539 7.2763 ] pdfxs + (a) show + (nlingW) + [6.05449 3.0327 3.0327 6.05449 9.56719 10.309 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (,) + [7.26539 ] pdfxs + (a) show + (nd) + [6.0654 10.1672 ] pdfxs + (Ja) show + (mesCh-) + [9.08711 4.85451 8.41081 7.8763 6.0654 3.63261 ] pdfxs + 22.424 -171.39 m + (eney.) + [4.8436 6.0654 4.8436 4.8545 8.23629 ] pdfxs + (R) show + (e) + [4.8436 ] pdfxs + (g) show + (i) + [3.0327 ] pdfxs + (o) show + (n-b) + [6.0654 3.63261 6.0654 ] pdfxs + (a) show + (sedmem) + [4.29811 4.85451 9.81809 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (rym) + [4.27631 9.51264 9.09802 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (ag) show + (ementincycl) + [4.85451 9.08711 4.8436 5.75995 8.00729 3.02179 9.829 4.8436 5.75995 4.8436 3.0327 + ] pdfxs + (o) show + (ne.) + [6.0654 4.8436 8.23629 ] pdfxs + (I) show + (n) show + 294.305 -171.39 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.47625 ] pdfxs + (o) show + (ft) + [7.36365 3.62179 ] pdfxs + (h) show + (eACMSIGPLAN) + [9.03272 7.83262 7.81088 13.7999 6.13082 4.19998 8.44359 7.39623 6.83993 8.11625 8.10534 + ] pdfxs + 22.424 -193.313 m + (C) + [7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 8.92363 ] pdfxs + (o) show + (nPro) + [10.0362 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmingL) + [8.91258 8.92348 3.34914 6.13082 8.92363 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ag) show + (e) + [8.92363 ] pdfxs + (Des) show + (i) + [3.33823 ] pdfxs + (g) show + (nandIm) + [10.0362 5.58542 6.13082 9.47994 4.19998 8.92348 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (m) + [8.91258 ] pdfxs + (e) show + (nt) + [6.14173 3.62179 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [10.0362 ] pdfxs + (\() show + (PL) + [7.39623 6.83993 ] pdfxs + (D) show + (I) + [4.21089 ] pdfxs + (\)) show + 381.482 -193.313 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (J) show + (une) + [6.0654 6.05449 8.4872 ] pdfxs + (2002) show + (.) show + 0 -224.202 m + ([) + [3.0327 ] pdfxs + (64) show + (]DirkGrunw) + [8.4872 8.32365 3.0327 4.27631 9.82901 8.5636 4.27631 6.05449 5.75995 7.58175 ] pdfxs + (a) show + (ld) + [3.02179 10.1454 ] pdfxs + (a) show + (ndBenj) + [6.05449 10.1345 7.7344 4.8436 6.0654 3.32724 ] pdfxs + (a) show + (min) + [9.09802 3.02179 10.1454 ] pdfxs + (Zo) show + (rn.Cus) + [4.2654 6.0654 9.17447 7.8763 6.0654 4.29811 ] pdfxs + (to) show + (m) + [9.09802 ] pdfxs + (a) show + (lloc:E\016cientsyn) + [3.02179 3.0327 5.75995 4.8436 8.75992 7.42902 9.08711 4.85451 3.02179 4.85451 5.75995 + 8.31274 4.30902 5.74904 5.75995 ] pdfxs + (t) show + (hesizedmem) + [6.0654 4.8436 4.30902 3.02179 4.85451 4.8436 10.1345 9.09802 4.8436 9.09802 ] pdfxs + (o) show + (ry) + [4.2654 9.83991 ] pdfxs + (a) show + (lloc) + [3.02179 3.0327 5.75995 4.8436 ] pdfxs + (ato) show + (rs.) + [4.27631 4.30902 3.0327 ] pdfxs + 22.424 -246.124 m + /N634 10.909 Tf + (SP&E) + [6.13082 7.40714 8.35627 7.39623 ] pdfxs + 51.721 -246.124 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (23\(8\)) show + (:) + [3.0327 ] pdfxs + (851{869) show + (,) + [6.6654 ] pdfxs + (1993) show + (.) show + 0 -277.013 m + ([) + [3.0327 ] pdfxs + (65) show + (]Bri) + [8.4872 7.72349 4.27631 3.02179 ] pdfxs + (a) show + (n) + [10.7017 ] pdfxs + (Ha) show + (cke) + [4.53815 5.4545 4.85451 ] pdfxs + (t) show + (t) + [8.8691 ] pdfxs + (a) show + (ndR) + [6.0654 10.6908 8.03985 ] pdfxs + (a) show + (du) + [6.05449 10.7017 ] pdfxs + (R) show + (u) + [6.05449 ] pdfxs + (g) show + (in) + [3.0327 6.0654 ] pdfxs + (a) show + (.) + [10.8326 ] pdfxs + (R) show + (e) + [4.85451 ] pdfxs + (g) show + (i) + [3.0327 ] pdfxs + (o) show + (n-b) + [6.05449 3.64352 6.05449 ] pdfxs + (a) show + (sedsh) + [4.30902 4.8436 10.6908 4.30902 6.05449 ] pdfxs + (a) show + (pe) + [6.37085 9.47992 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysiswi) + [3.02179 5.75995 4.30902 3.02179 8.94535 7.8763 3.0327 ] pdfxs + (t) show + (h) + [10.6908 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (ckedloc) + [4.53815 5.4545 4.85451 10.6908 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns.) + [6.05449 4.30902 10.8435 ] pdfxs + (I) show + (n) show + 22.424 -298.936 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [7.91989 ] pdfxs + (o) show + (ft) + [6.8182 3.62179 ] pdfxs + (h) show + (eACMSIGACT-SIGPLANSymp) + [8.47636 7.83262 7.81088 13.2436 6.13082 4.21089 8.43268 7.83262 7.81088 7.79997 3.90544 + 6.13082 4.21089 8.44359 7.39623 6.83993 8.10534 11.5744 6.14173 5.29078 8.92348 5.01816 + ] pdfxs + (os) show + (ium) + [3.34914 5.84725 12.3925 ] pdfxs + (o) show + (nPrin) + [9.59988 7.39623 4.60356 3.33823 6.14173 ] pdfxs + (c) show + (i) + [3.33823 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (sofPro) + [7.91989 5.58542 6.80729 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.0363 ] pdfxs + (a) show + (mmingL) + [8.92348 8.92348 3.34914 6.13082 8.47636 6.29448 ] pdfxs + (a) show + (n-) + [6.13082 3.90544 ] pdfxs + 22.424 -320.858 m + (g) show + (u) + [5.85816 ] pdfxs + (ages) show + 53.369 -320.858 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (310{323) show + (,) + [6.6654 ] pdfxs + (N) show + (ewY) + [4.85451 11.509 7.2763 ] pdfxs + (o) show + (rk,) + [4.2654 5.75995 6.6654 ] pdfxs + (NY) show + (,) + [6.6654 ] pdfxs + (U) show + (S) + [6.0654 ] pdfxs + (A) show + (,) + [6.6654 ] pdfxs + (2005) show + (.) show + 0 -351.747 m + ([) + [3.0327 ] pdfxs + (66) show + (]) + [8.4872 ] pdfxs + (N) show + (iels) + [3.02179 4.85451 3.0327 7.99626 ] pdfxs + (Ha) show + (llenber) + [3.0327 3.0327 4.8436 5.75995 6.35994 4.85451 4.2654 ] pdfxs + (g) show + (,M) + [6.75267 10.0036 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (t) show + (inElsm) + [3.0327 9.76355 7.41812 3.0327 4.29811 9.09802 ] pdfxs + (a) show + (n,) + [6.05449 6.75267 ] pdfxs + (a) show + (ndM) + [6.05449 9.76355 10.0036 ] pdfxs + (a) show + (dsT) + [6.05449 8.00717 6.97085 ] pdfxs + (o) show + (f) + [3.32724 ] pdfxs + (t) show + (e.C) + [4.85451 8.05084 7.88721 ] pdfxs + (o) show + (mbiningre) + [8.78166 6.0654 3.02179 6.0654 3.0327 6.05449 9.16356 4.2654 4.85451 ] pdfxs + (g) show + (i) + [3.02179 ] pdfxs + (o) show + (ninference) + [9.76355 3.0327 6.0654 3.32724 4.85451 4.2654 4.85451 6.05449 4.85451 8.54175 ] pdfxs + (a) show + (nd) + [6.0654 9.76355 ] pdfxs + (ga) show + (rb) + [4.2654 6.0654 ] pdfxs + (ag) show + (e) show + 22.424 -373.67 m + (c) + [4.8436 ] pdfxs + (o) show + (llec) + [3.0327 3.0327 4.8436 4.85451 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n.) + [6.05449 12.6544 ] pdfxs + (I) show + (n) show + 95.164 -373.67 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.83988 ] pdfxs + (o) show + (ft) + [8.72727 3.62179 ] pdfxs + (h) show + (eACMSIGPLANC) + [10.3963 7.83262 7.79997 15.1635 6.13082 4.21089 8.43268 7.40714 6.83993 8.10534 13.4944 + 7.79997 ] pdfxs + (o) show + (nf) + [6.14173 3.33823 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 10.3963 ] pdfxs + (o) show + (nPro) + [11.509 7.40714 4.0363 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmingL) + [8.92348 8.92348 3.33823 6.13082 10.4073 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (age) show + 22.424 -395.592 m + (Des) show + (i) + [3.34914 ] pdfxs + (g) show + (n) + [10.0362 ] pdfxs + (a) show + (ndIm) + [6.13082 9.47994 4.19998 8.92348 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [10.0362 ] pdfxs + (\() show + (PL) + [7.39623 6.85084 ] pdfxs + (D) show + (I) + [4.19998 ] pdfxs + (\)) show + 193.695 -395.592 m + /N614 10.909 Tf + (,Berlin,Germ) + [6.6654 7.72349 4.85451 4.27631 3.02179 3.0327 6.0654 6.6654 8.5636 4.8436 4.27631 + 9.08711 ] pdfxs + (a) show + (ny,) + [5.75995 4.84359 6.6654 ] pdfxs + (J) show + (une) + [6.0654 6.05449 8.4872 ] pdfxs + (2002) show + (.) show + 0 -426.481 m + ([) + [3.0327 ] pdfxs + (67) show + (]Jiawei) + [8.4872 5.5964 3.0327 5.14905 7.58175 4.8436 7.19994 ] pdfxs + (Ha) show + (n,) + [6.0654 7.33084 ] pdfxs + (J) show + (i) + [3.0327 ] pdfxs + (a) show + (nPei,) + [10.2217 7.12357 4.85451 3.02179 7.33084 ] pdfxs + (a) show + (nd) + [6.0654 10.2326 ] pdfxs + (Y) show + (iwen) + [3.02179 7.58175 4.8436 10.2326 ] pdfxs + (Y) show + (in.Miningfrequentp) + [3.0327 6.05449 9.4581 10.0036 3.02179 6.0654 3.0327 6.05449 9.62173 3.33815 4.27631 + 4.8436 5.75995 6.05449 4.85451 5.75995 8.41092 6.05449 ] pdfxs + (att) show + (ernswi) + [4.85451 4.2654 6.0654 8.46535 7.88721 3.02179 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (o) show + (utc) + [6.05449 8.41092 4.85451 ] pdfxs + (a) show + (ndid) + [6.05449 6.0654 3.0327 6.05449 ] pdfxs + (at) show + (e) + [9.02174 ] pdfxs + (g) show + (ener) + [4.8436 6.0654 4.8436 4.27631 ] pdfxs + (a) show + (-) show + 22.424 -448.404 m + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n.) + [6.05449 6.95994 ] pdfxs + (I) show + (n) show + 61.244 -448.404 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [7.84353 ] pdfxs + (o) show + (ft) + [6.73093 3.6327 ] pdfxs + (h) show + (eACMSIGMODInt) + [8.4 7.83262 7.81088 13.1672 6.13082 4.21089 8.43268 9.7854 8.36718 11.6181 4.21089 + 6.13082 3.62179 ] pdfxs + (e) show + (rn) + [4.60356 6.13082 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (nalC) + [6.13082 5.58542 6.17446 7.79997 ] pdfxs + (o) show + (nf) + [6.14173 3.33823 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nceonM) + [6.13082 4.46185 8.4 5.58542 9.51261 9.7854 ] pdfxs + (a) show + (na) + [6.13082 5.58542 ] pdfxs + (ge) show + (m) + [8.91258 ] pdfxs + (e) show + (nt) + [6.14173 7.00358 ] pdfxs + (o) show + (f) + [6.74183 ] pdfxs + (Da) show + (t) + [3.62179 ] pdfxs + (a) show + 22.424 -470.326 m + (\() show + (SIGMO) + [6.13082 4.21089 8.43268 9.7854 8.36718 ] pdfxs + (D\)) show + 76.505 -470.326 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (1{12) show + (,) + [6.6654 ] pdfxs + (2000) show + (.) show + 0 -501.215 m + ([) + [3.0327 ] pdfxs + (68) show + (]David) + [8.4872 8.32365 5.15996 5.74904 3.0327 9.97082 ] pdfxs + (R) show + (.) + [6.93812 ] pdfxs + (Ha) show + (ns) + [6.0654 4.29811 ] pdfxs + (o) show + (n.F) + [6.0654 8.67265 6.21813 ] pdfxs + (a) show + (st) + [4.29811 8.1491 ] pdfxs + (A) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.95991 ] pdfxs + (a) show + (nd) + [6.0654 9.97082 ] pdfxs + (D) show + (e) + [4.8436 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.95991 ] pdfxs + (o) show + (fMem) + [7.24357 10.0036 4.8436 9.09802 ] pdfxs + (o) show + (ryB) + [4.2654 9.66537 7.7344 ] pdfxs + (a) show + (sed) + [4.29811 4.85451 9.95991 ] pdfxs + (o) show + (nObject) + [9.97082 8.4872 6.66539 3.33815 4.8436 4.85451 8.1491 ] pdfxs + (L) show + (ifetimes.) + [3.0327 3.32724 4.85451 4.23277 3.0327 9.09802 4.8436 4.30902 3.0327 ] pdfxs + 22.424 -523.138 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.35625 ] pdfxs + (o) show + (fS) + [7.25456 6.13082 ] pdfxs + (o) show + (ftwar) + [3.34914 3.62179 7.24359 5.58542 4.0363 ] pdfxs + (e{) show + (Pr) + [7.40714 4.0363 ] pdfxs + (ac) show + (tice) + [3.62179 3.34914 4.46185 8.92363 ] pdfxs + (a) show + (ndE) + [6.13082 9.47994 7.39623 ] pdfxs + (x) show + (p) + [5.01816 ] pdfxs + (e) show + (ri) + [4.60356 3.34914 ] pdfxs + (e) show + (nc) + [6.13082 4.46185 ] pdfxs + (e) show + 254.313 -523.138 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (20\(1\)) show + (:) + [3.0327 ] pdfxs + (5{12) show + (,) + [6.6654 ] pdfxs + (Ja) show + (n) + [9.6981 ] pdfxs + (1990) show + (.) show + 0 -554.027 m + ([) + [3.0327 ] pdfxs + (69) show + (]David) + [8.4872 8.32365 5.15996 5.74904 3.0327 8.6072 ] pdfxs + (L) show + (.) + [5.56359 ] pdfxs + (H) show + (eine) + [4.85451 3.02179 6.0654 7.38539 ] pdfxs + (a) show + (ndM) + [6.0654 8.59629 10.0036 ] pdfxs + (o) show + (nicaS.) + [6.05449 3.0327 4.85451 7.98539 6.0654 5.56359 ] pdfxs + (La) show + (m.Apr) + [9.09802 6.07631 10.7235 6.05449 4.27631 ] pdfxs + (a) show + (c) + [4.8436 ] pdfxs + (t) show + (ic) + [3.0327 4.85451 ] pdfxs + (a) show + (l\row-sensi) + [5.56359 6.0654 5.14905 7.8763 3.63261 4.30902 4.8436 6.0654 4.29811 3.0327 ] pdfxs + (t) show + (ive) + [3.0327 5.4545 7.38539 ] pdfxs + (a) show + (ndc) + [6.0654 8.59629 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (ex) + [4.85451 5.74904 ] pdfxs + (t) show + (-sensi) + [3.64352 4.29811 4.8436 6.0654 4.29811 3.0327 ] pdfxs + (t) show + (ivec) + [3.0327 5.4545 7.38539 7.38539 ] pdfxs + (a) show + (ndc++) + [6.0654 8.59629 4.85451 8.47629 8.4872 ] pdfxs + 22.424 -575.949 m + (mem) + [9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ryle) + [4.27631 10.0145 3.0327 4.8436 ] pdfxs + (a) show + (kde) + [10.0145 6.0654 4.8436 ] pdfxs + (t) show + (ec) + [4.85451 4.8436 ] pdfxs + (to) show + (r.) + [4.27631 9.71991 ] pdfxs + (I) show + (n) show + 151.348 -575.949 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.93443 ] pdfxs + (o) show + (ft) + [7.82182 3.62179 ] pdfxs + (h) show + (eACMSIGPLANC) + [9.4909 7.83262 7.81088 14.2581 6.13082 4.19998 8.44359 7.39623 6.85084 8.10534 12.578 + 7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 9.4909 ] pdfxs + (o) show + (nPro) + [10.6144 7.39623 4.0363 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmin) + [8.92348 8.92348 3.33823 6.14173 ] pdfxs + (g) show + 22.424 -597.872 m + (L) + [6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ag) show + (e) + [8.92363 ] pdfxs + (Des) show + (i) + [3.34914 ] pdfxs + (g) show + (n) + [10.0362 ] pdfxs + (a) show + (ndIm) + [6.13082 9.47994 4.19998 8.92348 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [10.0362 ] pdfxs + (\() show + (PL) + [7.39623 6.85084 ] pdfxs + (D) show + (I) + [4.19998 ] pdfxs + (\)) show + 242.077 -597.872 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (168{181) show + (,) + [6.6654 ] pdfxs + (2003) show + (.) show + 220.363 -657.201 m + (203) show + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (14) 15 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 0.000000 0.000000 translate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + 1 0 0 1 99.879 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N634 10.909 Tf + (C) + [7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 9.29454 ] pdfxs + (o) show + (nPro) + [10.4181 7.39623 4.0363 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmingL) + [8.92348 8.92348 3.33823 6.14173 9.29454 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ag) show + (e) + [9.29454 ] pdfxs + (Des) show + (i) + [3.33823 ] pdfxs + (g) show + (n) + [10.4181 ] pdfxs + (a) show + (ndImpl) + [6.13082 9.85084 4.21089 8.91258 5.58542 2.78176 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + (a) show + (ti) + [3.6327 3.33823 ] pdfxs + (o) show + (n) + [10.4181 ] pdfxs + (\() show + (PL) + [7.39623 6.83993 ] pdfxs + (D) show + (I) + [4.21089 ] pdfxs + (\)) show + 361.673 0 m + /N614 10.909 Tf + (,p) + [7.06903 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 8.34535 ] pdfxs + (242{256) show + (,) show + 0 -21.922 m + (Orl) + [8.4872 4.2654 3.0327 ] pdfxs + (a) show + (nd) + [6.0654 6.05449 ] pdfxs + (o) show + (,F) + [6.6654 7.12357 ] pdfxs + (L) show + (,) + [6.6654 ] pdfxs + (J) show + (une) + [6.0654 6.05449 8.4872 ] pdfxs + (1994) show + (.) show + -22.424 -52.811 m + ([) + [3.0327 ] pdfxs + (52) show + (]M) + [8.4872 9.99272 ] pdfxs + (a) show + (nuelF) + [5.75995 6.0654 4.8436 6.03267 7.12357 0 ] pdfxs + (a) show + (hndrich,) + [6.05449 6.0654 6.05449 4.27631 3.0327 4.53815 6.0654 6.15267 ] pdfxs + (J) show + (e\013reyS.F) + [4.85451 6.35986 4.27631 4.8436 8.75992 6.0654 6.02176 6.21813 ] pdfxs + (o) show + (s) + [4.29811 ] pdfxs + (t) show + (er,) + [4.85451 4.2654 6.16358 ] pdfxs + (Z) show + (hend) + [6.05449 4.85451 6.05449 6.0654 ] pdfxs + (o) show + (ngSu,) + [6.0654 8.45447 6.05449 6.0654 6.15267 ] pdfxs + (a) show + (nd) + [6.0654 9.05446 ] pdfxs + (A) show + (lex) + [3.0327 4.8436 5.75995 ] pdfxs + (a) show + (nder) + [6.0654 6.05449 4.85451 7.26537 ] pdfxs + (A) show + (iken.P) + [3.0327 5.4545 4.85451 6.05449 6.82903 7.12357 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (a) show + (l) + [6.03267 ] pdfxs + (o) show + (nlinecycle) + [6.0654 3.0327 3.02179 6.0654 7.84357 4.85451 5.75995 4.8436 3.0327 4.8436 ] pdfxs + 0 -74.734 m + (elimin) + [4.8436 3.0327 3.0327 9.08711 3.0327 6.0654 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (nininclusi) + [9.37082 3.0327 9.35992 3.0327 6.05449 4.85451 3.02179 6.0654 4.29811 3.0327 ] pdfxs + (o) show + (nc) + [9.37082 4.8436 ] pdfxs + (o) show + (ns) + [6.0654 4.29811 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (int) + [3.02179 5.75995 7.54911 ] pdfxs + (g) show + (r) + [4.27631 ] pdfxs + (a) show + (phs.In) + [6.05449 6.0654 4.29811 7.31994 3.94897 6.0654 ] pdfxs + 217.416 -74.734 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.0508 ] pdfxs + (o) show + (ft) + [6.94911 3.62179 ] pdfxs + (h) show + (eACMSIGPLANC) + [8.61818 7.82171 7.81088 13.3745 6.14173 4.19998 8.44359 7.39623 6.83993 8.11625 11.7053 + 7.79997 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nc) + [6.13082 4.46185 ] pdfxs + (e) show + 0 -96.656 m + (o) show + (nPro) + [10.0362 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmingL) + [8.91258 8.92348 3.34914 6.13082 8.92363 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ag) show + (e) + [8.92363 ] pdfxs + (Des) show + (i) + [3.33823 ] pdfxs + (g) show + (nandIm) + [10.0362 5.58542 6.13082 9.47994 4.19998 8.92348 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (m) + [8.91258 ] pdfxs + (e) show + (nt) + [6.14173 3.62179 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [10.0362 ] pdfxs + (\() show + (PL) + [7.39623 6.83993 ] pdfxs + (D) show + (I) + [4.21089 ] pdfxs + (\)) show + 302.604 -96.656 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (85{96) show + (,) + [6.6654 ] pdfxs + (1998) show + (.) show + -22.424 -127.545 m + ([) + [3.0327 ] pdfxs + (53) show + (]M) + [8.4872 9.99272 ] pdfxs + (a) show + (nuelF) + [5.75995 6.0654 4.8436 8.06175 7.12357 0 ] pdfxs + (a) show + (hndrich,) + [6.0654 6.05449 6.0654 4.27631 3.02179 4.54905 6.0654 8.41084 ] pdfxs + (Ja) show + (k) + [5.4545 ] pdfxs + (o) show + (b) + [11.0944 ] pdfxs + (R) show + (eh) + [4.85451 6.05449 ] pdfxs + (o) show + (f,) + [3.33815 8.41084 ] pdfxs + (a) show + (ndM) + [6.0654 11.0944 10.0036 ] pdfxs + (a) show + (nuvir) + [5.75995 6.05449 5.75995 3.0327 9.30536 ] pdfxs + (Da) show + (s.Sc) + [4.29811 12.0435 6.05449 4.85451 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (a) show + (blec) + [6.05449 3.0327 9.88355 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (ex) + [4.85451 5.74904 ] pdfxs + (t) show + (-sensi) + [3.64352 4.29811 4.8436 6.0654 4.29811 3.0327 ] pdfxs + (t) show + (ive\row) + [3.0327 5.4545 9.88355 6.0654 5.14905 12.9163 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (l-) + [3.0327 3.63261 ] pdfxs + -1.52588e-05 -149.468 m + (ysisusingins) + [5.75995 4.29811 3.0327 8.99989 6.05449 4.30902 3.0327 6.05449 10.1454 3.0327 6.0654 + 4.29811 ] pdfxs + (ta) show + (n) + [5.75995 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (nc) + [10.7563 4.85451 ] pdfxs + (o) show + (nstr) + [6.05449 4.30902 4.23277 4.27631 ] pdfxs + (a) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (s.) + [4.29811 11.0181 ] pdfxs + (I) show + (n) show + 194.433 -149.468 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (softheACMSIGPLANC) + [9.32715 5.58542 8.21455 3.62179 5.58542 9.89453 7.82171 7.81088 14.6508 6.14173 4.19998 + 8.44359 7.39623 6.83993 8.11625 12.9817 7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 9.89453 ] pdfxs + (o) show + (n) show + -1.52588e-05 -171.39 m + (Pro) + [7.39623 4.04721 5.01816 ] pdfxs + (g) show + (rammingL) + [4.0363 5.58542 8.91258 8.92348 3.34914 6.13082 8.46545 6.29448 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ag) show + (e) + [8.46545 ] pdfxs + (Des) show + (i) + [3.34914 ] pdfxs + (g) show + (n) + [9.57806 ] pdfxs + (a) show + (ndImpl) + [6.14173 9.02176 4.21089 8.91258 5.58542 2.78176 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + (a) show + (ti) + [3.6327 3.33823 ] pdfxs + (o) show + (n) + [9.58897 ] pdfxs + (\() show + (PL) + [7.39623 6.83993 ] pdfxs + (D) show + (I) + [4.21089 ] pdfxs + (\)) show + 284.735 -171.39 m + /N614 10.909 Tf + (,V) + [6.17449 7.2763 ] pdfxs + (a) show + (nc) + [6.05449 4.85451 ] pdfxs + (o) show + (uver,C) + [6.05449 5.4545 4.85451 4.27631 6.27267 7.8763 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (d) + [6.0654 ] pdfxs + (a) show + (,) + [6.27267 ] pdfxs + (J) show + (une) + [6.0654 6.05449 7.9963 ] pdfxs + (2000) show + (.) show + -22.424 -202.279 m + ([) + [3.0327 ] pdfxs + (54) show + (]M) + [8.4872 9.99272 ] pdfxs + (a) show + (ryF.Fern\023) + [4.27631 8.82538 7.11266 6.09813 6.21813 4.8436 4.27631 6.05449 0 ] pdfxs + (a) show + (ndez.Simple) + [6.0654 6.05449 4.85451 4.8436 6.93812 6.0654 3.02179 9.09802 6.05449 3.0327 7.90903 + ] pdfxs + (a) show + (nde\013ec) + [6.0654 9.11992 4.85451 6.35986 4.85451 4.8436 ] pdfxs + (t) show + (ivelink-) + [3.0327 5.4545 7.90903 3.0327 3.0327 6.05449 5.75995 3.63261 ] pdfxs + (t) show + (ime) + [3.0327 9.09802 7.90903 ] pdfxs + (o) show + (p) + [6.05449 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [9.13083 ] pdfxs + (o) show + (fModul) + [6.39267 10.0036 5.75995 6.05449 6.0654 3.0327 ] pdfxs + (a) show + (-3pr) + [3.63261 8.51993 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms.) + [9.08711 4.30902 6.92721 ] pdfxs + (1) show + (9) + [5.46541 ] pdfxs + (95) show + (.) show + -22.424 -233.168 m + ([) + [3.0327 ] pdfxs + (55) show + (]Je\013reyS.F) + [8.4872 5.5964 4.85451 6.35986 4.27631 4.8436 8.57447 6.05449 5.84722 6.20722 ] pdfxs + (o) show + (s) + [4.30902 ] pdfxs + (t) show + (er,M) + [4.8436 4.27631 5.99995 10.0036 ] pdfxs + (a) show + (nuelF) + [5.75995 6.05449 4.85451 5.83631 7.12357 0 ] pdfxs + (a) show + (hndrich,) + [6.0654 6.05449 6.0654 4.2654 3.0327 4.54905 6.05449 6.01086 ] pdfxs + (a) show + (nd) + [6.0654 8.86901 ] pdfxs + (A) show + (lex) + [3.0327 4.8436 5.75995 ] pdfxs + (a) show + (nder) + [6.05449 6.0654 4.8436 7.09083 ] pdfxs + (A) show + (iken.P) + [3.0327 5.4545 4.8436 6.0654 6.51267 7.12357 ] pdfxs + (o) show + (lym) + [3.0327 5.75995 9.08711 ] pdfxs + (o) show + (rphicversusm) + [4.27631 6.05449 6.0654 3.0327 7.65812 5.4545 4.8436 4.27631 4.29811 6.0654 7.11264 + 9.08711 ] pdfxs + (o) show + (n) + [6.0654 ] pdfxs + (o) show + (m) + [9.08711 ] pdfxs + (o) show + (rphic) + [4.27631 6.0654 6.05449 3.0327 4.8436 ] pdfxs + -1.52588e-05 -255.091 m + (\row-insensi) + [6.0654 5.14905 7.8763 3.63261 3.0327 6.0654 4.29811 4.85451 6.05449 4.30902 3.02179 + ] pdfxs + (t) show + (ivep) + [3.0327 5.4545 9.26174 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (s-) + [4.29811 3.63261 ] pdfxs + (t) show + (o) + [9.87264 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysisf) + [3.0327 5.75995 4.29811 3.0327 8.71626 3.32724 ] pdfxs + (o) show + (rc.) + [8.68354 4.85451 10.1781 ] pdfxs + (I) show + (n) show + 211.959 -255.091 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.07625 ] pdfxs + (o) show + (ft) + [7.95273 3.6327 ] pdfxs + (h) show + (eInt) + [9.63272 4.19998 6.14173 3.62179 ] pdfxs + (e) show + (rn) + [4.60356 6.13082 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (a) show + (lSymposium) + [7.40717 6.13082 5.30169 8.91258 5.01816 5.58542 4.45083 3.34914 5.85816 13.538 ] pdfxs + (o) show + (n) show + -1.52588e-05 -277.013 m + (StaticAn) + [6.13082 3.62179 5.58542 3.62179 3.33823 8.92363 7.83262 6.13082 ] pdfxs + (a) show + (ly) + [2.79267 5.29078 ] pdfxs + (s) show + (is) + [3.34914 8.36716 ] pdfxs + (\() show + (SAS) + [6.13082 8.10534 6.13082 ] pdfxs + (\)) show + 104.314 -277.013 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (175{198) show + (,) + [6.6654 ] pdfxs + (Lo) show + (nd) + [6.0654 6.05449 ] pdfxs + (o) show + (n,) + [6.0654 6.6654 ] pdfxs + (U) show + (K,) + [8.4872 6.6654 ] pdfxs + (2000) show + (.Sprin) + [6.6654 6.0654 6.05449 4.27631 3.0327 6.05449 ] pdfxs + (g) show + (er-Verl) + [4.85451 4.2654 3.64352 7.26539 4.85451 4.2654 3.0327 ] pdfxs + (ag) show + (.) show + -22.424 -307.902 m + ([) + [3.0327 ] pdfxs + (56) show + (]Mich) + [8.4872 9.99272 3.0327 4.54905 6.05449 ] pdfxs + (a) show + (elFr) + [4.85451 6.37085 6.20722 4.27631 ] pdfxs + (a) show + (nz) + [6.05449 8.19266 ] pdfxs + (a) show + (ndTh) + [6.05449 9.40355 7.8763 6.0654 ] pdfxs + (o) show + (m) + [9.08711 ] pdfxs + (a) show + (sKis) + [7.64718 8.4872 3.02179 4.30902 ] pdfxs + (t) show + (ler.Slimbin) + [3.0327 4.8436 4.27631 7.37448 6.0654 3.0327 3.0327 12.4253 6.0654 3.02179 6.0654 + ] pdfxs + (a) show + (ries.) + [4.27631 3.02179 4.85451 4.29811 3.0327 ] pdfxs + 241.585 -307.902 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.08353 ] pdfxs + (o) show + (ft) + [6.98183 3.62179 ] pdfxs + (h) show + (eC) + [8.65091 7.79997 ] pdfxs + (o) show + (mmunicationsoft) + [8.92348 8.92348 5.85816 6.13082 3.34914 4.45094 5.58542 3.62179 3.33823 5.58542 6.13082 + 8.08353 5.58542 6.97092 3.62179 ] pdfxs + (he) show + -3.05176e-05 -329.825 m + (ACM) + [7.83262 7.79997 9.7854 ] pdfxs + 25.418 -329.825 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (40\(12\)) show + (,) + [6.6654 ] pdfxs + (1997) show + (.) show + -22.424 -360.714 m + ([) + [3.0327 ] pdfxs + (57) show + (]Mich) + [8.4872 9.99272 3.0327 4.54905 6.05449 ] pdfxs + (a) show + (el) + [4.85451 6.88358 ] pdfxs + (L) show + (.Fredm) + [6.88358 6.20722 4.27631 4.8436 6.0654 9.08711 ] pdfxs + (a) show + (n) + [9.91628 ] pdfxs + (a) show + (ndR) + [6.0654 9.90537 8.03985 ] pdfxs + (o) show + (bertEndreT) + [6.35994 4.8436 4.27631 8.09456 7.42902 6.05449 6.0654 4.2654 8.70538 6.97085 ] pdfxs + (a) show + (rj) + [4.27631 3.32724 ] pdfxs + (a) show + (n.Fib) + [6.0654 8.50902 7.12357 3.0327 6.35994 ] pdfxs + (o) show + (n) + [6.0654 ] pdfxs + (a) show + (ccihe) + [4.8436 4.85451 6.88358 6.05449 4.85451 ] pdfxs + (a) show + (ps) + [6.05449 8.1599 ] pdfxs + (a) show + (nd) + [6.0654 9.90537 ] pdfxs + (t) show + (heirusesinimproved) + [6.0654 4.8436 3.0327 8.12718 6.0654 4.29811 4.8436 8.1599 3.0327 9.91628 3.02179 + 9.09802 6.05449 4.27631 5.14905 5.4545 4.85451 6.0654 ] pdfxs + -3.05176e-05 -382.636 m + (netw) + [6.0654 4.8436 3.93823 7.58175 ] pdfxs + (o) show + (rk) + [4.2654 10.7126 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [11.0181 ] pdfxs + (a) show + (l) + [3.02179 ] pdfxs + (go) show + (ri) + [4.27631 3.0327 ] pdfxs + (t) show + (hms.) + [6.05449 9.09802 4.29811 3.0327 ] pdfxs + 170.015 -382.636 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (soft) + [9.56715 5.58542 8.45455 3.6327 ] pdfxs + (h) show + (e) + [10.1345 ] pdfxs + (Jo) show + (urnal) + [5.85816 4.59266 6.13082 5.58542 7.89808 ] pdfxs + (o) show + (ft) + [8.46546 3.62179 ] pdfxs + (h) show + (eACM) + [10.1345 7.83262 7.81088 9.7854 ] pdfxs + 363.044 -382.636 m + /N614 10.909 Tf + (,) + [7.98538 ] pdfxs + (34\(3\)) show + (:) + [3.0327 ] pdfxs + (596{615) show + (,) show + -6.10352e-05 -404.559 m + (1987) show + (.) show + -22.4241 -435.448 m + ([) + [3.0327 ] pdfxs + (58) show + (]DavidGay) + [8.4872 8.32365 5.15996 5.74904 3.0327 9.42537 8.55269 5.15996 9.10901 ] pdfxs + (a) show + (nd) + [6.0654 9.41446 ] pdfxs + (A) show + (lex) + [3.0327 4.85451 5.74904 ] pdfxs + (a) show + (nder) + [6.0654 6.0654 4.8436 7.63628 ] pdfxs + (A) show + (iken.Mem) + [3.02179 5.4545 4.85451 6.05449 7.41812 10.0036 4.8436 9.09802 ] pdfxs + (o) show + (rym) + [4.2654 9.11992 9.08711 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (ag) show + (ementwi) + [4.8436 9.09802 4.8436 5.75995 7.60365 7.8763 3.0327 ] pdfxs + (t) show + (hexplicitre) + [9.41446 4.85451 5.74904 6.0654 3.0327 3.0327 4.8436 3.0327 7.60365 4.2654 4.85451 + ] pdfxs + (g) show + (i) + [3.0327 ] pdfxs + (o) show + (ns.) + [6.05449 4.30902 7.40721 ] pdfxs + (I) show + (n) show + 385.746 -435.448 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (gs) show + -6.10352e-05 -457.37 m + (o) show + (ftheACMSIGPLANC) + [7.96364 3.62179 5.58542 9.63272 7.83262 7.79997 14.3999 6.14173 4.19998 8.44359 7.39623 + 6.83993 8.11625 12.7198 7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 9.63272 ] pdfxs + (o) show + (nPro) + [10.7562 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.0363 ] pdfxs + (a) show + (mmingLan) + [8.92348 8.92348 3.34914 6.13082 9.63272 6.28357 5.58542 6.13082 ] pdfxs + (g) show + (ua) + [5.84725 5.58542 ] pdfxs + (g) show + (e) + [9.63272 ] pdfxs + (Des) show + (i) + [3.34914 ] pdfxs + (g) show + (n) + [10.7453 ] pdfxs + (a) show + (ndIm) + [6.14173 10.189 4.21089 8.92348 ] pdfxs + (p) show + (l) + [2.78176 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (ntation) + [6.13082 3.62179 5.58542 3.62179 3.33823 5.58542 6.13082 ] pdfxs + -6.10352e-05 -479.293 m + (\() show + (PL) + [7.39623 6.83993 ] pdfxs + (D) show + (I) + [4.21089 ] pdfxs + (\)) show + 35.6059 -479.293 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (313{323) show + (,M) + [6.6654 10.0036 ] pdfxs + (o) show + (ntre) + [5.75995 4.23277 4.27631 4.85451 ] pdfxs + (a) show + (l,C) + [3.02179 6.6654 7.88721 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (d) + [6.0654 ] pdfxs + (a) show + (,) + [6.6654 ] pdfxs + (1998) show + (.) show + -22.4241 -510.182 m + ([) + [3.0327 ] pdfxs + (59) show + (]) + [8.4872 ] pdfxs + (Ra) show + (keshGhiya) + [5.4545 4.8436 4.30902 9.32719 8.55269 6.0654 3.0327 5.4545 8.71629 ] pdfxs + (a) show + (nd) + [6.0654 9.32719 ] pdfxs + (La) show + (urie) + [6.0654 4.2654 3.0327 8.1163 ] pdfxs + (J) show + (.) + [6.3054 ] pdfxs + (H) show + (endren.C) + [4.8436 6.0654 6.05449 4.27631 4.8436 6.0654 7.26539 7.8763 ] pdfxs + (o) show + (nnec) + [6.0654 6.05449 4.85451 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.32719 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis:Apr) + [3.02179 5.75995 4.30902 3.02179 4.30902 7.69084 11.4544 6.05449 4.27631 ] pdfxs + (a) show + (ctic) + [4.85451 4.23277 3.0327 4.85451 ] pdfxs + (a) show + (lin) + [6.29449 3.0327 5.75995 ] pdfxs + (t) show + (erprocedur) + [4.8436 4.27631 6.05449 4.27631 5.75995 4.8436 4.85451 6.05449 6.0654 4.2654 ] pdfxs + (a) show + (lhe) + [6.3054 6.05449 4.85451 ] pdfxs + (a) show + (p) show + -7.62939e-05 -532.104 m + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisf) + [3.02179 5.75995 4.30902 3.02179 7.94172 3.33815 ] pdfxs + (o) show + (rC.) + [7.909 7.8763 3.0327 ] pdfxs + 73.4729 -532.104 m + /N634 10.909 Tf + (Int) + [4.21089 6.13082 3.62179 ] pdfxs + (e) show + (rn) + [4.60356 6.13082 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (a) show + (l) + [6.69809 ] pdfxs + (Jo) show + (urn) + [5.84725 4.60356 6.13082 ] pdfxs + (a) show + (l) + [6.69809 ] pdfxs + (o) show + (fP) + [7.24365 7.40714 ] pdfxs + (a) show + (r) + [4.0363 ] pdfxs + (a) show + (ll) + [3.34903 2.79267 ] pdfxs + (e) show + (lPro) + [6.68718 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (rammin) + [4.0363 5.58542 8.91258 8.92348 3.34914 6.13082 ] pdfxs + (g) show + 296.562 -532.104 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (24\(6\)) show + (:) + [3.0327 ] pdfxs + (547{578) show + (,) + [6.6654 ] pdfxs + (1996) show + (.) show + -22.4241 -562.993 m + ([) + [3.0327 ] pdfxs + (60) show + (]) + [8.4872 ] pdfxs + (Ra) show + (keshGhiya) + [5.4545 4.8436 4.30902 8.99992 8.5636 6.05449 3.0327 5.4545 8.39993 ] pdfxs + (a) show + (nd) + [6.0654 8.99992 ] pdfxs + (La) show + (urie) + [6.0654 4.2654 3.0327 7.78903 ] pdfxs + (J) show + (.) + [5.97813 ] pdfxs + (H) show + (endren.) + [4.8436 6.0654 6.0654 4.2654 4.85451 6.05449 6.74176 ] pdfxs + (I) show + (sita) + [7.24354 3.0327 7.18911 8.39993 ] pdfxs + (t) show + (ree,aDAG,oracyclic) + [4.27631 4.8436 4.8436 6.11995 8.39993 8.0291 7.8763 8.5636 5.96722 5.46541 7.21083 + 8.39993 4.8436 5.75995 4.85451 3.02179 3.0327 7.79994 ] pdfxs + (g) show + (r) + [4.2654 ] pdfxs + (a) show + (ph?Ash) + [6.0654 6.05449 9.77446 11.1272 4.29811 6.0654 ] pdfxs + (a) show + (pe) + [6.35994 7.78903 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 4.29811 ] pdfxs + -0.000106812 -584.916 m + (f) + [3.33815 ] pdfxs + (o) show + (rhe) + [7.91991 6.05449 4.85451 ] pdfxs + (a) show + (p-directedp) + [6.05449 3.64352 6.05449 3.0327 4.27631 4.8436 4.85451 4.23277 4.85451 9.709 6.35994 + ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (ersinC.In) + [4.8436 4.27631 7.95263 3.0327 9.709 7.8763 7.89811 3.94897 6.0654 ] pdfxs + 168.725 -584.916 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.36716 ] pdfxs + (o) show + (ft) + [7.26547 3.62179 ] pdfxs + (h) show + (eACMSIGACT-SIGPLANSymp) + [8.93454 7.83262 7.79997 13.7017 6.13082 4.21089 8.43268 7.83262 7.81088 7.79997 3.90544 + 6.13082 4.21089 8.43268 7.40714 6.83993 8.10534 12.0217 6.14173 5.29078 8.92348 5.01816 + ] pdfxs + (os) show + (ium) + [3.34914 5.84725 8.92348 ] pdfxs + -0.000106812 -606.838 m + (o) show + (nPrin) + [10.0362 7.39623 4.60356 3.34914 6.13082 ] pdfxs + (c) show + (i) + [3.34914 ] pdfxs + (p) show + (l) + [2.78176 ] pdfxs + (e) show + (s) + [8.36716 ] pdfxs + (o) show + (fPro) + [7.25456 7.39623 4.0363 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmingLan) + [8.92348 8.92348 3.33823 6.14173 8.91272 6.28357 5.58542 6.13082 ] pdfxs + (g) show + (ua) + [5.84725 5.58542 ] pdfxs + (ges) show + 196.302 -606.838 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (1{15) show + (,) + [6.6654 ] pdfxs + (1996) show + (.) show + 197.939 -657.201 m + (202) show + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 72 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (providenomech) + [6.0654 4.2654 5.14905 5.75995 3.0327 6.0654 8.57447 6.05449 9.18538 9.08711 4.8436 + 4.54905 6.0654 ] pdfxs + (a) show + (nismf) + [6.05449 3.0327 4.29811 12.818 3.33815 ] pdfxs + (o) show + (rc) + [7.99628 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (o) show + (lling) + [3.0327 3.02179 3.0327 6.0654 9.17447 ] pdfxs + (t) show + (helay) + [6.0654 8.57447 3.02179 5.15996 5.4545 ] pdfxs + (o) show + (ut) + [6.05449 7.97456 ] pdfxs + (o) show + (fhe) + [7.05812 6.05449 4.85451 ] pdfxs + (a) show + (p-b) + [6.05449 3.64352 6.05449 ] pdfxs + (a) show + (sedd) + [4.30902 4.8436 9.78537 6.0654 ] pdfxs + (at) show + (astruc) + [9.17447 4.30902 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ures,) + [6.0654 4.2654 4.85451 4.29811 6.77449 ] pdfxs + (a) show + (nd) + [6.0654 9.78537 ] pdfxs + (a) show + (reex) + [4.27631 8.57447 4.8436 5.75995 ] pdfxs + (t) show + (remely) + [4.27631 4.8436 9.08711 4.85451 3.0327 5.75995 ] pdfxs + 0 -21.922 m + (expensive[) + [4.8436 5.75995 6.37085 4.8436 6.0654 4.29811 3.0327 5.4545 8.4872 3.02179 ] pdfxs + (77) show + (,) + [6.6763 ] pdfxs + (144) show + (,) + [6.6654 ] pdfxs + (65) show + (].) + [3.02179 3.0327 ] pdfxs + 16.936 -43.845 m + (This) + [7.8763 6.0654 3.0327 8.98898 ] pdfxs + (t) show + (hesisdescribes) + [6.0654 4.8436 4.29811 3.0327 8.99989 6.05449 4.85451 4.29811 4.85451 4.2654 3.0327 + 6.35994 4.85451 8.98898 ] pdfxs + (a) show + 132.094 -43.845 m + /N1025 10.909 Tf + (m) + [10.4507 ] pdfxs + (ac) show + (r) + [5.17085 ] pdfxs + (o) show + (s) + [4.95263 ] pdfxs + (cop) show + (ic) + [3.47997 10.9745 ] pdfxs + (app) show + (r) + [5.15995 ] pdfxs + (oa) show + (chf) + [5.22543 12.3709 3.82904 ] pdfxs + (o) show + (r) + [10.5599 ] pdfxs + (ana) show + (l) + [3.49088 ] pdfxs + (yz) show + (i) + [3.47997 ] pdfxs + (n) show + (g) + [11.6726 ] pdfxs + (a) show + (nd) + [6.96002 12.3709 ] pdfxs + (t) show + (r) + [5.17085 ] pdfxs + (an) show + (sf) + [4.94172 3.83994 ] pdfxs + (o) show + (rmi) + [5.15995 10.4616 3.47997 ] pdfxs + (n) show + (g) + [11.6617 ] pdfxs + (heap) show + (-) show + -1.52588e-05 -65.768 m + (a) show + (llo) + [3.47997 3.49088 6.62173 ] pdfxs + (cate) show + (d) + [13.3091 ] pdfxs + (dat) show + (as) + [12.4363 4.95263 ] pdfxs + (t) show + (r) + [5.15995 ] pdfxs + (uc) show + (tur) + [4.8873 6.96002 5.17085 ] pdfxs + (e) show + (s) show + 146.44 -65.768 m + /N614 10.909 Tf + (which) + [7.8763 6.0654 3.0327 4.53815 11.5744 ] pdfxs + (a) show + (ddresses) + [6.05449 6.0654 4.27631 4.8436 4.30902 4.29811 4.8436 9.81807 ] pdfxs + (t) show + (hede\fciencies) + [6.05449 10.3635 6.05449 4.85451 6.05449 4.85451 3.0327 4.8436 6.0654 4.8436 3.0327 + 4.8436 9.81807 ] pdfxs + (o) show + (fprevi) + [8.83628 6.0654 4.27631 4.8436 5.75995 3.0327 ] pdfxs + (o) show + (us) + [6.05449 9.81807 ] pdfxs + (a) show + (ppr) + [6.05449 6.0654 4.2654 ] pdfxs + (oa) show + (chesbyusin) + [4.54905 6.0654 4.8436 9.81807 5.74904 11.269 6.0654 4.29811 3.0327 6.0654 ] pdfxs + (g) show + -1.52588e-05 -87.69 m + (agg) show + (ressive) + [4.27631 4.8436 4.30902 4.29811 3.0327 5.4545 9.98173 ] pdfxs + (\() show + (butpr) + [6.0654 6.05449 9.38182 6.0654 4.2654 ] pdfxs + (a) show + (c) + [4.85451 ] pdfxs + (t) show + (ic) + [3.02179 4.85451 ] pdfxs + (a) show + (l\)s) + [3.0327 9.38182 4.29811 ] pdfxs + (tat) show + (ic) + [3.0327 9.98173 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.02179 5.75995 4.30902 3.02179 9.44716 ] pdfxs + (a) show + (nd) + [6.05449 11.2035 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [11.1926 ] pdfxs + (t) show + (echniques) + [4.85451 4.53815 6.0654 6.05449 3.0327 5.75995 6.05449 4.85451 9.43625 ] pdfxs + (t) show + (oiden) + [10.5926 3.0327 6.05449 4.85451 5.75995 ] pdfxs + (t) show + (ify) + [3.02179 3.33815 10.8981 ] pdfxs + (a) show + (ndc) + [6.05449 11.2035 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (o) show + (l) show + -1.52588e-05 -109.613 m + (recursived) + [4.27631 4.8436 4.85451 6.05449 4.27631 4.29811 3.0327 5.4545 8.4872 6.05449 ] pdfxs + (at) show + (as) + [9.0981 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ures.M) + [6.05449 4.27631 4.8436 4.30902 7.87629 10.0036 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.29811 4.85451 ] pdfxs + (o) show + (pic) + [6.05449 3.0327 8.4872 ] pdfxs + (t) show + (echniques) + [4.8436 4.54905 6.05449 6.0654 3.0327 5.74904 6.0654 4.8436 7.94172 ] pdfxs + (a) show + (im) + [3.0327 12.7307 ] pdfxs + (to) show + (:) show + 16.364 -143.49 m + /N1028 10.909 Tf + (\017) show + 27.273 -143.49 m + /N614 10.909 Tf + (...) + [3.0327 3.0327 9.16356 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lyze) + [3.0327 5.75995 4.8436 8.91265 ] pdfxs + (a) show + (nd) + [6.0654 10.1235 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 13.1562 ] pdfxs + (a) show + (n) show + 169.807 -143.49 m + /N634 10.909 Tf + (e) show + (ntir) + [6.13082 3.62179 3.34914 4.04721 ] pdfxs + (e) show + 201.057 -143.49 m + /N614 10.909 Tf + (d) + [6.0654 ] pdfxs + (a) show + (tas) + [4.23277 9.52355 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.0654 4.2654 8.92356 ] pdfxs + (a) show + (saunit) + [8.36717 9.52355 6.0654 6.05449 3.0327 8.31274 ] pdfxs + (a) show + (nde) + [6.05449 10.1345 4.8436 ] pdfxs + (a) show + (chdis) + [4.54905 10.1235 6.0654 3.0327 4.29811 ] pdfxs + (t) show + (inc) + [3.0327 6.05449 4.85451 ] pdfxs + (t) show + 406.871 -143.49 m + /N634 10.909 Tf + (in) + [3.34914 6.13082 ] pdfxs + (s) show + (t) + [3.62179 ] pdfxs + (a) show + (nc) + [6.13082 4.46185 ] pdfxs + (e) show + 449.69 -143.49 m + /N614 10.909 Tf + (o) show + (f) + [7.3963 ] pdfxs + (a) show + 27.2729 -165.413 m + (d) + [6.0654 ] pdfxs + (a) show + (tas) + [4.23277 9.0981 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ureindependen) + [6.05449 4.27631 8.4872 3.02179 6.0654 6.0654 4.8436 6.35994 4.85451 6.05449 6.0654 + 4.8436 5.75995 ] pdfxs + (t) show + (ly.) + [3.0327 4.84359 3.0327 ] pdfxs + 16.364 -196.302 m + /N1028 10.909 Tf + (\017) show + 27.2729 -196.302 m + /N614 10.909 Tf + (...) + [3.0327 3.0327 12.7963 ] pdfxs + (g) show + (ivep) + [3.0327 5.4545 10.1236 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (a) show + (lc) + [8.30175 4.85451 ] pdfxs + (o) show + (n) + [5.74904 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (o) show + (loverthehe) + [8.31265 5.14905 5.4545 4.8436 9.55626 4.23277 6.0654 10.1236 6.0654 4.8436 ] pdfxs + (a) show + (p-lay) + [6.0654 3.63261 3.0327 5.14905 5.4545 ] pdfxs + (o) show + (ut) + [6.0654 9.51273 ] pdfxs + (o) show + (fd) + [8.6181 6.05449 ] pdfxs + (at) show + (as) + [10.7345 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ureins) + [6.05449 4.27631 10.1236 3.0327 6.05449 4.30902 ] pdfxs + (ta) show + (nces) + [6.05449 4.85451 4.8436 9.57807 ] pdfxs + (t) show + (o) + [10.7345 ] pdfxs + (t) show + (hec) + [6.05449 10.1236 4.85451 ] pdfxs + (o) show + (mpiler,) + [9.08711 6.0654 3.0327 3.02179 4.85451 4.27631 3.0327 ] pdfxs + 27.2729 -218.224 m + (a) show + (llowingitre) + [3.0327 3.0327 5.14905 7.8763 3.0327 6.05449 9.0981 3.02179 7.88729 4.2654 4.85451 + ] pdfxs + (a) show + (s) + [4.29811 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (a) show + (b) + [6.37085 ] pdfxs + (o) show + (ut) + [6.05449 7.87638 ] pdfxs + (a) show + (nd) + [6.0654 9.6981 ] pdfxs + (o) show + (p) + [6.05449 ] pdfxs + (t) show + (imizes) + [3.0327 9.08711 3.0327 4.85451 8.47629 4.30902 ] pdfxs + (o) show + (meimp) + [9.08711 8.4872 3.0327 9.08711 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (ta) show + (ntlay) + [5.75995 7.87638 3.0327 5.14905 5.4545 ] pdfxs + (o) show + (utpr) + [6.0654 7.87638 6.05449 4.27631 ] pdfxs + (o) show + (per) + [6.35994 4.85451 4.2654 ] pdfxs + (t) show + (ies.) + [3.0327 4.85451 4.29811 3.0327 ] pdfxs + 16.364 -249.113 m + /N1028 10.909 Tf + (\017) show + 27.2729 -249.113 m + /N614 10.909 Tf + (...) + [3.0327 3.0327 9.15265 ] pdfxs + (t) show + (uneindividu) + [6.05449 6.0654 8.91265 3.0327 6.05449 6.0654 3.02179 5.75995 3.0327 6.0654 6.05449 + ] pdfxs + (a) show + (lins) + [7.09085 3.0327 6.0654 4.29811 ] pdfxs + (ta) show + (nces) + [6.0654 4.8436 4.8436 8.36717 ] pdfxs + (o) show + (fd) + [7.3963 6.0654 ] pdfxs + (at) show + (as) + [9.51264 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ures) + [6.05449 4.27631 4.85451 8.35626 ] pdfxs + (t) show + (o) + [9.52355 ] pdfxs + (t) show + (heclien) + [6.05449 8.91265 4.8436 3.0327 3.0327 4.8436 5.75995 ] pdfxs + (t) show + (s) + [8.36717 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tuse) + [8.31274 6.05449 4.30902 8.90174 ] pdfxs + (t) show + (hem.) + [6.0654 4.8436 9.09802 9.15265 ] pdfxs + (R) show + (eus) + [4.85451 6.05449 4.30902 ] pdfxs + (a) show + (bled) + [6.05449 3.0327 8.91265 6.05449 ] pdfxs + (ata) show + 27.2729 -271.036 m + (s) + [4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (urelibr) + [6.05449 4.27631 8.39993 3.02179 3.0327 6.0654 4.2654 ] pdfxs + (a) show + (ries) + [4.27631 3.0327 4.8436 7.85445 ] pdfxs + (a) show + (reveryc) + [4.2654 8.39993 5.4545 4.8436 4.27631 9.30537 4.8436 ] pdfxs + (o) show + (mm) + [9.08711 9.09802 ] pdfxs + (o) show + (n,butdi\013erentclien) + [6.05449 6.59994 6.05449 6.0654 7.78911 6.05449 3.0327 6.35986 4.85451 4.2654 4.85451 + 5.75995 7.78911 4.8436 3.0327 3.0327 4.8436 5.75995 ] pdfxs + (t) show + (shavedi\013erentus) + [7.84354 6.0654 5.14905 5.4545 8.38902 6.0654 3.0327 6.35986 4.8436 4.27631 4.8436 + 5.75995 7.78911 6.0654 4.29811 ] pdfxs + (ag) show + (ebehavi) + [8.39993 6.35994 4.8436 6.0654 5.14905 5.75995 3.0327 ] pdfxs + (o) show + (rs,) + [4.2654 4.30902 6.58903 ] pdfxs + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + 27.2729 -292.958 m + (e) + [4.8436 ] pdfxs + (a) show + (ch) + [4.54905 9.6981 ] pdfxs + (a) show + (pplic) + [6.0654 6.05449 3.0327 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nmayc) + [9.6981 9.08711 5.14905 9.39264 4.85451 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (ta) show + (inm) + [3.02179 9.6981 9.09802 ] pdfxs + (a) show + (nydis) + [5.74904 9.39264 6.0654 3.0327 4.29811 ] pdfxs + (t) show + (inctclien) + [3.0327 6.05449 4.85451 7.87638 4.85451 3.02179 3.0327 4.85451 5.74904 ] pdfxs + (t) show + (s) + [7.94172 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (t) show + (helibr) + [6.05449 8.4872 3.0327 3.0327 6.05449 4.27631 ] pdfxs + (a) show + (ry.) + [4.27631 4.84359 3.0327 ] pdfxs + 16.364 -323.847 m + /N1028 10.909 Tf + (\017) show + 27.2729 -323.847 m + /N614 10.909 Tf + (...provideafr) + [3.0327 3.0327 7.53812 6.05449 4.27631 5.14905 5.75995 3.0327 6.05449 7.48357 8.07266 + 3.33815 4.27631 ] pdfxs + (a) show + (mew) + [9.08711 4.8436 7.58175 ] pdfxs + (o) show + (rkf) + [4.2654 8.38902 3.32724 ] pdfxs + (o) show + (rexis) + [6.90538 4.8436 5.75995 3.0327 4.29811 ] pdfxs + (t) show + (ing) + [3.0327 6.0654 8.07266 ] pdfxs + (a) show + (ppr) + [6.0654 6.05449 4.27631 ] pdfxs + (oa) show + (ches) + [4.54905 6.05449 4.85451 6.92718 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tusemod) + [6.87275 6.05449 4.30902 7.47267 9.08711 5.75995 6.0654 ] pdfxs + (/) show + (ref) + [4.2654 4.85451 5.95631 ] pdfxs + (o) show + (r) + [6.89447 ] pdfxs + (a) show + (li) + [3.0327 3.0327 ] pdfxs + (a) show + (s) + [6.92718 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis,) + [3.0327 5.74904 4.30902 3.0327 4.29811 5.85813 ] pdfxs + (a) show + (ndsupp) + [6.0654 8.68356 4.29811 6.0654 6.05449 6.37085 ] pdfxs + (o) show + (r) + [4.2654 ] pdfxs + (t) show + 27.2729 -345.77 m + (t) show + (echniques) + [4.8436 4.54905 6.0654 6.05449 3.0327 5.75995 6.05449 4.85451 8.44353 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [8.3891 ] pdfxs + (a) show + (re) + [4.27631 8.98902 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (di) + [6.05449 3.0327 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [6.05449 ] pdfxs + (a) show + (llyimplemen) + [3.0327 3.0327 9.89446 3.0327 9.08711 6.0654 3.0327 4.8436 9.09802 4.8436 5.75995 + ] pdfxs + (t) show + (ingbych) + [3.02179 6.0654 9.59992 5.75995 9.89446 4.54905 6.05449 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (ingstruc) + [3.0327 6.05449 9.59992 4.30902 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (uretypelay) + [6.0654 4.2654 8.99993 3.93823 5.74904 6.37085 8.98902 3.0327 5.14905 5.4545 ] pdfxs + (o) show + (utf) + [6.0654 8.37819 3.33815 ] pdfxs + (o) show + (rentire) + [8.41082 4.85451 5.75995 4.23277 3.0327 4.27631 4.8436 ] pdfxs + 27.2729 -367.692 m + (pr) + [6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms) + [9.08711 9.68716 ] pdfxs + (\() show + (e.) + [4.85451 3.02179 ] pdfxs + (g) show + (.,s) + [3.0327 8.8581 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (urere) + [6.05449 4.27631 10.2326 4.27631 4.8436 ] pdfxs + (o) show + (rderin) + [4.27631 6.05449 4.85451 4.2654 3.0327 6.0654 ] pdfxs + (g/) show + (\fssi) + [6.05449 4.30902 4.29811 3.0327 ] pdfxs + (o) show + (n[) + [11.4435 3.0327 ] pdfxs + (28) show + (],ins) + [3.0327 8.84719 3.0327 6.0654 4.29811 ] pdfxs + (ta) show + (ncein) + [6.0654 4.8436 10.2326 3.0327 5.75995 ] pdfxs + (t) show + (erleaving[) + [4.8436 4.27631 3.02179 4.85451 5.14905 5.75995 3.0327 6.05449 10.8435 3.0327 ] pdfxs + (136) show + (],jump-p) + [3.0327 8.84719 3.33815 6.05449 9.08711 6.0654 3.63261 6.37085 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (er) + [4.85451 4.27631 ] pdfxs + 27.2729 -389.615 m + (prefe) + [6.0654 4.2654 4.85451 3.32724 4.85451 ] pdfxs + (t) show + (ching[) + [4.53815 6.0654 3.0327 6.05449 9.08719 3.0327 ] pdfxs + (112) show + (],e) + [3.0327 6.6654 4.85451 ] pdfxs + (t) show + (c) + [4.8436 ] pdfxs + (\)) show + (,s) + [6.6654 4.29811 ] pdfxs + (o) show + (me) + [9.09802 4.8436 ] pdfxs + (t) show + (imesm) + [3.0327 9.08711 4.85451 7.93081 9.09802 ] pdfxs + (a) show + (king) + [5.75995 3.02179 6.0654 9.08719 ] pdfxs + (t) show + (hemm) + [6.0654 4.8436 12.7307 9.08711 ] pdfxs + (o) show + (repowerfulin) + [4.27631 8.4872 6.35994 5.14905 7.58175 4.8436 4.27631 3.32724 6.0654 6.6654 3.0327 + 9.6981 ] pdfxs + (t) show + (heprocess.) + [6.05449 8.4872 6.05449 4.27631 5.75995 4.8436 4.85451 4.29811 4.30902 3.0327 ] pdfxs + 16.364 -420.504 m + /N1028 10.909 Tf + (\017) show + 27.2729 -420.504 m + /N614 10.909 Tf + (...besui) + [3.0327 3.0327 7.60357 6.37085 7.67994 4.30902 6.05449 3.0327 ] pdfxs + (ta) show + (blef) + [6.05449 3.0327 7.69085 3.32724 ] pdfxs + (o) show + (rinclusi) + [7.11265 3.0327 6.05449 4.85451 3.02179 6.0654 4.29811 3.0327 ] pdfxs + (o) show + (ninac) + [8.90174 3.0327 8.89083 8.29084 4.85451 ] pdfxs + (o) show + (mmerci) + [9.08711 9.08711 4.85451 4.2654 4.85451 3.0327 ] pdfxs + (a) show + (lc) + [5.85813 4.85451 ] pdfxs + (o) show + (mpiler.Ourimplemen) + [9.08711 6.0654 3.02179 3.0327 4.85451 4.2654 7.61448 8.4872 6.0654 7.10174 3.0327 + 9.08711 6.0654 3.0327 4.8436 9.08711 4.85451 5.75995 ] pdfxs + (ta) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n) + [8.90174 ] pdfxs + (o) show + (f) + [6.16358 ] pdfxs + (t) show + (hese) + [6.0654 4.8436 4.30902 7.67994 ] pdfxs + (t) show + (echniques) + [4.8436 4.54905 6.0654 6.05449 3.0327 5.75995 6.05449 4.85451 4.29811 ] pdfxs + 27.2729 -442.426 m + (a) show + (resc) + [4.27631 9.11992 4.29811 4.85451 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (a) show + (ble) + [6.05449 3.0327 9.11992 ] pdfxs + (t) show + (ol) + [9.73082 3.0327 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (g) show + (epr) + [9.11992 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (ms,w) + [9.09802 4.29811 7.46175 7.58175 ] pdfxs + (o) show + (rkwi) + [4.2654 10.0363 7.8763 3.0327 ] pdfxs + (t) show + (hinc) + [10.3308 3.0327 6.0654 4.8436 ] pdfxs + (o) show + (mple) + [9.08711 6.0654 3.0327 4.8436 ] pdfxs + (t) show + (epr) + [9.11992 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms,) + [9.08711 4.30902 7.46175 ] pdfxs + (a) show + (res) + [4.27631 9.11992 4.29811 ] pdfxs + (a) show + (fein) + [3.33815 9.11992 3.0327 10.3308 ] pdfxs + (t) show + (hepresence) + [6.0654 9.11992 6.05449 4.27631 4.85451 4.29811 4.85451 6.05449 4.85451 9.11992 ] pdfxs + (o) show + (f) show + 27.2729 -464.349 m + (excep) + [4.8436 5.75995 4.85451 4.8436 6.0654 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (nh) + [9.68719 6.0654 ] pdfxs + (a) show + (ndling) + [6.0654 6.05449 3.0327 3.0327 6.05449 9.08719 ] pdfxs + (a) show + (nd) + [6.05449 6.0654 ] pdfxs + 142.094 -464.349 m + /N722 10.909 Tf + (setjmp) show + 176.457 -464.349 m + /N614 10.909 Tf + (/) show + 181.912 -464.349 m + /N722 10.909 Tf + (longjmp) show + 225.629 -464.349 m + /N614 10.909 Tf + (c) + [4.8436 ] pdfxs + (a) show + (lls,c) + [3.0327 3.0327 4.29811 6.6654 4.8436 ] pdfxs + (o) show + (rrectlydeterminewhe) + [4.27631 4.27631 4.8436 4.85451 4.23277 3.0327 9.39264 6.05449 4.85451 4.23277 4.85451 + 4.27631 9.08711 3.0327 6.05449 8.47629 7.8763 6.0654 4.8436 ] pdfxs + (t) show + (herad) + [6.0654 4.8436 7.8981 9.08719 6.0654 ] pdfxs + (a) show + (tas) + [4.23277 9.08719 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.05449 4.27631 4.8436 ] pdfxs + 27.2729 -486.271 m + (is) + [3.0327 7.94172 ] pdfxs + (a) show + (ccessedinatype-s) + [4.8436 4.8436 4.85451 4.29811 4.30902 4.8436 9.6981 3.0327 9.6981 9.08719 3.93823 + 5.75995 6.35994 4.85451 3.63261 4.30902 ] pdfxs + (a) show + (feway,e) + [3.32724 8.4872 7.57085 5.15996 4.84359 6.6654 4.85451 ] pdfxs + (t) show + (c.) + [4.8436 3.0327 ] pdfxs + 16.9369 -520.149 m + (By) + [7.72349 9.90537 ] pdfxs + (a) show + (chieving) + [4.54905 6.0654 3.02179 4.85451 5.75995 3.02179 6.0654 9.59992 ] pdfxs + (t) show + (hese) + [6.0654 4.8436 4.30902 8.98902 ] pdfxs + (goa) show + (ls,weshow) + [3.0327 4.30902 7.29812 7.58175 8.99993 4.29811 6.0654 5.14905 12.0217 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (tm) + [8.3891 9.08711 ] pdfxs + (a) show + (cr) + [4.85451 4.2654 ] pdfxs + (o) show + (sc) + [4.30902 4.8436 ] pdfxs + (o) show + (pic) + [6.0654 3.0327 8.98902 ] pdfxs + (t) show + (echniquesc) + [4.85451 4.53815 6.0654 6.0654 3.02179 5.75995 6.0654 4.8436 8.45444 4.8436 ] pdfxs + (a) show + (ndr) + [10.2108 6.0654 4.2654 ] pdfxs + (a) show + (m) + [9.09802 ] pdfxs + (at) show + (ic) + [3.02179 4.85451 ] pdfxs + (a) show + (llyimprove) + [3.0327 3.02179 9.91628 3.02179 9.09802 6.05449 4.27631 5.14905 5.4545 8.99993 ] pdfxs + (t) show + (he) + [6.05449 4.8436 ] pdfxs + -6.10352e-05 -542.072 m + (perf) + [6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nce) + [6.0654 4.8436 9.30538 ] pdfxs + (o) show + (fhe) + [7.78902 6.0654 4.8436 ] pdfxs + (a) show + (pin) + [10.5163 3.0327 5.75995 ] pdfxs + (t) show + (ensivepr) + [4.8436 6.0654 4.29811 3.0327 5.4545 9.30538 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms,wi) + [9.08711 4.30902 7.69084 7.8763 3.0327 ] pdfxs + (t) show + (hpurely) + [10.5163 6.0654 6.05449 4.27631 4.8436 3.0327 10.2217 ] pdfxs + (a) show + (u) + [6.05449 ] pdfxs + (to) show + (m) + [9.08711 ] pdfxs + (at) show + (ic) + [3.0327 9.30538 ] pdfxs + (t) show + (echniqueswhich) + [4.85451 4.53815 6.0654 6.05449 3.0327 5.75995 6.05449 4.85451 8.75989 7.8763 6.0654 + 3.0327 4.53815 10.5163 ] pdfxs + (a) show + (re) + [4.27631 9.30538 ] pdfxs + (a) show + (pplied) + [6.0654 6.05449 3.0327 3.0327 4.8436 10.5163 ] pdfxs + (at) show + -6.10352e-05 -563.994 m + (pr) + [6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (mlink-) + [12.2616 3.0327 3.0327 6.05449 5.75995 3.63261 ] pdfxs + (t) show + (ime.Thisw) + [3.0327 9.08711 4.85451 7.72357 7.8763 6.0654 3.02179 7.48354 7.57085 ] pdfxs + (o) show + (rkisimplemen) + [4.27631 8.92356 3.0327 7.47263 3.0327 9.08711 6.0654 3.0327 4.8436 9.08711 4.85451 + 5.75995 ] pdfxs + (t) show + (edin) + [4.8436 9.22901 3.0327 9.22901 ] pdfxs + (t) show + (hec) + [6.0654 8.01812 4.85451 ] pdfxs + (o) show + (n) + [5.74904 ] pdfxs + (t) show + (ext) + [4.85451 5.75995 7.40729 ] pdfxs + (o) show + (f) + [6.50176 ] pdfxs + (t) show + (he) + [6.0654 8.01812 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (MC) + [13.1672 7.88721 ] pdfxs + (o) show + (mpiler) + [9.08711 6.0654 3.02179 3.0327 4.85451 7.43992 ] pdfxs + (I) show + (nfr) + [6.0654 3.32724 4.27631 ] pdfxs + (a) show + (s) + [4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ure,) + [6.05449 4.27631 4.85451 3.0327 ] pdfxs + -6.10352e-05 -585.917 m + (whichw) + [7.8763 6.0654 3.0327 4.53815 11.1163 7.57085 ] pdfxs + (a) show + (sbuilt) + [9.34898 6.0654 6.05449 3.0327 3.0327 9.29455 ] pdfxs + (t) show + (osupp) + [10.4945 4.30902 6.05449 6.0654 6.35994 ] pdfxs + (o) show + (rt) + [4.27631 9.29455 ] pdfxs + (t) show + (he) + [6.05449 9.89446 ] pdfxs + (agg) show + (ressivelink-) + [4.27631 4.85451 4.29811 4.30902 3.02179 5.4545 9.90537 3.02179 3.0327 6.0654 5.74904 + 3.64352 ] pdfxs + (t) show + (ime) + [3.02179 9.09802 9.89446 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.02179 5.75995 4.30902 3.02179 9.35989 ] pdfxs + (a) show + (nd) + [6.05449 11.1163 ] pdfxs + (o) show + (p) + [6.05449 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nrequiredby) + [11.1163 4.2654 4.85451 5.74904 6.0654 3.0327 4.2654 4.85451 11.1054 5.75995 10.8108 + ] pdfxs + (t) show + (his) + [6.05449 3.0327 4.29811 ] pdfxs + -6.10352e-05 -607.839 m + (w) + [7.57085 ] pdfxs + (o) show + (rk.) + [4.27631 5.75995 7.75629 ] pdfxs + (L) show + (L) + [5.59632 ] pdfxs + (V) show + (MisdescribedinCh) + [13.2654 3.02179 7.5599 6.0654 4.8436 4.30902 4.8436 4.27631 3.0327 6.35994 4.85451 + 9.31628 3.02179 9.32719 7.8763 6.05449 ] pdfxs + (a) show + (p) + [6.0654 ] pdfxs + (t) show + (er2) + [4.8436 7.5381 8.70538 ] pdfxs + (t) show + (oprovide) + [8.71629 6.05449 4.27631 5.14905 5.75995 3.0327 6.05449 8.10539 ] pdfxs + (t) show + (hec) + [6.0654 8.10539 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (extf) + [4.8436 5.75995 7.49456 3.33815 ] pdfxs + (o) show + (r) + [7.52719 ] pdfxs + (t) show + (hisw) + [6.0654 3.02179 7.5599 7.58175 ] pdfxs + (o) show + (rk,p) + [4.27631 5.74904 6.37085 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (ns) + [6.0654 7.5599 ] pdfxs + (o) show + (fwhichwere) + [6.58903 7.8763 6.0654 3.0327 4.53815 9.31628 7.58175 4.8436 4.27631 4.8436 ] pdfxs + -6.10352e-05 -629.762 m + (publishedin[) + [6.0654 6.05449 6.0654 3.02179 3.0327 4.30902 6.05449 4.85451 9.6981 3.02179 9.6981 + 3.0327 ] pdfxs + (87) show + (,) + [6.6654 ] pdfxs + (3) show + (,) + [6.6654 ] pdfxs + (88) show + (].) + [3.0327 3.0327 ] pdfxs + 231.273 -657.201 m + (3) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (15) 16 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 595.275591 788.031496 translate + 180 rotate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 72 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N622 14.346 Tf + (1.1Fo) + [8.07685 4.476 24.2161 8.7941 8.0625 ] pdfxs + (unda) show + (tio) + [6.2836 4.476 8.07685 ] pdfxs + (n) show + (soft) + [11.7494 8.0625 10.3147 6.26925 ] pdfxs + (h) show + (e) + [12.7536 ] pdfxs + (Mac) show + (ros) + [6.58481 8.07685 6.36962 ] pdfxs + (c) show + (o) + [8.0625 ] pdfxs + (p) show + (icA) + [4.49035 12.5527 12.1798 ] pdfxs + (pp) show + (ro) + [6.59915 8.0625 ] pdfxs + (a) show + (c) + [6.72827 ] pdfxs + (h) show + 0 -32.725 m + /N614 10.909 Tf + (Ourimplemen) + [8.4872 6.05449 8.66173 3.0327 9.08711 6.0654 3.0327 4.8436 9.08711 4.85451 5.75995 + ] pdfxs + (ta) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n) + [10.4508 ] pdfxs + (o) show + (fm) + [7.72357 9.08711 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.30902 4.8436 ] pdfxs + (o) show + (pic) + [6.0654 3.02179 9.23992 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (go) show + (ri) + [4.2654 3.0327 ] pdfxs + (t) show + (hms) + [6.0654 9.08711 8.69444 ] pdfxs + (a) show + (rebuilt) + [4.2654 9.23992 6.05449 6.0654 3.0327 3.02179 8.6291 ] pdfxs + (o) show + (naf) + [10.4508 9.83992 3.33815 ] pdfxs + (o) show + (und) + [6.05449 6.0654 6.0654 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (nc) + [10.4508 4.8436 ] pdfxs + (o) show + (nsis) + [6.0654 4.29811 3.0327 4.30902 ] pdfxs + (t) show + (ing) + [3.02179 6.0654 9.83992 ] pdfxs + (o) show + (ftwo) + [7.72357 3.93823 7.57085 9.83992 ] pdfxs + (t) show + (ech-) + [4.85451 4.53815 6.0654 3.63261 ] pdfxs + 0 -54.648 m + (niques:) + [6.0654 3.02179 5.75995 6.0654 4.8436 4.30902 11.3563 ] pdfxs + (Dat) show + (aS) + [10.8326 6.0654 ] pdfxs + (t) show + (ructure) + [4.27631 6.05449 4.85451 4.23277 6.0654 4.27631 10.2217 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.0327 5.74904 4.30902 3.0327 9.67625 ] pdfxs + (a) show + (nd) + [6.0654 11.4326 ] pdfxs + (A) show + (u) + [6.0654 ] pdfxs + (to) show + (m) + [9.08711 ] pdfxs + (at) show + (icPo) + [3.0327 10.2326 7.11266 5.75995 ] pdfxs + (o) show + (l) + [8.41084 ] pdfxs + (A) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n.B) + [6.05449 13.1126 7.72349 ] pdfxs + (a) show + (sed) + [4.30902 4.8436 11.4435 ] pdfxs + (o) show + (n) + [11.4326 ] pdfxs + (t) show + (his) + [6.0654 3.0327 9.67625 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.0327 5.74904 4.30902 3.0327 9.67625 ] pdfxs + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + 0 -76.571 m + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n,m) + [6.05449 6.6763 9.08711 ] pdfxs + (a) show + (nynew) + [5.75995 9.39264 6.05449 4.85451 11.509 ] pdfxs + (t) show + (echniques) + [4.85451 4.53815 6.0654 6.05449 3.0327 5.75995 6.0654 4.8436 7.94172 ] pdfxs + (a) show + (refe) + [4.2654 8.4872 3.33815 4.8436 ] pdfxs + (a) show + (sible.) + [4.30902 3.0327 6.05449 3.0327 4.8436 3.0327 ] pdfxs + 0 -114.403 m + /N622 11.955 Tf + (1.1.1D) + [6.7307 3.73 6.7307 3.73 20.1801 10.3052 ] pdfxs + (a) show + (ta) + [5.22437 11.0225 ] pdfxs + (S) show + (tr) + [5.23633 5.48733 ] pdfxs + (uc) show + (t) + [5.23633 ] pdfxs + (u) show + (reA) + [5.48733 10.616 10.1618 ] pdfxs + (na) show + (lysis) + [3.73 7.10119 5.30802 3.73 5.30802 ] pdfxs + 0 -143.371 m + /N614 10.909 Tf + (Dat) show + (aS) + [10.4945 6.0654 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.0654 4.2654 9.89446 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.0327 5.74904 4.30902 3.0327 9.33807 ] pdfxs + (\(D) show + (S) + [6.0654 ] pdfxs + (A) show + (\)isac) + [9.28364 3.0327 9.33807 10.5054 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (ex) + [4.8436 5.75995 ] pdfxs + (t) show + (-) + [8.68348 ] pdfxs + (a) show + (nd\feld-sensi) + [6.05449 11.1054 6.0654 4.8436 3.0327 6.05449 3.64352 4.29811 4.85451 6.05449 4.30902 + 3.02179 ] pdfxs + (t) show + (ivep) + [3.0327 5.4545 9.89446 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er) + [4.8436 9.31626 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis.) + [3.02179 5.75995 4.30902 3.0327 4.29811 12.0981 ] pdfxs + (I) show + (tisused) + [9.29455 3.02179 9.34898 6.0654 4.29811 4.85451 11.0944 ] pdfxs + (to) show + 0 -165.293 m + (identify) + [3.0327 6.05449 4.85451 5.75995 4.23277 3.0327 3.33815 10.3963 ] pdfxs + (t) show + (hec) + [6.05449 9.49083 4.85451 ] pdfxs + (o) show + (nnec) + [6.05449 6.0654 4.8436 4.85451 ] pdfxs + (t) show + (ivity) + [3.02179 5.75995 3.0327 3.93823 10.3963 ] pdfxs + (o) show + (fmem) + [7.97447 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 10.3963 ] pdfxs + (o) show + (bjec) + [6.66539 3.33815 4.8436 4.85451 ] pdfxs + (t) show + (sinapr) + [8.93444 3.0327 10.7017 10.0908 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (m,iden) + [9.09802 7.91993 3.0327 6.05449 4.85451 5.74904 ] pdfxs + (t) show + (ifyinst) + [3.0327 3.33815 10.3963 3.0327 6.05449 4.30902 4.23277 ] pdfxs + (a) show + (nces) + [6.0654 4.8436 4.85451 8.94535 ] pdfxs + (o) show + (fd) + [7.97447 6.05449 ] pdfxs + (at) show + (as) + [10.1017 4.29811 ] pdfxs + (t) show + (ructures,) + [4.27631 6.05449 4.85451 4.23277 6.0654 4.27631 4.8436 4.30902 3.0327 ] pdfxs + 0 -187.216 m + (a) show + (ndc) + [6.0654 9.93809 4.85451 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (ureimp) + [6.0654 4.27631 8.7272 3.0327 9.09802 6.35994 ] pdfxs + (o) show + (rt) + [4.27631 4.23277 ] pdfxs + (a) show + (ntpr) + [5.75995 8.12729 6.0654 4.27631 ] pdfxs + (o) show + (per) + [6.35994 4.8436 4.27631 ] pdfxs + (t) show + (ies) + [3.0327 4.8436 8.19263 ] pdfxs + (o) show + (f) + [7.22175 ] pdfxs + (t) show + (hesestruc) + [6.05449 4.85451 4.29811 8.73811 4.30902 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ures\(such) + [6.0654 4.2654 4.85451 8.19263 4.23277 4.30902 6.05449 4.54905 9.949 ] pdfxs + (a) show + (swhe) + [8.19263 7.8763 6.0654 4.8436 ] pdfxs + (t) show + (her) + [6.05449 4.85451 8.15991 ] pdfxs + (a) show + (ccesses) + [4.8436 4.85451 4.8436 4.30902 4.29811 4.85451 8.18172 ] pdfxs + (t) show + (o) + [9.34901 ] pdfxs + (t) show + (he) + [6.05449 8.73811 ] pdfxs + (o) show + (bjects) + [6.66539 3.33815 4.8436 4.85451 4.23277 8.19263 ] pdfxs + (a) show + (re) + [4.27631 4.8436 ] pdfxs + 0 -209.139 m + (type-s) + [3.93823 5.75995 6.35994 4.85451 3.63261 4.29811 ] pdfxs + (a) show + (fe) + [3.33815 4.8436 ] pdfxs + (\)) show + (.) show + 16.936 -231.061 m + (D) show + (SAis) + [6.0654 12.2835 3.0327 8.42171 ] pdfxs + (a) show + (n) + [10.1672 ] pdfxs + (agg) show + (ressivein) + [4.27631 4.8436 4.30902 4.29811 3.0327 5.4545 8.9672 3.02179 5.75995 ] pdfxs + (t) show + (erprocedur) + [4.8436 4.27631 6.0654 4.2654 5.75995 4.85451 4.8436 6.0654 6.05449 4.27631 ] pdfxs + (a) show + (l) + [7.14539 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysiswhichusesfull) + [3.0327 5.75995 4.29811 3.0327 8.41081 7.88721 6.05449 3.0327 4.54905 10.1672 6.0654 + 4.29811 4.85451 8.41081 3.33815 6.05449 3.0327 7.14539 ] pdfxs + (a) show + (cyclicc) + [4.8436 5.75995 4.85451 3.02179 3.0327 8.9672 4.8436 ] pdfxs + (a) show + (llp) + [3.0327 7.14539 6.05449 ] pdfxs + (at) show + (hs) + [6.0654 8.41081 ] pdfxs + (t) show + (on) + [9.56719 6.05449 ] pdfxs + (a) show + (mehe) + [9.09802 8.95629 6.0654 4.8436 ] pdfxs + (a) show + (p) show + 0 -252.984 m + (a) show + (nds) + [6.0654 9.949 4.29811 ] pdfxs + (ta) show + (ck) + [4.54905 9.64355 ] pdfxs + (o) show + (bjec) + [6.66539 3.33815 4.8436 4.85451 ] pdfxs + (t) show + (s) + [8.19263 ] pdfxs + (\() show + (itis) + [3.02179 8.13819 3.0327 8.19263 ] pdfxs + (\\) show + (fully"c) + [3.32724 6.0654 3.0327 3.0327 5.74904 9.34901 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (extsensitive) + [4.85451 5.74904 8.13819 4.29811 4.85451 6.05449 4.30902 3.0327 4.23277 3.0327 5.4545 + 4.85451 ] pdfxs + (\)) show + (,) + [6.98176 ] pdfxs + (a) show + (llowingit) + [3.0327 3.02179 5.15996 7.8763 3.0327 6.05449 9.34901 3.0327 8.12729 ] pdfxs + (t) show + (oiden) + [9.34901 3.0327 6.05449 4.85451 5.74904 ] pdfxs + (t) show + (ifydisj) + [3.0327 3.33815 9.64355 6.0654 3.02179 4.30902 3.32724 ] pdfxs + (o) show + (intins) + [3.0327 5.75995 8.12729 3.0327 6.0654 4.29811 ] pdfxs + (ta) show + (nces) + [6.0654 4.8436 4.85451 8.19263 ] pdfxs + (o) show + (fd) + [7.22175 6.05449 ] pdfxs + (ata) show + 0 -274.906 m + (s) + [4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ures,evenif) + [6.05449 4.27631 4.85451 4.29811 6.80721 4.8436 5.4545 4.85451 9.80719 3.0327 7.07994 + ] pdfxs + (t) show + (hey) + [6.05449 4.85451 9.50173 ] pdfxs + (a) show + (recre) + [4.27631 8.59629 4.8436 4.27631 4.85451 ] pdfxs + (a) show + (ted) + [4.23277 4.85451 9.80719 ] pdfxs + (a) show + (ndprocessedbyc) + [6.0654 9.80719 6.05449 4.27631 5.75995 4.8436 4.85451 4.29811 4.30902 4.8436 9.80719 + 5.75995 9.50173 4.85451 ] pdfxs + (o) show + (mm) + [9.08711 9.08711 ] pdfxs + (o) show + (nhelperfuncti) + [9.81809 6.05449 4.85451 3.02179 6.37085 4.8436 8.01809 3.33815 6.0654 6.05449 4.85451 + 4.23277 3.0327 ] pdfxs + (o) show + (ns.) + [6.0654 4.29811 8.21447 ] pdfxs + (D) show + (SAc) + [6.0654 11.9235 4.85451 ] pdfxs + (a) show + (nsupp) + [9.80719 4.29811 6.0654 6.05449 6.37085 ] pdfxs + (o) show + (r) + [4.2654 ] pdfxs + (t) show + 0 -296.829 m + (asuperset) + [10.429 4.29811 6.0654 6.35994 4.85451 4.2654 4.30902 4.8436 9.21818 ] pdfxs + (o) show + (f) + [8.31265 ] pdfxs + (t) show + (heclien) + [6.05449 9.82901 4.8436 3.0327 3.0327 4.8436 5.75995 ] pdfxs + (t) show + (ssupp) + [9.27262 4.30902 6.05449 6.0654 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (t) show + (edbym) + [4.8436 11.0399 5.75995 10.7235 9.09802 ] pdfxs + (o) show + (st\row-insensi) + [4.29811 9.21818 6.0654 5.14905 7.8763 3.63261 3.0327 6.0654 4.29811 4.85451 6.05449 + 4.30902 3.02179 ] pdfxs + (t) show + (ivein) + [3.0327 5.4545 9.82901 3.02179 5.75995 ] pdfxs + (t) show + (erprocedur) + [4.8436 4.27631 6.0654 4.2654 5.75995 4.85451 4.8436 6.0654 6.05449 4.27631 ] pdfxs + (a) show + (l) + [8.0072 ] pdfxs + (a) show + (li) + [3.02179 3.0327 ] pdfxs + (a) show + (s,mod-ref,) + [4.30902 8.33447 9.08711 5.75995 6.0654 3.63261 4.27631 4.8436 3.33815 8.33447 ] pdfxs + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + 0 -318.751 m + (c) + [4.8436 ] pdfxs + (a) show + (ll) + [3.0327 6.77449 ] pdfxs + (g) show + (r) + [4.27631 ] pdfxs + (a) show + (ph) + [6.05449 9.80719 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lyses,in) + [3.02179 5.75995 4.30902 4.8436 4.29811 6.80721 3.0327 9.79628 ] pdfxs + (a) show + (ddi) + [6.0654 6.05449 3.0327 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.79628 ] pdfxs + (t) show + (osupp) + [9.19628 4.30902 6.05449 6.0654 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (t) show + (ing) + [3.0327 6.05449 9.19628 ] pdfxs + (t) show + (hem) + [6.0654 8.58538 9.09802 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.29811 4.85451 ] pdfxs + (o) show + (pic) + [6.05449 3.0327 8.59629 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysesdescribed) + [3.0327 5.75995 4.29811 4.85451 8.0399 6.0654 4.8436 4.30902 4.8436 4.27631 3.02179 + 6.37085 4.8436 9.80719 ] pdfxs + (t) show + (hr) + [6.05449 4.27631 ] pdfxs + (o) show + (u) + [6.0654 ] pdfxs + (g) show + (h) + [6.05449 ] pdfxs + (o) show + (ut) + [6.0654 7.98547 ] pdfxs + (t) show + (his) + [6.05449 3.0327 4.29811 ] pdfxs + 0 -340.674 m + (t) show + (hesis.) + [6.05449 4.85451 4.29811 3.0327 4.30902 8.82538 ] pdfxs + (D) show + (SAsupp) + [6.0654 12.1308 4.30902 6.05449 6.0654 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (t) show + (s) + [8.25808 ] pdfxs + (t) show + (hefull) + [6.05449 8.80356 3.33815 6.05449 3.0327 6.98176 ] pdfxs + (g) show + (ener) + [4.85451 6.05449 4.85451 4.2654 ] pdfxs + (a) show + (lity) + [3.0327 3.0327 3.93823 9.70901 ] pdfxs + (o) show + (fC) + [7.28721 7.88721 ] pdfxs + (/) show + (C++pr) + [7.8763 8.4872 12.4363 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms) + [9.08711 8.25808 ] pdfxs + (a) show + (ndprovidesc) + [6.0654 10.0145 6.05449 4.27631 5.14905 5.75995 3.0327 6.05449 4.85451 8.25808 4.8436 + ] pdfxs + (o) show + (nserv) + [6.0654 4.29811 4.85451 4.2654 5.15995 ] pdfxs + (a) show + (tivelyc) + [4.23277 3.0327 5.4545 4.85451 3.02179 9.71992 4.8436 ] pdfxs + (o) show + (rrec) + [4.27631 4.27631 4.8436 4.8436 ] pdfxs + (t) show + 0 -362.596 m + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.02179 5.75995 4.30902 3.02179 7.94172 ] pdfxs + (o) show + (finc) + [6.97085 3.0327 6.05449 4.85451 ] pdfxs + (o) show + (mple) + [9.08711 6.0654 3.0327 4.8436 ] pdfxs + (t) show + (epr) + [8.4872 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms) + [9.08711 7.94172 ] pdfxs + (a) show + (ndlibr) + [6.05449 9.6981 3.0327 3.0327 6.05449 4.27631 ] pdfxs + (a) show + (ries.) + [4.27631 3.02179 4.85451 4.29811 3.0327 ] pdfxs + 16.936 -384.519 m + (Theprim) + [7.8763 6.0654 8.4872 6.05449 4.27631 3.0327 9.08711 ] pdfxs + (a) show + (ryrese) + [4.27631 9.39264 4.2654 4.85451 4.29811 4.85451 ] pdfxs + (a) show + (rchc) + [4.2654 4.54905 9.6981 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (ribu) + [4.27631 3.0327 6.05449 6.0654 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (ns) + [6.0654 7.94172 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (D) show + (SA) + [6.05449 11.8144 ] pdfxs + (a) show + (re:) + [4.27631 4.85451 3.0327 ] pdfxs + 10.303 -418.397 m + (\() show + (i\)) + [3.0327 9.69818 ] pdfxs + (N) show + (ew) + [4.8436 12.0108 ] pdfxs + (t) show + (echniquesused) + [4.85451 4.53815 6.0654 6.05449 3.0327 5.75995 6.0654 4.8436 8.43262 6.0654 4.29811 + 4.85451 10.189 ] pdfxs + (t) show + (o) + [9.58901 ] pdfxs + (a) show + (chievei) + [4.54905 6.0654 3.02179 4.85451 5.4545 8.97811 3.0327 ] pdfxs + (t) show + (sspeed,sc) + [8.43262 4.30902 6.35994 4.85451 4.8436 6.0654 7.28721 4.29811 4.85451 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (a) show + (bility,) + [6.05449 3.0327 3.0327 3.02179 3.94914 4.84359 7.28721 ] pdfxs + (a) show + (ndlowmem) + [6.0654 10.189 3.0327 5.14905 12.0217 9.08711 4.8436 9.09802 ] pdfxs + (o) show + (ryfo) + [4.2654 9.89446 3.33815 5.75995 ] pdfxs + (o) show + (tprintwhen) + [4.23277 6.0654 4.27631 3.02179 5.75995 8.37819 7.8763 6.0654 4.8436 10.1999 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (-) show + 27.273 -440.319 m + (lyzinglar) + [3.0327 5.75995 4.8436 3.0327 6.05449 9.03265 3.02179 5.46541 4.2654 ] pdfxs + (g) show + (epr) + [8.42175 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms,despi) + [9.08711 4.30902 6.61085 6.0654 4.8436 4.30902 6.05449 3.0327 ] pdfxs + (t) show + (ei) + [8.42175 3.02179 ] pdfxs + (t) show + (s) + [7.87627 ] pdfxs + (agg) show + (ressive) + [4.27631 4.8436 4.30902 4.29811 3.0327 5.4545 8.42175 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis.Weshow) + [3.0327 5.75995 4.29811 3.0327 4.30902 7.85448 10.2981 8.42175 4.29811 6.0654 5.14905 + 11.4544 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [7.82183 ] pdfxs + (D) show + (SAusesli) + [6.05449 11.749 6.0654 4.29811 4.85451 7.87627 3.0327 3.02179 ] pdfxs + (tt) show + (lemem) + [3.0327 8.42175 9.08711 4.8436 9.09802 ] pdfxs + (o) show + (ry) + [4.2654 5.75995 ] pdfxs + 27.273 -462.242 m + (a) show + (ndisf) + [6.0654 10.3745 3.0327 8.61808 3.32724 ] pdfxs + (a) show + (st) + [4.30902 8.55274 ] pdfxs + (a) show + (ndsc) + [6.0654 10.3745 4.29811 4.85451 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (a) show + (blein) + [6.05449 3.0327 9.16356 3.0327 10.3745 ] pdfxs + (o) show + (urexperimen) + [6.0654 8.58536 4.8436 5.75995 6.35994 4.85451 4.27631 3.02179 9.09802 4.8436 5.75995 + ] pdfxs + (t) show + (s) + [8.61808 ] pdfxs + (o) show + (npr) + [10.3745 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (mssp) + [9.08711 8.61808 4.30902 6.05449 ] pdfxs + (a) show + (nning) + [6.0654 6.0654 3.02179 6.0654 9.77446 ] pdfxs + (4) show + (-5) + [3.63261 9.77446 ] pdfxs + (o) show + (rders) + [4.2654 6.0654 4.8436 4.27631 8.61808 ] pdfxs + (o) show + (fm) + [7.6472 9.08711 ] pdfxs + (ag) show + (ni) + [6.0654 3.0327 ] pdfxs + (t) show + (ude) + [6.05449 6.0654 4.8436 ] pdfxs + 27.273 -484.164 m + (o) show + (fcodesize) + [7.85448 4.8436 5.75995 6.05449 9.37083 4.29811 3.0327 4.8436 9.37083 ] pdfxs + (\() show + (p) + [6.05449 ] pdfxs + (a) show + (st) + [4.30902 8.76001 ] pdfxs + (200) show + (,) + [3.0327 ] pdfxs + (00) show + (0lines) + [9.97082 3.02179 3.0327 6.0654 4.8436 8.82535 ] pdfxs + (o) show + (fcode) + [7.84357 4.85451 5.74904 6.0654 4.8436 ] pdfxs + (\)) show + (,never) + [7.7672 6.0654 4.8436 5.4545 4.85451 8.78172 ] pdfxs + (ta) show + (kingm) + [5.75995 3.0327 6.05449 9.97082 9.09802 ] pdfxs + (o) show + (re) + [4.2654 9.37083 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (n) + [10.5817 ] pdfxs + (3) show + (.) + [3.0327 ] pdfxs + (2) show + (s) + [8.81444 ] pdfxs + (o) show + (n) + [10.5817 ] pdfxs + (t) show + (hesecodes.We) + [6.05449 4.85451 4.29811 9.35992 4.85451 5.75995 6.05449 4.85451 4.29811 10.5163 10.309 + 4.8436 ] pdfxs + 27.273 -506.087 m + (describewhywebelieve) + [6.0654 4.8436 4.29811 4.85451 4.27631 3.02179 6.37085 8.05084 7.8763 5.75995 8.95628 + 7.58175 8.05084 6.35994 4.8436 3.0327 3.0327 4.8436 5.4545 8.05084 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (titwillc) + [7.44002 3.0327 7.45093 7.8763 3.0327 3.02179 6.23994 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (inue) + [3.0327 5.74904 6.0654 8.05084 ] pdfxs + (t) show + (osc) + [8.65083 4.30902 4.8436 ] pdfxs + (a) show + (lewell) + [3.0327 8.05084 7.58175 4.8436 3.0327 6.22904 ] pdfxs + (t) show + (ol) + [8.66174 3.02179 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (g) show + (erpr) + [4.85451 7.47264 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (msinSec) + [9.08711 7.50536 3.0327 9.26173 6.0654 4.8436 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.0654 7.50536 ] pdfxs + (3) show + (.) + [3.0327 ] pdfxs + (2) show + (.) + [3.02179 ] pdfxs + (5) show + 27.273 -528.009 m + (a) show + (nd) + [6.0654 10.429 ] pdfxs + (3) show + (.) + [3.0327 ] pdfxs + (4) show + (.) + [3.0327 ] pdfxs + (2) show + (.) + [10.0908 ] pdfxs + (D) show + (SAis) + [6.0654 12.5563 3.0327 8.67262 ] pdfxs + (t) show + (he\frstfullyc) + [6.0654 9.21811 6.0654 4.27631 4.29811 8.61819 3.33815 6.05449 3.0327 3.0327 10.1345 + 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (extsensi) + [4.8436 5.75995 8.61819 4.30902 4.8436 6.0654 4.29811 3.0327 ] pdfxs + (t) show + (ive) + [3.0327 5.4545 9.21811 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (go) show + (ri) + [4.27631 3.02179 ] pdfxs + (t) show + (hmwe) + [6.0654 13.4616 7.58175 9.21811 ] pdfxs + (a) show + (reaw) + [4.27631 9.22901 5.14905 7.57085 ] pdfxs + (a) show + (re) + [4.27631 9.22901 ] pdfxs + (o) show + (f) + [7.70175 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (t) + [8.61819 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lyzes) + [3.0327 5.75995 4.8436 4.85451 4.29811 ] pdfxs + 27.273 -549.932 m + (pr) + [6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (msinafr) + [9.08711 7.88717 3.0327 9.64355 9.04356 3.32724 4.27631 ] pdfxs + (a) show + (c) + [4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.64355 ] pdfxs + (o) show + (f) + [6.9163 ] pdfxs + (t) show + (hetime) + [6.0654 8.43266 4.23277 3.0327 9.09802 8.42175 ] pdfxs + (ta) show + (ken) + [5.4545 4.85451 9.64355 ] pdfxs + (t) show + (oc) + [9.03265 4.85451 ] pdfxs + (o) show + (mpile) + [9.08711 6.0654 3.02179 3.0327 8.43266 ] pdfxs + (t) show + (hepr) + [6.0654 8.43266 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (mwi) + [12.6653 7.88721 3.02179 ] pdfxs + (t) show + (has) + [9.64355 9.04356 4.29811 ] pdfxs + (ta) show + (nd) + [6.0654 6.05449 ] pdfxs + (a) show + (rd) + [4.27631 9.64355 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imizin) + [3.02179 9.09802 3.02179 4.85451 3.0327 6.05449 ] pdfxs + (g) show + 27.273 -571.854 m + (c) + [4.8436 ] pdfxs + (o) show + (mpiler) + [9.09802 6.05449 3.0327 3.0327 4.8436 8.509 ] pdfxs + (\() show + (GCC) + [8.5636 7.8763 7.8763 ] pdfxs + (\)) show + (.Fur) + [7.26539 6.20722 6.0654 4.2654 ] pdfxs + (t) show + (her,) + [6.0654 4.8436 4.27631 7.40721 ] pdfxs + (t) show + (hefr) + [6.0654 9.07629 3.32724 4.27631 ] pdfxs + (a) show + (cti) + [4.85451 4.23277 3.0327 ] pdfxs + (o) show + (n) + [10.2981 ] pdfxs + (o) show + (fc) + [7.55993 4.85451 ] pdfxs + (o) show + (mpile) + [9.08711 6.0654 3.02179 3.0327 9.07629 ] pdfxs + (t) show + (imeusedby) + [3.0327 9.08711 9.0872 6.05449 4.30902 4.8436 10.2981 5.74904 9.99264 ] pdfxs + (D) show + (SAisqui) + [6.0654 12.4035 3.0327 8.54171 5.74904 6.0654 3.0327 ] pdfxs + (t) show + (esm) + [9.07629 4.29811 9.09802 ] pdfxs + (a) show + (ll:) + [3.02179 3.0327 9.07628 ] pdfxs + (a) show + (lways) + [3.02179 7.58175 5.14905 5.75995 4.29811 ] pdfxs + 27.273 -593.777 m + (less) + [3.0327 4.8436 4.30902 7.93081 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (n) + [9.6981 ] pdfxs + (6) show + (%in) + [12.7198 3.0327 9.6981 ] pdfxs + (o) show + (urexperimen) + [6.0654 7.909 4.8436 5.75995 6.35994 4.85451 4.2654 3.0327 9.09802 4.8436 5.75995 + ] pdfxs + (t) show + (s.) + [4.29811 3.0327 ] pdfxs + 7.27298 -624.666 m + (\() show + (ii\)) + [3.0327 3.02179 9.69818 ] pdfxs + (U) show + (se) + [4.30902 7.88721 ] pdfxs + (o) show + (fanovelex) + [6.38176 8.49811 6.05449 5.14905 5.4545 4.85451 6.07631 4.8436 5.75995 ] pdfxs + (t) show + (ensi) + [4.8436 6.0654 4.29811 3.0327 ] pdfxs + (o) show + (n) + [9.0981 ] pdfxs + (t) show + (oT) + [8.49811 6.97085 ] pdfxs + (a) show + (rj) + [4.27631 3.32724 ] pdfxs + (a) show + (n'sS) + [6.0654 3.0327 7.34172 6.0654 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (o) show + (n) + [6.0654 ] pdfxs + (g) show + (lyC) + [3.0327 8.79265 7.88721 ] pdfxs + (o) show + (nnectedC) + [6.05449 6.0654 4.8436 4.85451 4.23277 4.85451 9.0981 7.88721 ] pdfxs + (o) show + (mp) + [9.08711 6.35994 ] pdfxs + (o) show + (nent) + [6.0654 4.8436 5.75995 7.28729 ] pdfxs + (\() show + (SCC\)\fnding) + [6.05449 7.88721 7.8763 7.28729 6.05449 6.0654 6.05449 3.0327 6.0654 8.49811 ] pdfxs + (a) show + (l) + [3.02179 ] pdfxs + (go) show + (ri) + [4.27631 3.0327 ] pdfxs + (t) show + (hm) + [6.05449 9.08711 ] pdfxs + 231.273 -657.201 m + (4) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + 1 0 0 1 99.879 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (specul) + [4.29811 6.37085 4.8436 4.85451 6.05449 3.0327 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n,recovery) + [6.05449 6.05449 4.2654 4.85451 4.8436 5.14905 5.4545 4.85451 4.27631 8.61811 ] pdfxs + (a) show + (nd) + [6.05449 8.93447 ] pdfxs + (a) show + (d) + [6.05449 ] pdfxs + (a) show + (p) + [6.0654 ] pdfxs + (t) show + (ivere) + [3.02179 5.4545 7.71266 4.27631 4.8436 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsl) + [6.0654 4.29811 3.0327 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [8.92356 ] pdfxs + (t) show + (o) + [8.32356 ] pdfxs + (a) show + (ddressre) + [6.05449 6.0654 4.27631 4.8436 4.30902 7.15627 4.27631 4.85451 ] pdfxs + (a) show + (l-lifech) + [3.02179 3.64352 3.0327 3.02179 3.33815 7.71266 4.53815 6.0654 ] pdfxs + (a) show + (llen) + [3.0327 3.0327 4.8436 6.0654 ] pdfxs + (g) show + (es.) + [4.8436 4.29811 6.61085 ] pdfxs + (I) show + (n) show + 385.746 0 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (gs) show + 0 -21.922 m + (o) show + (ft) + [6.3382 3.6327 ] pdfxs + (h) show + (eInt) + [8.00728 4.21089 6.13082 3.62179 ] pdfxs + (e) show + (rn) + [4.60356 6.13082 ] pdfxs + (a) show + (ti) + [3.6327 3.33823 ] pdfxs + (o) show + (n) + [6.14173 ] pdfxs + (a) show + (lSymposium) + [5.78173 6.13082 5.30169 8.91258 5.01816 5.58542 4.45083 3.34914 5.85816 11.9125 ] pdfxs + (o) show + (nCo) + [9.13079 7.81088 5.01816 ] pdfxs + (d) show + (eG) + [8.00728 8.44359 ] pdfxs + (e) show + (n) + [6.13082 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [9.13079 ] pdfxs + (a) show + (ndOptimi) + [6.13082 8.57449 8.35627 5.58542 3.62179 3.33823 8.92348 3.34914 ] pdfxs + (za) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [9.13079 ] pdfxs + (\() show + (CGO) + [7.79997 8.44359 8.35627 ] pdfxs + (\)) show + 366.699 -21.922 m + /N614 10.909 Tf + (,S) + [5.68359 6.05449 ] pdfxs + (a) show + (nFr) + [8.71629 6.20722 4.27631 ] pdfxs + (a) show + (ncisc) + [6.05449 4.85451 3.0327 4.29811 4.85451 ] pdfxs + (o) show + (,) show + 0 -43.845 m + (C) + [7.8763 ] pdfxs + (A) show + (,M) + [6.6654 10.0036 ] pdfxs + (a) show + (r) + [7.909 ] pdfxs + (2003) show + (.) show + -22.424 -73.249 m + ([) + [3.0327 ] pdfxs + (44) show + (]) + [8.4872 ] pdfxs + (Ro) show + (bertDe) + [6.35994 4.8436 4.27631 8.21456 8.32365 4.85451 ] pdfxs + (L) show + (ine) + [3.0327 6.05449 8.81447 ] pdfxs + (a) show + (ndM) + [6.0654 10.0254 10.0036 ] pdfxs + (a) show + (nuelF) + [5.74904 6.0654 4.8436 7.00357 7.12357 0 ] pdfxs + (a) show + (hndrich.Enf) + [6.05449 6.0654 6.05449 4.27631 3.0327 4.53815 6.0654 8.84719 7.42902 6.05449 3.33815 + ] pdfxs + (o) show + (rcinghi) + [4.27631 4.8436 3.0327 6.05449 9.42537 6.05449 3.0327 ] pdfxs + (g) show + (h-levelpr) + [6.0654 3.63261 3.0327 4.8436 5.4545 4.85451 6.99267 6.0654 4.2654 ] pdfxs + (ot) show + (oc) + [5.75995 4.85451 ] pdfxs + (o) show + (lsinlow-levels) + [3.02179 8.26899 3.0327 10.0254 3.0327 5.14905 7.8763 3.64352 3.0327 4.8436 5.4545 + 4.8436 7.00357 4.29811 ] pdfxs + (o) show + (ftw) + [3.33815 3.93823 7.57085 ] pdfxs + (a) show + (re.) + [4.27631 4.85451 3.0327 ] pdfxs + 0 -95.172 m + (I) show + (n) show + 14.971 -95.172 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.58897 ] pdfxs + (o) show + (ft) + [8.47637 3.62179 ] pdfxs + (h) show + (eACMSIGPLANC) + [10.1563 7.82171 7.81088 14.9126 6.13082 4.21089 8.43268 7.40714 6.83993 8.10534 13.2435 + 7.79997 ] pdfxs + (o) show + (nf) + [6.14173 3.33823 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 10.1454 ] pdfxs + (o) show + (nPro) + [11.269 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.0363 ] pdfxs + (a) show + (mmingL) + [8.92348 8.92348 3.34914 6.13082 10.1454 6.28357 ] pdfxs + (a) show + (n) + [6.14173 ] pdfxs + (g) show + (u) + [5.84725 ] pdfxs + (ag) show + (e) + [10.1563 ] pdfxs + (Des) show + (i) + [3.33823 ] pdfxs + (g) show + (n) + [11.269 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (d) show + 0 -117.094 m + (Im) + [4.21089 8.91258 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + (a) show + (ti) + [3.6327 3.33823 ] pdfxs + (o) show + (n) + [10.0362 ] pdfxs + (\() show + (PL) + [7.40714 6.83993 ] pdfxs + (D) show + (I) + [4.19998 ] pdfxs + (\)) show + 113.969 -117.094 m + /N614 10.909 Tf + (,Snowbird,) + [6.6654 6.0654 6.05449 5.14905 7.88721 6.05449 3.0327 4.27631 6.05449 6.6654 ] pdfxs + (U) show + (T,) + [7.88721 6.6654 ] pdfxs + (J) show + (une) + [6.05449 6.0654 8.4872 ] pdfxs + (2001) show + (.) show + -22.424 -146.499 m + ([) + [3.0327 ] pdfxs + (45) show + (]) + [8.4872 ] pdfxs + (A) show + (l) + [3.02179 ] pdfxs + (a) show + (n) + [9.89446 ] pdfxs + (D) show + (emers,M) + [4.8436 9.09802 4.8436 4.27631 4.29811 6.90539 10.0036 ] pdfxs + (a) show + (rkWeiser,B) + [4.27631 9.5781 10.309 4.8436 3.0327 4.29811 4.85451 4.27631 6.90539 7.72349 ] pdfxs + (a) show + (rry) + [4.27631 4.2654 9.58901 ] pdfxs + (H) show + (ayes,) + [5.14905 5.4545 4.85451 4.29811 6.90539 ] pdfxs + (Ha) show + (nsBoehm,) + [6.0654 8.12717 7.7344 5.74904 4.85451 6.05449 9.09802 6.90539 ] pdfxs + (Da) show + (nielB) + [6.05449 3.0327 4.85451 6.85085 7.7344 ] pdfxs + (o) show + (brow,) + [6.05449 4.27631 5.14905 7.8763 6.90539 ] pdfxs + (a) show + (ndSc) + [6.0654 9.89446 6.05449 4.85451 ] pdfxs + (o) show + (ttShenker.) + [4.23277 8.07274 6.0654 6.05449 4.85451 6.05449 5.4545 4.85451 4.27631 3.0327 ] pdfxs + 0 -168.421 m + (C) + [7.8763 ] pdfxs + (o) show + (mbining) + [8.79257 6.05449 3.0327 6.0654 3.02179 6.0654 10.4945 ] pdfxs + (g) show + (ener) + [4.85451 6.05449 4.85451 4.2654 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [6.05449 ] pdfxs + (a) show + (l) + [8.07266 ] pdfxs + (a) show + (ndc) + [6.0654 11.0944 4.85451 ] pdfxs + (o) show + (nserv) + [6.05449 4.30902 4.8436 4.27631 5.14904 ] pdfxs + (at) show + (ive) + [3.0327 5.4545 9.88355 ] pdfxs + (ga) show + (rb) + [4.27631 6.0654 ] pdfxs + (ag) show + (ec) + [9.88355 4.85451 ] pdfxs + (o) show + (llec) + [3.02179 3.0327 4.85451 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n:fr) + [6.05449 10.6908 3.32724 4.27631 ] pdfxs + (a) show + (mew) + [9.08711 4.85451 7.57085 ] pdfxs + (o) show + (rk) + [4.27631 10.7999 ] pdfxs + (a) show + (ndimplement) + [6.05449 11.1054 3.0327 9.08711 6.0654 3.02179 4.85451 9.08711 4.85451 5.75995 4.23277 + ] pdfxs + (a) show + (-) show + 0 -190.344 m + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns.) + [6.05449 4.30902 7.31994 ] pdfxs + (I) show + (n) show + 43.712 -190.344 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.0508 ] pdfxs + (o) show + (ftheACMSIGACT-SIGPLANSymp) + [6.9382 3.62179 5.58542 8.60727 7.83262 7.79997 13.3854 6.13082 4.19998 8.44359 7.83262 + 7.79997 7.81088 3.90544 6.13082 4.19998 8.44359 7.39623 6.85084 8.10534 11.7053 6.13082 + 5.30169 8.91258 5.01816 ] pdfxs + (os) show + (ium) + [3.34914 5.85816 12.5125 ] pdfxs + (o) show + (nPrin) + [9.73079 7.39623 4.60356 3.33823 6.14173 ] pdfxs + (c) show + (i) + [3.33823 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (s) + [8.0508 ] pdfxs + (o) show + (fPro) + [6.94911 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.0363 ] pdfxs + (a) show + (m-) + [8.92348 3.90544 ] pdfxs + 0 -212.266 m + (mingL) + [8.92348 3.33823 6.14173 8.91272 6.29448 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ages) show + 76.26 -212.266 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (261{269) show + (,) + [6.6654 ] pdfxs + (1990) show + (.) show + -22.424 -241.671 m + ([) + [3.0327 ] pdfxs + (46) show + (]) + [8.4872 ] pdfxs + (A) show + (l) + [3.02179 ] pdfxs + (a) show + (in) + [3.0327 10.1454 ] pdfxs + (D) show + (eu) + [4.8436 6.0654 ] pdfxs + (t) show + (sch.) + [4.29811 4.54905 6.05449 9.19628 ] pdfxs + (I) show + (n) + [5.75995 ] pdfxs + (t) show + (erprocedur) + [4.8436 4.27631 6.05449 4.27631 5.75995 4.8436 4.85451 6.05449 6.0654 4.2654 ] pdfxs + (a) show + (lmay-) + [7.11266 9.09802 5.14905 5.75995 3.63261 ] pdfxs + (a) show + (li) + [3.0327 3.02179 ] pdfxs + (a) show + (s) + [8.38899 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisf) + [3.02179 5.75995 4.30902 3.02179 8.38899 3.32724 ] pdfxs + (o) show + (rpoin) + [8.35627 6.35994 5.46541 3.02179 5.75995 ] pdfxs + (t) show + (ers:Bey) + [4.8436 4.27631 4.30902 8.75992 7.7344 4.8436 5.4545 ] pdfxs + (o) show + (ndk-limi) + [6.0654 10.1345 5.75995 3.63261 3.0327 3.0327 9.08711 3.0327 ] pdfxs + (t) show + (in) + [3.0327 6.05449 ] pdfxs + (g) show + (.) + [9.19628 ] pdfxs + (I) show + (n) show + 419.2 -241.671 m + /N634 10.909 Tf + (Pr) + [7.39623 4.04721 ] pdfxs + (o) show + (-) show + 0 -263.593 m + (cee) + [4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.21806 ] pdfxs + (o) show + (ft) + [8.09455 3.6327 ] pdfxs + (h) show + (eACMSIGPLANC) + [9.77453 7.83262 7.79997 14.5417 6.13082 4.21089 8.43268 7.40714 6.83993 8.10534 12.8617 + 7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 9.77453 ] pdfxs + (o) show + (nPro) + [10.8871 7.40714 4.0363 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmingL) + [8.92348 8.91258 3.34914 6.13082 9.77453 6.28357 ] pdfxs + (a) show + (n) + [6.14173 ] pdfxs + (g) show + (u) + [5.84725 ] pdfxs + (ag) show + (e) + [9.78544 ] pdfxs + (De) show + (si) + [4.45083 3.34914 ] pdfxs + (g) show + (nandIm) + [10.8871 5.58542 6.13082 10.3308 4.21089 8.91258 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (-) show + 0 -285.516 m + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + (a) show + (ti) + [3.6327 3.33823 ] pdfxs + (o) show + (n) + [10.0362 ] pdfxs + (\() show + (PL) + [7.40714 6.83993 ] pdfxs + (D) show + (I) + [4.19998 ] pdfxs + (\)) show + 87.46 -285.516 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (230{241) show + (,) + [6.6654 ] pdfxs + (J) show + (une) + [6.0654 6.05449 8.4872 ] pdfxs + (1994) show + (.) show + -22.424 -314.92 m + ([) + [3.0327 ] pdfxs + (47) show + (]) + [8.4872 ] pdfxs + (L) show + (.Pe) + [5.4545 7.11266 4.85451 ] pdfxs + (t) show + (er) + [4.8436 6.69811 ] pdfxs + (D) show + (eu) + [4.85451 6.05449 ] pdfxs + (t) show + (sch) + [4.30902 4.53815 8.4872 ] pdfxs + (a) show + (nd) + [6.0654 8.4872 ] pdfxs + (A) show + (ll) + [3.02179 3.0327 ] pdfxs + (a) show + (nM.Schi\013m) + [8.4872 10.0036 5.4545 6.05449 4.54905 6.0654 3.02179 6.37077 9.08711 ] pdfxs + (a) show + (n.E\016cientimplemen) + [6.0654 5.89086 7.41812 9.09802 4.8436 3.0327 4.8436 5.75995 6.66548 3.0327 9.09802 + 6.05449 3.0327 4.8436 9.09802 4.8436 5.75995 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [8.47629 ] pdfxs + (o) show + (f) + [5.75995 ] pdfxs + (t) show + (hesm) + [6.0654 7.2763 4.29811 9.08711 ] pdfxs + (a) show + (ll) + [3.0327 3.0327 ] pdfxs + (ta) show + (lk-) + [3.0327 5.74904 3.64352 ] pdfxs + (8) show + (0sys) + [7.8763 4.30902 5.74904 4.30902 ] pdfxs + (t) show + (em.) + [4.8436 9.09802 3.0327 ] pdfxs + 0 -336.843 m + (I) show + (n) show + 14.475 -336.843 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.13079 ] pdfxs + (o) show + (ft) + [8.01819 3.6327 ] pdfxs + (h) show + (eACMSIGACT-SIGPLANSymp) + [9.68726 7.83262 7.81088 14.4545 6.13082 4.19998 8.44359 7.83262 7.79997 7.81088 3.90544 + 6.13082 4.19998 8.44359 7.39623 6.85084 8.10534 12.7853 6.13082 5.30169 8.91258 5.01816 + ] pdfxs + (os) show + (ium) + [3.34914 5.85816 13.5925 ] pdfxs + (o) show + (nPrin) + [10.8108 7.39623 4.60356 3.34914 6.13082 ] pdfxs + (c) show + (ipl) + [3.33823 5.58542 2.78176 ] pdfxs + (e) show + (s) + [9.1417 ] pdfxs + (o) show + (fPro) + [8.01819 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.0363 ] pdfxs + (a) show + (mmin) + [8.92348 8.92348 3.34914 6.13082 ] pdfxs + (g) show + 0 -358.765 m + (L) + [6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ages) show + 48.939 -358.765 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (297{302) show + (,) + [6.6654 ] pdfxs + (Ja) show + (n) + [9.6981 ] pdfxs + (1984) show + (.) show + -22.424 -388.17 m + ([) + [3.0327 ] pdfxs + (48) show + (]Din) + [8.4872 8.32365 3.0327 6.0654 ] pdfxs + (a) show + (k) + [5.14904 ] pdfxs + (a) show + (r) + [6.8072 ] pdfxs + (D) show + (hurj) + [5.74904 6.0654 4.27631 3.32724 ] pdfxs + (at) show + (i,Sum) + [3.0327 5.78177 6.05449 6.0654 9.08711 ] pdfxs + (a) show + (ntKowshik,) + [5.75995 6.77457 8.4872 5.14905 7.8763 4.30902 6.05449 3.0327 5.75995 5.78177 ] pdfxs + (V) show + (ikr) + [3.02179 5.75995 4.27631 ] pdfxs + (a) show + (m) + [11.618 ] pdfxs + (A) show + (dve,) + [6.0654 5.4545 4.8436 5.78177 ] pdfxs + (a) show + (ndChris) + [6.0654 8.58538 7.88721 6.05449 4.27631 3.0327 6.829 ] pdfxs + (Latt) show + (ner.Mem) + [6.05449 4.85451 4.2654 6.0654 10.0036 4.8436 9.09802 ] pdfxs + (o) show + (rys) + [4.2654 8.29084 4.30902 ] pdfxs + (a) show + (fetywi) + [3.32724 4.85451 3.93823 8.27993 7.88721 3.02179 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (o) show + (u) + [6.05449 ] pdfxs + (t) show + 0 -410.092 m + (run) + [4.27631 6.05449 5.75995 ] pdfxs + (t) show + (imechecks) + [3.0327 9.08711 8.87993 4.53815 6.0654 4.8436 4.54905 5.75995 8.32353 ] pdfxs + (o) show + (r) + [8.30173 ] pdfxs + (ga) show + (rb) + [4.27631 6.0654 ] pdfxs + (ag) show + (ec) + [8.86902 4.85451 ] pdfxs + (o) show + (llec) + [3.0327 3.02179 4.85451 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n.In) + [6.05449 9.03265 3.94897 6.0654 ] pdfxs + 198.111 -410.092 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.71625 ] pdfxs + (o) show + (ft) + [7.61455 3.62179 ] pdfxs + (h) show + (eACMSIGPLANC) + [9.28363 7.83262 7.79997 14.0508 6.13082 4.19998 8.44359 7.39623 6.85084 8.10534 12.3708 + 7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 9.28363 ] pdfxs + (o) show + (n) show + 0 -432.015 m + (L) + [6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (age) show + (,C) + [6.53456 7.79997 ] pdfxs + (o) show + (m) + [8.92348 ] pdfxs + (p) show + (il) + [3.34914 2.78176 ] pdfxs + (e) show + (r,) + [4.60356 6.52365 ] pdfxs + (a) show + (ndTo) + [6.14173 8.57449 6.97089 5.01816 ] pdfxs + (o) show + (lSu) + [5.79264 6.13082 5.85816 ] pdfxs + (p) show + (p) + [5.01816 ] pdfxs + (o) show + (rtforEmbe) + [4.59266 6.63268 3.33823 5.58542 7.59263 7.40714 8.92348 4.45094 4.46185 ] pdfxs + (d) show + (dedSy) + [5.58542 4.45094 8.5854 6.13082 5.29078 ] pdfxs + (s) show + (t) + [3.6327 ] pdfxs + (e) show + (ms) + [8.91258 7.46172 ] pdfxs + (\() show + (LCTES) + [6.83993 7.81088 7.81088 7.39623 6.13082 ] pdfxs + (\)) show + 335.965 -432.015 m + /N614 10.909 Tf + (,S) + [5.68359 6.0654 ] pdfxs + (a) show + (n) + [8.71629 ] pdfxs + (D) show + (ie) + [3.0327 4.8436 ] pdfxs + (go) show + (,) + [5.87995 ] pdfxs + (J) show + (un) + [6.0654 8.71629 ] pdfxs + (2003) show + (.) show + -22.424 -461.419 m + ([) + [3.0327 ] pdfxs + (49) show + (]Din) + [8.4872 8.32365 3.0327 6.0654 ] pdfxs + (a) show + (k) + [5.14904 ] pdfxs + (a) show + (r) + [6.8072 ] pdfxs + (D) show + (hurj) + [5.74904 6.0654 4.27631 3.32724 ] pdfxs + (at) show + (i,Sum) + [3.0327 5.78177 6.05449 6.0654 9.08711 ] pdfxs + (a) show + (ntKowshik,) + [5.75995 6.77457 8.4872 5.14905 7.8763 4.30902 6.05449 3.0327 5.75995 5.78177 ] pdfxs + (V) show + (ikr) + [3.02179 5.75995 4.27631 ] pdfxs + (a) show + (m) + [11.618 ] pdfxs + (A) show + (dve,) + [6.0654 5.4545 4.8436 5.78177 ] pdfxs + (a) show + (ndChris) + [6.0654 8.58538 7.88721 6.05449 4.27631 3.0327 6.829 ] pdfxs + (Latt) show + (ner.Mem) + [6.05449 4.85451 4.2654 6.0654 10.0036 4.8436 9.09802 ] pdfxs + (o) show + (rys) + [4.2654 8.29084 4.30902 ] pdfxs + (a) show + (fetywi) + [3.32724 4.85451 3.93823 8.27993 7.88721 3.02179 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (o) show + (u) + [6.05449 ] pdfxs + (t) show + 1.52588e-05 -483.342 m + (ga) show + (rb) + [4.27631 6.05449 ] pdfxs + (ag) show + (ec) + [7.46176 4.8436 ] pdfxs + (o) show + (llec) + [3.0327 3.0327 4.8436 4.85451 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (nf) + [8.67265 3.33815 ] pdfxs + (o) show + (rembedded) + [6.87265 4.85451 8.78166 6.37085 4.8436 6.0654 6.05449 4.85451 8.66174 ] pdfxs + (a) show + (pplic) + [6.0654 6.05449 3.0327 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns.) + [6.0654 4.29811 3.0327 ] pdfxs + 216.441 -483.342 m + /N634 10.909 Tf + (Tran) + [6.97089 4.0363 5.58542 6.13082 ] pdfxs + (sac) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (ns) + [6.13082 7.41808 ] pdfxs + (o) show + (nEmbe) + [9.08716 7.40714 8.91258 4.46185 4.46185 ] pdfxs + (dd) show + (edC) + [4.46185 8.53085 7.81088 ] pdfxs + (o) show + (m) + [8.92348 ] pdfxs + (p) show + (utingSyst) + [5.85816 3.62179 3.34914 6.13082 7.97455 6.13082 5.30169 4.45083 3.6327 ] pdfxs + (e) show + (m) + [8.91258 ] pdfxs + (s) show + 437.091 -483.342 m + /N614 10.909 Tf + (,) show + 0 -505.264 m + (4\(1\)) show + (:) + [3.0327 ] pdfxs + (73{111) show + (,Febru) + [6.6654 6.20722 4.85451 6.05449 4.27631 6.05449 ] pdfxs + (a) show + (ry) + [4.27631 9.39264 ] pdfxs + (2005) show + (.) show + -22.424 -534.669 m + ([) + [3.0327 ] pdfxs + (50) show + (]Kem) + [8.4872 8.47629 4.85451 9.08711 ] pdfxs + (a) show + (lEbci) + [8.43265 7.42902 6.35994 4.8436 3.0327 ] pdfxs + (og) show + (lu) + [3.0327 11.4654 ] pdfxs + (a) show + (ndErik) + [6.05449 11.4654 7.42902 4.2654 3.0327 11.1599 ] pdfxs + (R) show + (.) + [8.43265 ] pdfxs + (A) show + (l) + [3.0327 ] pdfxs + (t) show + (m) + [9.08711 ] pdfxs + (a) show + (n.D) + [6.0654 13.1235 8.0291 ] pdfxs + (A) show + (IS) + [3.94897 6.05449 ] pdfxs + (Y) show + (:) + [8.43265 ] pdfxs + (D) show + (yn) + [5.75995 6.05449 ] pdfxs + (a) show + (micc) + [9.09802 3.02179 10.2545 4.85451 ] pdfxs + (o) show + (mpil) + [9.08711 6.05449 3.0327 3.0327 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nf) + [11.4544 3.33815 ] pdfxs + (o) show + (r) + [9.67626 ] pdfxs + (100) show + (%) + [14.4871 ] pdfxs + (a) show + (rchi) + [4.27631 4.54905 6.05449 3.0327 ] pdfxs + (t) show + (ec-) + [4.85451 4.8436 3.63261 ] pdfxs + 0 -556.591 m + (t) show + (ur) + [6.05449 4.27631 ] pdfxs + (a) show + (lc) + [6.0654 4.85451 ] pdfxs + (o) show + (mp) + [9.08711 6.05449 ] pdfxs + (at) show + (ibility.) + [3.0327 6.0654 3.02179 3.0327 3.0327 3.93823 4.8545 6.88358 ] pdfxs + (I) show + (n) show + 108.137 -556.591 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [7.8108 ] pdfxs + (o) show + (ft) + [6.68729 3.6327 ] pdfxs + (h) show + (eInt) + [8.36727 4.19998 6.13082 3.6327 ] pdfxs + (e) show + (rn) + [4.59266 6.14173 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (a) show + (lC) + [6.14173 7.79997 ] pdfxs + (o) show + (nf) + [6.14173 3.33823 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 8.36727 ] pdfxs + (o) show + (nC) + [9.47988 7.81088 ] pdfxs + (o) show + (m) + [8.92348 ] pdfxs + (p) show + (ut) + [5.85816 3.62179 ] pdfxs + (e) show + (rAr) + [7.94172 7.83262 4.04721 ] pdfxs + (ch) show + (ite) + [3.34914 3.62179 4.46185 ] pdfxs + (c) show + (tur) + [3.62179 5.85816 4.0363 ] pdfxs + (e) show + 0 -578.514 m + (\() show + (ISCA) + [4.19998 6.14173 7.79997 8.11625 ] pdfxs + (\)) show + 35.176 -578.514 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (26{37) show + (,) + [6.6654 ] pdfxs + (1997) show + (.) show + -22.424 -607.918 m + ([) + [3.0327 ] pdfxs + (51) show + (]M) + [8.4872 9.99272 ] pdfxs + (a) show + (ry) + [4.27631 5.4545 ] pdfxs + (a) show + (mEm) + [13.4943 7.41812 9.09802 ] pdfxs + (a) show + (mi,) + [9.08711 3.0327 7.62539 ] pdfxs + (Ra) show + (keshGhiy) + [5.4545 4.8436 4.30902 10.4617 8.55269 6.0654 3.0327 5.4545 ] pdfxs + (a) show + (,) + [7.61448 ] pdfxs + (a) show + (nd) + [6.0654 10.4617 ] pdfxs + (La) show + (urie) + [6.0654 4.2654 3.0327 9.25083 ] pdfxs + (J) show + (.) + [7.42903 ] pdfxs + (H) show + (endren.C) + [4.85451 6.05449 6.0654 4.2654 4.85451 6.05449 10.1563 7.8763 ] pdfxs + (o) show + (ntex) + [5.75995 4.23277 4.85451 5.75995 ] pdfxs + (t) show + (-sensi) + [3.63261 4.29811 4.85451 6.05449 4.30902 3.0327 ] pdfxs + (t) show + (ivein) + [3.02179 5.4545 9.25083 3.0327 5.75995 ] pdfxs + (t) show + (erprocedur) + [4.8436 4.27631 6.05449 4.27631 5.75995 4.8436 4.85451 6.05449 6.0654 4.27631 ] pdfxs + (a) show + (l) show + 0 -629.841 m + (p) + [6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (s-to) + [4.29811 3.64352 4.23277 8.71629 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisin) + [3.0327 5.75995 4.29811 3.0327 7.5599 3.0327 9.32719 ] pdfxs + (t) show + (hepresence) + [6.05449 8.1163 6.05449 4.27631 4.8436 4.30902 4.8436 6.0654 4.8436 8.1163 ] pdfxs + (o) show + (ffunc) + [6.58903 3.33815 6.05449 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (np) + [9.32719 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (ers.) + [4.85451 4.27631 4.29811 7.25448 ] pdfxs + (I) show + (n) show + 273.716 -629.841 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.01807 ] pdfxs + (o) show + (ft) + [6.90547 3.62179 ] pdfxs + (h) show + (eACMSIGPLAN) + [8.57454 7.83262 7.79997 13.3417 6.14173 4.19998 8.44359 7.39623 6.83993 8.11625 8.10534 + ] pdfxs + 197.939 -657.201 m + /N614 10.909 Tf + (201) show + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (16) 17 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 0.000000 0.000000 translate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + 1 0 0 1 77.455 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + ([) + [3.0327 ] pdfxs + (35) show + (]KeithCo) + [8.4872 8.47629 4.85451 3.0327 4.23277 11.509 7.88721 5.74904 ] pdfxs + (o) show + (per) + [6.37085 4.8436 9.7199 ] pdfxs + (a) show + (ndKenKennedy.) + [6.0654 11.4981 8.4872 4.85451 11.509 8.47629 4.85451 6.05449 6.0654 4.8436 6.0654 + 4.84359 13.2653 ] pdfxs + (I) show + (n) + [5.75995 ] pdfxs + (t) show + (erprocedur) + [4.8436 4.27631 6.0654 4.2654 5.75995 4.8436 4.85451 6.05449 6.0654 4.27631 ] pdfxs + (a) show + (lside-e\013ect) + [8.47629 4.29811 3.0327 6.0654 4.8436 3.63261 4.85451 6.35986 4.85451 4.8436 9.68727 + ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisinline) + [3.0327 5.74904 4.30902 3.0327 9.7417 3.0327 11.509 3.0327 3.0327 6.05449 4.85451 + ] pdfxs + (a) show + (r) + [9.70899 ] pdfxs + (t) show + (ime.) + [3.0327 9.08711 4.85451 13.2653 ] pdfxs + (I) show + (n) show + 22.424 -21.922 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.93443 ] pdfxs + (o) show + (ft) + [7.82182 3.62179 ] pdfxs + (h) show + (eACMSIGPLANC) + [9.50181 7.83262 7.79997 14.2581 6.13082 4.21089 8.44359 7.39623 6.83993 8.10534 12.5889 + 7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 9.50181 ] pdfxs + (o) show + (nPro) + [10.6035 7.40714 4.0363 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmingL) + [8.92348 8.92348 3.33823 6.13082 9.50181 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ag) show + (e) + [9.50181 ] pdfxs + (De) show + (si) + [4.45083 3.34914 ] pdfxs + (g) show + (n) + [10.6144 ] pdfxs + (a) show + (ndIm-) + [6.13082 10.0581 4.19998 8.92348 3.90544 ] pdfxs + 22.424 -43.845 m + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (m) + [8.91258 ] pdfxs + (e) show + (nt) + [6.14173 3.62179 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [10.0362 ] pdfxs + (\() show + (PL) + [7.39623 6.83993 ] pdfxs + (D) show + (I) + [4.21089 ] pdfxs + (\)) show + 123.266 -43.845 m + /N614 10.909 Tf + (,A) + [6.6654 7.8763 ] pdfxs + (t) show + (l) + [3.0327 ] pdfxs + (a) show + (n) + [5.75995 ] pdfxs + (ta) show + (,G) + [6.6654 8.5636 ] pdfxs + (A) show + (,) + [6.6654 ] pdfxs + (J) show + (une) + [6.05449 6.0654 8.47629 ] pdfxs + (1988) show + (.) show + 0 -74.734 m + ([) + [3.0327 ] pdfxs + (36) show + (]Keith) + [8.4872 8.47629 4.85451 3.0327 4.23277 10.6254 ] pdfxs + (D) show + (.Co) + [7.59266 7.8763 5.75995 ] pdfxs + (o) show + (per.) + [6.35994 4.85451 4.2654 10.6254 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lyzing) + [3.02179 5.75995 4.85451 3.02179 6.0654 10.0145 ] pdfxs + (a) show + (li) + [3.0327 3.0327 ] pdfxs + (a) show + (ses) + [4.29811 4.85451 8.85807 ] pdfxs + (o) show + (freferencef) + [7.89811 4.27631 4.8436 3.33815 4.8436 4.27631 4.8436 6.0654 4.8436 9.41447 3.32724 + ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (lp) + [7.59266 6.0654 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (a) show + (me) + [9.09802 4.8436 ] pdfxs + (t) show + (ers.In) + [4.85451 4.2654 4.30902 10.6145 3.94897 6.0654 ] pdfxs + 375.523 -74.734 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.20716 ] pdfxs + (o) show + (ft) + [8.10546 3.62179 ] pdfxs + (he) show + 22.424 -96.656 m + (ACMSIGACT-SIGPLANSymp) + [7.83262 7.79997 13.6363 6.13082 4.21089 8.44359 7.82171 7.81088 7.81088 3.89453 6.14173 + 4.19998 8.44359 7.39623 6.83993 8.11625 11.9562 6.13082 5.30169 8.92348 5.01816 ] pdfxs + (os) show + (ium) + [3.33823 5.85816 12.7744 ] pdfxs + (o) show + (nPrin) + [9.9926 7.39623 4.60356 3.33823 6.14173 ] pdfxs + (c) show + (i) + [3.33823 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (s) + [8.31262 ] pdfxs + (o) show + (fPro) + [7.20001 7.40714 4.0363 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmingL) + [8.92348 8.91258 3.34914 6.13082 8.86909 6.29448 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ages) show + 404.399 -96.656 m + /N614 10.909 Tf + (,p) + [6.62176 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.88717 ] pdfxs + (281{) show + 22.424 -118.579 m + (290) show + (,) + [6.6654 ] pdfxs + (N) show + (ewY) + [4.85451 11.509 7.2763 ] pdfxs + (o) show + (rk,) + [4.2654 5.75995 6.6654 ] pdfxs + (NY) show + (,) + [6.6763 ] pdfxs + (U) show + (S) + [6.05449 ] pdfxs + (A) show + (,) + [6.6654 ] pdfxs + (1985) show + (.) show + 1.52588e-05 -149.468 m + ([) + [3.0327 ] pdfxs + (37) show + (]Keith) + [8.4872 8.47629 4.85451 3.0327 4.23277 10.6581 ] pdfxs + (D) show + (.Co) + [7.61448 7.8763 5.75995 ] pdfxs + (o) show + (per) + [6.37085 4.8436 8.85809 ] pdfxs + (a) show + (nd) + [6.0654 10.6472 ] pdfxs + (Jo) show + (hn) + [6.0654 10.6472 ] pdfxs + (L) show + (u.) + [6.0654 10.7017 ] pdfxs + (R) show + (e) + [4.85451 ] pdfxs + (g) show + (is) + [3.0327 4.29811 ] pdfxs + (t) show + (erpr) + [4.8436 8.869 6.05449 4.27631 ] pdfxs + (o) show + (m) + [9.08711 ] pdfxs + (ot) show + (i) + [3.0327 ] pdfxs + (o) show + (ninCpr) + [10.6581 3.02179 10.6581 12.469 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (ms.) + [9.09802 4.29811 10.7126 ] pdfxs + (I) show + (n) show + 375.47 -149.468 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.23988 ] pdfxs + (o) show + (ft) + [8.12728 3.62179 ] pdfxs + (he) show + 22.424 -171.39 m + (ACMSIGPLANConf) + [7.83262 7.79997 13.1999 6.13082 4.19998 8.44359 7.39623 6.85084 8.10534 11.5199 7.79997 + 5.58542 6.13082 3.33823 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 8.43273 ] pdfxs + (o) show + (nPro) + [9.54533 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.0363 ] pdfxs + (a) show + (mmingLan) + [8.92348 8.92348 3.34914 6.13082 8.42182 6.28357 5.58542 6.13082 ] pdfxs + (g) show + (ua) + [5.84725 5.58542 ] pdfxs + (g) show + (e) + [8.42182 ] pdfxs + (Des) show + (i) + [3.34914 ] pdfxs + (g) show + (n) + [9.54533 ] pdfxs + (a) show + (ndIm) + [6.13082 8.98903 4.19998 8.92348 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [9.54533 ] pdfxs + (\() show + (PL) + [7.39623 6.83993 ] pdfxs + (D) show + (I) + [4.21089 ] pdfxs + (\)) show + 459.515 -171.39 m + /N614 10.909 Tf + (,) show + 22.424 -193.313 m + (p) + [6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (308{319) show + (,) + [6.6654 ] pdfxs + (1997) show + (.) show + -1.52588e-05 -224.202 m + ([) + [3.0327 ] pdfxs + (38) show + (]Fr) + [8.4872 6.20722 4.27631 ] pdfxs + (a) show + (nciscoC) + [6.05449 4.85451 3.02179 4.30902 4.8436 10.3963 7.8763 ] pdfxs + (o) show + (rber) + [4.27631 6.35994 4.85451 4.2654 ] pdfxs + (a) show + (,) + [8.30175 ] pdfxs + (Ra) show + (f) + [3.32724 ] pdfxs + (a) show + (el) + [4.85451 7.96357 ] pdfxs + (A) show + (senj) + [4.30902 4.8436 6.0654 3.32724 ] pdfxs + (o) show + (,) + [8.30175 ] pdfxs + (a) show + (ndEmilio) + [6.05449 11.0072 7.41812 9.09802 3.02179 3.0327 3.0327 10.3963 ] pdfxs + (L) show + (.) + [7.96357 ] pdfxs + (Za) show + (p) + [6.0654 ] pdfxs + (ata) show + (.) + [11.749 ] pdfxs + (N) show + (ewsh) + [4.8436 12.8181 4.30902 6.05449 ] pdfxs + (a) show + (pe) + [6.35994 9.79628 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 9.23989 ] pdfxs + (t) show + (echniques) + [4.8436 4.54905 6.0654 6.05449 3.0327 5.75995 6.05449 4.85451 4.29811 ] pdfxs + 22.424 -246.124 m + (f) + [3.33815 ] pdfxs + (o) show + (r) + [8.57445 ] pdfxs + (a) show + (u) + [6.0654 ] pdfxs + (to) show + (m) + [9.08711 ] pdfxs + (at) show + (icp) + [3.0327 9.15265 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (a) show + (lleliz) + [3.0327 3.0327 4.8436 3.0327 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [10.3635 ] pdfxs + (o) show + (fccodes.) + [7.6472 9.15265 4.8436 5.75995 6.0654 4.8436 4.30902 9.86173 ] pdfxs + (I) show + (n) show + 235.834 -246.124 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.97807 ] pdfxs + (o) show + (ft) + [7.86546 3.62179 ] pdfxs + (h) show + (eInt) + [9.54544 4.19998 6.14173 3.62179 ] pdfxs + (e) show + (rn) + [4.59266 6.14173 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (a) show + (lC) + [7.30899 7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 9.54544 ] pdfxs + (o) show + (n) show + 22.424 -268.047 m + (Sup) + [6.13082 5.85816 5.01816 ] pdfxs + (e) show + (rc) + [4.0363 4.46185 ] pdfxs + (o) show + (m) + [8.92348 ] pdfxs + (p) show + (uting) + [5.85816 3.62179 3.34914 6.13082 8.92363 ] pdfxs + (\() show + (ICS) + [4.19998 7.81088 6.13082 ] pdfxs + (\)) show + 127.969 -268.047 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (220{227) show + (,) + [6.6654 ] pdfxs + (1999) show + (.) show + -1.52588e-05 -298.936 m + ([) + [3.0327 ] pdfxs + (39) show + (]) + [8.4872 ] pdfxs + (Ro) show + (bertC) + [6.35994 4.8436 4.27631 7.93092 7.8763 ] pdfxs + (o) show + (urts.) + [6.0654 4.27631 4.23277 4.30902 8.01811 ] pdfxs + (I) show + (mprovingloc) + [9.09802 6.05449 4.27631 5.14905 5.75995 3.0327 6.05449 9.14174 3.0327 5.75995 4.8436 + ] pdfxs + (a) show + (lity) + [3.0327 3.0327 3.93823 9.44719 ] pdfxs + (o) show + (freferenceina) + [7.01448 4.27631 4.8436 3.33815 4.8436 4.27631 4.85451 6.05449 4.85451 8.53084 3.0327 + 9.75264 9.14174 ] pdfxs + (ga) show + (rb) + [4.2654 6.0654 ] pdfxs + (ag) show + (e-c) + [4.8436 3.64352 4.8436 ] pdfxs + (o) show + (llectingmem) + [3.0327 3.0327 4.8436 4.85451 4.23277 3.0327 6.0654 9.14174 9.08711 4.85451 9.08711 + ] pdfxs + (o) show + (rym) + [4.27631 9.43628 9.09802 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (ag) show + (emen) + [4.85451 9.08711 4.85451 5.74904 ] pdfxs + (t) show + 22.424 -320.858 m + (sys) + [4.29811 5.75995 4.30902 ] pdfxs + (t) show + (em.) + [4.8436 9.08711 3.0327 ] pdfxs + 62.836 -320.858 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.35625 ] pdfxs + (o) show + (ft) + [7.25456 3.62179 ] pdfxs + (h) show + (eCommunic) + [8.92363 7.79997 5.58542 8.91258 8.92348 5.85816 6.13082 3.34914 4.46185 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (ns) + [6.13082 8.36716 ] pdfxs + (o) show + (ft) + [7.24365 3.62179 ] pdfxs + (h) show + (eACM) + [8.92363 7.83262 7.81088 9.7854 ] pdfxs + 292.059 -320.858 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (31\(9\)) show + (:) + [3.0327 ] pdfxs + (1128{1138) show + (,) + [6.6654 ] pdfxs + (1988) show + (.) show + -3.05176e-05 -351.747 m + ([) + [3.0327 ] pdfxs + (40) show + (]) + [8.4872 ] pdfxs + (Ro) show + (nCytr) + [10.0145 7.8763 5.75995 4.23277 4.27631 ] pdfxs + (o) show + (n,) + [6.0654 7.05812 ] pdfxs + (J) show + (e) + [4.8436 ] pdfxs + (a) show + (nneFerr) + [6.0654 6.05449 8.80356 6.21813 4.8436 4.27631 4.2654 ] pdfxs + (a) show + (n) + [5.75995 ] pdfxs + (t) show + (e,B) + [4.85451 7.05812 7.72349 ] pdfxs + (a) show + (rryK.) + [4.27631 4.27631 9.70901 8.47629 6.99267 ] pdfxs + (Ro) show + (sen,M) + [4.29811 4.85451 6.05449 7.05812 10.0036 ] pdfxs + (a) show + (rk) + [4.27631 9.70901 ] pdfxs + (N) show + (.We) + [6.98176 10.2981 4.85451 ] pdfxs + (g) show + (m) + [9.08711 ] pdfxs + (a) show + (n,) + [6.0654 7.05812 ] pdfxs + (a) show + (ndF.Kenne) + [6.0654 10.0145 7.11266 6.98176 8.4872 4.85451 6.05449 6.0654 4.8436 ] pdfxs + (t) show + (h) + [10.0145 ] pdfxs + (Za) show + (deck.) + [6.0654 4.8436 4.54905 5.75995 3.0327 ] pdfxs + 22.424 -373.67 m + (E\016cien) + [7.42902 9.08711 4.8436 3.0327 4.85451 5.74904 ] pdfxs + (t) show + (lyc) + [3.0327 9.10901 4.8436 ] pdfxs + (o) show + (mpu) + [9.09802 6.05449 6.0654 ] pdfxs + (t) show + (ings) + [3.02179 6.0654 8.80356 4.29811 ] pdfxs + (tat) show + (icsin) + [3.0327 8.19266 4.30902 3.0327 6.05449 ] pdfxs + (g) show + (le) + [3.0327 8.19266 ] pdfxs + (a) show + (ssi) + [4.30902 4.29811 3.0327 ] pdfxs + (g) show + (nmentf) + [6.0654 9.08711 4.8436 5.75995 7.59274 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 12.4471 ] pdfxs + (a) show + (nd) + [6.05449 9.41446 ] pdfxs + (t) show + (hec) + [6.05449 8.19266 4.85451 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (o) show + (ldependence) + [6.38176 6.0654 4.8436 6.35994 4.85451 6.05449 6.0654 4.8436 6.0654 4.8436 8.20357 + ] pdfxs + (g) show + (r) + [4.2654 ] pdfxs + (a) show + (ph.) + [6.0654 6.0654 3.0327 ] pdfxs + 437.127 -373.67 m + /N634 10.909 Tf + (ACM) + [7.83262 7.79997 9.7854 ] pdfxs + 22.424 -395.592 m + (Tran) + [6.97089 4.0363 5.58542 6.13082 ] pdfxs + (sac) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (ns) + [6.13082 8.00717 ] pdfxs + (o) show + (nPro) + [9.68715 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmingL) + [8.91258 8.92348 3.34914 6.13082 8.56364 6.29448 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (age) show + (s) + [8.00717 ] pdfxs + (a) show + (ndSy) + [6.13082 9.13085 6.13082 5.30169 ] pdfxs + (s) show + (t) + [3.62179 ] pdfxs + (e) show + (ms) + [8.92348 8.00717 ] pdfxs + (\() show + (TOPLAS) + [7.79997 8.36718 7.39623 6.85084 8.10534 6.13082 ] pdfxs + (\)) show + 337.498 -395.592 m + /N614 10.909 Tf + (,p) + [6.28358 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.5599 ] pdfxs + (13) show + (\() + [4.23277 ] pdfxs + (4\)) show + (:) + [3.0327 ] pdfxs + (451{490) show + (,Oc-) + [6.35994 8.4872 4.8436 3.63261 ] pdfxs + 22.424 -417.515 m + (to) show + (ber) + [6.35994 4.85451 7.909 ] pdfxs + (1991) show + (.) show + -4.57764e-05 -448.404 m + ([) + [3.0327 ] pdfxs + (41) show + (]M) + [8.4872 9.99272 ] pdfxs + (a) show + (nuvir) + [5.75995 6.0654 5.74904 3.0327 7.28719 ] pdfxs + (Da) show + (s.) + [4.29811 6.85085 ] pdfxs + (U) show + (ni\fc) + [6.0654 3.02179 6.0654 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n-b) + [6.0654 3.63261 6.05449 ] pdfxs + (a) show + (sedp) + [4.30902 4.8436 9.07628 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er) + [4.8436 7.28719 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysiswi) + [3.0327 5.75995 4.29811 3.0327 7.31991 7.8763 3.0327 ] pdfxs + (t) show + (hdirec) + [9.06537 6.0654 3.0327 4.2654 4.85451 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [6.05449 ] pdfxs + (a) show + (l) + [6.04358 ] pdfxs + (a) show + (ssi) + [4.30902 4.29811 3.0327 ] pdfxs + (g) show + (nmen) + [6.05449 9.09802 4.8436 5.75995 ] pdfxs + (t) show + (s.) + [4.29811 6.85085 ] pdfxs + (I) show + (n) show + 408.17 -448.404 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (gs) show + 22.424 -470.326 m + (o) show + (ftheACMSIGPLANC) + [7.96364 3.62179 5.58542 9.63272 7.83262 7.79997 14.3999 6.14173 4.19998 8.44359 7.39623 + 6.83993 8.11625 12.7198 7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 9.63272 ] pdfxs + (o) show + (nPro) + [10.7562 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.0363 ] pdfxs + (a) show + (mmingLan) + [8.92348 8.92348 3.34914 6.13082 9.63272 6.28357 5.58542 6.13082 ] pdfxs + (g) show + (ua) + [5.84725 5.58542 ] pdfxs + (g) show + (e) + [9.63272 ] pdfxs + (Des) show + (i) + [3.34914 ] pdfxs + (g) show + (n) + [10.7453 ] pdfxs + (a) show + (ndIm) + [6.14173 10.189 4.21089 8.92348 ] pdfxs + (p) show + (l) + [2.78176 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (ntation) + [6.13082 3.62179 5.58542 3.62179 3.33823 5.58542 6.13082 ] pdfxs + 22.424 -492.249 m + (\() show + (PL) + [7.39623 6.83993 ] pdfxs + (D) show + (I) + [4.21089 ] pdfxs + (\)) show + 58.0299 -492.249 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (35{46) show + (,) + [6.6654 ] pdfxs + (2000) show + (.) show + -6.10352e-05 -523.138 m + ([) + [3.0327 ] pdfxs + (42) show + (]M) + [8.4872 9.99272 ] pdfxs + (a) show + (nuvir) + [5.75995 6.0654 5.74904 3.0327 8.84718 ] pdfxs + (Da) show + (s,Ben) + [4.29811 7.83266 7.72349 4.85451 10.6254 ] pdfxs + (L) show + (ibli) + [3.0327 6.0654 3.02179 3.0327 ] pdfxs + (t) show + (,M) + [7.83266 10.0036 ] pdfxs + (a) show + (nuelF) + [5.74904 6.0654 4.8436 7.60357 7.12357 0 ] pdfxs + (a) show + (hndrich,) + [6.05449 6.0654 6.0654 4.2654 3.0327 4.54905 6.05449 7.83266 ] pdfxs + (a) show + (nd) + [6.0654 10.6254 ] pdfxs + (Ja) show + (k) + [5.4545 ] pdfxs + (o) show + (bReh) + [10.6254 8.03985 4.8436 6.0654 ] pdfxs + (o) show + (f.Es) + [3.32724 10.6472 7.42902 4.29811 ] pdfxs + (t) show + (im) + [3.0327 9.08711 ] pdfxs + (at) show + (ing) + [3.0327 6.05449 10.0254 ] pdfxs + (t) show + (heimp) + [6.0654 9.41447 3.0327 9.08711 6.0654 ] pdfxs + (a) show + (ct) + [4.8436 8.81455 ] pdfxs + (o) show + (f) show + 22.4239 -545.06 m + (sc) + [4.29811 4.85451 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (a) show + (blep) + [6.05449 3.0327 8.44357 6.37085 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (er) + [4.85451 7.86537 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.02179 5.75995 4.30902 3.02179 7.90899 ] pdfxs + (o) show + (n) + [9.65446 ] pdfxs + (o) show + (p) + [6.05449 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n.) + [6.0654 7.79993 ] pdfxs + (I) show + (n) show + 238.125 -545.06 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.32353 ] pdfxs + (o) show + (ftheInt) + [7.21092 3.62179 5.58542 8.88 4.21089 6.13082 3.62179 ] pdfxs + (e) show + (rn) + [4.60356 6.13082 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (a) show + (lSymp) + [6.65445 6.14173 5.29078 8.92348 5.01816 ] pdfxs + (os) show + (ium) + [3.34914 5.84725 12.7962 ] pdfxs + (o) show + (n) show + 22.4239 -566.983 m + (StaticAn) + [6.13082 3.62179 5.58542 3.62179 3.33823 8.92363 7.83262 6.13082 ] pdfxs + (a) show + (ly) + [2.79267 5.29078 ] pdfxs + (s) show + (is) + [3.34914 8.36716 ] pdfxs + (\() show + (SAS) + [6.13082 8.10534 6.13082 ] pdfxs + (\)) show + 126.738 -566.983 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (260{278) show + (.Sprin) + [6.6654 6.0654 6.05449 4.27631 3.0327 6.05449 ] pdfxs + (g) show + (er-Verl) + [4.85451 4.2654 3.64352 7.26539 4.85451 4.2654 3.0327 ] pdfxs + (ag) show + (,) + [6.6654 ] pdfxs + (2001) show + (.) show + -6.10352e-05 -597.872 m + ([) + [3.0327 ] pdfxs + (43) show + (]J) + [8.4872 5.5964 ] pdfxs + (a) show + (mesC.) + [9.09802 4.8436 9.21807 7.8763 7.95266 ] pdfxs + (D) show + (ehner) + [4.8436 6.0654 6.05449 4.85451 4.2654 ] pdfxs + (t) show + (,Bri) + [8.26902 7.72349 4.27631 3.0327 ] pdfxs + (a) show + (nK.Gr) + [10.9744 8.4872 7.94175 8.5636 4.2654 ] pdfxs + (a) show + (n) + [5.75995 ] pdfxs + (t) show + (,J) + [8.26902 5.5964 ] pdfxs + (o) show + (hnP.B) + [6.0654 10.9744 6.51267 7.95266 7.72349 ] pdfxs + (a) show + (nnin) + [6.0654 6.05449 3.0327 6.05449 ] pdfxs + (g) show + (,) + [8.26902 ] pdfxs + (R) show + (ich) + [3.0327 4.54905 6.05449 ] pdfxs + (a) show + (rd) + [4.27631 10.9744 ] pdfxs + (Jo) show + (hns) + [6.05449 6.0654 4.29811 ] pdfxs + (o) show + (n,Th) + [6.0654 8.26902 7.8763 6.05449 ] pdfxs + (o) show + (m) + [9.09802 ] pdfxs + (a) show + (sKis) + [9.21807 8.4872 3.02179 4.30902 ] pdfxs + (t) show + (ler,) + [3.02179 4.85451 4.27631 3.0327 ] pdfxs + 22.4239 -619.794 m + (A) show + (lex) + [3.0327 4.8436 5.75995 ] pdfxs + (a) show + (nderKl) + [6.0654 6.05449 4.85451 9.70899 8.4872 3.0327 ] pdfxs + (a) show + (iber,) + [3.02179 6.37085 4.8436 4.27631 8.92356 ] pdfxs + (a) show + (nd) + [6.0654 11.4981 ] pdfxs + (J) show + (imM) + [3.0327 14.5307 10.0036 ] pdfxs + (a) show + (t) + [4.23277 ] pdfxs + (t) show + (s) + [4.30902 ] pdfxs + (o) show + (n.TheTr) + [6.05449 13.2544 7.8763 6.0654 10.2872 7.8763 4.27631 ] pdfxs + (a) show + (nsmetaCodeM) + [6.05449 4.30902 9.08711 4.85451 4.23277 10.8981 7.88721 5.74904 6.0654 10.2872 10.0036 + ] pdfxs + (o) show + (rphingS) + [4.27631 6.05449 6.0654 3.02179 6.0654 10.8981 6.05449 ] pdfxs + (o) show + (ftw) + [3.33815 3.93823 7.58175 ] pdfxs + (a) show + (re:) + [4.2654 4.85451 11.4872 ] pdfxs + (U) show + (sin) + [4.29811 3.0327 6.0654 ] pdfxs + (g) show + 220.363 -657.201 m + (200) show + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 99.273 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [7.32002 ] pdfxs + (a) show + (llowsincremen) + [3.0327 3.02179 5.15996 7.8763 7.37445 3.02179 6.0654 4.8436 4.27631 4.85451 9.08711 + 4.8436 5.75995 ] pdfxs + (ta) show + (ldiscovery) + [6.09813 6.0654 3.02179 4.30902 4.8436 5.15996 5.4545 4.8436 4.27631 8.82538 ] pdfxs + (o) show + (fSCCsin) + [6.40358 6.05449 7.88721 7.8763 7.37445 3.0327 9.11992 ] pdfxs + (t) show + (hec) + [6.0654 7.91993 4.8436 ] pdfxs + (a) show + (ll) + [3.0327 6.09813 ] pdfxs + (g) show + (r) + [4.27631 ] pdfxs + (a) show + (ph,evenwhened) + [6.05449 6.0654 6.21813 4.8436 5.4545 4.8436 9.13083 7.88721 6.05449 4.85451 9.13083 + 4.8436 6.0654 ] pdfxs + (g) show + (es) + [4.8436 7.37445 ] pdfxs + (a) show + (redyn) + [4.27631 7.90903 6.0654 5.75995 6.05449 ] pdfxs + (a) show + (mic) + [9.09802 3.02179 4.85451 ] pdfxs + (a) show + (lly) + [3.0327 3.0327 5.75995 ] pdfxs + 0 -21.922 m + (discovered) + [6.0654 3.02179 4.30902 4.8436 5.14905 5.4545 4.85451 4.27631 4.8436 9.6981 ] pdfxs + (a) show + (nd) + [6.05449 9.6981 ] pdfxs + (a) show + (dded) + [6.0654 6.05449 4.85451 9.6981 ] pdfxs + (t) show + (o) + [9.08719 ] pdfxs + (t) show + (hec) + [6.0654 8.47629 4.85451 ] pdfxs + (a) show + (ll) + [3.0327 6.6654 ] pdfxs + (g) show + (r) + [4.2654 ] pdfxs + (a) show + (ph.) + [6.0654 6.05449 3.0327 ] pdfxs + -23.031 -51.482 m + (\() show + (iii\)) + [3.0327 3.02179 3.0327 9.69818 ] pdfxs + (U) show + (ses) + [4.30902 4.8436 8.17081 ] pdfxs + (o) show + (fasimplemech) + [7.21084 9.32719 4.29811 3.0327 9.08711 6.0654 3.0327 8.71629 9.08711 4.85451 4.53815 + 6.0654 ] pdfxs + (a) show + (nism) + [6.05449 3.0327 4.30902 12.9598 ] pdfxs + (\() show + (\fne-) + [6.05449 6.0654 4.8436 3.64352 ] pdfxs + (g) show + (r) + [4.2654 ] pdfxs + (a) show + (ininc) + [3.0327 9.93809 3.02179 6.0654 4.8436 ] pdfxs + (o) show + (mpleteness) + [9.09802 6.05449 3.0327 4.85451 4.23277 4.85451 6.05449 4.85451 4.29811 8.18172 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (ckin) + [4.54905 5.75995 3.02179 6.0654 ] pdfxs + (g) show + (\)) + [8.11638 ] pdfxs + (t) show + (os) + [9.31628 4.30902 ] pdfxs + (o) show + (lvesever) + [3.0327 5.4545 8.71629 4.29811 4.85451 5.4545 4.8436 4.27631 ] pdfxs + (a) show + (lh) + [6.90539 6.05449 ] pdfxs + (a) show + (rdpr) + [4.27631 9.92718 6.0654 4.27631 ] pdfxs + (o) show + (b-) + [6.05449 3.63261 ] pdfxs + 0 -73.404 m + (lemsinp) + [3.0327 4.8436 9.09802 7.38536 3.0327 9.14174 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er) + [4.8436 7.36355 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis,including) + [3.0327 5.75995 4.29811 3.0327 4.29811 6.22904 3.0327 6.0654 4.8436 3.0327 6.05449 + 6.0654 3.0327 6.05449 8.54174 ] pdfxs + (t) show + (heuse) + [6.05449 7.94175 6.05449 4.30902 7.93084 ] pdfxs + (o) show + (fspecul) + [6.41449 4.30902 6.35994 4.85451 4.8436 6.0654 3.02179 ] pdfxs + (at) show + (ivetypeinf) + [3.0327 5.4545 7.93084 3.93823 5.75995 6.37085 7.93084 3.0327 6.05449 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n,dyn) + [6.0654 6.22904 6.05449 5.75995 6.0654 ] pdfxs + (a) show + (micdiscovery) + [9.08711 3.0327 7.93084 6.05449 3.0327 4.30902 4.8436 5.14905 5.4545 4.85451 4.27631 + 5.75995 ] pdfxs + 0 -95.327 m + (o) show + (fthec) + [7.85448 4.23277 6.0654 9.37083 4.8436 ] pdfxs + (a) show + (ll) + [3.0327 7.54902 ] pdfxs + (g) show + (r) + [4.2654 ] pdfxs + (a) show + (phwi) + [6.0654 10.5708 7.88721 3.02179 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (o) show + (uti) + [6.0654 8.7491 3.0327 ] pdfxs + (t) show + (er) + [4.85451 4.2654 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n,) + [6.0654 7.7672 ] pdfxs + (a) show + (ndc) + [6.05449 10.5817 4.8436 ] pdfxs + (o) show + (nserv) + [6.0654 4.29811 4.85451 4.2654 5.15995 ] pdfxs + (a) show + (tivelyc) + [4.23277 3.0327 5.4545 4.85451 3.02179 10.2763 4.85451 ] pdfxs + (o) show + (rrecth) + [4.2654 4.27631 4.85451 4.8436 8.76001 6.05449 ] pdfxs + (a) show + (ndling) + [6.0654 6.0654 3.02179 3.0327 6.0654 9.97082 ] pdfxs + (o) show + (finc) + [7.84357 3.0327 6.0654 4.8436 ] pdfxs + (o) show + (mple) + [9.09802 6.05449 3.0327 4.8436 ] pdfxs + (t) show + (epr) + [9.37083 6.05449 4.27631 ] pdfxs + (o) show + (-) show + 0 -117.249 m + (g) show + (r) + [4.27631 ] pdfxs + (a) show + (ms.) + [9.08711 4.29811 3.0327 ] pdfxs + -10.337 -147.139 m + (D) show + (SAisusedby) + [6.0654 12.6326 3.02179 8.75989 6.0654 4.29811 4.8436 10.5163 5.75995 10.2108 ] pdfxs + (a) show + (llm) + [3.0327 7.48357 9.08711 ] pdfxs + (a) show + (cr) + [4.85451 4.2654 ] pdfxs + (o) show + (sc) + [4.30902 4.8436 ] pdfxs + (o) show + (pic) + [6.0654 3.02179 9.30538 ] pdfxs + (t) show + (echniques) + [4.8436 4.54905 6.0654 6.05449 3.0327 5.75995 6.05449 4.85451 8.74898 ] pdfxs + (a) show + (ndisdescribedinde) + [6.0654 10.5163 3.0327 8.74898 6.0654 4.8436 4.30902 4.8436 4.27631 3.0327 6.35994 + 4.8436 10.5163 3.0327 10.5163 6.05449 4.85451 ] pdfxs + (ta) show + (ilinCh) + [3.02179 7.48357 3.0327 10.5163 7.8763 6.0654 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (er) + [4.8436 8.72718 ] pdfxs + (3) show + (.Bec) + [10.3308 7.72349 4.85451 4.8436 ] pdfxs + (a) show + (use) + [6.0654 4.29811 4.8436 ] pdfxs + -27.273 -169.061 m + (a) show + (ll) + [3.0327 6.86176 ] pdfxs + (o) show + (f) + [7.17812 ] pdfxs + (t) show + (hew) + [6.05449 8.69447 7.57085 ] pdfxs + (o) show + (rkinthis) + [4.27631 9.58901 3.0327 9.90537 4.23277 6.0654 3.0327 8.13808 ] pdfxs + (t) show + (hesisdepends) + [6.0654 4.8436 4.29811 3.0327 8.14899 6.05449 4.85451 6.35994 4.8436 6.0654 6.05449 + 8.14899 ] pdfxs + (o) show + (n) + [9.89446 ] pdfxs + (D) show + (S) + [6.0654 ] pdfxs + (A) show + (,wepayspeci) + [6.86176 7.58175 8.68356 6.0654 5.14905 9.58901 4.30902 6.35994 4.85451 4.8436 3.0327 + ] pdfxs + (a) show + (l) + [6.87267 ] pdfxs + (a) show + (t) + [4.23277 ] pdfxs + (t) show + (enti) + [4.85451 5.75995 4.23277 3.0327 ] pdfxs + (o) show + (n) + [9.90537 ] pdfxs + (t) show + (om) + [9.28356 9.09802 ] pdfxs + (a) show + (kingsure) + [5.74904 3.0327 6.0654 9.29447 4.29811 6.0654 4.2654 8.69447 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [8.08365 ] pdfxs + (D) show + (S) + [6.05449 ] pdfxs + (A) show + -27.273 -190.984 m + (issui) + [3.0327 8.75989 4.30902 6.05449 3.0327 ] pdfxs + (ta) show + (blef) + [6.0654 3.02179 9.31629 3.32724 ] pdfxs + (o) show + (ruseinac) + [8.73809 6.0654 4.29811 9.31629 3.0327 10.5163 9.91628 4.85451 ] pdfxs + (o) show + (mmerci) + [9.08711 9.09802 4.8436 4.27631 4.8436 3.0327 ] pdfxs + (a) show + (lc) + [7.49448 4.8436 ] pdfxs + (o) show + (mpiler,whichincludesbeingf) + [9.09802 6.05449 3.0327 3.0327 4.8436 4.27631 7.70175 7.8763 6.05449 3.0327 4.54905 + 10.5272 3.02179 6.0654 4.8436 3.0327 6.0654 6.05449 4.85451 8.75989 6.37085 4.8436 + 3.0327 6.05449 9.91628 3.33815 ] pdfxs + (a) show + (sten) + [4.29811 8.70546 4.85451 6.05449 ] pdfxs + (o) show + (u) + [6.0654 ] pdfxs + (g) show + (hf) + [10.5272 3.32724 ] pdfxs + (o) show + (rpl) + [8.73809 6.0654 3.02179 ] pdfxs + (a) show + (usibleuse,) + [6.0654 4.29811 3.0327 6.0654 3.0327 9.30538 6.0654 4.29811 4.85451 3.0327 ] pdfxs + -27.273 -212.906 m + (fullysupp) + [3.33815 6.05449 3.0327 3.0327 10.309 4.29811 6.0654 6.0654 6.35994 ] pdfxs + (o) show + (rtinginc) + [4.27631 4.23277 3.0327 6.0654 10.0035 3.0327 6.0654 4.8436 ] pdfxs + (o) show + (mple) + [9.08711 6.0654 3.0327 4.8436 ] pdfxs + (t) show + (epr) + [9.40356 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms,) + [9.08711 4.30902 7.81084 ] pdfxs + (a) show + (ndsupp) + [6.0654 10.6145 4.29811 6.0654 6.05449 6.37085 ] pdfxs + (o) show + (r) + [4.2654 ] pdfxs + (t) show + (ing) + [3.0327 6.0654 10.0035 ] pdfxs + (t) show + (hefull) + [6.0654 9.40356 3.32724 6.0654 3.0327 7.58175 ] pdfxs + (g) show + (ener) + [4.8436 6.0654 4.8436 4.27631 ] pdfxs + (a) show + (lity) + [3.0327 3.0327 3.93823 10.309 ] pdfxs + (o) show + (fC) + [7.8872 12.4363 ] pdfxs + (\() show + (se) + [4.29811 4.85451 ] pdfxs + (t) show + (jmp) + [3.32724 9.08711 6.0654 ] pdfxs + (/) show + (l) + [3.0327 ] pdfxs + (o) show + (ngjmp,) + [6.05449 5.75995 3.33815 9.08711 6.0654 3.0327 ] pdfxs + -27.273 -234.829 m + (func) + [3.33815 6.05449 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (np) + [10.0035 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (ers,) + [4.8436 4.27631 4.29811 7.04721 ] pdfxs + (a) show + (ndn) + [6.0654 10.0035 6.05449 ] pdfxs + (o) show + (n-type-s) + [6.0654 3.63261 3.93823 5.75995 6.37085 4.8436 3.63261 4.30902 ] pdfxs + (a) show + (fep) + [3.32724 8.79265 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (erc) + [4.8436 8.21446 4.85451 ] pdfxs + (a) show + (s) + [4.29811 ] pdfxs + (t) show + (s) + [4.30902 ] pdfxs + (\)) show + (.Weev) + [8.79265 10.2981 8.79265 4.85451 5.14904 ] pdfxs + (a) show + (lu) + [3.0327 6.05449 ] pdfxs + (at) show + (e) + [8.79265 ] pdfxs + (t) show + (heprecisi) + [6.05449 8.79265 6.0654 4.27631 4.8436 4.8436 3.0327 4.30902 3.02179 ] pdfxs + (o) show + (n) + [10.0035 ] pdfxs + (o) show + (f) + [7.2763 ] pdfxs + (D) show + (SAwhenused) + [6.0654 12.1199 7.8763 6.0654 4.8436 10.0035 6.0654 4.29811 4.85451 6.0654 ] pdfxs + -27.273 -256.751 m + (a) show + (sast) + [7.94172 9.08719 4.30902 4.23277 ] pdfxs + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + (a) show + (rdp) + [4.2654 9.6981 6.37085 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (er) + [4.8436 7.909 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisinCh) + [3.0327 5.75995 4.29811 3.0327 7.94172 3.02179 9.6981 7.8763 6.0654 ] pdfxs + (a) show + (pter) + [6.0654 4.23277 4.85451 7.909 ] pdfxs + (4) show + (.) show + -27.273 -293.957 m + /N622 11.955 Tf + (1.1.2A) + [6.7307 3.73 6.7307 3.73 20.1801 10.1499 ] pdfxs + (u) show + (tom) + [5.23633 6.71874 11.2138 ] pdfxs + (a) show + (ticPoolAllo) + [5.22437 3.74195 10.4606 8.81079 7.1013 6.71874 8.22507 10.1499 3.74195 3.73 7.1013 + ] pdfxs + (ca) show + (tio) + [5.22437 3.74195 6.71874 ] pdfxs + (n) show + -27.273 -322.925 m + /N614 10.909 Tf + (A) show + (ut) + [6.0654 4.23277 ] pdfxs + (o) show + (m) + [9.09802 ] pdfxs + (at) show + (icPo) + [3.02179 7.85448 7.12357 5.75995 ] pdfxs + (o) show + (l) + [6.03267 ] pdfxs + (A) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.06537 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rms) + [4.2654 9.09802 7.309 ] pdfxs + (t) show + (hed) + [6.05449 7.85448 6.0654 ] pdfxs + (a) show + (tas) + [4.23277 8.46538 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (uresiden) + [6.05449 4.27631 4.8436 7.309 3.0327 6.0654 4.8436 5.75995 ] pdfxs + (t) show + (i\fedbyDSA) + [3.0327 6.05449 4.85451 9.06537 5.74904 8.77083 8.32365 6.0654 11.1817 ] pdfxs + (t) show + (ose) + [8.46538 4.29811 4.85451 ] pdfxs + (g) show + (re) + [4.2654 4.85451 ] pdfxs + (gat) show + (ethemem-) + [7.85448 4.23277 6.0654 7.85448 9.08711 4.85451 9.08711 3.63261 ] pdfxs + -27.273 -344.848 m + (o) show + (ryf) + [4.27631 8.79265 3.33815 ] pdfxs + (o) show + (re) + [7.30901 4.8436 ] pdfxs + (a) show + (chd) + [4.54905 9.0981 6.0654 ] pdfxs + (at) show + (as) + [8.4872 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (urein) + [6.0654 4.2654 7.88721 3.0327 5.75995 ] pdfxs + (t) show + (oa) + [8.4872 8.49811 ] pdfxs + (\\) show + (po) + [6.35994 5.75995 ] pdfxs + (o) show + (l") + [3.0327 8.4872 ] pdfxs + (o) show + (r) + [7.31992 ] pdfxs + (\\) show + (re) + [4.2654 4.85451 ] pdfxs + (g) show + (i) + [3.0327 ] pdfxs + (o) show + (n") + [6.05449 8.49811 ] pdfxs + (o) show + (fmem) + [6.37085 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry.F) + [4.27631 4.84359 7.67993 6.21813 ] pdfxs + (o) show + (rex) + [7.30901 4.8436 5.75995 ] pdfxs + (a) show + (mple,if) + [9.08711 6.0654 3.0327 4.8436 6.19631 3.02179 6.37085 ] pdfxs + (D) show + (SAiden) + [6.0654 11.2144 3.0327 6.0654 4.8436 5.75995 ] pdfxs + (t) show + (i\festw) + [3.0327 6.05449 4.85451 7.34172 3.93823 7.57085 ] pdfxs + (o) show + -27.273 -366.77 m + (disj) + [6.0654 3.02179 4.30902 3.32724 ] pdfxs + (o) show + (intlinked-lis) + [3.0327 5.75995 7.60365 3.02179 3.0327 6.0654 5.4545 4.8436 6.0654 3.63261 3.0327 + 3.0327 4.29811 ] pdfxs + (t) show + (s) + [7.65808 ] pdfxs + (a) show + (sp) + [7.65808 6.0654 ] pdfxs + (a) show + (rt) + [4.2654 7.60365 ] pdfxs + (o) show + (fi) + [6.68721 3.0327 ] pdfxs + (t) show + (sexecu) + [7.65808 4.85451 5.74904 4.85451 4.8436 6.0654 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n,) + [6.05449 6.44722 ] pdfxs + (A) show + (u) + [6.05449 ] pdfxs + (to) show + (m) + [9.09802 ] pdfxs + (a) show + (ticPo) + [4.23277 3.0327 8.20357 7.12357 5.75995 ] pdfxs + (o) show + (l) + [6.39267 ] pdfxs + (A) show + (lloc) + [3.02179 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nwilltr) + [9.41446 7.88721 3.02179 3.0327 6.39267 4.23277 4.27631 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 12.4471 ] pdfxs + (t) show + (hepr) + [6.0654 8.20357 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (m) show + -27.273 -388.693 m + (t) show + (ocre) + [10.0799 4.8436 4.27631 4.8436 ] pdfxs + (at) show + (e) + [9.46901 ] pdfxs + (o) show + (nere) + [6.0654 9.46901 4.27631 4.8436 ] pdfxs + (g) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [10.6799 ] pdfxs + (o) show + (fmem) + [7.96357 9.08711 4.8436 9.09802 ] pdfxs + (o) show + (ryf) + [4.2654 10.3854 3.32724 ] pdfxs + (o) show + (re) + [8.90172 4.8436 ] pdfxs + (a) show + (chlis) + [4.54905 10.6799 3.0327 3.0327 4.29811 ] pdfxs + (t) show + (,) + [7.89811 ] pdfxs + (a) show + (nduse) + [6.0654 10.6799 6.0654 4.29811 9.46901 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (tre) + [8.8691 4.2654 4.85451 ] pdfxs + (g) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [10.6908 ] pdfxs + (t) show + (om) + [10.069 9.09802 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (ag) show + (e) + [9.46901 ] pdfxs + (a) show + (ll) + [3.0327 7.65811 ] pdfxs + (o) show + (f) + [7.95266 ] pdfxs + (t) show + (hemem) + [6.0654 9.46901 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 5.75995 ] pdfxs + -27.273 -410.615 m + (a) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (edf) + [4.8436 9.49082 3.32724 ] pdfxs + (o) show + (re) + [7.70173 4.85451 ] pdfxs + (a) show + (chlis) + [4.53815 9.49082 3.0327 3.0327 4.29811 ] pdfxs + (t) show + (.) + [7.81084 ] pdfxs + (A) show + (u) + [6.05449 ] pdfxs + (to) show + (m) + [9.09802 ] pdfxs + (a) show + (ticPo) + [4.23277 3.0327 8.27993 7.12357 5.74904 ] pdfxs + (o) show + (l) + [6.45812 ] pdfxs + (A) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nensures) + [9.49082 4.8436 6.0654 4.29811 6.0654 4.2654 4.85451 7.72354 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (t) + [7.66911 ] pdfxs + (t) show + (hedyn) + [6.05449 8.27993 6.05449 5.75995 6.0654 ] pdfxs + (a) show + (miclife) + [9.08711 3.0327 8.26902 3.0327 3.0327 3.33815 4.8436 ] pdfxs + (t) show + (ime) + [3.0327 9.08711 8.27993 ] pdfxs + (o) show + (f) + [6.75267 ] pdfxs + (t) show + (hepo) + [6.0654 8.26902 6.37085 5.75995 ] pdfxs + (o) show + (l) + [6.44722 ] pdfxs + (to) show + -27.273 -432.538 m + (beasuperset) + [6.35994 8.4872 9.08719 4.30902 6.05449 6.37085 4.8436 4.27631 4.29811 4.85451 7.87638 + ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (t) show + (hedyn) + [6.05449 8.4872 6.0654 5.75995 6.05449 ] pdfxs + (a) show + (miclifetime) + [9.08711 3.0327 8.4872 3.0327 3.0327 3.32724 4.85451 4.23277 3.0327 9.09802 8.47629 + ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (t) show + (hed) + [6.0654 8.47629 6.0654 ] pdfxs + (at) show + (as) + [9.08719 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (urebeingpo) + [6.0654 4.2654 8.4872 6.37085 4.8436 3.0327 6.05449 9.0981 6.35994 5.75995 ] pdfxs + (o) show + (l) + [6.6654 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (ed.) + [4.8436 6.0654 3.0327 ] pdfxs + -10.337 -454.46 m + (Theprim) + [7.8763 6.0654 9.07629 6.05449 4.27631 3.0327 9.08711 ] pdfxs + (a) show + (rym) + [4.27631 9.98173 9.08711 ] pdfxs + (ot) show + (iv) + [3.0327 5.14904 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [10.2763 ] pdfxs + (o) show + (f) + [7.55993 ] pdfxs + (t) show + (hepo) + [6.0654 9.06538 6.37085 5.74904 ] pdfxs + (o) show + (lalloc) + [7.25448 5.46541 3.02179 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [10.2872 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nis) + [10.2763 3.0327 8.5308 ] pdfxs + (t) show + (o) + [9.67628 ] pdfxs + (g) show + (ive) + [3.0327 5.4545 4.8436 ] pdfxs + 341.528 -454.46 m + /N634 10.909 Tf + (p) + [5.01816 ] pdfxs + (a) show + (rti) + [4.60356 3.62179 3.34914 ] pdfxs + (a) show + (lc) + [7.23263 4.46185 ] pdfxs + (o) show + (ntr) + [6.13082 3.62179 4.04721 ] pdfxs + (o) show + (l) + [7.23263 ] pdfxs + (o) show + (ft) + [7.7891 3.62179 ] pdfxs + (he) show + -27.273 -476.383 m + (d) show + (yn) + [5.30169 6.13082 ] pdfxs + (a) show + (micl) + [8.92348 3.33823 9.91635 2.78176 ] pdfxs + (a) show + (y) + [5.30169 ] pdfxs + (o) show + (utofa) + [5.85816 8.50903 5.58542 8.23637 10.4617 ] pdfxs + (da) show + (ta) + [3.6327 10.4617 ] pdfxs + (s) show + (tru) + [3.62179 4.60356 5.84725 ] pdfxs + (c) show + (tur) + [3.6327 5.84725 4.04721 ] pdfxs + (e) show + 147.421 -476.383 m + /N614 10.909 Tf + (t) show + (o) + [10.1672 ] pdfxs + (t) show + (hec) + [6.05449 9.55628 4.85451 ] pdfxs + (o) show + (mpiler.Whilepri) + [9.08711 6.0654 3.0327 3.02179 4.85451 4.2654 11.1054 11.2144 6.05449 3.0327 3.0327 + 9.55628 6.0654 4.27631 3.02179 ] pdfxs + (o) show + (rc) + [8.98899 4.8436 ] pdfxs + (o) show + (mpiler) + [9.09802 6.05449 3.0327 3.0327 4.8436 8.98899 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nshave) + [6.05449 9.0108 6.0654 5.14905 5.4545 4.8436 ] pdfxs + -27.273 -498.305 m + (providedlimi) + [6.0654 4.2654 5.14905 5.75995 3.0327 6.0654 4.8436 9.51264 3.0327 3.0327 9.08711 + 3.0327 ] pdfxs + (t) show + (edc) + [4.8436 9.51264 4.85451 ] pdfxs + (o) show + (n) + [5.74904 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (o) show + (loverlay) + [6.47994 5.14905 5.4545 4.85451 7.72355 3.0327 5.14905 5.4545 ] pdfxs + (o) show + (ut) + [6.05449 7.70183 ] pdfxs + (o) show + (fhe) + [6.78539 6.05449 4.85451 ] pdfxs + (a) show + (p) + [9.51264 ] pdfxs + (o) show + (bjec) + [6.66539 3.33815 4.8436 4.8436 ] pdfxs + (t) show + (s) + [7.75627 ] pdfxs + (\(ga) show + (rb) + [4.27631 6.05449 ] pdfxs + (ag) show + (ec) + [8.30175 4.85451 ] pdfxs + (o) show + (llec) + [3.0327 3.02179 4.85451 4.8436 ] pdfxs + (to) show + (r) + [7.72355 ] pdfxs + (o) show + (r) + [7.72355 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nlibr) + [9.51264 3.0327 3.02179 6.0654 4.27631 ] pdfxs + (a) show + (ryheuris-) + [4.2654 9.2181 6.05449 4.85451 6.05449 4.27631 3.0327 4.29811 3.63261 ] pdfxs + -27.273 -520.228 m + (t) show + (ics[) + [3.0327 4.8436 9.32716 3.02179 ] pdfxs + (68) show + (,) + [8.05084 ] pdfxs + (64) show + (,) + [8.05084 ] pdfxs + (12) show + (,) + [8.05084 ] pdfxs + (39) show + (,) + [8.05084 ] pdfxs + (30) show + (,) + [8.05084 ] pdfxs + (119) show + (,) + [8.05084 ] pdfxs + (29) show + (],f) + [3.0327 8.38902 3.33815 ] pdfxs + (o) show + (rex) + [9.29445 4.8436 5.75995 ] pdfxs + (a) show + (mple) + [9.08711 6.0654 3.0327 4.8436 ] pdfxs + (\)) show + (,n) + [8.38902 6.0654 ] pdfxs + (o) show + (nehavebeen) + [6.0654 9.86174 6.0654 5.14905 5.4545 9.87264 6.35994 4.8436 4.85451 11.0726 ] pdfxs + (a) show + (ble) + [6.0654 3.0327 9.86174 ] pdfxs + (t) show + (oc) + [10.4726 4.85451 ] pdfxs + (o) show + (ntr) + [5.75995 4.23277 4.27631 ] pdfxs + (o) show + (l) + [8.05084 ] pdfxs + (t) show + (helay) + [6.0654 9.86174 3.0327 5.14905 5.4545 ] pdfxs + (o) show + (ut) + [6.0654 9.26182 ] pdfxs + (o) show + (f) + [8.34538 ] pdfxs + (a) show + -27.273 -542.15 m + (d) + [6.0654 ] pdfxs + (a) show + (tas) + [4.23277 8.91265 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ure) + [6.05449 4.27631 8.30175 ] pdfxs + (a) show + (t) + [7.69093 ] pdfxs + (t) show + (he) + [6.0654 8.30175 ] pdfxs + (g) show + (r) + [4.2654 ] pdfxs + (a) show + (nul) + [5.75995 6.0654 3.02179 ] pdfxs + (a) show + (rity) + [4.27631 3.0327 3.93823 9.20719 ] pdfxs + (o) show + (findividu) + [6.78539 3.0327 6.0654 6.05449 3.0327 5.75995 3.02179 6.0654 6.0654 ] pdfxs + (a) show + (linstances) + [6.47994 3.0327 6.05449 4.30902 4.23277 5.46541 6.05449 4.85451 4.8436 7.75627 ] pdfxs + (o) show + (f) + [6.78539 ] pdfxs + (t) show + (hed) + [6.05449 8.30175 6.0654 ] pdfxs + (at) show + (astruc) + [8.90174 4.30902 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ure,) + [6.0654 4.2654 4.85451 6.51267 ] pdfxs + (a) show + (ndn) + [6.0654 9.51264 6.05449 ] pdfxs + (o) show + (nehavebeen) + [6.0654 8.30175 6.05449 5.15996 5.4545 8.30175 6.35994 4.8436 4.85451 6.0654 ] pdfxs + -27.273 -564.073 m + (a) show + (ble) + [6.0654 3.02179 8.23629 ] pdfxs + (t) show + (osupp) + [8.83629 4.29811 6.0654 6.05449 6.37085 ] pdfxs + (o) show + (rtsubsequent) + [4.2654 7.62547 4.29811 6.0654 6.0654 4.29811 4.8436 5.75995 6.0654 4.8436 5.75995 + 7.62547 ] pdfxs + (agg) show + (ressivec) + [4.27631 4.8436 4.29811 4.30902 3.0327 5.4545 8.22539 4.85451 ] pdfxs + (o) show + (mpiler) + [9.08711 6.05449 3.0327 3.0327 4.8436 7.6581 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 7.69081 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [7.62547 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imized) + [3.02179 9.09802 3.0327 4.8436 8.22539 6.0654 ] pdfxs + (at) show + (as) + [8.83629 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ures) + [6.05449 4.27631 4.8436 7.69081 ] pdfxs + (o) show + (n) + [9.43628 ] pdfxs + (a) show + -27.273 -585.996 m + (per-inst) + [6.35994 4.85451 4.2654 3.64352 3.0327 6.05449 4.30902 4.23277 ] pdfxs + (a) show + (nceb) + [6.0654 4.8436 7.85448 6.0654 ] pdfxs + (a) show + (sis) + [4.29811 3.0327 7.309 ] pdfxs + (\() show + (e.) + [4.8436 3.0327 ] pdfxs + (g) show + (.,) + [3.0327 6.16358 ] pdfxs + (t) show + (hesimple) + [6.05449 7.85448 4.30902 3.02179 9.09802 6.05449 3.0327 7.85448 ] pdfxs + (o) show + (nesinCh) + [6.0654 4.8436 7.309 3.0327 9.06537 7.8763 6.0654 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (er6) + [4.85451 7.27628 8.45447 ] pdfxs + (o) show + (r) + [7.27628 ] pdfxs + (t) show + (he) + [6.0654 7.85448 ] pdfxs + (agg) show + (ressive) + [4.2654 4.85451 4.29811 4.30902 3.0327 5.4545 7.84357 ] pdfxs + (o) show + (neinCh) + [6.0654 7.85448 3.0327 9.06537 7.8763 6.0654 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (er) + [4.8436 7.28719 ] pdfxs + (7\)) show + (.Inp) + [7.65811 3.94897 9.06537 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (ic-) + [3.0327 4.8436 3.63261 ] pdfxs + -27.273 -607.918 m + (ul) + [6.0654 3.02179 ] pdfxs + (a) show + (r,bec) + [4.27631 6.43631 6.35994 4.8436 4.85451 ] pdfxs + (a) show + (use) + [6.05449 4.30902 8.19266 ] pdfxs + (a) show + (ll) + [3.02179 6.38176 ] pdfxs + (o) show + (f) + [6.66539 ] pdfxs + (t) show + (henodes) + [6.0654 8.19266 6.05449 5.75995 6.0654 4.8436 7.64718 ] pdfxs + (o) show + (f) + [6.6763 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rmedd) + [4.27631 9.08711 4.8436 9.40355 6.0654 ] pdfxs + (at) show + (astruc) + [8.79265 4.30902 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ures) + [6.0654 4.2654 4.85451 7.64718 ] pdfxs + (a) show + (rem) + [4.2654 8.19266 9.08711 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (ag) show + (edbyac) + [4.8436 9.40355 5.75995 9.0981 8.80356 4.8436 ] pdfxs + (o) show + (mpiler-c) + [9.08711 6.0654 3.0327 3.0327 4.8436 4.27631 3.63261 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (o) show + (lled) + [3.0327 3.02179 4.85451 6.0654 ] pdfxs + -27.273 -629.841 m + (run) + [4.27631 6.05449 5.75995 ] pdfxs + (t) show + (imelibr) + [3.0327 9.08711 8.61811 3.0327 3.0327 6.0654 4.2654 ] pdfxs + (a) show + (ry,c) + [4.27631 4.84359 6.83994 4.85451 ] pdfxs + (o) show + (mpiler) + [9.08711 6.05449 3.0327 3.0327 4.8436 8.05082 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nsc) + [6.05449 8.08354 4.8436 ] pdfxs + (a) show + (nemitcode) + [9.83991 4.8436 9.09802 3.02179 8.01819 4.85451 5.74904 6.0654 8.61811 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (tiden) + [8.01819 3.02179 6.0654 4.8436 5.75995 ] pdfxs + (t) show + (i\fes) + [3.0327 6.05449 4.85451 8.07263 ] pdfxs + (a) show + (ndm) + [6.0654 9.829 9.09802 ] pdfxs + (a) show + (nipul) + [6.05449 3.0327 6.05449 6.0654 3.0327 ] pdfxs + (at) show + (es) + [4.8436 8.07263 ] pdfxs + (a) show + (ll) + [3.0327 6.80721 ] pdfxs + (o) show + (f) + [7.10175 ] pdfxs + (t) show + (he) + [6.0654 4.8436 ] pdfxs + 204 -657.201 m + (5) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (17) 18 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 595.275591 788.031496 translate + 180 rotate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 72 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (a) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (ed) + [4.8436 10.309 ] pdfxs + (o) show + (bjec) + [6.66539 3.33815 4.8436 4.85451 ] pdfxs + (t) show + (sin) + [8.54171 3.0327 10.309 ] pdfxs + (t) show + (hed) + [6.05449 9.09811 6.0654 ] pdfxs + (at) show + (as) + [9.6981 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.0654 4.2654 9.09811 ] pdfxs + (a) show + (tpr) + [8.48728 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (mrun) + [13.3416 4.2654 6.0654 5.75995 ] pdfxs + (t) show + (ime,whichen) + [3.02179 9.09802 4.8436 7.42903 7.88721 6.05449 3.0327 4.54905 10.309 4.8436 6.0654 + ] pdfxs + (a) show + (blesnoveltr) + [6.05449 3.0327 4.8436 8.55262 6.0654 5.14905 5.4545 4.8436 7.28721 4.23277 4.27631 + ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (ns) + [6.0654 4.29811 ] pdfxs + 0 -21.922 m + (\() show + (like) + [3.0327 3.02179 5.4545 8.4872 ] pdfxs + (t) show + (heP) + [6.0654 8.47629 7.12357 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (erC) + [4.8436 7.909 7.8763 ] pdfxs + (o) show + (mpressi) + [9.09802 6.05449 4.27631 4.8436 4.30902 4.29811 3.0327 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ndescribedbelow) + [9.6981 6.05449 4.85451 4.29811 4.85451 4.2654 3.0327 6.35994 4.85451 9.6981 6.35994 + 4.85451 3.02179 5.15996 7.8763 ] pdfxs + (\)) show + (.) show + 16.936 -43.845 m + (Theprim) + [7.8763 6.0654 8.4872 6.05449 4.27631 3.0327 9.08711 ] pdfxs + (a) show + (ryrese) + [4.27631 9.39264 4.2654 4.85451 4.29811 4.85451 ] pdfxs + (a) show + (rchc) + [4.2654 4.54905 9.6981 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (ribu) + [4.27631 3.0327 6.05449 6.0654 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (ns) + [6.0654 7.94172 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (A) show + (u) + [6.05449 ] pdfxs + (to) show + (m) + [9.08711 ] pdfxs + (at) show + (icPo) + [3.0327 8.4872 7.12357 5.74904 ] pdfxs + (o) show + (l) + [6.6763 ] pdfxs + (A) show + (lloc) + [3.02179 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (a) show + (re:) + [4.27631 4.8436 3.0327 ] pdfxs + 10.303 -77.723 m + (\() show + (i\)Weshow) + [3.0327 9.69818 10.2981 9.11992 4.30902 6.05449 5.15996 12.1526 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [8.52001 ] pdfxs + (t) show + (he) + [6.05449 9.13083 ] pdfxs + (a) show + (l) + [3.02179 ] pdfxs + (g) show + (ori) + [5.46541 4.2654 3.0327 ] pdfxs + (t) show + (hmsucceedsinse) + [6.05449 13.3743 4.29811 6.0654 4.8436 4.85451 4.8436 4.8436 6.0654 8.57444 3.0327 + 10.3417 4.29811 4.8436 ] pdfxs + (g) show + (re) + [4.27631 4.85451 ] pdfxs + (ga) show + (tingrecursived) + [4.23277 3.0327 6.0654 9.73082 4.2654 4.85451 4.8436 6.0654 4.2654 4.30902 3.0327 + 5.4545 9.11992 6.0654 ] pdfxs + (a) show + (tas) + [4.23277 9.73082 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ures) + [6.0654 4.27631 4.8436 8.57444 ] pdfxs + (o) show + (n) + [10.3417 ] pdfxs + (t) show + (hehe) + [6.05449 9.13083 6.05449 4.85451 ] pdfxs + (a) show + (p,) + [6.05449 3.0327 ] pdfxs + 27.273 -99.645 m + (providingasubs) + [6.0654 4.2654 5.14905 5.75995 3.0327 6.0654 3.02179 6.0654 9.59992 9.61083 4.29811 + 6.0654 6.0654 4.29811 ] pdfxs + (ta) show + (n) + [5.75995 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (a) show + (lperf) + [7.18903 6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (nceimprovementf) + [6.05449 4.85451 8.99993 3.0327 9.08711 6.05449 4.27631 5.14905 5.4545 4.85451 9.08711 + 4.85451 5.74904 8.40001 3.32724 ] pdfxs + (o) show + (rsever) + [8.43264 4.29811 4.85451 5.4545 4.8436 4.27631 ] pdfxs + (a) show + (lpr) + [7.17812 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms.Weexperimen) + [9.08711 4.30902 9.42537 10.2981 8.99993 4.8436 5.75995 6.37085 4.8436 4.27631 3.02179 + 9.09802 4.8436 5.75995 ] pdfxs + (ta) show + (lly) + [3.0327 3.0327 5.75995 ] pdfxs + 27.273 -121.568 m + (\fndth) + [6.0654 6.05449 9.74173 4.23277 6.0654 ] pdfxs + (a) show + (t) + [7.92001 ] pdfxs + (t) show + (he) + [6.05449 8.53084 ] pdfxs + (a) show + (l) + [3.02179 ] pdfxs + (go) show + (ri) + [4.27631 3.0327 ] pdfxs + (t) show + (hmimproves) + [6.05449 12.7744 3.02179 9.09802 6.05449 4.27631 5.14905 5.4545 4.85451 7.97445 ] pdfxs + (t) show + (heperf) + [6.05449 8.53084 6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (nce) + [6.05449 4.85451 8.51993 ] pdfxs + (o) show + (fsever) + [7.01448 4.29811 4.8436 5.4545 4.85451 4.27631 ] pdfxs + (a) show + (lpr) + [6.69812 6.0654 4.2654 ] pdfxs + (o) show + (gr) + [5.46541 4.2654 ] pdfxs + (a) show + (msby) + [9.09802 7.97445 5.75995 9.42537 ] pdfxs + (10) show + (-) + [3.64352 ] pdfxs + (20) show + (%,speedsup) + [9.08711 6.71994 4.29811 6.35994 4.85451 4.8436 6.0654 7.97445 6.0654 6.0654 ] pdfxs + 27.273 -143.49 m + (twoby) + [3.93823 7.58175 8.68356 5.75995 8.99992 ] pdfxs + (a) show + (b) + [6.35994 ] pdfxs + (o) show + (ut) + [6.0654 7.48365 ] pdfxs + (2) show + (x) + [8.98901 ] pdfxs + (a) show + (ndtwo) + [6.0654 9.30537 3.93823 7.57085 8.69447 ] pdfxs + (ot) show + (hersby) + [6.05449 4.85451 4.27631 7.53809 5.75995 8.99992 ] pdfxs + (a) show + (b) + [6.35994 ] pdfxs + (o) show + (ut) + [6.05449 7.48365 ] pdfxs + (10) show + (x,) + [5.75995 6.34903 ] pdfxs + (a) show + (ndexpl) + [6.0654 9.29446 4.85451 5.74904 6.0654 3.0327 ] pdfxs + (a) show + (in) + [3.02179 9.30537 ] pdfxs + (t) show + (hes) + [6.05449 8.09448 4.29811 ] pdfxs + (o) show + (urce) + [6.0654 4.2654 4.85451 8.08357 ] pdfxs + (o) show + (f) + [6.57812 ] pdfxs + (t) show + (heseimprovemen) + [6.05449 4.85451 4.29811 8.09448 3.02179 9.09802 6.05449 4.27631 5.14905 5.4545 4.85451 + 9.08711 4.8436 5.75995 ] pdfxs + (t) show + (s.) + [4.30902 3.0327 ] pdfxs + 7.27298 -174.379 m + (\() show + (ii\)) + [3.0327 3.02179 9.69818 ] pdfxs + (U) show + (nlikeprevi) + [6.0654 3.0327 3.02179 5.4545 8.85811 6.0654 4.27631 4.8436 5.75995 3.0327 ] pdfxs + (o) show + (us) + [6.05449 8.31262 ] pdfxs + (a) show + (ppr) + [6.0654 6.05449 4.27631 ] pdfxs + (oa) show + (chesrel) + [4.54905 6.05449 4.85451 8.31262 4.2654 4.85451 3.0327 ] pdfxs + (at) show + (ed) + [4.8436 10.069 ] pdfxs + (a) show + (ppr) + [6.0654 6.05449 4.27631 ] pdfxs + (oa) show + (ches[) + [4.54905 6.05449 4.85451 8.31262 3.02179 ] pdfxs + (134) show + (,) + [7.04721 ] pdfxs + (133) show + (,) + [7.0363 ] pdfxs + (4) show + (,6) + [7.0363 5.46541 ] pdfxs + (6) show + (,) + [7.0363 ] pdfxs + (31) show + (,) + [7.0363 ] pdfxs + (26) show + (],) + [3.0327 3.0327 ] pdfxs + 374.807 -174.379 m + /N634 10.909 Tf + (a) show + (ll) + [3.34903 2.79267 ] pdfxs + 390.526 -174.379 m + /N614 10.909 Tf + (o) show + (fwhichrequire) + [7.34175 7.8763 6.0654 3.0327 4.53815 10.069 4.27631 4.85451 5.74904 6.0654 3.0327 + 4.2654 4.8436 ] pdfxs + 27.273 -196.302 m + (atype-s) + [9.3381 3.93823 5.75995 6.35994 4.85451 3.63261 4.30902 ] pdfxs + (a) show + (feinputpr) + [3.32724 8.73811 3.0327 6.05449 6.0654 6.05449 8.12729 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (m,) + [9.09802 6.97085 ] pdfxs + (A) show + (u) + [6.0654 ] pdfxs + (to) show + (m) + [9.08711 ] pdfxs + (at) show + (icPo) + [3.0327 8.7272 7.12357 5.75995 ] pdfxs + (o) show + (l) + [6.9163 ] pdfxs + (A) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (nsupp) + [9.949 4.30902 6.05449 6.0654 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (t) show + (s) + [8.18172 ] pdfxs + (t) show + (hefull) + [6.0654 8.7272 3.33815 6.05449 3.0327 6.9163 ] pdfxs + (g) show + (ener) + [4.85451 6.05449 4.85451 4.2654 ] pdfxs + (a) show + (lity) + [3.0327 3.0327 3.93823 9.64355 ] pdfxs + (o) show + (fC) + [7.22175 11.7599 ] pdfxs + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + 27.273 -218.224 m + (C++pr) + [7.8763 8.4872 12.7526 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms) + [9.08711 8.57444 ] pdfxs + (\() show + (includingindirectfunc) + [3.0327 6.05449 4.85451 3.02179 6.0654 6.0654 3.02179 6.0654 9.71992 3.0327 6.0654 + 6.05449 3.0327 4.27631 4.8436 4.8436 8.52001 3.32724 6.0654 6.05449 4.85451 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (nc) + [10.3308 4.85451 ] pdfxs + (a) show + (lls,mu) + [3.02179 3.0327 4.30902 7.45084 8.79257 6.05449 ] pdfxs + (t) show + (u) + [6.0654 ] pdfxs + (a) show + (llyrecursivefunc) + [3.0327 3.02179 10.0254 4.27631 4.85451 4.8436 6.0654 4.2654 4.30902 3.02179 5.4545 + 9.11992 3.33815 6.05449 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns,v) + [6.0654 4.29811 7.46175 5.14904 ] pdfxs + (a) show + (ri) + [4.2654 3.0327 ] pdfxs + (a) show + (ble) + [6.0654 3.0327 9.10902 ] pdfxs + (a) show + (r-) + [4.27631 3.63261 ] pdfxs + 27.273 -240.147 m + (g) show + (umentfunc) + [6.0654 9.08711 4.8436 5.75995 7.87638 3.33815 6.05449 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns,l) + [6.0654 4.29811 6.6654 3.0327 ] pdfxs + (a) show + (ck) + [4.54905 9.39264 ] pdfxs + (o) show + (ftype-s) + [6.97085 3.93823 5.75995 6.35994 4.8436 3.64352 4.29811 ] pdfxs + (a) show + (fety,se) + [3.33815 4.8436 3.93823 4.8545 6.6654 4.29811 4.85451 ] pdfxs + (t) show + (jmp) + [3.32724 9.09802 6.05449 ] pdfxs + (/) show + (l) + [3.0327 ] pdfxs + (o) show + (ngjmp,e) + [6.0654 5.74904 3.33815 9.08711 6.0654 6.6654 4.8436 ] pdfxs + (t) show + (c.) + [4.85451 3.02179 ] pdfxs + (\)) show + (.) show + 4.24199 -271.036 m + (\() show + (iii\)Our) + [3.0327 3.02179 3.0327 9.69818 8.4872 6.0654 8.82536 ] pdfxs + (a) show + (l) + [3.02179 ] pdfxs + (go) show + (ri) + [4.27631 3.0327 ] pdfxs + (t) show + (hmis) + [6.05449 13.6471 3.0327 8.85807 ] pdfxs + (t) show + (he\frst) + [6.05449 9.40356 6.0654 4.2654 4.30902 8.79273 ] pdfxs + (t) show + (operf) + [10.0145 6.35994 4.8436 4.27631 3.33815 ] pdfxs + (o) show + (rmre) + [4.2654 13.6471 4.27631 4.8436 ] pdfxs + (g) show + (i) + [3.0327 ] pdfxs + (o) show + (ninferenceb) + [10.6145 3.0327 6.05449 3.33815 4.8436 4.27631 4.8436 6.0654 4.8436 9.40356 6.0654 + ] pdfxs + (a) show + (sed) + [4.29811 4.85451 10.6145 ] pdfxs + (o) show + (nasc) + [10.6145 10.0035 4.30902 4.8436 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (a) show + (blep) + [6.0654 3.02179 9.40356 6.37085 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (er) + [4.85451 8.82536 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 4.29811 ] pdfxs + 27.273 -292.958 m + (\(D) show + (S) + [6.05449 ] pdfxs + (A\)) show + (,which) + [6.74176 7.8763 6.0654 3.02179 4.54905 9.76355 ] pdfxs + (a) show + (llowsus) + [3.0327 3.0327 5.14905 7.8763 8.01808 6.05449 8.00717 ] pdfxs + (t) show + (op) + [9.16356 6.0654 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nhe) + [9.76355 6.05449 4.85451 ] pdfxs + (a) show + (pd) + [9.76355 6.0654 ] pdfxs + (at) show + (aby) + [9.15265 5.75995 5.75995 ] pdfxs + 268.207 -292.958 m + /N634 10.909 Tf + (rea) + [4.04721 4.45094 5.58542 ] pdfxs + (chab) show + (ility) + [3.33823 2.79267 3.34914 3.62179 5.30169 ] pdfxs + 321.873 -292.958 m + /N614 10.909 Tf + (.W) + [8.09447 10.2981 ] pdfxs + (o) show + (rkc) + [4.27631 9.4581 4.85451 ] pdfxs + (o) show + (ncurrent) + [6.05449 4.85451 6.05449 4.27631 4.27631 4.8436 5.75995 7.94183 ] pdfxs + (t) show + (o) + [9.16356 ] pdfxs + (o) show + (urs[) + [6.0654 4.2654 8.01808 3.02179 ] pdfxs + (26) show + (]) show + 27.273 -314.881 m + (usesas) + [6.0654 4.29811 4.8436 8.37808 9.52355 4.29811 ] pdfxs + (o) show + (mewh) + [9.08711 4.85451 7.8763 6.0654 ] pdfxs + (a) show + (tsimil) + [8.30183 4.30902 3.0327 9.08711 3.0327 3.02179 ] pdfxs + (a) show + (r) + [8.34536 ] pdfxs + (a) show + (ppr) + [6.0654 6.05449 4.27631 ] pdfxs + (oa) show + (ch,butusesan) + [4.53815 6.0654 7.21085 6.05449 6.0654 8.30183 6.0654 4.29811 4.85451 8.36717 9.52355 + 6.0654 ] pdfxs + (o) show + (n-sc) + [6.05449 3.63261 4.30902 4.8436 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (a) show + (ble) + [6.0654 3.02179 8.92356 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis,doesn) + [3.0327 5.75995 4.29811 3.0327 4.30902 7.19994 6.0654 5.74904 4.85451 8.36717 6.0654 + ] pdfxs + (o) show + (th) + [8.30183 6.0654 ] pdfxs + (a) show + (ndle) + [6.0654 6.05449 3.0327 8.91265 ] pdfxs + (g) show + (l) + [3.0327 ] pdfxs + (o) show + (b) + [6.05449 ] pdfxs + (a) show + (l) show + 27.273 -336.803 m + (v) + [5.14904 ] pdfxs + (a) show + (ri) + [4.27631 3.0327 ] pdfxs + (a) show + (bles) + [6.05449 3.0327 4.8436 7.76717 ] pdfxs + (a) show + (t) + [7.69093 ] pdfxs + (a) show + (ll,requirestype-s) + [3.0327 3.0327 6.52358 4.27631 4.8436 5.75995 6.05449 3.0327 4.27631 4.8436 7.75627 + 3.94914 5.74904 6.37085 4.8436 3.63261 4.30902 ] pdfxs + (a) show + (fety,) + [3.32724 4.85451 3.93823 4.84359 6.52358 ] pdfxs + (a) show + (ndh) + [6.0654 9.51264 6.0654 ] pdfxs + (a) show + (s) + [7.75627 ] pdfxs + (ot) show + (herlimi) + [6.0654 4.8436 7.72355 3.0327 3.0327 9.08711 3.0327 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (nsc) + [6.05449 7.76717 4.8436 ] pdfxs + (o) show + (mp) + [9.08711 6.0654 ] pdfxs + (a) show + (red) + [4.27631 4.8436 9.51264 ] pdfxs + (t) show + (o) + [8.91265 ] pdfxs + (o) show + (ur) + [6.0654 7.72355 ] pdfxs + (a) show + (ppr) + [6.0654 6.05449 4.27631 ] pdfxs + (oa) show + (ch) + [4.54905 9.51264 ] pdfxs + (\(a) show + (s) show + 27.273 -358.726 m + (describedinSec) + [6.0654 4.8436 4.29811 4.85451 4.27631 3.02179 6.37085 4.8436 9.6981 3.0327 9.6981 + 6.05449 4.85451 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (5) show + (.) + [3.0327 ] pdfxs + (6) show + (\).) + [4.23277 3.0327 ] pdfxs + 4.54498 -389.615 m + (\() show + (iv\)Wepresentasimples) + [3.0327 5.75995 9.68727 10.309 9.85083 6.0654 4.2654 4.85451 4.29811 4.85451 5.74904 + 9.25091 10.4617 4.29811 3.0327 9.08711 6.0654 3.0327 9.85083 4.29811 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (at) show + (e) + [4.8436 ] pdfxs + (g) show + (yf) + [10.7672 3.32724 ] pdfxs + (o) show + (rc) + [9.28354 4.8436 ] pdfxs + (o) show + (rrectlyh) + [4.27631 4.27631 4.8436 4.85451 4.23277 3.0327 10.7672 6.05449 ] pdfxs + (a) show + (ndlingindirectfunc) + [6.0654 6.05449 3.0327 3.0327 6.0654 10.4508 3.0327 6.0654 6.05449 3.0327 4.27631 + 4.8436 4.85451 9.24 3.33815 6.05449 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nc) + [11.0617 4.85451 ] pdfxs + (a) show + (llsin) + [3.0327 3.02179 9.31625 3.02179 11.0726 ] pdfxs + (a) show + (rbi) + [4.2654 6.0654 3.0327 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (ryC) + [4.27631 10.7563 7.8763 ] pdfxs + 27.273 -411.537 m + (pr) + [6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (mswi) + [9.08711 7.94172 7.8763 3.0327 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (o) show + (utm) + [6.0654 7.87638 9.09802 ] pdfxs + (a) show + (king) + [5.74904 3.0327 6.0654 9.08719 ] pdfxs + (t) show + (hec) + [6.0654 8.47629 4.85451 ] pdfxs + (o) show + (re) + [4.2654 8.4872 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nm) + [9.6981 9.08711 ] pdfxs + (o) show + (rec) + [4.27631 8.4872 4.8436 ] pdfxs + (o) show + (mplex.) + [9.09802 6.05449 3.0327 4.8436 5.75995 3.0327 ] pdfxs + 7.57599 -442.426 m + (\() show + (v\)The) + [5.75995 9.69818 7.8763 6.05449 7.33085 ] pdfxs + (a) show + (lg) + [3.02179 5.46541 ] pdfxs + (o) show + (ri) + [4.2654 3.0327 ] pdfxs + (t) show + (hmc) + [6.05449 11.5744 4.8436 ] pdfxs + (o) show + (mputess) + [9.08711 6.0654 6.0654 4.23277 4.85451 6.77446 4.30902 ] pdfxs + (tat) show + (icm) + [3.02179 7.33085 9.08711 ] pdfxs + (a) show + (ppinginf) + [6.0654 6.05449 3.0327 6.05449 7.93084 3.0327 6.0654 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nfr) + [8.53083 3.33815 4.27631 ] pdfxs + (o) show + (mp) + [11.5635 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (ers) + [4.8436 4.27631 6.77446 ] pdfxs + (t) show + (o) + [7.93084 ] pdfxs + (t) show + (hepo) + [6.0654 7.31994 6.35994 5.75995 ] pdfxs + (o) show + (ls) + [3.0327 6.77446 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (t) + [6.70912 ] pdfxs + (t) show + (heyp) + [6.0654 4.8436 8.23629 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + 27.273 -464.349 m + (int) + [3.0327 5.75995 4.23277 ] pdfxs + (o) show + (.We) + [7.7672 10.2981 8.1272 ] pdfxs + (a) show + (rethe\frst) + [4.27631 8.1272 4.23277 6.0654 8.1272 6.05449 4.27631 4.30902 7.51638 ] pdfxs + (t) show + (odem) + [8.7272 6.0654 4.8436 9.09802 ] pdfxs + (o) show + (nstr) + [6.05449 4.30902 4.23277 4.27631 ] pdfxs + (at) show + (e) + [8.1272 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tre) + [7.52729 4.2654 4.85451 ] pdfxs + (g) show + (i) + [3.0327 ] pdfxs + (o) show + (ninference) + [9.3381 3.02179 6.0654 3.32724 4.85451 4.27631 4.8436 6.0654 4.8436 8.1272 ] pdfxs + (a) show + (nd) + [6.05449 9.3381 ] pdfxs + (t) show + (hism) + [6.0654 3.0327 7.57081 9.09802 ] pdfxs + (a) show + (ppinginf) + [6.05449 6.0654 3.0327 6.05449 8.73811 3.02179 6.0654 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (nc) + [9.3381 4.85451 ] pdfxs + (a) show + (n) show + 27.273 -486.271 m + (beused) + [6.35994 8.4872 6.0654 4.29811 4.85451 9.68719 ] pdfxs + (t) show + (osupp) + [9.0981 4.29811 6.0654 6.05449 6.37085 ] pdfxs + (o) show + (rt) + [4.2654 7.88729 ] pdfxs + (agg) show + (ressivef) + [4.2654 4.85451 4.29811 4.30902 3.02179 5.4545 8.4872 3.33815 ] pdfxs + (o) show + (llow-) + [3.02179 3.0327 5.14905 7.88721 3.63261 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (t) show + (echniqueslikeTr) + [4.8436 4.54905 6.05449 6.0654 3.0327 5.75995 6.05449 4.85451 7.93081 3.0327 3.0327 + 5.4545 8.4872 6.97085 4.2654 ] pdfxs + (a) show + (nsp) + [6.0654 4.29811 6.0654 ] pdfxs + (a) show + (rentP) + [4.27631 4.8436 5.75995 7.87638 7.12357 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (erC) + [4.85451 7.909 7.8763 ] pdfxs + (o) show + (mpressi) + [9.08711 6.0654 4.27631 4.8436 4.29811 4.30902 3.0327 ] pdfxs + (o) show + (n.) + [6.05449 3.0327 ] pdfxs + 16.937 -520.149 m + (I) show + (n) + [10.8763 ] pdfxs + (a) show + (ddi) + [6.0654 6.05449 3.0327 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [10.8763 ] pdfxs + (t) show + (o) + [10.2763 ] pdfxs + (t) show + (herese) + [6.05449 9.67628 4.2654 4.85451 4.29811 4.85451 ] pdfxs + (a) show + (rchc) + [4.2654 4.54905 10.8763 4.85451 ] pdfxs + (o) show + (n) + [5.74904 ] pdfxs + (t) show + (ribu) + [4.27631 3.0327 6.05449 6.0654 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns,weshow) + [6.05449 4.30902 8.13811 7.58175 9.66537 4.29811 6.0654 5.14905 12.6981 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [9.06546 ] pdfxs + (t) show + (he) + [6.0654 9.66537 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 9.11989 ] pdfxs + (a) show + (nd) + [6.0654 10.8763 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nre-) + [10.8763 4.27631 4.8436 3.63261 ] pdfxs + -1.52588e-05 -542.072 m + (quired) + [5.75995 6.05449 3.0327 4.27631 4.8436 10.8217 ] pdfxs + (t) show + (operf) + [10.2217 6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 13.8543 ] pdfxs + (t) show + (his) + [6.0654 3.02179 9.06535 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nb) + [10.8217 6.35994 ] pdfxs + (ot) show + (hrequireveryli) + [10.8217 4.27631 4.8436 5.75995 6.0654 3.0327 4.2654 9.61083 5.4545 4.85451 4.2654 + 10.5272 3.02179 3.0327 ] pdfxs + (tt) show + (lec) + [3.0327 9.61083 4.8436 ] pdfxs + (o) show + (mpiletime) + [9.08711 6.0654 3.0327 3.0327 9.61083 4.23277 3.0327 9.09802 9.61083 ] pdfxs + (o) show + (rmem) + [9.03263 9.08711 4.8436 9.09802 ] pdfxs + (o) show + (ry) + [4.27631 10.5163 ] pdfxs + (\() show + (less) + [3.02179 4.85451 4.29811 9.06535 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (n) show + -1.52588e-05 -563.994 m + (1) show + (.) + [3.0327 ] pdfxs + (3) show + (s) + [8.19263 ] pdfxs + (\() show + (including) + [3.02179 6.0654 4.85451 3.02179 6.0654 6.05449 3.0327 6.0654 9.3381 ] pdfxs + (D) show + (SA) + [6.0654 12.0653 ] pdfxs + (t) show + (ime\)f) + [3.0327 9.08711 4.85451 8.12729 3.33815 ] pdfxs + (o) show + (r) + [8.15991 ] pdfxs + (t) show + (hepr) + [6.0654 8.73811 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (mswe) + [9.08711 8.19263 7.57085 8.73811 ] pdfxs + (t) show + (es) + [4.85451 4.29811 ] pdfxs + (t) show + (ed,whichincludecodesup) + [4.8436 6.0654 6.98176 7.8763 6.0654 3.0327 4.53815 9.95991 3.02179 6.0654 4.8436 + 3.0327 6.0654 6.05449 8.73811 4.85451 5.75995 6.05449 4.85451 8.19263 6.05449 9.949 + ] pdfxs + (t) show + (o) + [9.34901 ] pdfxs + (100) show + (,) + [3.0327 ] pdfxs + (00) show + (0lines) + [9.3381 3.0327 3.0327 6.05449 4.85451 8.19263 ] pdfxs + (o) show + (f) show + -1.52588e-05 -585.917 m + (code) + [4.8436 5.75995 6.0654 4.8436 ] pdfxs + (\)) show + (.Toputthisinperspec) + [8.1272 6.97085 9.17447 6.05449 6.0654 7.96365 4.23277 6.0654 3.0327 8.01808 3.0327 + 9.77446 6.37085 4.8436 4.27631 4.29811 6.35994 4.85451 4.8436 ] pdfxs + (t) show + (ive,) + [3.0327 5.4545 4.85451 6.76358 ] pdfxs + (t) show + (hisis) + [6.05449 3.0327 8.02899 3.02179 8.02899 ] pdfxs + (a) show + (tm) + [7.95274 9.09802 ] pdfxs + (o) show + (st) + [4.29811 7.96365 ] pdfxs + (3) show + (%) + [12.8071 ] pdfxs + (o) show + (fthe) + [7.05812 4.23277 6.0654 8.56356 ] pdfxs + (t) show + (imerequiredf) + [3.0327 9.08711 8.57447 4.2654 4.85451 5.74904 6.0654 3.0327 4.27631 4.8436 9.77446 + 3.33815 ] pdfxs + (o) show + (rGCC) + [7.98537 8.5636 7.8763 11.5963 ] pdfxs + (t) show + (oc) + [9.17447 4.85451 ] pdfxs + (o) show + (mpile) + [9.08711 6.0654 3.02179 3.0327 8.56356 ] pdfxs + (t) show + (he) + [6.0654 4.8436 ] pdfxs + -1.52588e-05 -607.839 m + (pr) + [6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (m) + [13.1125 ] pdfxs + (\(o) show + (n) + [10.0908 ] pdfxs + (t) show + (hepr) + [6.05449 8.87993 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (mswe) + [9.08711 8.33444 7.57085 8.87993 ] pdfxs + (t) show + (ried\)) + [4.27631 3.02179 4.85451 6.05449 8.2691 ] pdfxs + (a) show + (ti) + [8.2691 3.0327 ] pdfxs + (t) show + (s-O3level) + [8.33444 3.63261 8.4872 9.47992 3.0327 4.8436 5.4545 4.85451 7.05812 ] pdfxs + (o) show + (f) + [7.35266 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n.Wefeel) + [6.05449 9.05447 10.2981 8.87993 3.33815 4.8436 4.85451 7.04721 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (t) + [8.2691 ] pdfxs + (t) show + (he) + [6.05449 8.87993 ] pdfxs + (a) show + (m) + [9.08711 ] pdfxs + (o) show + (unt) + [6.0654 5.75995 8.2691 ] pdfxs + (o) show + (f) show + 231.273 -657.201 m + (6) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + 1 0 0 1 77.455 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + ([) + [3.0327 ] pdfxs + (26) show + (]Si) + [8.4872 6.05449 3.0327 ] pdfxs + (g) show + (mundCherem) + [8.78166 6.0654 6.0654 8.72719 7.8763 6.05449 4.85451 4.2654 4.85451 11.7598 ] pdfxs + (a) show + (nd) + [6.05449 8.72719 ] pdfxs + (Ra) show + (du) + [6.0654 8.72719 ] pdfxs + (R) show + (u) + [6.0654 ] pdfxs + (g) show + (in) + [3.0327 6.05449 ] pdfxs + (a) show + (.) + [6.28358 ] pdfxs + (R) show + (e) + [4.85451 ] pdfxs + (g) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [8.72719 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 6.97082 ] pdfxs + (a) show + (ndtr) + [6.0654 8.72719 4.23277 4.27631 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (nf) + [8.72719 3.33815 ] pdfxs + (o) show + (rjavapr) + [6.9381 3.33815 5.14905 5.14904 8.1272 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms.) + [9.08711 4.29811 6.29449 ] pdfxs + (I) show + (n) show + 22.424 -21.922 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.66171 ] pdfxs + (o) show + (ft) + [7.56001 3.62179 ] pdfxs + (h) show + (eInt) + [9.22908 4.21089 6.13082 3.62179 ] pdfxs + (e) show + (rn) + [4.60356 6.13082 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (a) show + (lSymposiumOnM) + [7.00354 6.13082 5.30169 8.91258 5.01816 5.58542 4.45083 3.34914 5.85816 13.1234 8.36718 + 10.3417 9.7854 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (o) show + (ryMan) + [4.59266 9.51256 9.7745 5.58542 6.13082 ] pdfxs + (age) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 7.83267 ] pdfxs + (\() show + (ISMM) + [4.19998 6.14173 9.7745 9.7854 ] pdfxs + (\)) show + 402.788 -21.922 m + /N614 10.909 Tf + (,V) + [7.00357 7.26539 ] pdfxs + (a) show + (nc) + [6.0654 4.8436 ] pdfxs + (o) show + (uver,) + [6.0654 5.4545 4.8436 4.27631 3.0327 ] pdfxs + 22.424 -43.845 m + (C) + [7.8763 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (d) + [6.05449 ] pdfxs + (a) show + (,Oc) + [6.6654 8.4872 4.85451 ] pdfxs + (to) show + (ber) + [6.35994 4.8436 7.909 ] pdfxs + (2004) show + (.) show + 1.52588e-05 -74.734 m + ([) + [3.0327 ] pdfxs + (27) show + (]) + [8.4872 ] pdfxs + (A) show + (n) + [5.74904 ] pdfxs + (to) show + (nChern) + [11.9344 7.8763 6.05449 4.85451 4.27631 6.05449 ] pdfxs + (o) show + (\013,M) + [6.35986 9.4581 10.0036 ] pdfxs + (a) show + (rk) + [4.27631 11.6181 ] pdfxs + (H) show + (erde) + [4.85451 4.2654 6.0654 4.8436 ] pdfxs + (g) show + (,) + [9.4581 ] pdfxs + (R) show + (ay) + [5.15996 11.6181 ] pdfxs + (H) show + (o) + [5.75995 ] pdfxs + (o) show + (kway,Chris) + [5.75995 7.57085 5.14905 4.8545 9.4581 7.8763 6.05449 4.27631 3.0327 10.1672 ] pdfxs + (R) show + (eeve,) + [4.85451 4.8436 5.4545 4.85451 9.44719 ] pdfxs + (No) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (n) + [11.9344 ] pdfxs + (R) show + (ubin,T) + [6.0654 6.05449 3.0327 6.05449 9.4581 6.97085 ] pdfxs + (o) show + (nyTye,) + [5.75995 11.629 7.57085 5.4545 4.8436 3.0327 ] pdfxs + 22.424 -96.656 m + (S.Bh) + [6.0654 5.54177 7.72349 6.0654 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (a) show + (dwajY) + [6.0654 7.57085 6.0654 5.84722 7.2763 ] pdfxs + (a) show + (dav) + [6.05449 5.15996 5.14904 ] pdfxs + (a) show + (lli,) + [3.0327 3.02179 3.0327 5.77086 ] pdfxs + (a) show + (nd) + [6.0654 8.57447 ] pdfxs + (Jo) show + (hnY) + [6.05449 8.57447 7.2763 ] pdfxs + (at) show + (es.F) + [4.8436 4.30902 6.03267 7.12357 ] pdfxs + (X) show + (!) + [3.0327 ] pdfxs + (32) show + (:Apr) + [7.31994 10.6908 6.0654 4.2654 ] pdfxs + (o) show + (\fle-direc) + [6.0654 3.0327 4.8436 3.64352 6.05449 3.0327 4.27631 4.8436 4.8436 ] pdfxs + (t) show + (edbin) + [4.85451 8.57447 6.05449 3.0327 6.0654 ] pdfxs + (a) show + (ry) + [4.2654 8.27993 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (nsl) + [6.0654 4.29811 3.0327 ] pdfxs + (ato) show + (r.) + [4.27631 3.0327 ] pdfxs + 423.224 -96.656 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (-) show + 22.424 -118.579 m + (in) + [3.34914 6.13082 ] pdfxs + (g) show + (s) + [8.55262 ] pdfxs + (o) show + (ft) + [7.45092 3.62179 ] pdfxs + (h) show + (eACM/IEEEInt) + [9.10909 7.83262 7.81088 9.7745 5.58542 4.19998 7.39623 7.40714 11.498 4.19998 6.13082 + 3.6327 ] pdfxs + (e) show + (rn) + [4.59266 6.14173 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (a) show + (lSymp) + [6.88354 6.13082 5.30169 8.92348 5.01816 ] pdfxs + (os) show + (ium) + [3.33823 5.85816 13.0144 ] pdfxs + (o) show + (nMi) + [10.2326 9.7854 3.34914 ] pdfxs + (c) show + (ro) + [4.0363 5.01816 ] pdfxs + (a) show + (r) + [4.04721 ] pdfxs + (ch) show + (ite) + [3.34914 3.62179 4.46185 ] pdfxs + (c) show + (ture\(MICRO) + [3.62179 5.85816 4.0363 9.11999 4.45083 9.7854 4.21089 7.79997 7.67998 8.36718 ] pdfxs + (\)) show + 411.425 -118.579 m + /N614 10.909 Tf + (,) + [6.87267 ] pdfxs + (18\(2\)) show + (:) + [3.0327 ] pdfxs + (56{) show + 22.424 -140.502 m + (64) show + (,) + [6.6654 ] pdfxs + (1998) show + (.) show + 1.52588e-05 -171.39 m + ([) + [3.0327 ] pdfxs + (28) show + (]TrishulM.Chilimbi,B) + [8.4872 6.95994 4.27631 3.0327 4.29811 5.75995 6.0654 5.4545 9.99272 5.46541 7.8763 + 6.05449 3.0327 3.0327 3.0327 8.78166 6.0654 3.0327 5.6945 7.72349 ] pdfxs + (o) show + (b) + [8.4872 ] pdfxs + (D) show + (avids) + [5.14905 5.75995 3.0327 6.0654 4.29811 ] pdfxs + (o) show + (n,) + [6.0654 5.6945 ] pdfxs + (a) show + (nd) + [6.05449 8.4872 ] pdfxs + (Ja) show + (mes) + [9.09802 4.8436 6.73082 ] pdfxs + (R) show + (.) + [5.4545 ] pdfxs + (La) show + (rus.C) + [4.27631 6.05449 4.30902 5.89086 7.8763 ] pdfxs + (a) show + (che-c) + [4.54905 6.0654 4.8436 3.63261 4.85451 ] pdfxs + (o) show + (nsci) + [6.05449 4.30902 4.8436 3.0327 ] pdfxs + (o) show + (uss) + [6.0654 6.71991 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (urede\fni) + [6.0654 4.27631 7.26539 6.0654 4.8436 6.0654 6.05449 3.0327 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n.) + [6.0654 3.0327 ] pdfxs + 22.424 -193.313 m + (I) show + (n) show + 37.395 -193.313 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.58897 ] pdfxs + (o) show + (ft) + [8.47637 3.62179 ] pdfxs + (h) show + (eACMSIGPLANC) + [10.1563 7.82171 7.81088 14.9126 6.13082 4.21089 8.43268 7.40714 6.83993 8.10534 13.2435 + 7.79997 ] pdfxs + (o) show + (nf) + [6.14173 3.33823 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 10.1454 ] pdfxs + (o) show + (nPro) + [11.269 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.0363 ] pdfxs + (a) show + (mmingL) + [8.92348 8.92348 3.34914 6.13082 10.1454 6.28357 ] pdfxs + (a) show + (n) + [6.14173 ] pdfxs + (g) show + (u) + [5.84725 ] pdfxs + (ag) show + (e) + [10.1563 ] pdfxs + (Des) show + (i) + [3.33823 ] pdfxs + (g) show + (n) + [11.269 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (d) show + 22.424 -215.236 m + (Im) + [4.21089 8.91258 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + (a) show + (ti) + [3.6327 3.33823 ] pdfxs + (o) show + (n) + [10.0362 ] pdfxs + (\() show + (PL) + [7.40714 6.83993 ] pdfxs + (D) show + (I) + [4.19998 ] pdfxs + (\)) show + 136.393 -215.236 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (13{24) show + (,) + [6.6654 ] pdfxs + (1999) show + (.) show + 1.52588e-05 -246.124 m + ([) + [3.0327 ] pdfxs + (29) show + (]TrishulM.Chilimbi,M) + [8.4872 6.95994 4.27631 3.0327 4.29811 5.75995 6.0654 7.17812 10.0036 7.17812 7.88721 + 6.05449 3.0327 3.0327 3.0327 8.78166 6.0654 3.0327 7.30903 10.0036 ] pdfxs + (a) show + (rk) + [4.2654 9.91628 ] pdfxs + (D) show + (.) + [7.17812 ] pdfxs + (H) show + (ill,) + [3.0327 3.0327 3.0327 7.30903 ] pdfxs + (a) show + (nd) + [6.0654 10.2108 ] pdfxs + (Ja) show + (mes) + [9.08711 4.85451 8.45444 ] pdfxs + (R) show + (.) + [7.18903 ] pdfxs + (La) show + (rus.C) + [4.2654 6.0654 4.29811 9.41446 7.8763 ] pdfxs + (a) show + (che-c) + [4.54905 6.05449 4.85451 3.63261 4.85451 ] pdfxs + (o) show + (nsci) + [6.05449 4.30902 4.8436 3.0327 ] pdfxs + (o) show + (uss) + [6.05449 8.46535 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (urelay) + [6.05449 4.27631 8.99993 3.0327 5.14905 5.4545 ] pdfxs + (o) show + (u) + [6.0654 ] pdfxs + (t) show + (.) show + 22.424 -268.047 m + (I) show + (n) show + 37.395 -268.047 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.58897 ] pdfxs + (o) show + (ft) + [8.47637 3.62179 ] pdfxs + (h) show + (eACMSIGPLANC) + [10.1563 7.82171 7.81088 14.9126 6.13082 4.21089 8.43268 7.40714 6.83993 8.10534 13.2435 + 7.79997 ] pdfxs + (o) show + (nf) + [6.14173 3.33823 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 10.1454 ] pdfxs + (o) show + (nPro) + [11.269 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.0363 ] pdfxs + (a) show + (mmingL) + [8.92348 8.92348 3.34914 6.13082 10.1454 6.28357 ] pdfxs + (a) show + (n) + [6.14173 ] pdfxs + (g) show + (u) + [5.84725 ] pdfxs + (ag) show + (e) + [10.1563 ] pdfxs + (Des) show + (i) + [3.33823 ] pdfxs + (g) show + (n) + [11.269 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (d) show + 22.424 -289.969 m + (Im) + [4.21089 8.91258 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + (a) show + (ti) + [3.6327 3.33823 ] pdfxs + (o) show + (n) + [10.0362 ] pdfxs + (\() show + (PL) + [7.40714 6.83993 ] pdfxs + (D) show + (I) + [4.19998 ] pdfxs + (\)) show + 136.393 -289.969 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (1{12) show + (,) + [6.6654 ] pdfxs + (1999) show + (.) show + 1.52588e-05 -320.858 m + ([) + [3.0327 ] pdfxs + (30) show + (]TrishulM.Chilimbi) + [8.4872 6.95994 4.27631 3.0327 4.29811 5.75995 6.0654 6.13086 10.0036 6.13086 7.8763 + 6.05449 3.0327 3.0327 3.0327 8.78166 6.0654 6.13086 ] pdfxs + (a) show + (ndJ) + [6.0654 9.16356 5.5964 ] pdfxs + (a) show + (mes) + [9.09802 4.8436 7.40718 ] pdfxs + (R) show + (.) + [6.13086 ] pdfxs + (La) show + (rus.) + [4.27631 6.0654 4.29811 6.99267 ] pdfxs + (U) show + (sing) + [4.30902 3.0327 6.05449 8.56356 ] pdfxs + (g) show + (ener) + [4.8436 6.0654 4.8436 4.27631 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [6.0654 ] pdfxs + (a) show + (l) + [6.13086 ] pdfxs + (ga) show + (rb) + [4.27631 6.05449 ] pdfxs + (ag) show + (ec) + [7.95266 4.85451 ] pdfxs + (o) show + (llec) + [3.02179 3.0327 4.85451 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.16356 ] pdfxs + (t) show + (oimplemen) + [8.55265 3.0327 9.08711 6.0654 3.02179 4.85451 9.08711 4.85451 5.74904 ] pdfxs + (t) show + 22.424 -342.781 m + (c) + [4.8436 ] pdfxs + (a) show + (che-c) + [4.54905 6.0654 4.8436 3.63261 4.85451 ] pdfxs + (o) show + (nsci) + [6.05449 4.30902 4.8436 3.0327 ] pdfxs + (o) show + (usd) + [6.0654 7.93081 6.0654 ] pdfxs + (at) show + (apl) + [9.08719 6.0654 3.0327 ] pdfxs + (a) show + (cemen) + [4.8436 4.85451 9.08711 4.8436 5.75995 ] pdfxs + (t) show + (.) show + 180.715 -342.781 m + /N634 10.909 Tf + (ACMSIGPLANNotic) + [7.83262 7.79997 13.6908 6.13082 4.21089 8.43268 7.39623 6.85084 8.10534 12.0108 8.10534 + 5.58542 3.62179 3.33823 4.46185 ] pdfxs + (es) show + 297.772 -342.781 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (34\(3\)) show + (:) + [3.0327 ] pdfxs + (37{48) show + (,) + [6.6654 ] pdfxs + (1999) show + (.) show + 0 -373.67 m + ([) + [3.0327 ] pdfxs + (31) show + (]Wei-) + [8.4872 10.2981 4.8436 3.0327 3.64352 ] pdfxs + (Nga) show + (nChin,Fl) + [9.34901 7.8763 6.0654 3.02179 6.0654 6.39267 7.12357 3.0327 ] pdfxs + (o) show + (rinCr) + [4.2654 3.0327 9.34901 7.88721 4.2654 ] pdfxs + (a) show + (ciun,Shen) + [4.85451 3.02179 6.0654 6.0654 6.38176 6.0654 6.0654 4.8436 6.0654 ] pdfxs + (g) show + (ch) + [4.53815 6.0654 ] pdfxs + (a) show + (oQin,) + [8.74901 8.47629 3.0327 6.0654 6.39267 ] pdfxs + (a) show + (ndM) + [6.05449 9.35992 9.99272 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (in) + [3.0327 9.34901 ] pdfxs + (R) show + (in) + [3.0327 6.05449 ] pdfxs + (a) show + (rd.) + [4.27631 6.0654 7.29812 ] pdfxs + (R) show + (e) + [4.85451 ] pdfxs + (g) show + (i) + [3.0327 ] pdfxs + (o) show + (ninferencef) + [9.34901 3.0327 6.05449 3.33815 4.8436 4.27631 4.8436 6.0654 4.8436 8.14902 3.32724 + ] pdfxs + (o) show + (r) + [7.57082 ] pdfxs + (a) show + (n) show + 22.424 -395.592 m + (o) show + (bject-) + [6.66539 3.33815 4.8436 4.85451 4.23277 3.64352 ] pdfxs + (o) show + (rien) + [4.2654 3.0327 4.85451 5.74904 ] pdfxs + (t) show + (edl) + [4.85451 9.14174 3.0327 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (e.) + [4.8436 6.97085 ] pdfxs + (I) show + (n) show + 158.919 -395.592 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [7.85444 ] pdfxs + (o) show + (ft) + [6.74183 3.62179 ] pdfxs + (h) show + (eACMSIGPLANC) + [8.41091 7.83262 7.79997 13.1781 6.13082 4.21089 8.43268 7.40714 6.83993 8.10534 11.509 + 7.79997 ] pdfxs + (o) show + (nf) + [6.14173 3.33823 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 8.41091 ] pdfxs + (o) show + (nPro) + [9.53442 7.39623 4.0363 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmin) + [8.92348 8.92348 3.33823 6.14173 ] pdfxs + (g) show + 22.424 -417.515 m + (L) + [6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ag) show + (e) + [8.92363 ] pdfxs + (Des) show + (i) + [3.34914 ] pdfxs + (g) show + (n) + [10.0362 ] pdfxs + (a) show + (ndIm) + [6.13082 9.47994 4.19998 8.92348 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [10.0362 ] pdfxs + (\() show + (PL) + [7.39623 6.85084 ] pdfxs + (D) show + (I) + [4.19998 ] pdfxs + (\)) show + 242.077 -417.515 m + /N614 10.909 Tf + (,W) + [6.6654 10.309 ] pdfxs + (a) show + (shin) + [4.29811 6.0654 3.02179 6.0654 ] pdfxs + (gto) show + (n,) + [6.05449 6.6654 ] pdfxs + (D) show + (C,) + [7.88721 6.6654 ] pdfxs + (J) show + (une) + [6.05449 6.0654 8.4872 ] pdfxs + (2004) show + (.) show + 0 -448.404 m + ([) + [3.0327 ] pdfxs + (32) show + (]J) + [8.4872 5.5964 ] pdfxs + (o) show + (n) + [6.0654 ] pdfxs + (g) show + (-) + [3.63261 ] pdfxs + (D) show + (e) + [4.85451 ] pdfxs + (o) show + (kCh) + [10.6799 7.88721 6.05449 ] pdfxs + (o) show + (i,Mich) + [3.0327 8.27993 10.0036 3.0327 4.54905 6.05449 ] pdfxs + (a) show + (elBurke,) + [4.85451 7.95266 7.7344 6.05449 4.27631 5.4545 4.8436 8.29084 ] pdfxs + (a) show + (ndP) + [6.05449 10.9963 7.12357 ] pdfxs + (a) show + (ulC) + [6.05449 7.96357 7.8763 ] pdfxs + (a) show + (rini.E\016cient\row-sensi) + [4.27631 3.0327 6.05449 3.0327 11.7272 7.41812 9.09802 4.8436 3.0327 4.8436 5.75995 + 9.17455 6.0654 5.14905 7.8763 3.63261 4.30902 4.8436 6.0654 4.29811 3.0327 ] pdfxs + (t) show + (ivein) + [3.0327 5.4545 9.77446 3.0327 5.75995 ] pdfxs + (t) show + (erprocedur) + [4.8436 4.27631 6.05449 4.27631 5.75995 4.8436 4.85451 6.05449 6.0654 4.27631 ] pdfxs + (a) show + (l) show + 22.424 -470.326 m + (c) + [4.8436 ] pdfxs + (o) show + (mpu) + [9.09802 6.05449 6.0654 ] pdfxs + (tat) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [9.14174 ] pdfxs + (o) show + (fp) + [6.40358 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er-induced) + [4.8436 4.27631 3.63261 3.0327 6.0654 6.05449 6.0654 4.8436 4.85451 9.13083 ] pdfxs + (a) show + (li) + [3.0327 3.0327 ] pdfxs + (a) show + (ses) + [4.29811 4.8436 7.38536 ] pdfxs + (a) show + (ndsidee\013ec) + [6.05449 9.14174 4.29811 3.0327 6.05449 7.91993 4.85451 6.35986 4.85451 4.8436 ] pdfxs + (t) show + (s.) + [4.30902 6.94903 ] pdfxs + (I) show + (n) show + 299.948 -470.326 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [7.84353 ] pdfxs + (o) show + (ft) + [6.73093 3.62179 ] pdfxs + (h) show + (eACMSIGACT-) + [8.41091 7.82171 7.81088 13.1672 6.13082 4.21089 8.43268 7.83262 7.81088 7.79997 3.90544 + ] pdfxs + 22.424 -492.249 m + (SIGPLANSymp) + [6.13082 4.21089 8.43268 7.40714 6.83993 8.10534 12.0108 6.14173 5.29078 8.92348 5.01816 + ] pdfxs + (os) show + (ium) + [3.34914 5.84725 12.8289 ] pdfxs + (o) show + (nPrin) + [10.0362 7.39623 4.60356 3.34914 6.13082 ] pdfxs + (c) show + (i) + [3.34914 ] pdfxs + (p) show + (l) + [2.78176 ] pdfxs + (e) show + (s) + [8.36716 ] pdfxs + (o) show + (fPro) + [7.24365 7.40714 4.0363 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmingL) + [8.92348 8.92348 3.33823 6.13082 8.92363 6.28357 ] pdfxs + (a) show + (n) + [6.14173 ] pdfxs + (g) show + (u) + [5.84725 ] pdfxs + (ages) show + 329.298 -492.249 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (232{245) show + (,) + [6.6654 ] pdfxs + (1993) show + (.) show + 3.05176e-05 -523.138 m + ([) + [3.0327 ] pdfxs + (33) show + (]CodeS) + [8.4872 7.8763 5.75995 6.05449 4.85451 6.05449 ] pdfxs + (o) show + (urcery,C) + [6.0654 4.2654 4.85451 4.8436 4.27631 4.84359 30.8288 7.88721 ] pdfxs + (o) show + (mp) + [9.08711 6.05449 ] pdfxs + (a) show + (q,et) + [5.75995 30.8288 4.85451 27.2071 ] pdfxs + (a) show + (l.C++) + [3.0327 65.4649 7.8763 8.4872 31.4506 ] pdfxs + (A) show + (BIf) + [7.72349 26.8906 3.32724 ] pdfxs + (o) show + (r) + [27.2397 ] pdfxs + (Ita) show + (nium.) + [6.0654 3.0327 6.05449 9.09802 3.0327 ] pdfxs + 22.424 -545.06 m + /N722 10.909 Tf + (http://www.codesourcery.com/cxx-abi/abi.html) show + 274.421 -545.06 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (2001) show + (.) show + 3.05176e-05 -575.949 m + ([) + [3.0327 ] pdfxs + (34) show + (]) + [8.4872 ] pdfxs + (Ro) show + (bertS.C) + [6.35994 4.8436 4.27631 7.35275 6.05449 6.14176 7.8763 ] pdfxs + (o) show + (hn,) + [6.05449 6.0654 6.23994 ] pdfxs + (D) show + (avidW.Goodwin,) + [5.14905 5.75995 3.0327 9.16356 11.2144 6.13086 8.5636 5.75995 5.74904 6.0654 7.8763 + 3.0327 6.05449 6.25085 ] pdfxs + (a) show + (ndP.Ge) + [6.05449 9.16356 6.51267 6.14176 8.5636 4.8436 ] pdfxs + (o) show + (\013rey) + [6.35986 4.27631 4.85451 8.8581 ] pdfxs + (L) show + (owney.Op) + [5.14905 7.8763 6.0654 4.8436 4.8545 6.99267 8.4872 6.0654 ] pdfxs + (t) show + (imizing) + [3.02179 9.09802 3.0327 4.8436 3.0327 6.05449 8.56356 ] pdfxs + (A) show + (lphaexecu) + [3.0327 6.05449 6.0654 8.55265 4.85451 5.75995 4.8436 4.85451 6.05449 ] pdfxs + (ta) show + (bles) + [6.0654 3.02179 4.85451 4.29811 ] pdfxs + 22.424 -597.872 m + (o) show + (nWindows) + [9.6981 11.2144 3.02179 6.0654 6.0654 5.14905 7.8763 7.94172 ] pdfxs + (N) show + (Twi) + [11.509 7.88721 3.02179 ] pdfxs + (t) show + (hSpike.) + [9.6981 6.0654 6.05449 3.0327 5.4545 4.85451 3.0327 ] pdfxs + 162.776 -597.872 m + /N634 10.909 Tf + (D) show + (i) + [3.34914 ] pdfxs + (g) show + (it) + [3.33823 3.6327 ] pdfxs + (a) show + (lTe) + [6.68718 6.97089 4.46185 ] pdfxs + (ch) show + (nic) + [6.13082 3.34914 4.46185 ] pdfxs + (a) show + (l) + [6.68718 ] pdfxs + (Jo) show + (urn) + [5.85816 4.60356 6.13082 ] pdfxs + (a) show + (l) show + 283.096 -597.872 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (9\(4\)) show + (,) + [6.6654 ] pdfxs + (1997) show + (.) show + 220.363 -657.201 m + (199) show + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (18) 19 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 0.000000 0.000000 translate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + 1 0 0 1 77.455 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + ([) + [3.0327 ] pdfxs + (17) show + (]Ch) + [8.4872 7.8763 6.05449 ] pdfxs + (a) show + (ndr) + [6.0654 6.05449 4.27631 ] pdfxs + (a) show + (sekh) + [4.30902 4.8436 5.75995 6.05449 ] pdfxs + (a) show + (rBoy) + [7.91991 7.72349 5.14905 5.4545 ] pdfxs + (a) show + (p) + [6.0654 ] pdfxs + (at) show + (i,) + [3.0327 6.6654 ] pdfxs + (A) show + (lex) + [3.0327 4.8436 5.75995 ] pdfxs + (a) show + (ndruS) + [6.0654 6.05449 4.27631 9.6981 6.0654 ] pdfxs + (a) show + (lci) + [3.02179 4.85451 3.0327 ] pdfxs + (a) show + (nu,Willi) + [5.74904 6.0654 6.6763 11.2035 3.0327 3.0327 3.0327 3.02179 ] pdfxs + (a) show + (mBeebee,) + [12.7307 7.7344 4.8436 4.85451 6.35994 4.8436 4.85451 6.6654 ] pdfxs + (a) show + (ndM) + [6.0654 9.6981 10.0036 ] pdfxs + (a) show + (rtinRin) + [4.27631 4.23277 3.0327 9.6981 8.03985 3.02179 6.0654 ] pdfxs + (a) show + (rd.Owner-) + [4.27631 6.05449 7.87629 8.4872 7.8763 6.0654 4.8436 4.27631 3.63261 ] pdfxs + 22.424 -21.922 m + (shiptypesf) + [4.29811 6.0654 3.0327 9.39264 3.93823 5.75995 6.35994 4.85451 7.63627 3.33815 ] pdfxs + (o) show + (rs) + [7.60355 4.30902 ] pdfxs + (a) show + (fere) + [3.32724 8.19266 4.2654 4.85451 ] pdfxs + (g) show + (i) + [3.0327 ] pdfxs + (o) show + (n-b) + [6.05449 3.63261 6.0654 ] pdfxs + (a) show + (sedmem) + [4.29811 4.85451 9.39264 9.09802 4.8436 9.08711 ] pdfxs + (o) show + (rym) + [4.27631 9.0981 9.08711 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (ag) show + (ementinre) + [4.8436 9.08711 4.85451 5.75995 7.57093 3.0327 9.40355 4.2654 4.85451 ] pdfxs + (a) show + (l-) + [3.0327 3.63261 ] pdfxs + (t) show + (imejav) + [3.0327 9.08711 8.18175 3.33815 5.14905 5.14904 ] pdfxs + (a) show + (.) + [7.38539 ] pdfxs + (I) show + (n) show + 377.776 -21.922 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.08353 ] pdfxs + (o) show + (fth) + [6.97092 3.62179 5.58542 ] pdfxs + (e) show + 22.424 -43.845 m + (ACMSIGPLANConf) + [7.83262 7.79997 13.1999 6.13082 4.19998 8.44359 7.39623 6.85084 8.10534 11.5199 7.79997 + 5.58542 6.13082 3.33823 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 8.43273 ] pdfxs + (o) show + (nPro) + [9.54533 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.0363 ] pdfxs + (a) show + (mmingLan) + [8.92348 8.92348 3.33823 6.14173 8.42182 6.28357 5.58542 6.13082 ] pdfxs + (g) show + (ua) + [5.84725 5.58542 ] pdfxs + (g) show + (e) + [8.42182 ] pdfxs + (Des) show + (i) + [3.34914 ] pdfxs + (g) show + (n) + [9.54533 ] pdfxs + (a) show + (ndIm) + [6.13082 8.98903 4.19998 8.92348 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [9.54533 ] pdfxs + (\() show + (PL) + [7.39623 6.83993 ] pdfxs + (D) show + (I) + [4.21089 ] pdfxs + (\)) show + 459.515 -43.845 m + /N614 10.909 Tf + (,) show + 22.424 -65.768 m + (2003) show + (.) show + 1.52588e-05 -95.172 m + ([) + [3.0327 ] pdfxs + (18) show + (]Mich) + [8.4872 9.99272 3.0327 4.54905 6.05449 ] pdfxs + (a) show + (elBurke) + [4.85451 7.61448 7.72349 6.0654 4.2654 5.4545 9.43629 ] pdfxs + (a) show + (nd) + [6.0654 10.6472 ] pdfxs + (L) show + (indaT) + [3.0327 6.05449 6.0654 10.0363 6.97085 ] pdfxs + (o) show + (rcz) + [4.27631 4.8436 4.85451 ] pdfxs + (o) show + (n.) + [6.05449 10.7017 ] pdfxs + (I) show + (n) + [5.75995 ] pdfxs + (t) show + (erprocedur) + [4.8436 4.27631 6.0654 4.2654 5.75995 4.8436 4.85451 6.0654 6.05449 4.27631 ] pdfxs + (a) show + (l) + [7.61448 ] pdfxs + (o) show + (ptimiz) + [6.0654 4.23277 3.0327 9.09802 3.02179 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n:elimin) + [6.0654 9.78537 4.8436 3.0327 3.0327 9.08711 3.0327 6.05449 ] pdfxs + (at) show + (ingunnecess) + [3.0327 6.05449 10.0472 6.05449 6.0654 6.0654 4.8436 4.8436 4.85451 4.29811 4.30902 + ] pdfxs + (a) show + (ry) + [4.27631 5.75995 ] pdfxs + 22.424 -117.094 m + (rec) + [4.27631 4.8436 4.85451 ] pdfxs + (o) show + (mpil) + [9.08711 6.05449 3.0327 3.0327 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n.) + [6.05449 3.0327 ] pdfxs + 100.811 -117.094 m + /N634 10.909 Tf + (ACMTr) + [7.83262 7.79997 15.4254 6.97089 4.04721 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (sac) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (ns) + [6.13082 10.1126 ] pdfxs + (o) show + (nPro) + [11.7708 7.40714 4.0363 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmingL) + [8.92348 8.92348 3.33823 6.13082 10.6691 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (age) show + (sandSy) + [10.1017 5.58542 6.13082 11.2145 6.14173 5.29078 ] pdfxs + (s) show + (t) + [3.62179 ] pdfxs + (e) show + (ms) + [8.92348 10.1017 ] pdfxs + (\() show + (TOPLAS) + [7.81088 8.35627 7.40714 6.83993 8.10534 6.14173 ] pdfxs + (\)) show + 459.515 -117.094 m + /N614 10.909 Tf + (,) show + 22.424 -139.017 m + (15\(3\)) show + (:) + [3.0327 ] pdfxs + (367{399) show + (,) + [6.6654 ] pdfxs + (1993) show + (.) show + -1.52588e-05 -168.421 m + ([) + [3.0327 ] pdfxs + (19) show + (]Mich) + [8.4872 9.99272 3.0327 4.54905 6.05449 ] pdfxs + (a) show + (elG.Burkeet) + [4.85451 8.01811 8.55269 8.02902 7.72349 6.05449 4.27631 5.4545 9.83992 4.8436 9.22909 + ] pdfxs + (a) show + (l.The) + [3.0327 11.9017 7.8763 6.05449 9.83992 ] pdfxs + (Ja) show + (l) + [3.0327 ] pdfxs + (a) show + (pe~no) + [6.35994 5.14905 -0.294543 6.05449 10.4399 ] pdfxs + (D) show + (yn) + [5.75995 6.0654 ] pdfxs + (a) show + (micOp) + [9.08711 3.0327 9.83992 8.47629 6.0654 ] pdfxs + (t) show + (imizingC) + [3.0327 9.08711 3.0327 4.8436 3.0327 6.05449 10.4508 7.8763 ] pdfxs + (o) show + (mpilerf) + [9.08711 6.0654 3.0327 3.02179 4.85451 9.26172 3.32724 ] pdfxs + (o) show + (r) + [9.26172 ] pdfxs + (J) show + (av) + [5.14905 5.15995 ] pdfxs + (a) show + (.) + [11.8908 ] pdfxs + (I) show + (n) show + 440.648 -168.421 m + /N634 10.909 Tf + (Java) show + 22.424 -190.344 m + (Gr) + [8.44359 4.0363 ] pdfxs + (a) show + (nd) + [6.13082 5.58542 ] pdfxs + (e) show + 57.209 -190.344 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (129{141) show + (,) + [6.6654 ] pdfxs + (1999) show + (.) show + 0 -219.748 m + ([) + [3.0327 ] pdfxs + (20) show + (]Br) + [8.4872 7.72349 4.27631 ] pdfxs + (a) show + (dC) + [10.1454 7.8763 ] pdfxs + (a) show + (lder,Ch) + [3.0327 6.05449 4.85451 4.2654 7.23266 7.88721 6.05449 ] pdfxs + (a) show + (ndraKrintz,Simmi) + [6.0654 6.05449 4.27631 9.54537 8.47629 4.27631 3.0327 5.75995 4.23277 4.85451 7.23266 + 6.05449 3.0327 9.08711 9.09802 7.11266 ] pdfxs + (Jo) show + (hn,) + [6.0654 6.05449 7.23266 ] pdfxs + (a) show + (ndTodd) + [6.0654 10.1454 6.97085 5.75995 6.05449 10.1454 ] pdfxs + (A) show + (us) + [6.0654 4.29811 ] pdfxs + (t) show + (in.C) + [3.0327 6.0654 9.20719 7.8763 ] pdfxs + (a) show + (che-c) + [4.54905 6.05449 4.85451 3.63261 4.85451 ] pdfxs + (o) show + (nsci) + [6.05449 4.30902 4.8436 3.0327 ] pdfxs + (o) show + (usd) + [6.05449 8.3999 6.05449 ] pdfxs + (at) show + (apl) + [9.54537 6.05449 3.0327 ] pdfxs + (a) show + (ce-) + [4.85451 4.8436 3.63261 ] pdfxs + 22.424 -241.671 m + (ment.) + [9.08711 4.85451 5.75995 4.23277 8.07266 ] pdfxs + (I) show + (n) show + 68.133 -241.671 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.42171 ] pdfxs + (o) show + (ft) + [7.3091 3.62179 ] pdfxs + (h) show + (eInt) + [8.98909 4.19998 6.14173 3.62179 ] pdfxs + (e) show + (rn) + [4.59266 6.14173 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (a) show + (lC) + [6.75263 7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 8.98909 ] pdfxs + (o) show + (nAr) + [10.1017 7.82171 4.04721 ] pdfxs + (ch) show + (ite) + [3.34914 3.62179 4.46185 ] pdfxs + (c) show + (tur) + [3.62179 5.85816 4.0363 ] pdfxs + (a) show + (lSu) + [6.75263 6.14173 5.84725 ] pdfxs + (p) show + (p) + [5.01816 ] pdfxs + (o) show + (rtforPro) + [4.60356 7.59267 3.33823 5.58542 8.56353 7.39623 4.0363 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (m-) + [8.92348 3.90544 ] pdfxs + 22.424 -263.593 m + (mingL) + [8.92348 3.33823 6.14173 8.91272 6.29448 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (age) show + (s) + [8.35625 ] pdfxs + (a) show + (ndOp) + [6.14173 9.47994 8.35627 5.01816 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (a) show + (tingSyst) + [3.62179 3.34914 6.13082 8.92363 6.13082 5.30169 4.45083 3.6327 ] pdfxs + (e) show + (ms) + [8.91258 8.36716 ] pdfxs + (\() show + (ASPLOS) + [8.10534 6.14173 7.39623 6.83993 8.36718 6.13082 ] pdfxs + (\)) show + 267.537 -263.593 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (139{149) show + (,S) + [6.6654 6.0654 ] pdfxs + (a) show + (nJ) + [9.6981 5.5964 ] pdfxs + (o) show + (se,) + [4.30902 4.8436 6.6654 ] pdfxs + (U) show + (S) + [6.0654 ] pdfxs + (A) show + (,) + [6.6654 ] pdfxs + (1998) show + (.) show + 0 -292.998 m + ([) + [3.0327 ] pdfxs + (21) show + (]DavidC) + [8.4872 8.32365 5.15996 5.74904 3.0327 10.1345 7.8763 ] pdfxs + (a) show + (ll) + [3.0327 3.0327 ] pdfxs + (a) show + (h) + [6.05449 ] pdfxs + (a) show + (n,KenKennedy,) + [6.0654 7.19994 8.4872 4.85451 10.1235 8.4872 4.8436 6.0654 6.0654 4.8436 6.0654 + 4.84359 7.21085 ] pdfxs + (a) show + (nd) + [6.05449 10.1345 ] pdfxs + (A) show + (ll) + [3.0327 3.02179 ] pdfxs + (a) show + (nP) + [10.1345 7.12357 ] pdfxs + (o) show + (r) + [4.2654 ] pdfxs + (t) show + (er\feld.S) + [4.85451 4.2654 6.0654 4.8436 3.0327 6.0654 9.15265 6.0654 ] pdfxs + (o) show + (ftw) + [3.32724 3.93823 7.58175 ] pdfxs + (a) show + (reprefe) + [4.2654 8.92356 6.05449 4.27631 4.8436 3.33815 4.8436 ] pdfxs + (t) show + (chin) + [4.54905 6.0654 3.02179 6.0654 ] pdfxs + (g) show + (.) + [9.15265 ] pdfxs + (I) show + (n) show + 408.17 -292.998 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (gs) show + 22.424 -314.92 m + (o) show + (ft) + [8.34546 3.6327 ] pdfxs + (h) show + (eInt) + [10.0145 4.21089 6.13082 3.62179 ] pdfxs + (e) show + (rn) + [4.60356 6.13082 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (nalC) + [6.13082 5.58542 7.78899 7.79997 ] pdfxs + (o) show + (nf) + [6.14173 3.33823 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 10.0254 ] pdfxs + (o) show + (nAr) + [11.1271 7.83262 4.04721 ] pdfxs + (ch) show + (ite) + [3.34914 3.62179 4.46185 ] pdfxs + (c) show + (tur) + [3.62179 5.85816 4.0363 ] pdfxs + (a) show + (lSu) + [7.78899 6.14173 5.84725 ] pdfxs + (p) show + (p) + [5.01816 ] pdfxs + (o) show + (rtf) + [4.60356 8.62902 3.34914 ] pdfxs + (o) show + (rPro) + [9.59988 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (rammingL) + [4.0363 5.58542 8.91258 8.92348 3.34914 6.13082 10.0254 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (age) show + (s) + [9.45806 ] pdfxs + (a) show + (n) + [6.14173 ] pdfxs + (d) show + 22.424 -336.843 m + (Op) + [8.36718 5.01816 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (a) show + (tingSy) + [3.6327 3.33823 6.13082 8.92363 6.13082 5.30169 ] pdfxs + (s) show + (t) + [3.62179 ] pdfxs + (e) show + (ms\(ASPLOS) + [8.92348 8.36716 4.45083 8.11625 6.13082 7.39623 6.85084 8.35627 6.13082 ] pdfxs + (\)) show + 166.187 -336.843 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (40{52) show + (,S) + [6.6654 6.0654 ] pdfxs + (a) show + (n) + [5.74904 ] pdfxs + (t) show + (aCl) + [9.0981 7.8763 3.0327 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (a) show + (,) + [6.6654 ] pdfxs + (U) show + (S) + [6.0654 ] pdfxs + (A) show + (,) + [6.6654 ] pdfxs + (A) show + (pril) + [6.0654 4.2654 3.0327 6.6654 ] pdfxs + (1991) show + (.) show + 0 -366.247 m + ([) + [3.0327 ] pdfxs + (22) show + (]DavidCh) + [8.4872 8.32365 5.15996 5.74904 3.0327 8.8581 7.8763 6.0654 ] pdfxs + (a) show + (se.) + [4.29811 4.85451 6.49085 ] pdfxs + (I) show + (mplemen) + [9.09802 6.05449 3.0327 4.85451 9.08711 4.8436 5.75995 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [8.8581 ] pdfxs + (o) show + (fexcep) + [6.11994 4.85451 5.75995 4.8436 4.85451 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nh) + [8.8581 6.05449 ] pdfxs + (a) show + (ndlin) + [6.0654 6.05449 3.0327 3.0327 6.05449 ] pdfxs + (g) show + (.) show + 273.783 -366.247 m + /N634 10.909 Tf + (T) + [7.81088 ] pdfxs + (h) show + (e) + [8.14909 ] pdfxs + (Jo) show + (urn) + [5.84725 4.60356 6.13082 ] pdfxs + (a) show + (l) + [5.92355 ] pdfxs + (o) show + (fCL) + [6.46911 10.9418 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ag) show + (eTran) + [8.14909 6.97089 4.0363 5.58542 6.13082 ] pdfxs + (s) show + (l) + [2.78176 ] pdfxs + (a) show + (ti) + [3.6327 3.33823 ] pdfxs + (o) show + (n) show + 459.515 -366.247 m + /N614 10.909 Tf + (,) show + 22.424 -388.17 m + (5\(4\)) show + (:) + [3.0327 ] pdfxs + (229{240) show + (,) + [6.6654 ] pdfxs + (J) show + (une) + [6.05449 6.0654 8.4872 ] pdfxs + (1994) show + (.) show + -1.52588e-05 -417.574 m + ([) + [3.0327 ] pdfxs + (23) show + (]J.Br) + [8.4872 5.5964 6.39267 7.72349 4.27631 ] pdfxs + (a) show + (dleyChen,) + [6.05449 3.0327 4.85451 9.10901 7.8763 6.0654 4.8436 6.0654 6.44722 ] pdfxs + (A) show + (ni) + [6.05449 3.0327 ] pdfxs + (t) show + (aB) + [8.81447 7.72349 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (g) show + (,) + [6.43631 ] pdfxs + (a) show + (nd) + [6.0654 9.41446 ] pdfxs + (No) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nP.) + [9.41446 6.51267 6.39267 ] pdfxs + (Jo) show + (uppi.Asimul) + [6.05449 6.0654 6.0654 3.02179 7.41812 11.5308 4.30902 3.0327 8.78166 6.0654 3.02179 + ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nb) + [9.41446 6.0654 ] pdfxs + (a) show + (sedstudy) + [4.29811 4.85451 9.41446 4.30902 4.23277 6.0654 6.0654 9.10901 ] pdfxs + (o) show + (fTLBper-) + [6.68721 7.8763 6.82903 11.0835 6.35994 4.8436 4.27631 3.63261 ] pdfxs + 22.424 -439.497 m + (f) + [3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (nce.) + [6.05449 4.85451 4.8436 7.42903 ] pdfxs + (I) show + (n) show + 86.577 -439.497 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.10535 ] pdfxs + (o) show + (ft) + [7.00365 3.62179 ] pdfxs + (h) show + (eInt) + [8.67273 4.21089 6.13082 3.62179 ] pdfxs + (e) show + (rn) + [4.60356 6.13082 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (a) show + (lConf) + [6.44718 7.79997 5.58542 6.13082 3.33823 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 8.67273 ] pdfxs + (o) show + (nC) + [9.78533 7.81088 ] pdfxs + (o) show + (m) + [8.92348 ] pdfxs + (p) show + (ut) + [5.84725 3.6327 ] pdfxs + (e) show + (rAr) + [8.24717 7.83262 4.04721 ] pdfxs + (ch) show + (ite) + [3.33823 3.6327 4.45094 ] pdfxs + (c) show + (ture) + [3.6327 5.84725 4.04721 8.67273 ] pdfxs + (\() show + (ISCA) + [4.19998 6.13082 7.81088 8.10534 ] pdfxs + (\)) show + 459.515 -439.497 m + /N614 10.909 Tf + (,) show + 22.424 -461.419 m + (p) + [6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (114{123) show + (,) + [6.6654 ] pdfxs + (1992) show + (.) show + -4.57764e-05 -490.824 m + ([) + [3.0327 ] pdfxs + (24) show + (]Ju) + [8.4872 5.5964 6.0654 ] pdfxs + (a) show + (nChen,) + [11.0181 7.8763 6.0654 4.8436 6.0654 8.31265 ] pdfxs + (D) show + (in) + [3.0327 6.0654 ] pdfxs + (g) show + (h) + [6.05449 ] pdfxs + (a) show + (oWu,) + [10.4181 10.2981 6.0654 8.31265 ] pdfxs + (A) show + (ndrewW.) + [6.0654 6.05449 4.27631 4.8436 12.8399 11.2144 7.98538 ] pdfxs + (A) show + (ppel,) + [6.0654 6.35994 4.8436 3.0327 8.32356 ] pdfxs + (a) show + (nd) + [6.05449 11.0181 ] pdfxs + (Ha) show + (iF) + [7.99629 6.20722 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (.Aprov) + [11.8035 13.1344 6.0654 4.2654 5.14905 5.15995 ] pdfxs + (a) show + (blys) + [6.05449 3.0327 10.7126 4.30902 ] pdfxs + (o) show + (undT) + [6.05449 6.0654 11.0181 6.97085 ] pdfxs + (A) show + (Lf) + [11.7708 3.33815 ] pdfxs + (o) show + (r) show + 22.424 -512.746 m + (b) + [6.0654 ] pdfxs + (a) show + (ck-end) + [4.53815 5.75995 3.63261 4.85451 6.05449 10.1672 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n.) + [6.05449 9.27265 ] pdfxs + (I) show + (n) show + 152.329 -512.746 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.79261 ] pdfxs + (o) show + (ft) + [7.68001 3.62179 ] pdfxs + (h) show + (eACMSIGPLANC) + [9.35999 7.83262 7.79997 14.1163 6.13082 4.21089 8.44359 7.39623 6.83993 8.11625 12.4362 + 7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (e) show + (nce) + [6.14173 4.45094 9.35999 ] pdfxs + (o) show + (nPro) + [10.4726 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.0363 ] pdfxs + (a) show + (mmin) + [8.92348 8.92348 3.33823 6.14173 ] pdfxs + (g) show + 22.424 -534.669 m + (L) + [6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ag) show + (e) + [8.92363 ] pdfxs + (Des) show + (i) + [3.34914 ] pdfxs + (g) show + (n) + [10.0362 ] pdfxs + (a) show + (ndIm) + [6.13082 9.47994 4.19998 8.92348 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [10.0362 ] pdfxs + (\() show + (PL) + [7.39623 6.85084 ] pdfxs + (D) show + (I) + [4.19998 ] pdfxs + (\)) show + 242.077 -534.669 m + /N614 10.909 Tf + (,S) + [6.6654 6.0654 ] pdfxs + (a) show + (nDie) + [9.6981 8.32365 3.0327 4.85451 ] pdfxs + (go) show + (,C) + [6.6654 7.8763 ] pdfxs + (A) show + (,) + [6.6654 ] pdfxs + (J) show + (un) + [6.0654 9.6981 ] pdfxs + (2003) show + (.) show + -4.57764e-05 -564.073 m + ([) + [3.0327 ] pdfxs + (25) show + (]Ben-ChungCheng) + [8.4872 7.72349 4.8436 6.0654 3.63261 7.8763 5.75995 6.0654 6.05449 9.90537 7.8763 + 6.0654 4.8436 6.0654 9.90537 ] pdfxs + (a) show + (ndWenmei) + [6.0654 10.5054 10.2981 4.85451 10.5054 9.09802 4.8436 7.48357 ] pdfxs + (H) show + (wu.Modul) + [7.8763 6.0654 10.2872 10.0036 5.74904 6.0654 6.05449 3.0327 ] pdfxs + (a) show + (rin) + [8.72718 3.0327 5.74904 ] pdfxs + (t) show + (erprocedur) + [4.85451 4.2654 6.0654 4.27631 5.74904 4.85451 4.8436 6.0654 6.05449 4.27631 ] pdfxs + (a) show + (lp) + [7.48357 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er) + [4.8436 8.72718 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysisusing) + [3.0327 5.75995 4.29811 3.0327 8.74898 6.0654 4.29811 3.0327 6.0654 9.90537 ] pdfxs + (a) show + (c-) + [4.8436 3.63261 ] pdfxs + 22.424 -585.996 m + (cessp) + [4.8436 4.85451 4.29811 8.31262 6.0654 ] pdfxs + (at) show + (hs:Desi) + [6.05449 4.30902 8.62901 8.32365 4.85451 4.29811 3.0327 ] pdfxs + (g) show + (n,implemen) + [6.0654 7.13448 3.02179 9.09802 6.05449 3.0327 4.85451 9.08711 4.8436 5.75995 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (n,) + [6.05449 7.13448 ] pdfxs + (a) show + (ndev) + [6.0654 10.069 4.8436 5.15995 ] pdfxs + (a) show + (lu) + [3.02179 6.0654 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n.) + [6.05449 8.9781 ] pdfxs + (I) show + (n) show + 293.387 -585.996 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.70534 ] pdfxs + (o) show + (ft) + [7.59274 3.62179 ] pdfxs + (h) show + (eACMSIGPLAN) + [9.26181 7.83262 7.81088 14.029 6.13082 4.19998 8.44359 7.39623 6.85084 8.10534 8.10534 + ] pdfxs + 22.424 -607.918 m + (C) + [7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 10.4836 ] pdfxs + (o) show + (nPro) + [11.6071 7.39623 4.0363 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmingL) + [8.92348 8.92348 3.33823 6.14173 10.4836 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ag) show + (e) + [10.4836 ] pdfxs + (Des) show + (i) + [3.33823 ] pdfxs + (g) show + (n) + [11.6071 ] pdfxs + (a) show + (ndImpl) + [6.13082 11.0399 4.21089 8.91258 5.58542 2.78176 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + (a) show + (ti) + [3.6327 3.33823 ] pdfxs + (o) show + (n) + [11.6071 ] pdfxs + (\() show + (PL) + [7.39623 6.83993 ] pdfxs + (D) show + (I) + [4.21089 ] pdfxs + (\)) show + 392.421 -607.918 m + /N614 10.909 Tf + (,p) + [8.3672 6.05449 ] pdfxs + (ag) show + (es) + [4.85451 9.63261 ] pdfxs + (57{69) show + (,) show + 22.424 -629.841 m + (V) + [7.2763 ] pdfxs + (a) show + (nc) + [6.05449 4.85451 ] pdfxs + (o) show + (uver,Bri) + [6.05449 5.4545 4.85451 4.2654 6.6654 7.7344 4.2654 3.0327 ] pdfxs + (t) show + (ishC) + [3.0327 4.29811 9.6981 7.88721 ] pdfxs + (o) show + (lumbi) + [3.02179 6.0654 8.78166 6.0654 3.0327 ] pdfxs + (a) show + (,C) + [6.6654 7.8763 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (d) + [6.05449 ] pdfxs + (a) show + (,) + [6.6654 ] pdfxs + (J) show + (une) + [6.0654 6.05449 8.4872 ] pdfxs + (2000) show + (.) show + 220.363 -657.201 m + (198) show + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 72 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (res) + [4.27631 4.8436 4.30902 ] pdfxs + (o) show + (urcesusedisqui) + [6.05449 4.27631 4.8436 4.85451 8.26899 6.05449 4.30902 4.8436 10.0254 3.0327 8.26899 + 5.74904 6.0654 3.0327 ] pdfxs + (t) show + (ere) + [8.80356 4.27631 4.85451 ] pdfxs + (a) show + (s) + [4.29811 ] pdfxs + (o) show + (n) + [6.0654 ] pdfxs + (a) show + (blef) + [6.05449 3.0327 8.81447 3.32724 ] pdfxs + (o) show + (r) + [8.23627 ] pdfxs + (a) show + (n) + [10.0254 ] pdfxs + (agg) show + (ressive) + [4.27631 4.8436 4.30902 4.29811 3.0327 5.4545 8.81447 ] pdfxs + (o) show + (p) + [6.05449 ] pdfxs + (t) show + (imizing) + [3.0327 9.08711 3.0327 4.85451 3.02179 6.0654 9.41446 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n) + [10.0254 ] pdfxs + (ta) show + (r) + [4.27631 ] pdfxs + (g) show + (e) + [4.8436 ] pdfxs + (tt) show + (ingmem) + [3.0327 6.05449 9.42537 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 5.75995 ] pdfxs + 0 -21.922 m + (sys) + [4.29811 5.75995 4.30902 ] pdfxs + (t) show + (emperf) + [4.8436 12.7307 6.35994 4.8436 4.27631 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (nce.) + [6.05449 4.85451 4.8436 3.0327 ] pdfxs + 16.936 -43.845 m + (The) + [7.8763 6.0654 8.63993 ] pdfxs + (A) show + (utom) + [6.0654 4.23277 5.46541 9.08711 ] pdfxs + (at) show + (icPo) + [3.0327 8.63993 7.12357 5.74904 ] pdfxs + (o) show + (l) + [6.82903 ] pdfxs + (A) show + (lloc) + [3.0327 3.02179 5.75995 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [9.86173 ] pdfxs + (a) show + (l) + [3.02179 ] pdfxs + (go) show + (ri) + [4.27631 3.0327 ] pdfxs + (t) show + (hmisdescribedinde) + [6.05449 12.8834 3.0327 8.09444 6.0654 4.8436 4.30902 4.8436 4.27631 3.0327 6.35994 + 4.85451 9.85082 3.0327 9.85082 6.0654 4.8436 ] pdfxs + (ta) show + (ilinCh) + [3.0327 6.81812 3.0327 9.85082 7.88721 6.05449 ] pdfxs + (a) show + (p) + [6.0654 ] pdfxs + (t) show + (er) + [4.8436 8.06173 ] pdfxs + (5) show + (.P) + [8.35629 7.12357 ] pdfxs + (o) show + (r) + [4.2654 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.0654 8.09444 ] pdfxs + (o) show + (f) + [7.12357 ] pdfxs + (t) show + (his) + [6.0654 3.02179 4.29811 ] pdfxs + 0 -65.768 m + (w) + [7.57085 ] pdfxs + (o) show + (rkwerepublishedin[) + [4.27631 9.39264 7.58175 4.8436 4.27631 8.4872 6.05449 6.0654 6.05449 3.0327 3.0327 + 4.29811 6.0654 4.8436 9.6981 3.0327 9.6981 3.0327 ] pdfxs + (89) show + (].) + [3.02179 3.0327 ] pdfxs + 0 -111.222 m + /N622 14.346 Tf + (1.2A) + [8.07685 4.476 24.2161 12.1798 ] pdfxs + (pp) show + (li) + [4.49035 4.476 ] pdfxs + (ca) show + (tio) + [6.26925 4.49035 8.07685 ] pdfxs + (n) show + (sof) + [11.735 8.07685 10.3147 ] pdfxs + (Mac) show + (ros) + [6.58481 8.07685 6.35528 ] pdfxs + (c) show + (o) + [8.07685 ] pdfxs + (p) show + (icTec) + [4.476 12.5527 9.88436 7.3595 6.72827 ] pdfxs + (hn) show + (iq) + [4.49035 8.50709 ] pdfxs + (u) show + (es) + [7.37385 6.36962 ] pdfxs + 0 -143.948 m + /N614 10.909 Tf + (Building) + [7.72349 6.0654 3.0327 3.02179 6.0654 3.0327 6.05449 7.97448 ] pdfxs + (o) show + (n) + [8.58538 ] pdfxs + (t) show + (hef) + [6.05449 7.37448 3.33815 ] pdfxs + (o) show + (und) + [6.05449 6.0654 6.05449 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [8.58538 ] pdfxs + (o) show + (f) + [5.84722 ] pdfxs + (D) show + (SA) + [6.0654 10.7017 ] pdfxs + (a) show + (nd) + [6.05449 8.58538 ] pdfxs + (A) show + (u) + [6.05449 ] pdfxs + (to) show + (m) + [9.09802 ] pdfxs + (a) show + (ticPo) + [4.23277 3.0327 7.37448 7.11266 5.75995 ] pdfxs + (o) show + (l) + [5.55268 ] pdfxs + (A) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n,awider) + [6.05449 5.77086 7.97448 7.88721 3.02179 6.0654 7.37448 4.2654 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (e) + [7.36358 ] pdfxs + (o) show + (fnewm) + [5.85813 6.05449 4.85451 10.3963 9.09802 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.29811 4.85451 ] pdfxs + (o) show + (pic) + [6.05449 3.0327 4.8436 ] pdfxs + 0 -165.87 m + (t) show + (echniques) + [4.8436 4.54905 6.0654 6.05449 3.0327 5.75995 6.05449 4.85451 7.51627 ] pdfxs + (a) show + (rep) + [4.27631 8.07266 6.35994 ] pdfxs + (o) show + (ssible.This) + [4.29811 4.30902 3.0327 6.05449 3.0327 4.8436 7.74539 7.8763 6.0654 3.02179 7.52718 + ] pdfxs + (t) show + (hesisexpl) + [6.0654 4.8436 4.29811 3.0327 7.52718 4.8436 5.75995 6.0654 3.02179 ] pdfxs + (o) show + (ressever) + [4.27631 4.85451 7.51627 4.30902 4.8436 5.4545 4.8436 4.27631 ] pdfxs + (a) show + (lm) + [6.25085 9.08711 ] pdfxs + (a) show + (cr) + [4.85451 4.27631 ] pdfxs + (o) show + (sc) + [4.29811 4.8436 ] pdfxs + (o) show + (pic) + [6.0654 3.0327 8.06175 ] pdfxs + (t) show + (echniqueswhich) + [4.85451 4.53815 6.0654 6.0654 3.02179 5.75995 6.0654 4.8436 7.52718 7.8763 6.05449 + 3.0327 4.54905 9.28355 ] pdfxs + (ta) show + (r) + [4.2654 ] pdfxs + (g) show + (etimproved) + [4.85451 7.46184 3.0327 9.08711 6.05449 4.27631 5.14905 5.4545 4.85451 6.0654 ] pdfxs + 0 -187.793 m + (perf) + [6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nce,describedbrie\rybelow.) + [6.0654 4.8436 4.8436 6.6763 6.05449 4.85451 4.29811 4.85451 4.2654 3.0327 6.35994 + 4.85451 9.6981 6.05449 4.27631 3.0327 4.8436 6.0654 9.39264 6.35994 4.85451 3.02179 + 5.15996 7.8763 3.0327 ] pdfxs + 0 -225.625 m + /N622 11.955 Tf + (1.2.1) + [6.7307 3.73 6.7307 3.73 20.1801 ] pdfxs + (S) show + (im) + [3.73 11.2138 ] pdfxs + (p) show + (lePoolAllo) + [3.73 10.616 8.82275 7.08935 6.7307 8.21312 10.1618 3.74195 3.73 7.1013 ] pdfxs + (ca) show + (tion) + [5.22437 3.74195 6.71874 11.955 ] pdfxs + (Op) show + (timi) + [5.23633 3.73 11.2138 3.73 ] pdfxs + (za) show + (tio) + [5.23633 3.73 6.7307 ] pdfxs + (n) show + (s) show + 0 -254.593 m + /N614 10.909 Tf + (The\frst) + [7.8763 6.0654 8.54175 6.05449 4.27631 4.30902 7.93092 ] pdfxs + (a) show + (ndm) + [6.0654 9.75264 9.08711 ] pdfxs + (o) show + (sts) + [4.30902 7.93092 4.30902 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (i) + [3.0327 ] pdfxs + (g) show + (h) + [5.75995 ] pdfxs + (t) show + (-f) + [3.63261 3.33815 ] pdfxs + (o) show + (rw) + [4.2654 7.58175 ] pdfxs + (a) show + (rd) + [4.27631 9.75264 ] pdfxs + (a) show + (pplic) + [6.05449 6.0654 3.0327 3.02179 4.85451 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nisac) + [9.75264 3.0327 7.99626 9.14174 4.85451 ] pdfxs + (o) show + (llec) + [3.0327 3.02179 4.85451 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.75264 ] pdfxs + (o) show + (fsimpleimprovemen) + [7.0363 4.29811 3.0327 9.08711 6.0654 3.02179 8.55266 3.02179 9.09802 6.05449 4.27631 + 5.14905 5.4545 4.85451 9.08711 4.8436 5.75995 ] pdfxs + (t) show + (s) + [7.99626 ] pdfxs + (t) show + (o) + [9.15265 ] pdfxs + (t) show + (hepo) + [6.05449 8.54175 6.37085 5.75995 ] pdfxs + (o) show + (l) show + 0 -276.516 m + (a) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (edcode.Bec) + [4.8436 10.9526 4.8436 5.75995 6.05449 4.85451 11.629 7.72349 4.85451 4.8436 ] pdfxs + (a) show + (use) + [6.0654 4.29811 9.74174 ] pdfxs + (t) show + (hepo) + [6.05449 9.74174 6.35994 5.75995 ] pdfxs + (o) show + (l) + [7.90902 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (ato) show + (rh) + [9.16354 6.05449 ] pdfxs + (a) show + (sc) + [9.19625 4.8436 ] pdfxs + (o) show + (mple) + [9.09802 6.05449 3.0327 4.8436 ] pdfxs + (t) show + (ec) + [9.74174 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (o) show + (lover) + [7.91993 5.14905 5.4545 4.85451 9.15263 ] pdfxs + (t) show + (hepo) + [6.0654 9.73083 6.37085 5.74904 ] pdfxs + (o) show + (lrun) + [7.91993 4.27631 6.05449 5.75995 ] pdfxs + (t) show + (imelibr) + [3.0327 9.08711 9.74174 3.02179 3.0327 6.0654 4.2654 ] pdfxs + (a) show + (ry,) + [4.27631 4.8545 3.0327 ] pdfxs + 0 -298.438 m + (wec) + [7.57085 8.77084 4.85451 ] pdfxs + (a) show + (nexp) + [9.98173 4.8436 5.75995 6.35994 ] pdfxs + (o) show + (searicherin) + [4.30902 8.77084 9.37083 4.27631 3.0327 4.53815 6.0654 4.8436 8.20355 3.02179 5.75995 + ] pdfxs + (t) show + (erf) + [4.8436 4.27631 3.33815 ] pdfxs + (a) show + (ce) + [4.8436 8.77084 ] pdfxs + (t) show + (o) + [9.37083 ] pdfxs + (t) show + (hec) + [6.0654 8.77084 4.8436 ] pdfxs + (o) show + (mpiler) + [9.09802 6.05449 3.0327 3.0327 4.8436 8.19264 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (nwh) + [9.98173 7.8763 6.0654 ] pdfxs + (a) show + (tisprovidedby) + [8.16001 3.0327 8.22535 6.05449 4.27631 5.14905 5.75995 3.0327 6.05449 4.85451 9.98173 + 5.75995 9.67628 ] pdfxs + (t) show + (hes) + [6.05449 8.77084 4.30902 ] pdfxs + (ta) show + (nd) + [6.05449 6.0654 ] pdfxs + (a) show + (rdClibr) + [4.2654 9.98173 11.8035 3.0327 3.0327 6.05449 4.27631 ] pdfxs + (a) show + (ry) + [4.27631 5.75995 ] pdfxs + 0 -320.361 m + /N722 10.909 Tf + (malloc) show + 37.243 -320.361 m + /N614 10.909 Tf + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + 57.698 -320.361 m + /N722 10.909 Tf + (free) show + 83.486 -320.361 m + /N614 10.909 Tf + (f) + [3.33815 ] pdfxs + (a) show + (mily) + [9.08711 3.0327 3.02179 8.63992 ] pdfxs + (o) show + (ffunc) + [6.21813 3.32724 6.0654 6.05449 4.85451 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns.) + [6.05449 4.30902 7.62539 ] pdfxs + (I) show + (np) + [8.93447 6.0654 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (t) show + (icul) + [3.0327 4.85451 6.05449 3.0327 ] pdfxs + (a) show + (r,ifthec) + [4.27631 6.05449 3.0327 6.21813 4.23277 6.0654 7.72357 4.85451 ] pdfxs + (o) show + (mpilerc) + [9.08711 6.0654 3.0327 3.02179 4.85451 7.14537 4.85451 ] pdfxs + (a) show + (nprove) + [8.93447 6.0654 4.27631 5.14905 5.4545 7.72357 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (tapo) + [7.11275 8.33447 6.37085 5.75995 ] pdfxs + (o) show + (l) + [5.90177 ] pdfxs + (o) show + (fmem) + [6.21813 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 5.75995 ] pdfxs + -1.52588e-05 -342.283 m + (o) show + (nlyc) + [6.0654 3.02179 9.83991 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (ta) show + (innodes) + [3.0327 10.1345 6.05449 5.75995 6.05449 4.85451 8.37808 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (trequire) + [8.32365 4.2654 4.85451 5.75995 6.05449 3.0327 4.27631 8.92356 ] pdfxs + (4) show + (-by) + [3.63261 5.75995 5.74904 ] pdfxs + (t) show + (e) + [8.92356 ] pdfxs + (a) show + (li) + [3.0327 3.0327 ] pdfxs + (g) show + (nmen) + [6.05449 9.09802 4.8436 5.75995 ] pdfxs + (t) show + (,itc) + [7.21085 3.0327 8.31274 4.85451 ] pdfxs + (a) show + (nlower) + [10.1345 3.0327 5.14905 7.57085 4.85451 8.34536 ] pdfxs + (t) show + (he) + [6.05449 8.92356 ] pdfxs + (a) show + (li) + [3.0327 3.0327 ] pdfxs + (g) show + (nmentrequirementf) + [6.05449 9.09802 4.8436 5.75995 8.31274 4.27631 4.85451 5.74904 6.0654 3.0327 4.2654 + 4.85451 9.08711 4.85451 5.74904 8.32365 3.32724 ] pdfxs + (o) show + (r) + [8.34536 ] pdfxs + (t) show + (he) + [6.0654 4.8436 ] pdfxs + -1.52588e-05 -364.206 m + (po) + [6.35994 5.75995 ] pdfxs + (o) show + (l) + [7.07994 ] pdfxs + (\() show + (whichdef) + [7.8763 6.0654 3.02179 4.54905 10.1126 6.05449 4.85451 3.32724 ] pdfxs + (a) show + (ul) + [6.0654 3.02179 ] pdfxs + (t) show + (s) + [8.35626 ] pdfxs + (t) show + (o) + [9.50174 ] pdfxs + (8) show + (-byte) + [3.63261 5.75995 5.75995 4.23277 8.90174 ] pdfxs + (a) show + (lignmen) + [3.0327 3.02179 5.46541 6.05449 9.08711 4.85451 5.75995 ] pdfxs + (t) show + (\),p) + [4.23277 7.18903 6.35994 ] pdfxs + (ot) show + (en) + [4.8436 5.75995 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (a) show + (llyreducingin) + [3.0327 3.02179 9.80719 4.27631 4.8436 6.0654 6.05449 4.85451 3.0327 6.05449 9.50174 + 3.0327 5.75995 ] pdfxs + (t) show + (er-) + [4.8436 4.27631 3.63261 ] pdfxs + (o) show + (bjectp) + [6.66539 3.33815 4.8436 4.85451 8.28001 6.0654 ] pdfxs + (a) show + (ddin) + [6.0654 6.05449 3.0327 6.05449 ] pdfxs + (g) show + (.) + [9.11992 ] pdfxs + (L) show + (ikewise,if) + [3.02179 5.4545 4.85451 7.8763 3.0327 4.29811 4.85451 7.17812 3.0327 3.33815 ] pdfxs + -1.52588e-05 -386.128 m + (t) show + (hec) + [6.05449 9.30538 4.8436 ] pdfxs + (o) show + (mpilerc) + [9.08711 6.0654 3.0327 3.0327 4.8436 8.71627 4.85451 ] pdfxs + (a) show + (nprove) + [10.5054 6.0654 4.2654 5.14905 5.4545 9.30538 ] pdfxs + (t) show + (hemem) + [6.05449 9.29447 9.09802 4.8436 9.08711 ] pdfxs + (o) show + (ryisneverde) + [4.27631 10.2108 3.02179 8.74898 6.0654 4.8436 5.4545 4.85451 8.71627 6.0654 4.8436 + ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (edfr) + [4.8436 10.5163 3.32724 4.27631 ] pdfxs + (o) show + (mapo) + [13.538 9.90537 6.35994 5.75995 ] pdfxs + (o) show + (l,itc) + [3.0327 7.67993 3.02179 8.69455 4.8436 ] pdfxs + (a) show + (ninf) + [10.5163 3.02179 6.0654 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 13.538 ] pdfxs + (t) show + (herun) + [6.0654 9.29447 4.27631 6.05449 5.75995 ] pdfxs + (t) show + (ime) + [3.0327 9.08711 4.8436 ] pdfxs + -1.52588e-05 -408.051 m + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (titdoesn) + [8.57455 3.0327 8.56365 6.0654 5.75995 4.8436 8.62899 6.0654 ] pdfxs + (o) show + (tneedtokeep) + [8.56365 6.0654 4.8436 4.8436 10.3963 4.23277 9.78537 5.4545 4.85451 4.8436 10.3854 + ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (ck) + [4.53815 10.0908 ] pdfxs + (o) show + (f) + [7.65811 ] pdfxs + (a) show + (nyme) + [5.75995 10.0799 9.08711 4.85451 ] pdfxs + (ta) show + (d) + [6.05449 ] pdfxs + (at) show + (af) + [9.78537 3.32724 ] pdfxs + (o) show + (r) + [8.59627 ] pdfxs + (o) show + (bjec) + [6.6763 3.32724 4.85451 4.8436 ] pdfxs + (t) show + (sin) + [8.62899 3.0327 10.3854 ] pdfxs + (t) show + (hepo) + [6.05449 9.17447 6.37085 5.74904 ] pdfxs + (o) show + (l) + [7.36357 ] pdfxs + (\() show + (reducing) + [4.2654 4.85451 6.05449 6.0654 4.8436 3.0327 6.0654 9.77446 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) show + -1.52588e-05 -429.973 m + (t) show + (ime) + [3.0327 9.08711 8.4872 ] pdfxs + (a) show + (ndelimin) + [6.05449 9.6981 4.85451 3.02179 3.0327 9.09802 3.02179 6.0654 ] pdfxs + (at) show + (ingaper-) + [3.0327 6.05449 9.0981 9.08719 6.35994 4.85451 4.2654 3.64352 ] pdfxs + (o) show + (bjecthe) + [6.66539 3.32724 4.85451 4.8436 7.87638 6.0654 4.8436 ] pdfxs + (a) show + (derw) + [6.0654 4.8436 7.909 7.58175 ] pdfxs + (o) show + (rd) + [4.27631 6.05449 ] pdfxs + (\)) show + (.) show + 16.936 -451.896 m + (Thekeyc) + [7.8763 6.0654 9.38174 5.4545 4.85451 10.2872 4.85451 ] pdfxs + (o) show + (n) + [5.74904 ] pdfxs + (t) show + (ribu) + [4.27631 3.0327 6.05449 6.0654 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [10.5926 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tpo) + [8.78183 6.37085 5.74904 ] pdfxs + (o) show + (l) + [7.57084 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (nprovidesisby) + [10.6035 6.05449 4.27631 5.14905 5.75995 3.0327 6.05449 4.85451 8.83626 3.0327 8.83626 + 5.75995 5.75995 ] pdfxs + 296.432 -451.896 m + /N634 10.909 Tf + (p) + [5.01816 ] pdfxs + (a) show + (rtiti) + [4.60356 3.62179 3.34914 3.62179 3.34914 ] pdfxs + (o) show + (ningdi) + [6.13082 3.34914 6.13082 9.74181 5.58542 3.33823 ] pdfxs + (s) show + (tin) + [3.62179 3.34914 6.13082 ] pdfxs + (c) show + (t) + [8.3563 ] pdfxs + (da) show + (ta) + [3.6327 10.2981 ] pdfxs + (s) show + (tru) + [3.6327 4.59266 5.85816 ] pdfxs + (c) show + (tur) + [3.62179 5.85816 4.0363 ] pdfxs + (es) show + -6.10352e-05 -473.818 m + (int) + [3.34914 10.2871 3.6327 ] pdfxs + (h) show + (e) + [9.17454 ] pdfxs + (h) show + (e) + [4.46185 ] pdfxs + (ap) show + 53.2079 -473.818 m + /N614 10.909 Tf + (,so) + [7.01448 4.30902 9.37083 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [8.16001 ] pdfxs + (t) show + (hesedecisi) + [6.0654 4.8436 4.30902 8.75993 6.0654 4.8436 4.85451 3.0327 4.29811 3.0327 ] pdfxs + (o) show + (nsc) + [6.05449 8.22535 4.8436 ] pdfxs + (a) show + (nbem) + [9.98173 6.35994 8.77084 9.08711 ] pdfxs + (a) show + (de) + [6.0654 8.75993 ] pdfxs + (o) show + (naper-d) + [9.98173 9.37083 6.35994 4.85451 4.27631 3.63261 6.0654 ] pdfxs + (a) show + (t) + [4.23277 ] pdfxs + (a) show + (-s) + [3.64352 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ureb) + [6.05449 4.27631 8.75993 6.0654 ] pdfxs + (a) show + (sis.F) + [4.29811 3.0327 4.30902 8.71629 6.21813 ] pdfxs + (o) show + (rex) + [8.18173 4.85451 5.75995 ] pdfxs + (a) show + (mple,) + [9.08711 6.0654 3.02179 4.85451 7.01448 ] pdfxs + (t) show + (his) + [6.0654 3.02179 4.29811 ] pdfxs + -6.10352e-05 -495.741 m + (a) show + (llowss) + [3.0327 3.0327 5.14905 7.8763 8.05081 4.30902 ] pdfxs + (o) show + (med) + [9.08711 8.59629 6.0654 ] pdfxs + (at) show + (as) + [9.19628 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (uresin) + [6.0654 4.27631 4.8436 8.05081 3.0327 9.80719 ] pdfxs + (t) show + (hepr) + [6.0654 8.59629 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (m) + [12.8398 ] pdfxs + (t) show + (obefully) + [9.20719 6.35994 8.59629 3.33815 6.05449 3.0327 3.0327 9.50173 ] pdfxs + (a) show + (li) + [3.0327 3.0327 ] pdfxs + (g) show + (nedwherenecess) + [6.0654 4.8436 9.80719 7.88721 6.05449 4.85451 4.2654 8.59629 6.0654 4.8436 4.85451 + 4.8436 4.30902 4.29811 ] pdfxs + (a) show + (ry,) + [4.27631 4.84359 6.81812 ] pdfxs + (a) show + (nd) + [6.05449 9.80719 ] pdfxs + (ot) show + (hers) + [6.0654 4.8436 4.27631 8.05081 ] pdfxs + (t) show + (ouse) + [9.20719 6.05449 4.30902 4.8436 ] pdfxs + -6.10352e-05 -517.663 m + (less) + [3.0327 4.8436 4.30902 7.81081 ] pdfxs + (a) show + (li) + [3.0327 3.0327 ] pdfxs + (g) show + (nmentwhenp) + [6.05449 9.09802 4.8436 5.75995 7.75638 7.8763 6.05449 4.85451 9.56719 6.37085 ] pdfxs + (o) show + (ssible.Wi) + [4.29811 4.30902 3.02179 6.0654 3.0327 4.8436 7.84357 11.2035 3.0327 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (o) show + (utpo) + [6.05449 7.75638 6.35994 5.75995 ] pdfxs + (o) show + (l) + [6.5454 ] pdfxs + (a) show + (lloc) + [3.0327 3.02179 5.75995 4.85451 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n,evenwi) + [6.0654 6.56721 4.8436 5.4545 4.85451 9.56719 7.8763 3.0327 ] pdfxs + (t) show + (hamu) + [9.5781 8.95629 8.79257 6.0654 ] pdfxs + (ta) show + (blerun) + [6.05449 3.0327 8.35629 4.27631 6.05449 5.75995 ] pdfxs + (t) show + (imelibr) + [3.0327 9.08711 8.3672 3.02179 3.0327 6.0654 4.2654 ] pdfxs + (a) show + (ry,these) + [4.27631 4.8545 6.56721 4.23277 6.0654 4.8436 4.30902 4.8436 ] pdfxs + -6.10352e-05 -539.586 m + (s) + [4.29811 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (t) show + (s) + [8.09444 ] pdfxs + (o) show + (fdecisi) + [7.11266 6.0654 4.8436 4.85451 3.0327 4.29811 3.0327 ] pdfxs + (o) show + (nsw) + [6.05449 8.09444 7.57085 ] pdfxs + (o) show + (uldhave) + [6.0654 3.0327 9.85082 6.05449 5.14905 5.4545 8.63993 ] pdfxs + (t) show + (obem) + [9.23992 6.35994 8.63993 9.08711 ] pdfxs + (a) show + (de) + [6.0654 8.63993 ] pdfxs + (o) show + (n) + [9.83991 ] pdfxs + (g) show + (l) + [3.0327 ] pdfxs + (o) show + (b) + [6.0654 ] pdfxs + (a) show + (l\(per-pr) + [6.81812 4.23277 6.37085 4.8436 4.27631 3.63261 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (m\)b) + [9.09802 8.0291 6.05449 ] pdfxs + (a) show + (sis,whichw) + [4.30902 3.02179 4.30902 6.85085 7.88721 6.05449 3.0327 4.54905 9.83991 7.58175 ] pdfxs + (o) show + (uldr) + [6.05449 3.0327 9.85082 4.2654 ] pdfxs + (a) show + (rely) + [4.27631 4.85451 3.02179 9.54537 ] pdfxs + (a) show + (llow) + [3.0327 3.0327 5.14905 7.8763 ] pdfxs + -6.10352e-05 -561.509 m + (a) show + (nyimprovemen) + [5.75995 8.98901 3.0327 9.08711 6.05449 4.27631 5.14905 5.4545 4.85451 9.08711 4.85451 + 5.74904 ] pdfxs + (t) show + (.Ch) + [7.74539 7.8763 6.0654 ] pdfxs + (a) show + (pter6describes) + [6.0654 4.23277 4.85451 7.50537 8.68356 6.0654 4.8436 4.29811 4.85451 4.27631 3.02179 + 6.37085 4.8436 7.53809 ] pdfxs + (a) show + (ndev) + [6.05449 9.29446 4.85451 5.14904 ] pdfxs + (a) show + (lu) + [3.0327 6.05449 ] pdfxs + (at) show + (es) + [4.85451 7.52718 ] pdfxs + (t) show + (hese) + [6.0654 4.8436 4.30902 8.07266 ] pdfxs + (t) show + (echniquesinm) + [4.85451 4.53815 6.0654 6.05449 3.0327 5.75995 6.0654 4.8436 7.53809 3.0327 9.28355 + 9.09802 ] pdfxs + (o) show + (rede) + [4.2654 8.08357 6.0654 4.8436 ] pdfxs + (ta) show + (il,showing) + [3.0327 3.02179 6.34903 4.29811 6.0654 5.14905 7.8763 3.0327 6.0654 8.68356 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (at) show + -6.10352e-05 -583.431 m + (simple) + [4.29811 3.0327 9.09802 6.05449 3.0327 8.07266 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nslike) + [6.05449 7.53809 3.0327 3.02179 5.4545 8.08357 ] pdfxs + (t) show + (hisc) + [6.05449 3.0327 7.53809 4.8436 ] pdfxs + (a) show + (nprovideup) + [9.29446 6.05449 4.27631 5.14905 5.75995 3.0327 6.05449 8.08357 6.05449 9.29446 ] pdfxs + (t) show + (oa) + [8.68356 8.68356 ] pdfxs + (40) show + (%perf) + [12.3162 6.37085 4.8436 4.27631 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nceimprovementover) + [6.0654 4.8436 8.08357 3.0327 9.08711 6.05449 4.27631 5.14905 5.4545 4.85451 9.08711 + 4.85451 5.74904 7.47275 5.15996 5.4545 4.8436 7.50537 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [7.47275 ] pdfxs + (a) show + (lre) + [3.0327 4.27631 4.8436 ] pdfxs + (a) show + (dy) + [6.0654 5.75995 ] pdfxs + -6.10352e-05 -605.354 m + (providedbypo) + [6.0654 4.2654 5.14905 5.75995 3.0327 6.0654 4.8436 9.6981 5.75995 9.39264 6.35994 + 5.75995 ] pdfxs + (o) show + (l) + [6.6654 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.68719 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (o) show + (ne.) + [6.0654 4.8436 3.0327 ] pdfxs + 231.273 -657.201 m + (7) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (19) 20 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 595.275591 788.031496 translate + 180 rotate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 72 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N622 11.955 Tf + (1.2.2Tr) + [6.7307 3.73 6.7307 3.73 20.1801 8.225 5.49929 ] pdfxs + (an) show + (s) + [5.29606 ] pdfxs + (pa) show + (rentPointerCom) + [5.49929 6.13291 7.10126 9.70749 8.82275 6.71874 3.74195 7.08931 5.23633 6.13291 9.98241 + 9.70749 6.7307 11.2019 ] pdfxs + (p) show + (ressio) + [5.49929 6.13291 5.30802 5.30802 3.73 6.7307 ] pdfxs + (n) show + 0 -28.968 m + /N614 10.909 Tf + (64) show + (-bitsys) + [3.63261 6.0654 3.0327 7.22184 4.30902 5.74904 4.30902 ] pdfxs + (t) show + (ems) + [4.8436 9.08711 7.28718 ] pdfxs + (a) show + (rebec) + [4.27631 7.83266 6.35994 4.85451 4.8436 ] pdfxs + (o) show + (mingb) + [9.09802 3.02179 6.0654 8.43265 6.37085 ] pdfxs + (ot) show + (hincre) + [9.04356 3.0327 6.05449 4.85451 4.2654 4.85451 ] pdfxs + (a) show + (sin) + [4.29811 3.0327 6.05449 ] pdfxs + (g) show + (lyimp) + [3.0327 8.74901 3.02179 9.09802 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (ta) show + (nt) + [5.74904 7.23275 ] pdfxs + (a) show + (ndincre) + [6.05449 9.04356 3.0327 6.0654 4.8436 4.27631 4.8436 ] pdfxs + (a) show + (sin) + [4.30902 3.0327 6.05449 ] pdfxs + (g) show + (lyc) + [3.0327 8.7381 4.85451 ] pdfxs + (o) show + (mm) + [9.08711 9.08711 ] pdfxs + (o) show + (n.) + [6.0654 7.65811 ] pdfxs + (U) show + (nf) + [6.0654 3.32724 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (t) show + (un) + [6.05449 6.0654 ] pdfxs + (at) show + (ely,) + [4.8436 3.0327 4.8545 3.0327 ] pdfxs + 0 -50.89 m + (use) + [6.0654 4.29811 8.99993 ] pdfxs + (o) show + (f) + [7.48357 ] pdfxs + (64) show + (-bitp) + [3.63261 6.05449 3.0327 8.3891 6.37085 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (erscandr) + [4.85451 4.2654 8.45444 4.8436 5.46541 10.1999 6.0654 4.27631 ] pdfxs + (a) show + (m) + [9.08711 ] pdfxs + (at) show + (ic) + [3.0327 4.8436 ] pdfxs + (a) show + (llyimp) + [3.0327 3.0327 9.90537 3.02179 9.09802 6.05449 ] pdfxs + (a) show + (ct) + [4.85451 8.3891 ] pdfxs + (t) show + (heperf) + [6.05449 8.99993 6.35994 4.85451 4.27631 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nce) + [6.0654 4.8436 8.99993 ] pdfxs + (o) show + (fp) + [7.48357 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er-intensivepr) + [4.8436 4.27631 3.63261 3.0327 5.75995 4.23277 4.85451 6.05449 4.30902 3.0327 5.4545 + 8.98902 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (ms,) + [9.09802 4.29811 7.30903 ] pdfxs + (a) show + (s) show + 0 -72.813 m + (t) show + (heyrequiretwice) + [6.05449 4.85451 10.7454 4.27631 4.8436 5.75995 6.0654 3.0327 4.2654 9.83992 3.93823 + 7.88721 3.02179 4.85451 9.83992 ] pdfxs + (a) show + (smuchmem) + [9.29443 8.79257 6.05449 4.54905 11.0508 9.09802 4.8436 9.08711 ] pdfxs + (o) show + (ry,c) + [4.27631 4.84359 8.3672 4.8436 ] pdfxs + (a) show + (chesp) + [4.54905 6.0654 9.83992 4.29811 6.0654 ] pdfxs + (a) show + (ce,) + [4.8436 4.85451 8.35629 ] pdfxs + (a) show + (ndmem) + [6.0654 11.0508 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ryb) + [4.27631 10.7454 6.0654 ] pdfxs + (a) show + (ndwid) + [6.05449 6.0654 7.8763 3.0327 6.05449 ] pdfxs + (t) show + (htoprocess) + [11.0617 4.23277 10.4508 6.0654 4.2654 5.75995 4.85451 4.8436 4.30902 9.29443 ] pdfxs + (a) show + (s) + [9.29443 ] pdfxs + (32) show + (-bi) + [3.63261 6.0654 3.02179 ] pdfxs + (t) show + 0 -94.735 m + (p) + [6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (ers.Tr) + [4.8436 4.27631 4.29811 8.10538 6.95994 4.27631 ] pdfxs + (a) show + (nsp) + [6.0654 4.29811 6.0654 ] pdfxs + (a) show + (rentP) + [4.2654 4.85451 5.75995 7.95274 7.11266 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (erC) + [4.8436 7.98537 7.8763 ] pdfxs + (o) show + (mpressi) + [9.08711 6.0654 4.27631 4.8436 4.30902 4.29811 3.0327 ] pdfxs + (o) show + (n) + [9.76355 ] pdfxs + (o) show + (\013erstwoways) + [6.37077 4.8436 4.27631 8.00717 3.93823 7.58175 9.16356 7.57085 5.15996 5.74904 8.01808 + ] pdfxs + (o) show + (fc) + [7.0363 4.85451 ] pdfxs + (o) show + (mb) + [8.78166 6.0654 ] pdfxs + (at) show + (ing) + [3.0327 6.05449 9.16356 ] pdfxs + (t) show + (hispr) + [6.0654 3.02179 8.01808 6.05449 4.27631 ] pdfxs + (o) show + (blem:s) + [6.0654 3.02179 4.85451 9.08711 8.02902 4.29811 ] pdfxs + (tat) show + (ic) + [3.0327 8.55266 ] pdfxs + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + 0 -116.658 m + (dyn) + [6.0654 5.74904 6.0654 ] pdfxs + (a) show + (micp) + [9.08711 3.0327 8.4872 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (erc) + [4.8436 7.909 4.85451 ] pdfxs + (o) show + (mpressi) + [9.08711 6.05449 4.27631 4.85451 4.29811 4.29811 3.0327 ] pdfxs + (o) show + (n.) + [6.0654 3.0327 ] pdfxs + 16.936 -138.581 m + (StaticP) + [6.0654 4.23277 5.46541 4.23277 3.0327 8.4872 7.12357 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (erC) + [4.85451 7.909 7.8763 ] pdfxs + (o) show + (mpressi) + [9.08711 6.0654 4.27631 4.8436 4.29811 4.30902 3.0327 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (a) show + (u) + [6.05449 ] pdfxs + (to) show + (m) + [9.08711 ] pdfxs + (at) show + (ic) + [3.0327 4.8436 ] pdfxs + (a) show + (llyiden) + [3.0327 3.0327 9.39264 3.0327 6.0654 4.8436 5.75995 ] pdfxs + (t) show + (i\fes) + [3.02179 6.0654 4.8436 7.94172 ] pdfxs + (a) show + (nd) + [6.0654 9.6981 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rmsins) + [4.27631 9.08711 7.94172 3.02179 6.0654 4.29811 ] pdfxs + (ta) show + (nces) + [6.0654 4.8436 4.85451 7.94172 ] pdfxs + (o) show + (ftype-s) + [6.97085 3.93823 5.74904 6.37085 4.8436 3.64352 4.29811 ] pdfxs + (a) show + (fed) + [3.33815 8.47629 6.0654 ] pdfxs + (ata) show + 0 -160.503 m + (s) + [4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ures,repl) + [6.05449 4.27631 4.85451 4.29811 6.23994 4.2654 4.85451 6.05449 3.0327 ] pdfxs + (a) show + (cingp) + [4.85451 3.0327 6.05449 8.55265 6.37085 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (ersin) + [4.8436 4.27631 7.40718 3.0327 9.15265 ] pdfxs + (t) show + (hed) + [6.0654 7.94175 6.0654 ] pdfxs + (at) show + (as) + [8.55265 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (urewi) + [6.05449 4.27631 7.95266 7.8763 3.0327 ] pdfxs + (t) show + (hsm) + [9.15265 4.30902 9.08711 ] pdfxs + (a) show + (llerin) + [3.0327 3.0327 4.8436 7.37446 3.0327 5.74904 ] pdfxs + (t) show + (e) + [4.85451 ] pdfxs + (g) show + (er) + [4.8436 7.37446 ] pdfxs + (o) show + (\013se) + [6.35986 4.30902 4.8436 ] pdfxs + (t) show + (sfr) + [7.40718 3.32724 4.27631 ] pdfxs + (o) show + (mthes) + [12.1962 4.23277 6.0654 7.95266 4.29811 ] pdfxs + (ta) show + (rt) + [4.27631 7.34184 ] pdfxs + (o) show + (f) + [6.4254 ] pdfxs + (t) show + (he) + [6.0654 4.8436 ] pdfxs + 0 -182.426 m + (po) + [6.35994 5.75995 ] pdfxs + (o) show + (l) + [5.73813 ] pdfxs + (t) show + (hey) + [6.05449 4.85451 8.45447 ] pdfxs + (a) show + (reloc) + [4.27631 7.54903 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (edin.Bec) + [4.8436 8.77083 3.0327 6.05449 7.57084 7.72349 4.85451 4.8436 ] pdfxs + (a) show + (usepo) + [6.0654 4.29811 7.54903 6.37085 5.74904 ] pdfxs + (o) show + (l) + [5.73813 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ndividesapr) + [8.75992 6.05449 3.0327 5.75995 3.0327 6.05449 4.85451 7.00355 8.15993 6.05449 4.27631 + ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (mupin) + [11.7925 6.05449 8.77083 3.0327 5.74904 ] pdfxs + (t) show + (opo) + [8.15993 6.35994 5.75995 ] pdfxs + (o) show + (ls,it) + [3.0327 4.29811 5.92358 3.0327 6.94911 ] pdfxs + (a) show + (llowsrecursive) + [3.02179 3.0327 5.14905 7.88721 7.00355 4.27631 4.8436 4.8436 6.0654 4.27631 4.29811 + 3.0327 5.4545 4.8436 ] pdfxs + 0 -204.348 m + (d) + [6.0654 ] pdfxs + (a) show + (tas) + [4.23277 9.61083 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ures) + [6.05449 4.27631 4.8436 8.45444 ] pdfxs + (t) show + (oe) + [9.59992 4.8436 ] pdfxs + (a) show + (ch) + [4.54905 10.2108 ] pdfxs + (g) show + (row) + [4.27631 5.14905 12.0217 ] pdfxs + (t) show + (o) + [9.59992 ] pdfxs + (2) show + 162.068 -200.389 m + /N703 7.96999 Tf + (32) + [4.23211 4.23211 ] pdfxs + 175.182 -204.348 m + /N614 10.909 Tf + (bytes\() + [5.75995 5.75995 4.23277 4.85451 8.45444 4.23277 ] pdfxs + (a) show + (ndins) + [6.0654 10.2108 3.0327 10.1999 4.30902 ] pdfxs + (o) show + (mec) + [9.08711 8.99993 4.8436 ] pdfxs + (a) show + (ses) + [4.30902 4.8436 8.45444 ] pdfxs + (2) show + 304.648 -200.389 m + /N703 7.96999 Tf + (32) + [4.23211 4.23211 ] pdfxs + 317.762 -204.348 m + /N614 10.909 Tf + (nodes) + [6.0654 5.74904 6.0654 4.8436 4.30902 ] pdfxs + (\)) show + (,wi) + [7.29812 7.88721 3.02179 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (o) show + (utenc) + [6.05449 8.40001 4.8436 6.0654 4.8436 ] pdfxs + (o) show + (un) + [6.0654 5.74904 ] pdfxs + (t) show + (ering) + [4.85451 4.2654 3.0327 6.0654 9.59992 ] pdfxs + (a) show + -3.05176e-05 -226.271 m + (run) + [4.27631 6.05449 5.75995 ] pdfxs + (t) show + (imeerr) + [3.0327 9.08711 8.4872 4.8436 4.27631 4.27631 ] pdfxs + (o) show + (r.However,) + [4.2654 7.87629 8.19266 5.14905 7.57085 4.85451 5.4545 4.8436 4.27631 6.6654 ] pdfxs + (t) show + (hep) + [6.05449 8.4872 6.35994 ] pdfxs + (o) show + (ssibility) + [4.30902 4.29811 3.0327 6.0654 3.02179 3.0327 3.0327 3.93823 9.39264 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (t) show + (hisrun) + [6.0654 3.02179 7.94172 4.27631 6.05449 5.75995 ] pdfxs + (t) show + (imeerr) + [3.0327 9.08711 8.4872 4.8436 4.27631 4.27631 ] pdfxs + (o) show + (risn) + [7.909 3.0327 7.93081 6.0654 ] pdfxs + (o) show + (t) + [7.87638 ] pdfxs + (a) show + (ccep) + [4.85451 4.8436 4.8436 6.0654 ] pdfxs + (ta) show + (blef) + [6.0654 3.02179 8.4872 3.33815 ] pdfxs + (o) show + (r) + [7.909 ] pdfxs + (a) show + (lld) + [3.02179 6.6763 6.05449 ] pdfxs + (o) show + (m) + [9.08711 ] pdfxs + (a) show + (ins.) + [3.0327 6.0654 4.29811 3.0327 ] pdfxs + 16.936 -248.193 m + (D) show + (yn) + [5.75995 6.05449 ] pdfxs + (a) show + (micP) + [9.09802 3.02179 8.10539 7.11266 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (erC) + [4.8436 7.52719 7.8763 ] pdfxs + (o) show + (mpressi) + [9.08711 6.0654 4.27631 4.8436 4.30902 4.29811 3.0327 ] pdfxs + (o) show + (ns) + [9.30537 4.30902 ] pdfxs + (o) show + (lves) + [3.02179 5.4545 4.85451 7.54899 ] pdfxs + (t) show + (hispr) + [6.0654 3.02179 7.5599 6.05449 4.27631 ] pdfxs + (o) show + (blembyspecul) + [6.05449 3.0327 4.85451 12.338 5.74904 9.01083 4.30902 6.35994 4.8436 4.85451 6.05449 + 3.0327 ] pdfxs + (at) show + (ivelyc) + [3.0327 5.4545 4.8436 3.0327 9.01083 4.8436 ] pdfxs + (o) show + (mpressing) + [9.08711 6.0654 4.27631 4.8436 4.30902 4.29811 3.0327 6.05449 8.70538 ] pdfxs + (64) show + (-bitp) + [3.63261 6.0654 3.0327 7.48365 6.37085 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (ers) + [4.85451 4.2654 4.29811 ] pdfxs + -3.05176e-05 -270.116 m + (t) show + (o) + [8.22538 ] pdfxs + (32) show + (-bitindicesintype-s) + [3.64352 6.05449 3.0327 7.01457 3.0327 6.0654 6.05449 3.0327 4.8436 4.85451 7.07991 + 3.02179 8.83628 3.94914 5.74904 6.37085 4.8436 3.63261 4.30902 ] pdfxs + (a) show + (fed) + [3.32724 7.62539 6.0654 ] pdfxs + (at) show + (astruc) + [8.22538 4.30902 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ures,while) + [6.0654 4.2654 4.85451 4.29811 5.97813 7.8763 6.0654 3.0327 3.0327 7.61448 ] pdfxs + (a) show + (llowing) + [3.0327 3.0327 5.14905 7.8763 3.0327 6.0654 8.22538 ] pdfxs + (t) show + (hem) + [6.0654 4.8436 11.8689 ] pdfxs + (t) show + (o) + [8.22538 ] pdfxs + (g) show + (rowb) + [4.27631 5.14905 10.6581 6.05449 ] pdfxs + (a) show + (ck) + [4.54905 8.53083 ] pdfxs + (t) show + (ofull) + [8.22538 3.33815 6.05449 3.0327 5.80359 ] pdfxs + (64) show + (-bitindexes) + [3.64352 6.05449 3.0327 7.01457 3.0327 6.0654 6.05449 4.85451 5.74904 4.85451 4.29811 + ] pdfxs + -3.05176e-05 -292.038 m + (whenneeded\(rewri) + [7.8763 6.0654 4.8436 10.1235 6.05449 4.85451 4.8436 6.0654 4.8436 10.1235 4.23277 + 4.27631 4.85451 7.8763 4.2654 3.0327 ] pdfxs + (t) show + (ingmemory) + [3.0327 6.05449 9.51264 9.09802 4.8436 9.08711 5.46541 4.2654 9.8181 ] pdfxs + (a) show + (sneeded) + [8.35626 6.0654 4.8436 4.85451 6.05449 4.85451 6.05449 ] pdfxs + (\)) show + (.This) + [9.14174 7.8763 6.0654 3.02179 8.36717 ] pdfxs + (a) show + (llows) + [3.0327 3.02179 5.15996 7.8763 8.35626 ] pdfxs + (t) show + (hec) + [6.0654 8.90174 4.8436 ] pdfxs + (o) show + (mpiler) + [9.09802 6.05449 3.0327 3.0327 4.8436 8.33445 ] pdfxs + (t) show + (ospecul) + [9.51264 4.29811 6.35994 4.85451 4.8436 6.0654 3.0327 ] pdfxs + (at) show + (e) + [8.90174 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [8.30183 ] pdfxs + (t) show + (hed) + [6.0654 8.90174 6.05449 ] pdfxs + (ata) show + -3.05176e-05 -313.961 m + (s) + [4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ureswillbesm) + [6.05449 4.27631 4.85451 7.93081 7.88721 3.02179 3.0327 6.6654 6.37085 8.47629 4.30902 + 9.08711 ] pdfxs + (a) show + (llwi) + [3.0327 6.6654 7.8763 3.0327 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (o) show + (utl) + [6.05449 7.87638 3.0327 ] pdfxs + (o) show + (sing) + [4.30902 3.02179 6.0654 9.08719 ] pdfxs + (g) show + (ener) + [4.85451 6.05449 4.85451 4.2654 ] pdfxs + (a) show + (lity) + [3.0327 3.0327 3.93823 9.39264 ] pdfxs + (t) show + (opr) + [9.08719 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (mswi) + [9.09802 7.93081 7.88721 3.02179 ] pdfxs + (t) show + (hl) + [9.6981 3.0327 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (g) show + (ed) + [8.47629 6.0654 ] pdfxs + (at) show + (asizes.) + [9.08719 4.30902 3.0327 4.8436 4.8436 4.30902 3.0327 ] pdfxs + 16.936 -335.883 m + (Ch) + [7.8763 6.0654 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (er7shows) + [4.85451 7.25446 8.43265 4.29811 6.0654 5.14905 7.8763 7.28718 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (tS) + [7.22184 6.05449 ] pdfxs + (tat) show + (icP) + [3.0327 7.83266 7.12357 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (erC) + [4.8436 7.25446 7.88721 ] pdfxs + (o) show + (mpressi) + [9.08711 6.0654 4.2654 4.85451 4.29811 4.30902 3.02179 ] pdfxs + (o) show + (nc) + [9.04356 4.85451 ] pdfxs + (a) show + (nspeedupp) + [9.04356 4.29811 6.35994 4.85451 4.8436 9.04356 6.0654 9.04356 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (erin) + [4.85451 7.25446 3.0327 5.74904 ] pdfxs + (t) show + (ensivepr) + [4.85451 6.05449 4.30902 3.0327 5.4545 7.82175 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (msfr) + [9.09802 7.27627 3.33815 4.27631 ] pdfxs + (o) show + (m) show + -3.05176e-05 -357.806 m + (20) show + (%) + [12.2725 ] pdfxs + (t) show + (o) + [8.62902 ] pdfxs + (2) show + (xinex) + [8.93447 3.0327 9.23992 4.85451 5.74904 ] pdfxs + (t) show + (remec) + [4.27631 4.8436 9.09802 8.02902 4.8436 ] pdfxs + (a) show + (ses) + [4.30902 4.8436 7.48354 ] pdfxs + (\() show + (overpo) + [5.14905 5.4545 4.85451 7.45083 6.35994 5.75995 ] pdfxs + (o) show + (l) + [6.20722 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [6.05449 ] pdfxs + (\)) show + (,m) + [6.3054 9.08711 ] pdfxs + (at) show + (ching) + [4.54905 6.05449 3.0327 6.05449 8.63993 ] pdfxs + (t) show + (heperf) + [6.05449 8.02902 6.37085 4.8436 4.27631 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nce) + [6.0654 4.8436 8.02902 ] pdfxs + (o) show + (fpr) + [6.51267 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (msc) + [9.08711 7.48354 4.85451 ] pdfxs + (o) show + (mpiled) + [9.08711 6.0654 3.0327 3.02179 4.85451 6.0654 ] pdfxs + -3.05176e-05 -379.728 m + (t) show + (ousen) + [8.57447 6.0654 4.29811 7.97448 6.05449 ] pdfxs + (at) show + (ive) + [3.0327 5.4545 7.97448 ] pdfxs + (32) show + (-bitp) + [3.63261 6.0654 3.02179 7.37456 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (ersinm) + [4.85451 4.2654 7.429 3.0327 9.18537 9.08711 ] pdfxs + (a) show + (nyc) + [5.75995 8.87992 4.8436 ] pdfxs + (a) show + (ses.) + [4.30902 4.8436 4.30902 7.70175 ] pdfxs + (I) show + (nc) + [9.18537 4.8436 ] pdfxs + (a) show + (seswhereuse) + [4.30902 4.8436 7.429 7.8763 6.0654 4.8436 4.27631 7.97448 6.05449 4.30902 7.96357 + ] pdfxs + (o) show + (f) + [6.45812 ] pdfxs + (64) show + (-bitmodeen) + [3.63261 6.0654 3.0327 7.36366 9.08711 5.75995 6.0654 7.96357 4.85451 6.05449 ] pdfxs + (a) show + (blesfe) + [6.0654 3.0327 4.8436 7.429 3.32724 4.85451 ] pdfxs + (at) show + (ures) + [6.05449 4.27631 4.8436 7.429 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (at) show + -3.05176e-05 -401.651 m + (a) show + (ren) + [4.27631 8.03993 6.0654 ] pdfxs + (o) show + (tav) + [7.44002 5.14905 5.14904 ] pdfxs + (a) show + (il) + [3.0327 3.0327 ] pdfxs + (a) show + (blein) + [6.05449 3.0327 8.05084 3.0327 9.25083 ] pdfxs + (32) show + (-bitmode) + [3.64352 6.05449 3.0327 7.44002 9.08711 5.75995 6.0654 8.03993 ] pdfxs + (\() show + (e.) + [4.85451 3.02179 ] pdfxs + (g) show + (.) + [7.73448 ] pdfxs + (t) show + (he) + [6.0654 8.03993 ] pdfxs + (A) show + (M) + [10.0036 ] pdfxs + (D6) show + (4) + [8.65083 ] pdfxs + (a) show + (rchi) + [4.27631 4.53815 6.0654 3.0327 ] pdfxs + (t) show + (ecture) + [4.8436 4.85451 4.23277 6.0654 4.27631 4.8436 ] pdfxs + (\)) show + (,p) + [6.31631 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (erc) + [4.8436 7.47264 4.8436 ] pdfxs + (o) show + (mpressi) + [9.09802 6.05449 4.27631 4.8436 4.30902 4.29811 3.0327 ] pdfxs + (o) show + (nc) + [9.26173 4.8436 ] pdfxs + (a) show + (nevenbe) + [9.26173 4.8436 5.4545 4.85451 9.26173 6.35994 4.8436 ] pdfxs + (at) show + -3.05176e-05 -423.574 m + (n) + [6.0654 ] pdfxs + (a) show + (tive) + [4.23277 3.0327 5.4545 8.4872 ] pdfxs + (32) show + (-bitperf) + [3.63261 6.0654 3.0327 7.87638 6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nce.) + [6.0654 4.8436 4.8436 3.0327 ] pdfxs + 16.936 -445.496 m + (P) + [7.12357 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (erC) + [4.85451 7.909 7.8763 ] pdfxs + (o) show + (mpressi) + [9.08711 6.0654 4.27631 4.8436 4.29811 4.30902 3.0327 ] pdfxs + (o) show + (nisdue) + [9.6981 3.02179 7.94172 6.0654 6.05449 8.4872 ] pdfxs + (t) show + (obepublishedin[) + [9.08719 6.37085 8.47629 6.0654 6.0654 6.05449 3.0327 3.0327 4.29811 6.0654 4.8436 + 9.6981 3.0327 9.6981 3.02179 ] pdfxs + (90) show + (].) + [3.0327 3.0327 ] pdfxs + -3.05176e-05 -483.328 m + /N622 11.955 Tf + (1.2.3Ot) + [6.7307 3.73 6.7307 3.73 20.1801 10.09 5.23633 ] pdfxs + (h) show + (er) + [6.13291 9.98241 ] pdfxs + (Mac) show + (ros) + [5.48733 6.7307 5.30802 ] pdfxs + (c) show + (o) + [6.71874 ] pdfxs + (p) show + (icTec) + [3.74195 10.4606 8.225 6.14487 5.59493 ] pdfxs + (hn) show + (iq) + [3.74195 7.10119 ] pdfxs + (u) show + (es) + [6.13291 5.30802 ] pdfxs + -3.05176e-05 -512.296 m + /N614 10.909 Tf + (M) + [10.0036 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.29811 4.85451 ] pdfxs + (o) show + (pic) + [6.05449 3.0327 9.10902 ] pdfxs + (t) show + (echniquesc) + [4.8436 4.54905 6.0654 6.05449 3.0327 5.75995 6.05449 4.85451 8.56353 4.8436 ] pdfxs + (a) show + (n) + [10.3199 ] pdfxs + (a) show + (lsobeusedf) + [3.0327 4.29811 9.71992 6.35994 9.10902 6.0654 4.29811 4.85451 10.3199 3.32724 ] pdfxs + (o) show + (rawider) + [8.53082 9.71992 7.8763 3.0327 6.05449 9.10902 4.27631 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (e) + [9.10902 ] pdfxs + (o) show + (f) + [7.59266 ] pdfxs + (ot) show + (hern) + [6.0654 4.8436 8.53082 6.0654 ] pdfxs + (o) show + (n-perf) + [6.0654 3.63261 6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (ncerel) + [6.0654 4.8436 9.10902 4.27631 4.8436 3.0327 ] pdfxs + (at) show + (edpur-) + [4.8436 10.3199 6.0654 6.05449 4.27631 3.63261 ] pdfxs + -3.05176e-05 -534.219 m + (p) + [6.35994 ] pdfxs + (o) show + (ses.) + [4.30902 4.8436 4.30902 7.72357 ] pdfxs + (I) show + (np) + [9.22901 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (icul) + [3.0327 4.8436 6.0654 3.0327 ] pdfxs + (a) show + (r,) + [4.2654 6.29449 ] pdfxs + (t) show + (heymaybeused) + [6.0654 4.8436 8.92356 9.09802 5.14905 8.92356 6.35994 8.01812 6.0654 4.29811 4.85451 + 9.22901 ] pdfxs + (t) show + (oimprovepr) + [8.61811 3.0327 9.09802 6.05449 4.27631 5.14905 5.4545 8.01812 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (mcheckp) + [12.2616 4.53815 6.0654 4.8436 4.54905 5.75995 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (ing\() + [3.02179 6.0654 8.62902 4.23277 ] pdfxs + (o) show + (nlycheckp) + [6.0654 3.0327 8.92356 4.54905 6.05449 4.85451 4.53815 5.75995 6.37085 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (ingd) + [3.0327 6.05449 8.62902 6.05449 ] pdfxs + (ata) show + -3.05176e-05 -556.142 m + (s) + [4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ures) + [6.05449 4.27631 4.85451 7.17809 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (thavech) + [7.12366 6.0654 5.14905 5.4545 7.72357 4.54905 6.0654 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (edsincethel) + [4.85451 8.93447 4.29811 3.0327 6.0654 4.8436 7.73448 4.23277 6.0654 7.72357 3.0327 + ] pdfxs + (a) show + (stcheckp) + [4.30902 7.11275 4.54905 6.0654 4.8436 4.54905 5.74904 6.37085 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t\)) show + (,p) + [6.0654 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (ningmem) + [6.0654 3.0327 6.05449 8.33447 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ryf) + [4.27631 8.63992 3.32724 ] pdfxs + (o) show + (rembeddedsys) + [7.15628 4.8436 8.79257 6.35994 4.85451 6.05449 6.0654 4.8436 8.94537 4.29811 5.75995 + 4.29811 ] pdfxs + (t) show + (ems) + [4.85451 9.08711 4.29811 ] pdfxs + -3.05176e-05 -578.064 m + (a) show + (ndn) + [6.0654 8.77083 6.05449 ] pdfxs + (o) show + (n-) + [6.0654 3.63261 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (di) + [6.05449 3.0327 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [6.05449 ] pdfxs + (a) show + (lprocess) + [5.74904 6.05449 4.27631 5.75995 4.8436 4.85451 4.29811 4.30902 ] pdfxs + (o) show + (r) + [6.98174 ] pdfxs + (a) show + (rchi) + [4.27631 4.53815 6.0654 3.0327 ] pdfxs + (t) show + (ectures,c) + [4.8436 4.85451 4.23277 6.0654 4.27631 4.8436 4.30902 5.92358 4.8436 ] pdfxs + (o) show + (nnec) + [6.0654 6.0654 4.8436 4.8436 ] pdfxs + (t) show + (ivity-b) + [3.0327 5.75995 3.0327 3.93823 5.75995 3.63261 6.0654 ] pdfxs + (a) show + (sed) + [4.29811 4.8436 8.78174 ] pdfxs + (ga) show + (rb) + [4.2654 6.0654 ] pdfxs + (ag) show + (ec) + [7.55994 4.85451 ] pdfxs + (o) show + (llec) + [3.02179 3.0327 4.85451 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n[) + [8.77083 3.0327 ] pdfxs + (74) show + (],pr) + [3.0327 5.92358 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (mun-) + [11.8035 6.05449 6.0654 3.63261 ] pdfxs + -3.05176e-05 -599.987 m + (ders) + [6.0654 4.8436 4.27631 4.29811 ] pdfxs + (ta) show + (ndin) + [6.0654 6.05449 3.0327 6.05449 ] pdfxs + (g) show + (,pr) + [6.85085 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (mvisu) + [12.8725 5.74904 3.0327 4.30902 6.05449 ] pdfxs + (a) show + (liz) + [3.0327 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n,) + [6.05449 6.85085 ] pdfxs + (a) show + (ndevend) + [6.05449 9.83991 4.85451 5.4545 4.8436 9.83991 6.0654 ] pdfxs + (at) show + (am) + [9.22901 9.08711 ] pdfxs + (a) show + (rsh) + [4.27631 4.29811 6.0654 ] pdfxs + (a) show + (lingf) + [3.0327 3.0327 6.05449 9.22901 3.33815 ] pdfxs + (o) show + (rrem) + [8.05082 4.27631 4.8436 9.09802 ] pdfxs + (o) show + (teprocedurec) + [4.23277 8.62902 6.0654 4.2654 5.75995 4.85451 4.8436 6.0654 6.05449 4.27631 8.62902 + 4.8436 ] pdfxs + (a) show + (lls) + [3.0327 3.0327 8.08354 ] pdfxs + (\() show + (p) + [6.05449 ] pdfxs + (a) show + (ssin) + [4.30902 4.29811 3.0327 6.05449 ] pdfxs + (g) show + -3.05176e-05 -621.909 m + (p) + [6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (erb) + [4.8436 8.56354 6.0654 ] pdfxs + (a) show + (sedd) + [4.29811 4.8436 10.3526 6.0654 ] pdfxs + (at) show + (as) + [9.74173 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (uresbyc) + [6.05449 4.27631 4.8436 8.59626 5.75995 10.0363 4.85451 ] pdfxs + (o) show + (nver) + [5.75995 5.4545 4.8436 4.27631 ] pdfxs + (t) show + (ingp) + [3.02179 6.0654 9.74173 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (ersin) + [4.8436 4.27631 8.59626 3.02179 5.75995 ] pdfxs + (t) show + (oindexes) + [9.74173 3.0327 6.05449 6.0654 4.8436 5.75995 4.85451 4.29811 ] pdfxs + (\)) show + (.Fin) + [9.82901 7.12357 3.0327 6.0654 ] pdfxs + (a) show + (lly,) + [3.02179 3.0327 4.8545 7.47266 ] pdfxs + (o) show + (ur) + [6.0654 8.56354 ] pdfxs + (g) show + (r) + [4.2654 ] pdfxs + (o) show + (upisinves) + [6.0654 10.3526 3.02179 8.59626 3.0327 5.74904 5.4545 4.85451 4.29811 ] pdfxs + (t) show + (i-) + [3.0327 3.63261 ] pdfxs + 231.273 -657.201 m + (8) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + 1 0 0 1 82.909 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + ([) + [3.0327 ] pdfxs + (8) show + (]Todd) + [8.4872 6.95994 5.75995 6.0654 26.3016 ] pdfxs + (A) show + (us) + [6.0654 4.29811 ] pdfxs + (t) show + (in,et) + [3.0327 6.05449 27.4252 4.85451 24.4799 ] pdfxs + (a) show + (l.TheP) + [3.0327 57.3595 7.8763 6.0654 25.0907 7.12357 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (er-in) + [4.8436 4.27631 3.63261 3.0327 5.75995 ] pdfxs + (t) show + (ensiveBenchm) + [4.8436 6.0654 4.29811 3.0327 5.4545 25.0907 7.7344 4.8436 6.0654 4.53815 6.0654 + 9.08711 ] pdfxs + (a) show + (rkSui) + [4.27631 25.9961 6.0654 6.05449 3.0327 ] pdfxs + (t) show + (e.) + [4.85451 3.0327 ] pdfxs + 16.97 -21.922 m + /N722 10.909 Tf + (www.cs.wisc.edu/~austin/ptr-dist.html) show + 228.877 -21.922 m + /N614 10.909 Tf + (,Sept) + [6.6654 6.0654 4.8436 6.0654 7.87638 ] pdfxs + (1995) show + (.) show + -1.52588e-05 -52.811 m + ([) + [3.0327 ] pdfxs + (9) show + (]) + [8.4872 ] pdfxs + (A) show + (ndrew) + [6.05449 6.0654 4.2654 4.85451 11.9781 ] pdfxs + (A) show + (yers,S) + [5.4545 4.85451 4.2654 4.30902 7.25448 6.05449 ] pdfxs + (t) show + (u) + [6.0654 ] pdfxs + (a) show + (rtde) + [4.2654 8.35637 6.05449 8.95629 ] pdfxs + (Jo) show + (n) + [6.05449 ] pdfxs + (g) show + (,) + [7.25448 ] pdfxs + (Jo) show + (hnPeyt) + [6.0654 10.1672 7.11266 4.85451 5.75995 4.23277 ] pdfxs + (o) show + (n,) + [6.0654 7.25448 ] pdfxs + (a) show + (nd) + [6.05449 10.1672 ] pdfxs + (R) show + (ich) + [3.0327 4.54905 6.05449 ] pdfxs + (a) show + (rdScho) + [4.27631 10.1672 6.0654 4.53815 6.0654 5.75995 ] pdfxs + (o) show + (ler.Sc) + [3.02179 4.85451 4.2654 9.27265 6.05449 4.85451 ] pdfxs + (a) show + (l) + [3.02179 ] pdfxs + (a) show + (blecr) + [6.0654 3.0327 8.95629 4.8436 4.27631 ] pdfxs + (o) show + (ss-module) + [4.29811 4.30902 3.63261 9.08711 5.75995 6.0654 6.05449 3.0327 4.8436 ] pdfxs + 16.97 -74.734 m + (o) show + (ptimiz) + [6.0654 4.23277 3.0327 9.09802 3.02179 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n.) + [6.0654 8.67265 ] pdfxs + (I) show + (n) show + 99.543 -74.734 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [8.60716 ] pdfxs + (o) show + (ft) + [7.49455 3.62179 ] pdfxs + (h) show + (eACMSIGPLANC) + [9.17454 7.83262 7.79997 13.9308 6.14173 4.19998 8.44359 7.39623 6.83993 8.11625 12.2508 + 7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (e) show + (nce) + [6.14173 4.46185 9.16363 ] pdfxs + (o) show + (nPro) + [10.2871 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.0363 ] pdfxs + (a) show + (mmingL) + [8.92348 8.92348 3.34914 6.13082 9.16363 6.28357 ] pdfxs + (a) show + (n) + [6.14173 ] pdfxs + (g) show + (u) + [5.84725 ] pdfxs + (age) show + 16.97 -96.656 m + (Des) show + (i) + [3.34914 ] pdfxs + (g) show + (n) + [10.0362 ] pdfxs + (a) show + (ndIm) + [6.13082 9.47994 4.19998 8.92348 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [10.0362 ] pdfxs + (\() show + (PL) + [7.39623 6.85084 ] pdfxs + (D) show + (I) + [4.19998 ] pdfxs + (\)) show + 188.241 -96.656 m + /N614 10.909 Tf + (,M) + [6.6654 10.0036 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (re) + [4.2654 4.85451 ] pdfxs + (a) show + (l,June) + [3.02179 6.6763 5.5964 6.0654 6.0654 8.47629 ] pdfxs + (1998) show + (.) show + -5.45403 -127.545 m + ([) + [3.0327 ] pdfxs + (10) show + (]V) + [8.4872 7.26539 ] pdfxs + (a) show + (s) + [4.30902 ] pdfxs + (a) show + (n) + [5.74904 ] pdfxs + (t) show + (hB) + [9.66537 7.7344 ] pdfxs + (a) show + (l) + [3.02179 ] pdfxs + (a) show + (,Evelyn) + [6.64358 7.42902 5.4545 4.8436 3.0327 5.75995 9.65446 ] pdfxs + (D) show + (ues) + [6.0654 4.8436 4.30902 ] pdfxs + (t) show + (erw) + [4.8436 4.27631 7.57085 ] pdfxs + (a) show + (ld,) + [3.0327 6.0654 6.63267 ] pdfxs + (a) show + (ndS) + [6.0654 9.66537 6.05449 ] pdfxs + (a) show + (njeevB) + [6.0654 3.32724 4.85451 4.8436 9.35992 7.7344 ] pdfxs + (a) show + (nerji) + [6.05449 4.85451 4.2654 3.33815 3.0327 ] pdfxs + (a) show + (.) + [7.81084 ] pdfxs + (D) show + (yn) + [5.75995 6.05449 ] pdfxs + (a) show + (m) + [9.09802 ] pdfxs + (o) show + (:Atr) + [7.85448 11.7926 4.23277 4.27631 ] pdfxs + (a) show + (nsp) + [6.0654 4.29811 6.0654 ] pdfxs + (a) show + (rentdyn) + [4.2654 4.85451 5.75995 7.84365 6.05449 5.75995 6.0654 ] pdfxs + (a) show + (mic) + [9.08711 3.0327 4.8436 ] pdfxs + 16.97 -149.468 m + (o) show + (ptimiz) + [6.0654 4.23277 3.0327 9.09802 3.02179 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (nsys) + [11.0399 4.29811 5.75995 4.29811 ] pdfxs + (t) show + (em.) + [4.85451 9.08711 11.8472 ] pdfxs + (I) show + (n) show + 141.305 -149.468 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.58897 ] pdfxs + (o) show + (ft) + [8.47637 3.62179 ] pdfxs + (h) show + (eACMSIGPLANConf) + [10.1563 7.83262 7.79997 14.9126 6.13082 4.21089 8.43268 7.40714 6.83993 8.10534 13.2435 + 7.79997 5.58542 6.13082 3.33823 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 10.1563 ] pdfxs + (o) show + (nPro) + [11.258 7.40714 4.0363 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmin) + [8.92348 8.91258 3.34914 6.13082 ] pdfxs + (g) show + 16.97 -171.39 m + (L) + [6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ag) show + (e) + [8.92363 ] pdfxs + (Des) show + (i) + [3.34914 ] pdfxs + (g) show + (n) + [10.0362 ] pdfxs + (a) show + (ndIm) + [6.13082 9.47994 4.19998 8.92348 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [10.0362 ] pdfxs + (\() show + (PL) + [7.39623 6.85084 ] pdfxs + (D) show + (I) + [4.19998 ] pdfxs + (\)) show + 236.623 -171.39 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (1{12) show + (,) + [6.6654 ] pdfxs + (J) show + (une) + [6.05449 6.0654 8.4872 ] pdfxs + (2000) show + (.) show + -5.45403 -202.279 m + ([) + [3.0327 ] pdfxs + (11) show + (]J) + [8.4872 5.5964 ] pdfxs + (o) show + (hnP.B) + [6.0654 9.99264 6.52358 6.95994 7.72349 ] pdfxs + (a) show + (nnin) + [6.0654 6.0654 3.02179 6.0654 ] pdfxs + (g) show + (.) + [8.75992 ] pdfxs + (A) show + (ne\016cientway) + [9.99264 4.8436 9.09802 4.8436 3.0327 4.8436 5.75995 8.18183 7.57085 5.14905 9.6981 + ] pdfxs + (t) show + (o\fnd) + [9.39265 6.05449 6.0654 9.99264 ] pdfxs + (t) show + (hesidee\013ec) + [6.0654 8.78174 4.29811 3.0327 6.0654 8.78174 4.8436 6.35986 4.85451 4.8436 ] pdfxs + (t) show + (s) + [8.23626 ] pdfxs + (o) show + (fprocedurec) + [7.2763 6.05449 4.27631 5.75995 4.8436 4.85451 6.05449 6.0654 4.2654 8.79265 4.8436 + ] pdfxs + (a) show + (lls) + [3.0327 3.0327 8.23626 ] pdfxs + (a) show + (nd) + [6.05449 10.0035 ] pdfxs + (t) show + (he) + [6.05449 8.78174 ] pdfxs + (a) show + (li) + [3.0327 3.0327 ] pdfxs + (a) show + (ses) + [4.29811 4.85451 4.29811 ] pdfxs + 16.97 -224.202 m + (o) show + (fv) + [8.03993 5.14904 ] pdfxs + (a) show + (ri) + [4.27631 3.0327 ] pdfxs + (a) show + (bles.) + [6.05449 3.0327 4.85451 4.29811 11.0617 ] pdfxs + (I) show + (n) show + 97.842 -224.202 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.34897 ] pdfxs + (o) show + (ft) + [8.23637 3.62179 ] pdfxs + (h) show + (eACMSIGACT-SIGPLANSymp) + [9.90544 7.83262 7.79997 14.6726 6.13082 4.21089 8.44359 7.82171 7.81088 7.79997 3.90544 + 6.13082 4.21089 8.44359 7.39623 6.83993 8.11625 12.9926 6.13082 5.30169 8.92348 5.01816 + ] pdfxs + (os) show + (ium) + [3.33823 5.85816 13.8107 ] pdfxs + (o) show + (nPrin) + [11.018 7.40714 4.59266 3.34914 6.13082 ] pdfxs + (c) show + (i) + [3.34914 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (s) + [9.34897 ] pdfxs + (o) show + (f) show + 16.97 -246.124 m + (Pro) + [7.39623 4.04721 5.01816 ] pdfxs + (g) show + (rammingL) + [4.0363 5.58542 8.91258 8.92348 3.34914 6.13082 8.92363 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ages) show + 133.248 -246.124 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (29{41) show + (,) + [6.6654 ] pdfxs + (N) show + (ewY) + [4.8436 11.5199 7.2763 ] pdfxs + (o) show + (rk,) + [4.2654 5.75995 6.6654 ] pdfxs + (NY) show + (,) + [6.6654 ] pdfxs + (U) show + (S) + [6.0654 ] pdfxs + (A) show + (,) + [6.6654 ] pdfxs + (1979) show + (.) show + -5.45403 -277.013 m + ([) + [3.0327 ] pdfxs + (12) show + (]David) + [8.4872 8.32365 5.15996 5.74904 3.0327 9.79628 ] pdfxs + (A) show + (.B) + [6.75267 7.7344 ] pdfxs + (a) show + (rre) + [4.2654 4.27631 4.8436 ] pdfxs + (t) show + (t) + [7.97456 ] pdfxs + (a) show + (ndBenG.) + [6.0654 9.78537 7.72349 4.85451 9.78537 8.5636 6.76358 ] pdfxs + (Zo) show + (rn.) + [4.2654 6.0654 8.13811 ] pdfxs + (U) show + (singlifetimepredic) + [4.30902 3.0327 6.05449 9.18538 3.0327 3.0327 3.32724 4.85451 4.23277 3.0327 9.09802 + 8.57447 6.05449 4.27631 4.85451 6.05449 3.0327 4.8436 ] pdfxs + (to) show + (rs) + [4.27631 8.02899 ] pdfxs + (t) show + (oimprovemem) + [9.18538 3.0327 9.08711 6.0654 4.2654 5.15996 5.4545 8.57447 9.08711 4.85451 9.08711 + ] pdfxs + (o) show + (ry) + [4.27631 9.47992 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) show + 16.97 -298.936 m + (perf) + [6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nce.) + [6.0654 4.8436 4.8436 8.9781 ] pdfxs + (I) show + (n) show + 98.796 -298.936 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (softheACMSIGPLANC) + [8.69443 5.58542 7.58183 3.62179 5.58542 9.26181 7.82171 7.81088 14.029 6.13082 4.19998 + 8.44359 7.39623 6.83993 8.11625 12.3489 7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 9.26181 ] pdfxs + (o) show + (nPro) + [10.3853 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.0363 ] pdfxs + (a) show + (mmingL) + [8.92348 8.92348 3.34914 6.13082 9.26181 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (age) show + 16.97 -320.858 m + (Des) show + (i) + [3.34914 ] pdfxs + (g) show + (n) + [10.0362 ] pdfxs + (a) show + (ndIm) + [6.13082 9.47994 4.19998 8.92348 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [10.0362 ] pdfxs + (\() show + (PL) + [7.39623 6.85084 ] pdfxs + (D) show + (I) + [4.19998 ] pdfxs + (\)) show + 188.241 -320.858 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (187{196) show + (,) + [6.6654 ] pdfxs + (A) show + (lbuquerque,) + [3.0327 6.05449 6.0654 5.75995 6.05449 4.85451 4.2654 5.75995 6.0654 4.8436 6.6654 + ] pdfxs + (N) show + (ewMexix) + [4.85451 11.509 10.0036 4.85451 5.74904 3.0327 5.75995 ] pdfxs + (o) show + (,) + [6.6654 ] pdfxs + (J) show + (une) + [6.05449 6.0654 8.4872 ] pdfxs + (1993) show + (.) show + -5.45403 -351.747 m + ([) + [3.0327 ] pdfxs + (13) show + (]Emery) + [8.4872 7.41812 9.08711 4.85451 4.27631 8.83629 ] pdfxs + (D) show + (.Ber) + [6.10904 7.7344 4.8436 4.27631 ] pdfxs + (g) show + (er,Benj) + [4.8436 4.27631 6.21813 7.7344 4.8436 6.0654 3.32724 ] pdfxs + (a) show + (minG.) + [9.09802 3.0327 9.14174 8.55269 6.11995 ] pdfxs + (Zo) show + (rn,) + [4.27631 6.05449 6.22904 ] pdfxs + (a) show + (ndK) + [6.05449 9.15265 8.47629 ] pdfxs + (at) show + (hrynS.McKinley.) + [6.0654 4.27631 5.74904 9.15265 6.05449 6.11995 9.99272 4.85451 8.47629 3.0327 6.0654 + 3.0327 4.8436 4.84359 6.97085 ] pdfxs + (R) show + (ec) + [4.85451 4.8436 ] pdfxs + (o) show + (nsideringcus) + [6.0654 4.29811 3.0327 6.05449 4.85451 4.2654 3.0327 6.0654 8.53084 4.85451 6.05449 + 4.30902 ] pdfxs + (to) show + (mmem-) + [12.1744 9.08711 4.85451 9.08711 3.63261 ] pdfxs + 16.97 -373.67 m + (o) show + (ry) + [4.27631 8.4872 ] pdfxs + (a) show + (lloc) + [3.0327 3.02179 5.75995 4.85451 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n.) + [6.0654 6.39267 ] pdfxs + (I) show + (n) show + 100.671 -373.67 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [7.52717 ] pdfxs + (o) show + (ft) + [6.41456 3.62179 ] pdfxs + (h) show + (eACMSIGPLANc) + [8.09455 7.83262 7.79997 12.8508 6.13082 4.21089 8.44359 7.39623 6.83993 8.10534 11.1817 + 4.46185 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 8.08364 ] pdfxs + (o) show + (nO) + [9.20715 8.36718 ] pdfxs + (b) show + (je) + [3.33823 4.46185 ] pdfxs + (c) show + (t-Ori) + [3.62179 3.90544 8.36718 4.59266 3.34914 ] pdfxs + (e) show + (ntedPro) + [6.13082 3.6327 4.45094 8.65085 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (ram-) + [4.0363 5.58542 8.91258 3.90544 ] pdfxs + 16.97 -395.592 m + (min) + [8.92348 3.33823 6.14173 ] pdfxs + (g) show + (,Sy) + [8.97818 6.13082 5.30169 ] pdfxs + (s) show + (t) + [3.62179 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (s) show + (,L) + [8.97818 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ages) show + (,) + [8.97818 ] pdfxs + (a) show + (ndA) + [6.14173 10.8654 8.10534 ] pdfxs + (pp) show + (lications\(OOPSLA) + [2.79267 3.34914 4.45094 5.58542 3.62179 3.33823 5.58542 6.13082 9.75261 4.45083 8.36718 + 8.36718 7.39623 6.13082 6.85084 8.10534 ] pdfxs + (\)) show + 294.754 -395.592 m + /N614 10.909 Tf + (,Se) + [8.17084 6.0654 4.8436 ] pdfxs + (att) show + (le,W) + [3.0327 4.8436 8.55265 10.309 ] pdfxs + (a) show + (shin) + [4.29811 6.0654 3.02179 6.0654 ] pdfxs + (gto) show + (n,) + [6.05449 8.55265 ] pdfxs + (N) show + (ovember) + [5.15996 5.4545 4.8436 8.79257 6.35994 4.8436 4.27631 ] pdfxs + 16.97 -417.515 m + (2002) show + (.) show + -5.45403 -448.404 m + ([) + [3.0327 ] pdfxs + (14) show + (]BrunoBl) + [8.4872 7.72349 4.27631 6.05449 6.0654 9.74173 7.7344 3.0327 ] pdfxs + (a) show + (nche) + [6.05449 4.54905 6.05449 4.85451 ] pdfxs + (t) show + (.Esc) + [9.82901 7.42902 4.29811 4.8436 ] pdfxs + (a) show + (pe) + [6.37085 9.14174 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisf) + [3.02179 5.75995 4.30902 3.02179 8.60717 3.32724 ] pdfxs + (o) show + (rJav) + [8.57445 5.5964 5.15996 5.14904 ] pdfxs + (a\() show + (TM) + [7.8763 10.0036 ] pdfxs + (\)) show + (:The) + [7.31994 7.8763 6.0654 4.8436 ] pdfxs + (o) show + (ry) + [4.27631 10.0581 ] pdfxs + (a) show + (ndPr) + [6.05449 10.3635 7.41812 4.27631 ] pdfxs + (a) show + (c) + [4.8436 ] pdfxs + (t) show + (ice.) + [3.0327 4.8436 4.85451 3.0327 ] pdfxs + 366.249 -448.404 m + /N634 10.909 Tf + (ACMTr) + [7.83262 7.79997 14.2908 6.97089 4.04721 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (sac) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (s) show + 16.97 -470.326 m + (o) show + (nPro) + [10.0362 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmingL) + [8.91258 8.92348 3.34914 6.13082 8.92363 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (age) show + (s) + [8.36716 ] pdfxs + (a) show + (ndSy) + [6.13082 9.47994 6.13082 5.30169 ] pdfxs + (s) show + (t) + [3.62179 ] pdfxs + (e) show + (ms) + [8.92348 8.35625 ] pdfxs + (\() show + (TOPLAS) + [7.81088 8.35627 7.40714 6.83993 8.10534 6.14173 ] pdfxs + (\)) show + 269.344 -470.326 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (25\(6\)) show + (:) + [3.0327 ] pdfxs + (713{775) show + (,) + [6.6654 ] pdfxs + (N) show + (ov) + [5.14905 9.39264 ] pdfxs + (2003) show + (.) show + -5.45401 -501.215 m + ([) + [3.0327 ] pdfxs + (15) show + (]) + [8.4872 ] pdfxs + (Ro) show + (bert) + [6.35994 4.8436 4.27631 8.00729 ] pdfxs + (D) show + (.Blum) + [6.7963 7.7344 3.02179 6.0654 9.08711 ] pdfxs + (o) show + (fe,Chris) + [3.33815 4.8436 6.82903 7.8763 6.0654 4.27631 3.02179 4.30902 ] pdfxs + (to) show + (pherF.) + [6.05449 6.0654 4.8436 8.03991 7.12357 6.7963 ] pdfxs + (J) show + (oer) + [5.75995 4.8436 4.27631 ] pdfxs + (g) show + (,Ch) + [6.82903 7.8763 6.0654 ] pdfxs + (a) show + (rlesE.) + [4.2654 3.0327 4.85451 8.06172 7.42902 6.7963 ] pdfxs + (L) show + (eisers) + [4.8436 3.0327 4.29811 4.85451 4.27631 4.29811 ] pdfxs + (o) show + (n,Kei) + [6.0654 6.82903 8.47629 4.85451 3.0327 ] pdfxs + (t) show + (h) + [9.81809 ] pdfxs + (H) show + (.) + [6.7963 ] pdfxs + (Ra) show + (nd) + [6.0654 6.0654 ] pdfxs + (a) show + (ll,) + [3.02179 3.0327 6.82903 ] pdfxs + (a) show + (ndYuli) + [6.0654 9.829 7.26539 6.0654 3.0327 3.0327 ] pdfxs + 16.97 -523.138 m + (Z) show + (h) + [6.0654 ] pdfxs + (o) show + (u.Cilk:) + [6.05449 12.1853 7.8763 3.0327 3.02179 5.75995 10.7781 ] pdfxs + (A) show + (ne\016cientmul) + [11.1381 4.85451 9.08711 4.8436 3.0327 4.85451 5.74904 9.32727 8.79257 6.05449 3.0327 + ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (t) show + (hre) + [6.05449 4.27631 4.8436 ] pdfxs + (a) show + (dedrun) + [6.0654 4.8436 11.149 4.27631 6.05449 5.75995 ] pdfxs + (t) show + (imesys) + [3.0327 9.08711 9.92719 4.30902 5.75995 4.29811 ] pdfxs + (t) show + (em.) + [4.8436 9.09802 12.1744 ] pdfxs + (I) show + (n) show + 319.211 -523.138 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.68715 ] pdfxs + (o) show + (ft) + [8.58545 3.62179 ] pdfxs + (h) show + (e) + [10.2545 ] pdfxs + (5) show + 418.003 -519.179 m + /N698 7.96999 Tf + (th) + [3.0605 4.87763 ] pdfxs + 431.673 -523.138 m + /N634 10.909 Tf + (ACM) + [7.83262 7.79997 9.7854 ] pdfxs + 16.97 -545.06 m + (SIGPLANSymp) + [6.13082 4.21089 8.43268 7.40714 6.83993 8.10534 11.8689 6.13082 5.30169 8.91258 5.01816 + ] pdfxs + (os) show + (ium) + [3.34914 5.85816 12.6762 ] pdfxs + (o) show + (nPrin) + [9.88351 7.39623 4.60356 3.34914 6.13082 ] pdfxs + (c) show + (i) + [3.34914 ] pdfxs + (p) show + (l) + [2.78176 ] pdfxs + (e) show + (sandPr) + [8.21444 5.58542 6.13082 9.32721 7.39623 4.04721 ] pdfxs + (ac) show + (tice) + [3.62179 3.34914 4.46185 8.77091 ] pdfxs + (o) show + (fP) + [7.10183 7.39623 ] pdfxs + (a) show + (r) + [4.04721 ] pdfxs + (a) show + (ll) + [3.34903 2.78176 ] pdfxs + (e) show + (lPro) + [6.54536 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (ramming) + [4.0363 5.58542 8.91258 8.92348 3.34914 6.13082 8.77091 ] pdfxs + (\() show + (PPOPP) + [7.39623 7.40714 8.35627 7.40714 7.39623 ] pdfxs + (\)) show + 424.465 -545.06 m + /N614 10.909 Tf + (,p) + [6.50176 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 4.29811 ] pdfxs + 16.97 -566.983 m + (207{216) show + (,S) + [6.6654 6.0654 ] pdfxs + (a) show + (n) + [5.74904 ] pdfxs + (t) show + (aB) + [9.0981 7.72349 ] pdfxs + (a) show + (rb) + [4.27631 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (a) show + (,C) + [6.6654 7.8763 ] pdfxs + (A) show + (,) + [6.6654 ] pdfxs + (J) show + (uly) + [6.0654 3.0327 9.39264 ] pdfxs + (1995) show + (.) show + -5.45403 -597.872 m + ([) + [3.0327 ] pdfxs + (16) show + (]GregB) + [8.4872 8.55269 4.27631 4.8436 10.3854 7.7344 ] pdfxs + (o) show + (llella) + [3.02179 3.0327 4.85451 3.02179 3.0327 10.3854 ] pdfxs + (a) show + (nd) + [6.0654 10.9854 ] pdfxs + (Ja) show + (mesG) + [9.09802 4.8436 9.22898 8.5636 ] pdfxs + (o) show + (slin) + [4.30902 3.02179 3.0327 6.0654 ] pdfxs + (g) show + (.There) + [11.7163 7.88721 6.05449 9.78537 4.2654 4.85451 ] pdfxs + (a) show + (l-) + [3.02179 3.64352 ] pdfxs + (t) show + (imespeci\fc) + [3.02179 9.09802 9.77446 4.30902 6.35994 4.8436 4.85451 3.0327 6.05449 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (nf) + [10.9963 3.32724 ] pdfxs + (o) show + (r) + [9.20717 ] pdfxs + (J) show + (av) + [5.14905 5.14904 ] pdfxs + (a) show + (.) show + 375.587 -597.872 m + /N634 10.909 Tf + (IEEEC) + [4.21089 7.39623 7.39623 12.4907 7.81088 ] pdfxs + (o) show + (m) + [8.92348 ] pdfxs + (p) show + (ut) + [5.85816 3.62179 ] pdfxs + (e) show + (r) show + 454.061 -597.872 m + /N614 10.909 Tf + (,) show + 16.97 -619.794 m + (33\(6\)) show + (:) + [3.0327 ] pdfxs + (47{54) show + (,) + [6.6654 ] pdfxs + (2000) show + (.) show + 214.909 -657.201 m + (197) show + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (20) 21 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 0.000000 0.000000 translate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + 1 0 0 1 72 629.34 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N622 24.787 Tf + (R) show + (efere) + [12.7157 8.52658 12.7157 11.402 12.7157 ] pdfxs + (nc) show + (es) + [12.7405 11.0054 ] pdfxs + 10.909 -61.773 m + /N614 10.909 Tf + ([) + [3.0327 ] pdfxs + (1) show + (]) + [8.4872 ] pdfxs + (A) show + (li-Reza) + [3.02179 3.0327 3.63261 8.03985 4.8436 4.8436 8.57447 ] pdfxs + (A) show + (dl-T) + [6.0654 3.0327 3.63261 6.97085 ] pdfxs + (a) show + (b) + [6.05449 ] pdfxs + (ata) show + (b) + [6.0654 ] pdfxs + (a) show + (i,) + [3.0327 6.25085 ] pdfxs + (J) show + (ayBh) + [5.14905 8.87992 7.72349 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (a) show + (dwaj,Mich) + [6.0654 7.57085 6.0654 3.32724 6.25085 10.0036 3.0327 4.54905 6.05449 ] pdfxs + (a) show + (lCierni) + [6.15267 7.8763 3.0327 4.8436 4.27631 6.05449 3.0327 ] pdfxs + (a) show + (k,M) + [5.75995 6.25085 10.0036 ] pdfxs + (a) show + (rshaEn) + [4.2654 4.30902 6.05449 8.57447 7.42902 6.05449 ] pdfxs + (g) show + (,) + [6.25085 ] pdfxs + (J) show + (esseF) + [4.85451 4.29811 4.30902 7.96357 6.20722 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (,Bri) + [6.25085 7.72349 4.27631 3.0327 ] pdfxs + (a) show + (nT.) + [9.17446 7.88721 3.0327 ] pdfxs + 27.879 -83.696 m + (L) show + (ewis,Bri) + [4.8436 7.88721 3.02179 4.30902 6.98176 7.72349 4.27631 3.0327 ] pdfxs + (a) show + (n) + [9.949 ] pdfxs + (R) show + (.Murphy,) + [6.9163 10.0036 6.05449 4.27631 6.05449 5.75995 4.8545 6.98176 ] pdfxs + (a) show + (nd) + [6.05449 9.949 ] pdfxs + (Ja) show + (mesM.S) + [9.08711 4.85451 8.19263 9.99272 6.92721 6.05449 ] pdfxs + (t) show + (ichn) + [3.0327 4.54905 6.05449 6.0654 ] pdfxs + (ot) show + (h.) + [6.05449 8.61811 ] pdfxs + (I) show + (mproving) + [9.09802 6.05449 4.27631 5.14905 5.75995 3.0327 6.05449 9.34901 ] pdfxs + (64) show + (-bitJava) + [3.63261 6.05449 3.0327 8.13819 5.5964 5.15996 5.14904 9.3381 ] pdfxs + (I) show + (PFperf) + [7.42902 11.0072 6.37085 4.8436 4.27631 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nce) + [6.0654 4.8436 4.8436 ] pdfxs + 27.879 -105.618 m + (byc) + [5.75995 10.7999 4.85451 ] pdfxs + (o) show + (mpressinghe) + [9.08711 6.0654 4.2654 4.85451 4.29811 4.30902 3.02179 6.0654 10.5054 6.05449 4.85451 + ] pdfxs + (a) show + (preferences.) + [11.1054 4.27631 4.8436 3.33815 4.8436 4.27631 4.8436 6.0654 4.8436 4.85451 4.29811 + 12.0763 ] pdfxs + (I) show + (n) show + 208.292 -105.618 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.65442 ] pdfxs + (o) show + (ft) + [8.55273 3.62179 ] pdfxs + (h) show + (eInt) + [10.2218 4.19998 6.14173 3.62179 ] pdfxs + (e) show + (rn) + [4.60356 6.13082 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [6.13082 ] pdfxs + (a) show + (lSymp) + [7.99626 6.13082 5.29078 8.92348 5.01816 ] pdfxs + (os) show + (ium) + [3.34914 5.84725 14.1271 ] pdfxs + (o) show + (nCo) + [11.3344 7.81088 5.01816 ] pdfxs + (de) show + 27.879 -127.541 m + (G) + [8.44359 ] pdfxs + (e) show + (n) + [6.13082 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (a) show + (ti) + [3.6327 3.33823 ] pdfxs + (o) show + (nandO) + [10.0362 5.58542 6.13082 9.47994 8.35627 ] pdfxs + (p) show + (timi) + [3.6327 3.33823 8.92348 3.34914 ] pdfxs + (za) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [10.0362 ] pdfxs + (\() show + (CGO) + [7.79997 8.44359 8.36718 ] pdfxs + (\)) show + 205.199 -127.541 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (100{110) show + (,M) + [6.6654 10.0036 ] pdfxs + (a) show + (rch) + [4.2654 4.54905 9.6981 ] pdfxs + (2004) show + (.) show + 10.909 -157.783 m + ([) + [3.0327 ] pdfxs + (2) show + (]) + [8.4872 ] pdfxs + (A) show + (li-Reza) + [3.02179 3.0327 3.63261 8.03985 4.8436 4.8436 10.0363 ] pdfxs + (A) show + (dl-T) + [6.0654 3.0327 3.63261 6.97085 ] pdfxs + (a) show + (b) + [6.05449 ] pdfxs + (ata) show + (b) + [6.0654 ] pdfxs + (a) show + (i,Ge) + [3.0327 7.84357 8.55269 4.85451 ] pdfxs + (o) show + (\013) + [10.9416 ] pdfxs + (La) show + (n) + [6.0654 ] pdfxs + (g) show + (d) + [6.05449 ] pdfxs + (a) show + (le,S) + [3.0327 4.8436 7.84357 6.0654 ] pdfxs + (t) show + (even) + [4.8436 5.4545 4.85451 10.6363 ] pdfxs + (L) show + (ucc) + [6.0654 4.8436 4.85451 ] pdfxs + (o) show + (,) + [7.84357 ] pdfxs + (a) show + (ndR) + [6.05449 10.6363 8.03985 ] pdfxs + (o) show + (bertW) + [6.35994 4.8436 4.27631 8.82546 10.2981 ] pdfxs + (a) show + (hbe.E\016cient) + [5.75995 6.35994 4.85451 10.669 7.42902 9.08711 4.85451 3.02179 4.85451 5.75995 8.81455 + ] pdfxs + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + 27.879 -179.705 m + (l) + [3.0327 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (e-independentm) + [4.8436 3.64352 3.02179 6.0654 6.0654 4.8436 6.35994 4.85451 6.05449 6.0654 4.8436 + 5.75995 8.59637 9.09802 ] pdfxs + (o) show + (bilepr) + [6.05449 3.0327 3.0327 9.19629 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms.) + [9.08711 4.30902 10.0035 ] pdfxs + (I) show + (n) show + 240.462 -179.705 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.0217 ] pdfxs + (o) show + (ft) + [7.9091 3.62179 ] pdfxs + (h) show + (eACMSIGPLANC) + [9.57817 7.83262 7.81088 14.3454 6.13082 4.21089 8.43268 7.39623 6.85084 8.10534 12.6762 + 7.79997 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nc) + [6.13082 4.46185 ] pdfxs + (e) show + 27.879 -201.628 m + (o) show + (nPro) + [10.0362 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmingL) + [8.91258 8.92348 3.34914 6.13082 8.92363 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ag) show + (e) + [8.92363 ] pdfxs + (Des) show + (i) + [3.33823 ] pdfxs + (g) show + (nandIm) + [10.0362 5.58542 6.13082 9.47994 4.19998 8.92348 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (m) + [8.91258 ] pdfxs + (e) show + (nt) + [6.14173 3.62179 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) + [10.0362 ] pdfxs + (\() show + (PL) + [7.39623 6.83993 ] pdfxs + (D) show + (I) + [4.21089 ] pdfxs + (\)) show + 330.483 -201.628 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (127{136) show + (,) + [6.6654 ] pdfxs + (1996) show + (.) show + 10.909 -231.869 m + ([) + [3.0327 ] pdfxs + (3) show + (]) + [8.4872 ] pdfxs + (V) show + (ikr) + [3.02179 5.75995 4.27631 ] pdfxs + (a) show + (m) + [13.1562 ] pdfxs + (A) show + (dve,Chris) + [6.05449 5.4545 4.85451 7.19994 7.8763 6.05449 4.27631 3.0327 8.36717 ] pdfxs + (Latt) show + (ner,Mich) + [6.05449 4.85451 4.2654 7.19994 10.0036 3.0327 4.53815 6.0654 ] pdfxs + (a) show + (elBrukm) + [4.8436 7.10176 7.72349 4.27631 6.05449 5.75995 9.08711 ] pdfxs + (a) show + (n,) + [6.0654 7.19994 ] pdfxs + (A) show + (n) + [6.05449 ] pdfxs + (a) show + (ndShukl) + [6.0654 10.1235 6.05449 5.75995 6.0654 5.75995 3.02179 ] pdfxs + (a) show + (,) + [7.19994 ] pdfxs + (a) show + (ndBri) + [6.0654 10.1235 7.72349 4.27631 3.0327 ] pdfxs + (a) show + (nG) + [10.1235 8.55269 ] pdfxs + (a) show + (eke.) + [4.85451 5.4545 4.8436 9.14174 ] pdfxs + (L) show + (lv) + [3.0327 5.14904 ] pdfxs + (a) show + (:) + [8.7272 ] pdfxs + (A) show + 27.879 -253.792 m + (low-levelvirtu) + [3.0327 5.14905 7.8763 3.64352 3.02179 4.85451 5.4545 4.8436 6.34903 5.75995 3.0327 + 4.27631 4.23277 6.0654 ] pdfxs + (a) show + (lins) + [6.34903 3.0327 6.05449 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nset) + [9.38173 4.29811 4.85451 7.56002 ] pdfxs + (a) show + (rchitec) + [4.27631 4.53815 6.0654 3.0327 4.23277 4.85451 4.8436 ] pdfxs + (t) show + (ure.) + [6.0654 4.2654 4.85451 7.35266 ] pdfxs + (I) show + (n) show + 256.309 -253.792 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (softheACM) + [8.06171 5.58542 6.94911 3.62179 5.58542 8.62909 7.82171 7.81088 9.7854 ] pdfxs + (/) show + (IEEEInt) + [4.19998 7.40714 7.39623 11.0071 4.21089 6.13082 3.62179 ] pdfxs + (e) show + (rn) + [4.60356 6.13082 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (nal) + [6.13082 5.58542 2.79267 ] pdfxs + 27.879 -275.715 m + (Symp) + [6.13082 5.30169 8.92348 5.01816 ] pdfxs + (os) show + (iumonMi) + [3.33823 5.85816 12.818 5.58542 10.0362 9.7745 3.34914 ] pdfxs + (c) show + (roar) + [4.0363 5.01816 5.58542 4.0363 ] pdfxs + (ch) show + (ite) + [3.34914 3.62179 4.46185 ] pdfxs + (c) show + (ture) + [3.62179 5.85816 4.0363 8.92363 ] pdfxs + (\() show + (MICRO) + [9.7854 4.19998 7.81088 7.67998 8.35627 ] pdfxs + (\)) show + 233.986 -275.715 m + /N614 10.909 Tf + (,p) + [6.6654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.94172 ] pdfxs + (205{216) show + (,S) + [6.6654 6.0654 ] pdfxs + (a) show + (nDie) + [9.6981 8.32365 3.0327 4.85451 ] pdfxs + (go) show + (,C) + [6.6654 7.8763 ] pdfxs + (A) show + (,) + [6.6654 ] pdfxs + (D) show + (ec) + [4.85451 8.47629 ] pdfxs + (2003) show + (.) show + 10.909 -305.956 m + ([) + [3.0327 ] pdfxs + (4) show + (]) + [8.4872 ] pdfxs + (A) show + (lex) + [3.02179 4.85451 9.59992 ] pdfxs + (A) show + (iken,M) + [3.0327 5.4545 4.8436 6.0654 6.92721 9.99272 ] pdfxs + (a) show + (nuelF) + [5.75995 6.0654 4.8436 6.87267 7.12357 0 ] pdfxs + (a) show + (hndrich,) + [6.0654 6.05449 6.0654 4.27631 3.02179 4.54905 6.0654 6.92721 ] pdfxs + (a) show + (nd) + [6.05449 9.90537 ] pdfxs + (Ra) show + (lph) + [3.0327 6.05449 9.90537 ] pdfxs + (L) show + (evien.Be) + [4.85451 5.75995 3.02179 4.85451 6.05449 8.4872 7.7344 4.8436 ] pdfxs + (tt) show + (ers) + [4.8436 8.12718 4.29811 ] pdfxs + (tat) show + (icmem) + [3.0327 8.68356 9.09802 4.8436 9.09802 ] pdfxs + (o) show + (rym) + [4.2654 9.59992 9.09802 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (ag) show + (emen) + [4.85451 9.08711 4.85451 5.74904 ] pdfxs + (t) show + (:) + [8.30175 ] pdfxs + (I) show + (m-) + [9.08711 3.63261 ] pdfxs + 27.879 -327.879 m + (provingre) + [6.0654 4.2654 5.14905 5.75995 3.0327 6.0654 7.91993 4.27631 4.8436 ] pdfxs + (g) show + (i) + [3.0327 ] pdfxs + (o) show + (n-b) + [6.05449 3.64352 6.05449 ] pdfxs + (a) show + (sed) + [4.30902 4.8436 8.53083 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.0327 5.74904 4.30902 3.0327 6.76355 ] pdfxs + (o) show + (fhi) + [5.80358 6.0654 3.0327 ] pdfxs + (g) show + (her-) + [6.05449 4.85451 4.2654 3.64352 ] pdfxs + (o) show + (rderl) + [4.2654 6.0654 4.8436 6.74174 3.0327 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (u) + [6.05449 ] pdfxs + (ag) show + (es.) + [4.85451 4.29811 5.96722 ] pdfxs + (I) show + (n) show + 304.511 -327.879 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [7.28717 ] pdfxs + (o) show + (ft) + [6.17457 3.62179 ] pdfxs + (h) show + (eACMSIGPLAN) + [7.85455 7.82171 7.81088 12.6108 6.13082 4.21089 8.43268 7.40714 6.83993 8.10534 8.10534 + ] pdfxs + 27.8789 -349.801 m + (C) + [7.81088 ] pdfxs + (o) show + (nf) + [6.13082 3.34914 ] pdfxs + (e) show + (r) + [4.0363 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 9.29454 ] pdfxs + (o) show + (nPro) + [10.4181 7.39623 4.0363 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmingL) + [8.92348 8.92348 3.33823 6.14173 9.29454 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (ag) show + (e) + [9.29454 ] pdfxs + (Des) show + (i) + [3.33823 ] pdfxs + (g) show + (n) + [10.4181 ] pdfxs + (a) show + (ndImpl) + [6.13082 9.85084 4.21089 8.91258 5.58542 2.78176 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + (a) show + (ti) + [3.6327 3.33823 ] pdfxs + (o) show + (n) + [10.4181 ] pdfxs + (\() show + (PL) + [7.39623 6.83993 ] pdfxs + (D) show + (I) + [4.21089 ] pdfxs + (\)) show + 389.552 -349.801 m + /N614 10.909 Tf + (,p) + [7.06903 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 8.34535 ] pdfxs + (174{185) show + (,) show + 27.8789 -371.724 m + (L) show + (a) + [9.08719 ] pdfxs + (Jo) show + (ll) + [3.0327 3.0327 ] pdfxs + (a) show + (,C) + [6.6654 7.8763 ] pdfxs + (A) show + (,) + [6.6654 ] pdfxs + (J) show + (une) + [6.0654 6.05449 8.4872 ] pdfxs + (1995) show + (.) show + 10.909 -401.966 m + ([) + [3.0327 ] pdfxs + (5) show + (]W) + [8.4872 10.2981 ] pdfxs + (o) show + (lfr) + [3.0327 3.32724 4.27631 ] pdfxs + (a) show + (m) + [12.698 ] pdfxs + (A) show + (mme,) + [9.09802 9.08711 4.85451 6.64358 ] pdfxs + (N) show + (i) + [3.0327 ] pdfxs + (a) show + (ll) + [3.02179 6.64358 ] pdfxs + (Da) show + (l) + [3.0327 ] pdfxs + (to) show + (n,) + [6.05449 6.65449 ] pdfxs + (J) show + (e\013eryv) + [4.8436 6.35986 4.85451 4.27631 9.35992 5.4545 ] pdfxs + (o) show + (n) + [9.67628 ] pdfxs + (Ro) show + (nne,) + [6.0654 6.05449 4.85451 6.64358 ] pdfxs + (a) show + (ndMich) + [6.0654 9.66537 10.0036 3.0327 4.53815 6.0654 ] pdfxs + (a) show + (elFr) + [4.8436 6.64358 6.21813 4.2654 ] pdfxs + (a) show + (nz.S) + [6.0654 4.8436 7.83266 6.05449 ] pdfxs + (a) show + (feTS) + [3.33815 4.8436 7.88721 6.05449 ] pdfxs + (A) show + (:Atypes) + [6.64358 11.7926 3.93823 5.75995 6.35994 8.46538 4.29811 ] pdfxs + (a) show + (fe) + [3.33815 4.8436 ] pdfxs + 27.8789 -423.888 m + (a) show + (ndreferen) + [6.0654 10.3963 4.27631 4.85451 3.32724 4.85451 4.2654 4.85451 5.74904 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (a) show + (llysecurem) + [3.0327 3.0327 10.1017 4.29811 4.85451 4.8436 6.0654 4.2654 9.19629 9.09802 ] pdfxs + (o) show + (bile-coderepresen) + [6.05449 3.0327 3.0327 4.8436 3.63261 4.85451 5.75995 6.05449 9.19629 4.27631 4.8436 + 6.0654 4.2654 4.85451 4.29811 4.85451 5.74904 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (nb) + [10.4072 6.0654 ] pdfxs + (a) show + (sed) + [4.29811 4.8436 10.4072 ] pdfxs + (o) show + (ns) + [10.4072 4.30902 ] pdfxs + (ta) show + (ticsin) + [4.23277 3.0327 9.19629 4.29811 3.0327 6.0654 ] pdfxs + (g) show + (le) + [3.0327 9.18538 ] pdfxs + (a) show + (ssi) + [4.30902 4.29811 3.0327 ] pdfxs + (g) show + (nmentf) + [6.0654 9.08711 4.8436 5.75995 8.58546 3.33815 ] pdfxs + (o) show + (rm.) + [4.27631 9.08711 3.0327 ] pdfxs + 27.8789 -445.811 m + (I) show + (n) show + 42.8499 -445.811 m + /N634 10.909 Tf + (Procee) + [7.39623 4.04721 5.01816 4.46185 4.46185 4.46185 ] pdfxs + (d) show + (in) + [3.33823 6.14173 ] pdfxs + (g) show + (s) + [9.58897 ] pdfxs + (o) show + (ft) + [8.47637 3.62179 ] pdfxs + (h) show + (eACMSIGPLANC) + [10.1563 7.82171 7.81088 14.9126 6.13082 4.21089 8.43268 7.40714 6.83993 8.10534 13.2435 + 7.79997 ] pdfxs + (o) show + (nf) + [6.14173 3.33823 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (e) show + (nce) + [6.13082 4.46185 10.1454 ] pdfxs + (o) show + (nPro) + [11.269 7.39623 4.04721 5.01816 ] pdfxs + (g) show + (r) + [4.0363 ] pdfxs + (a) show + (mmingL) + [8.92348 8.92348 3.34914 6.13082 10.1454 6.28357 ] pdfxs + (a) show + (n) + [6.14173 ] pdfxs + (g) show + (u) + [5.84725 ] pdfxs + (ag) show + (e) + [10.1563 ] pdfxs + (Des) show + (i) + [3.33823 ] pdfxs + (g) show + (n) + [11.269 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (d) show + 27.8789 -467.733 m + (Im) + [4.21089 8.91258 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + (a) show + (ti) + [3.6327 3.33823 ] pdfxs + (o) show + (n) + [10.0362 ] pdfxs + (\() show + (PL) + [7.40714 6.83993 ] pdfxs + (D) show + (I) + [4.19998 ] pdfxs + (\)) show + 141.848 -467.733 m + /N614 10.909 Tf + (,) + [6.6654 ] pdfxs + (J) show + (une) + [6.0654 6.05449 8.4872 ] pdfxs + (2001) show + (.) show + 10.9089 -497.975 m + ([) + [3.0327 ] pdfxs + (6) show + (]) + [8.4872 ] pdfxs + (La) show + (rsO.) + [4.2654 8.63989 8.4872 7.37448 ] pdfxs + (A) show + (ndersen.) + [6.05449 6.0654 4.8436 4.27631 4.30902 4.8436 6.0654 3.0327 ] pdfxs + 123.52 -497.975 m + /N634 10.909 Tf + (Pro) + [7.39623 4.04721 5.01816 ] pdfxs + (g) show + (ramAn) + [4.0363 5.58542 13.4616 7.83262 6.13082 ] pdfxs + (a) show + (lysis) + [2.79267 5.30169 4.45083 3.34914 9.01079 ] pdfxs + (a) show + (ndSpe) + [6.13082 10.1345 6.13082 5.01816 4.46185 ] pdfxs + (c) show + (iali) + [3.33823 5.58542 2.78176 3.34914 ] pdfxs + (za) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (nf) + [10.6799 3.34914 ] pdfxs + (o) show + (rt) + [9.15262 3.62179 ] pdfxs + (h) show + (eCPro) + [9.56726 12.349 7.40714 4.0363 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mmingL) + [8.92348 8.92348 3.33823 6.13082 9.57817 6.28357 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (age) show + 464.97 -497.975 m + /N614 10.909 Tf + (.) show + 27.8789 -519.898 m + (PhD) + [7.42902 6.05449 11.9673 ] pdfxs + (t) show + (hesis,) + [6.0654 4.8436 4.30902 3.02179 4.30902 6.6654 ] pdfxs + (DI) show + (K) + [8.4872 ] pdfxs + (U) show + (,) + [6.6654 ] pdfxs + (U) show + (niversity) + [6.0654 3.02179 5.4545 4.85451 4.2654 4.30902 3.0327 3.93823 9.39264 ] pdfxs + (o) show + (fC) + [6.97085 7.8763 ] pdfxs + (o) show + (penh) + [6.35994 4.85451 6.05449 6.0654 ] pdfxs + (ag) show + (en,May) + [4.8436 6.0654 6.6654 10.0036 5.14905 9.39264 ] pdfxs + (1994) show + (.) show + 10.909 -550.14 m + ([) + [3.0327 ] pdfxs + (7) show + (]) + [8.4872 ] pdfxs + (AN) show + (DFC) + [8.32365 9.56719 7.8763 ] pdfxs + (o) show + (ns) + [6.0654 4.29811 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (t) show + (ium.The) + [3.0327 6.05449 9.09802 5.92358 7.8763 6.05449 7.29812 ] pdfxs + (A) show + (rchi) + [4.2654 4.54905 6.0654 3.02179 ] pdfxs + (t) show + (ec) + [4.85451 4.8436 ] pdfxs + (t) show + (ur) + [6.0654 4.2654 ] pdfxs + (a) show + (l) + [5.47631 ] pdfxs + (N) show + (eu) + [4.85451 6.05449 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (lDis) + [5.47631 8.32365 3.0327 4.30902 ] pdfxs + (t) show + (ribu) + [4.2654 3.0327 6.0654 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nF) + [8.49811 6.21813 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (.) show + 350.426 -550.14 m + /N722 10.909 Tf + (http://www.andf.org/) show + 464.97 -550.14 m + /N614 10.909 Tf + (.) show + 225.818 -577.5 m + (196) show + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 72 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (gat) show + (inguse) + [3.0327 6.05449 9.8181 6.05449 4.30902 9.19629 ] pdfxs + (o) show + (fm) + [7.69084 9.09802 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.29811 4.85451 ] pdfxs + (o) show + (pic) + [6.05449 3.0327 9.2072 ] pdfxs + (t) show + (echniques) + [4.8436 4.54905 6.05449 6.0654 3.0327 5.75995 6.05449 4.85451 8.6508 ] pdfxs + (t) show + (oprovidepr) + [9.8181 6.05449 4.27631 5.14905 5.75995 3.0327 6.05449 9.2072 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (mhe) + [13.4507 6.05449 4.85451 ] pdfxs + (a) show + (ps) + [10.4181 4.29811 ] pdfxs + (a) show + (fetyf) + [3.33815 4.8436 3.93823 10.1126 3.33815 ] pdfxs + (o) show + (rl) + [8.629 3.0327 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (eswi) + [4.8436 8.66171 7.8763 3.0327 ] pdfxs + (t) show + (hexplici) + [10.4181 4.8436 5.75995 6.0654 3.02179 3.0327 4.85451 3.02179 ] pdfxs + (t) show + 0 -21.922 m + (de) + [6.0654 4.8436 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n[) + [10.429 3.0327 ] pdfxs + (49) show + (],) + [3.02179 7.58175 ] pdfxs + (a) show + (ndto) + [6.05449 10.429 4.23277 9.8181 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (a) show + (n) + [5.74904 ] pdfxs + (t) show + (ee) + [4.85451 9.2072 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [8.60728 ] pdfxs + (t) show + (hep) + [6.0654 9.2072 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (s-) + [4.29811 3.63261 ] pdfxs + (t) show + (o) + [9.8181 ] pdfxs + (a) show + (ndc) + [6.0654 10.4181 4.85451 ] pdfxs + (a) show + (ll) + [3.02179 7.3963 ] pdfxs + (g) show + (r) + [4.27631 ] pdfxs + (a) show + (phc) + [6.05449 10.429 4.8436 ] pdfxs + (o) show + (mpu) + [9.08711 6.0654 6.05449 ] pdfxs + (t) show + (edf) + [4.85451 10.4181 3.33815 ] pdfxs + (o) show + (rapr) + [8.629 9.8181 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (mis) + [13.4507 3.0327 4.29811 ] pdfxs + 0 -43.845 m + (s) + [4.29811 ] pdfxs + (o) show + (und.Wediscusss) + [6.0654 6.0654 6.05449 7.87629 10.309 8.4872 6.05449 3.0327 4.29811 4.85451 6.05449 + 4.30902 7.94172 4.29811 ] pdfxs + (o) show + (me) + [9.08711 8.4872 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (t) show + (hese) + [6.0654 4.8436 4.29811 8.4872 ] pdfxs + (t) show + (echniquesinm) + [4.85451 4.53815 6.0654 6.05449 3.0327 5.75995 6.05449 4.85451 7.94172 3.02179 9.6981 + 9.09802 ] pdfxs + (o) show + (rede) + [4.2654 8.4872 6.0654 4.8436 ] pdfxs + (ta) show + (ilinCh) + [3.0327 6.6654 3.0327 9.6981 7.8763 6.05449 ] pdfxs + (a) show + (p) + [6.0654 ] pdfxs + (t) show + (er) + [4.8436 7.909 ] pdfxs + (8) show + (.) show + 0 -88.923 m + /N622 14.346 Tf + (1.3) + [8.07685 4.476 24.2161 ] pdfxs + (R) show + (ese) + [7.3595 6.36962 7.3595 ] pdfxs + (a) show + (rchContri) + [6.58481 6.72827 14.346 11.6633 8.0625 8.52152 6.26925 6.59915 4.476 ] pdfxs + (bu) show + (tio) + [6.2836 4.476 8.07685 ] pdfxs + (n) show + (soft) + [11.7494 8.0625 10.3147 6.2836 ] pdfxs + (h) show + (isT) + [4.476 11.7494 11.2185 ] pdfxs + (h) show + (esis) + [7.37385 6.35528 4.49035 6.36962 ] pdfxs + 0 -121.649 m + /N614 10.909 Tf + (Thehi) + [7.8763 6.0654 8.62902 6.05449 3.0327 ] pdfxs + (g) show + (h-levelc) + [6.0654 3.63261 3.0327 4.8436 5.4545 4.85451 6.80721 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (ribu) + [4.27631 3.02179 6.0654 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.83991 ] pdfxs + (o) show + (f) + [7.11266 ] pdfxs + (t) show + (hisw) + [6.05449 3.0327 8.08354 7.58175 ] pdfxs + (o) show + (rkis) + [4.2654 9.53446 3.0327 8.08354 ] pdfxs + (a) show + 215.261 -121.649 m + /N1025 10.909 Tf + (ne) show + (w) + [13.4071 ] pdfxs + (app) show + (r) + [5.15995 ] pdfxs + (oa) show + (chf) + [5.23634 11.3127 3.82904 ] pdfxs + (o) show + (r) + [9.51263 ] pdfxs + (ana) show + (lysis) + [3.49088 6.61079 4.95263 3.49088 9.2835 ] pdfxs + (an) show + (d) + [11.3236 ] pdfxs + (t) show + (r) + [5.15995 ] pdfxs + (an) show + (sf) + [4.95263 3.82904 ] pdfxs + (o) show + (rm) + [5.17085 10.4507 ] pdfxs + (a) show + (ti) + [4.8873 3.47997 ] pdfxs + (on) show + 0 -143.571 m + (o) show + (f) + [8.60717 ] pdfxs + (heap) show + (-int) + [4.1781 3.47997 6.62184 4.8873 ] pdfxs + (e) show + (nsive) + [6.96002 4.95263 3.49088 6.27261 10.5162 ] pdfxs + (p) show + (r) + [5.15995 ] pdfxs + (og) show + (r) + [5.17085 ] pdfxs + (a) show + (mswri) + [10.4507 9.71986 9.06531 5.15995 3.49088 ] pdfxs + (tte) show + (nin) + [11.7491 3.47997 11.7382 ] pdfxs + (a) show + (r) + [5.17085 ] pdfxs + (b) show + (i) + [3.47997 ] pdfxs + (t) show + (r) + [5.17085 ] pdfxs + (a) show + (rys) + [5.17085 11.3889 4.95263 ] pdfxs + (o) show + (ur) + [6.96002 5.17085 ] pdfxs + (ce) show + (-l) + [4.18901 3.47997 ] pdfxs + (anguage) show + (s) show + 360.232 -143.571 m + /N614 10.909 Tf + (.This) + [9.41446 7.8763 6.0654 3.0327 8.44353 ] pdfxs + (a) show + (ppr) + [6.0654 6.05449 4.27631 ] pdfxs + (oa) show + (chh) + [4.54905 10.2108 6.05449 ] pdfxs + (a) show + (s) + [8.45444 ] pdfxs + (a) show + 0 -165.494 m + (br) + [6.0654 4.2654 ] pdfxs + (oa) show + (dr) + [10.3199 4.27631 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (e) + [9.10902 ] pdfxs + (o) show + (fp) + [7.59266 6.35994 ] pdfxs + (ot) show + (enti) + [4.85451 5.75995 4.23277 3.0327 ] pdfxs + (a) show + (l) + [7.29812 ] pdfxs + (a) show + (pplic) + [6.05449 6.0654 3.0327 3.02179 4.85451 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns,s) + [6.05449 4.30902 7.43993 4.30902 ] pdfxs + (o) show + (me) + [9.08711 9.10902 ] pdfxs + (o) show + (fwhichweexpl) + [7.59266 7.88721 6.05449 3.0327 4.54905 10.3199 7.57085 9.11992 4.8436 5.75995 6.05449 + 3.0327 ] pdfxs + (o) show + (reinde) + [4.27631 9.10902 3.0327 10.3199 6.0654 4.8436 ] pdfxs + (ta) show + (il,) + [3.0327 3.02179 7.45084 ] pdfxs + (ot) show + (herwe) + [6.0654 4.8436 8.53082 7.58175 9.10902 ] pdfxs + (o) show + (nlydiscuss.) + [6.0654 3.02179 10.0254 6.05449 3.0327 4.30902 4.8436 6.0654 4.29811 4.30902 3.0327 + ] pdfxs + 0 -187.416 m + (M) + [10.0036 ] pdfxs + (o) show + (respeci\fc) + [4.2654 7.77812 4.29811 6.35994 4.85451 4.8436 3.0327 6.0654 4.8436 ] pdfxs + (a) show + (lly,) + [3.0327 3.0327 4.84359 6.09813 ] pdfxs + (t) show + (hehi) + [6.05449 7.76721 6.0654 3.0327 ] pdfxs + (g) show + (h-levelc) + [6.05449 3.63261 3.0327 4.85451 5.4545 4.8436 5.95631 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (ribu) + [4.2654 3.0327 6.0654 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.0654 7.22172 ] pdfxs + (o) show + (f) + [6.25085 ] pdfxs + (t) show + (his) + [6.05449 3.0327 7.22172 ] pdfxs + (t) show + (hesis) + [6.0654 4.8436 4.30902 3.0327 7.22172 ] pdfxs + (a) show + (re\(see) + [4.2654 7.77812 4.23277 4.30902 4.8436 7.76721 ] pdfxs + (t) show + (heindividu) + [6.0654 7.76721 3.0327 6.05449 6.0654 3.0327 5.75995 3.02179 6.0654 6.05449 ] pdfxs + (a) show + (lch) + [5.95631 4.54905 6.05449 ] pdfxs + (a) show + (p) + [6.0654 ] pdfxs + (t) show + (ersform) + [4.8436 4.27631 7.22172 3.32724 5.46541 7.18901 9.08711 ] pdfxs + (o) show + (re) + [4.27631 4.8436 ] pdfxs + 0 -209.339 m + (de) + [6.0654 4.8436 ] pdfxs + (ta) show + (il) + [3.0327 3.02179 ] pdfxs + (\)) show + (:) show + 16.364 -240.821 m + /N1028 10.909 Tf + (\017) show + 27.273 -240.821 m + /N614 10.909 Tf + (Dat) show + (aS) + [8.30175 6.0654 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.0654 4.2654 7.70175 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis:) + [3.0327 5.74904 4.30902 3.0327 4.29811 7.48357 ] pdfxs + (A) show + (n) + [8.91265 ] pdfxs + (agg) show + (ressive) + [4.27631 4.8436 4.30902 4.29811 3.0327 5.4545 7.70175 ] pdfxs + (a) show + (ndsc) + [6.05449 8.91265 4.30902 4.8436 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (a) show + (blec) + [6.0654 3.02179 7.70175 4.85451 ] pdfxs + (o) show + (n) + [5.74904 ] pdfxs + (t) show + (ext-) + [4.85451 5.75995 4.23277 6.49077 ] pdfxs + (a) show + (nd\feld-sensi) + [6.0654 8.91265 6.05449 4.85451 3.02179 6.0654 3.63261 4.30902 4.8436 6.0654 4.29811 + 3.0327 ] pdfxs + (t) show + (ivehe) + [3.0327 5.4545 7.70175 6.05449 4.85451 ] pdfxs + (a) show + (p) + [8.90174 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 4.29811 ] pdfxs + 27.273 -262.744 m + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (ts) + [7.78911 4.29811 ] pdfxs + (a) show + (felysupp) + [3.33815 4.8436 3.0327 9.29446 4.29811 6.0654 6.05449 6.37085 ] pdfxs + (o) show + (r) + [4.2654 ] pdfxs + (t) show + (s) + [7.84354 ] pdfxs + (t) show + (hefull) + [6.05449 8.38902 3.33815 6.05449 3.0327 6.56721 ] pdfxs + (g) show + (ener) + [4.8436 6.0654 4.8436 4.27631 ] pdfxs + (a) show + (lity) + [3.0327 3.0327 3.93823 9.29446 ] pdfxs + (o) show + (fCpr) + [6.87267 11.4108 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms) + [9.08711 7.84354 ] pdfxs + (\() show + (l) + [3.0327 ] pdfxs + (a) show + (ck) + [4.53815 9.29446 ] pdfxs + (o) show + (ftype-s) + [6.87267 3.93823 5.75995 6.35994 4.85451 3.63261 4.30902 ] pdfxs + (a) show + (fety,v) + [3.32724 4.85451 3.93823 4.84359 6.58903 5.14904 ] pdfxs + (a) show + (ri) + [4.27631 3.0327 ] pdfxs + (a) show + (ble) + [6.05449 3.0327 8.38902 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (g) show + (umen) + [6.0654 9.08711 4.85451 5.74904 ] pdfxs + (t) show + 27.273 -284.666 m + (func) + [3.33815 6.05449 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns,) + [6.05449 4.30902 3.0327 ] pdfxs + 77.034 -284.666 m + /N722 10.909 Tf + (setjmp) show + 111.398 -284.666 m + /N614 10.909 Tf + (/) show + 116.852 -284.666 m + /N722 10.909 Tf + (longjmp) show + 156.943 -284.666 m + /N614 10.909 Tf + (,inc) + [6.37085 3.02179 6.0654 4.8436 ] pdfxs + (o) show + (mpletepr) + [9.09802 6.05449 3.0327 4.85451 4.23277 8.1163 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms,e) + [9.08711 4.30902 6.35994 4.85451 ] pdfxs + (t) show + (c) + [4.8436 ] pdfxs + (\)) show + (.) + [7.75629 ] pdfxs + (I) show + (n) + [9.32719 ] pdfxs + (a) show + (dditi) + [6.05449 6.0654 3.0327 4.23277 3.0327 ] pdfxs + (o) show + (n,) + [6.0654 6.35994 ] pdfxs + (D) show + (SAis) + [6.0654 11.4435 3.0327 7.5599 ] pdfxs + (a) show + (tle) + [7.50547 3.0327 4.8436 ] pdfxs + (a) show + (st) + [4.30902 7.50547 ] pdfxs + (a) show + (n) + [9.31628 ] pdfxs + (o) show + (rder) + [4.27631 6.0654 4.8436 4.27631 ] pdfxs + 27.273 -306.589 m + (o) show + (fm) + [6.83994 9.09802 ] pdfxs + (ag) show + (ni) + [6.05449 3.0327 ] pdfxs + (t) show + (udef) + [6.05449 6.0654 8.35629 3.33815 ] pdfxs + (a) show + (s) + [4.29811 ] pdfxs + (t) show + (er) + [4.85451 7.7781 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (nprevi) + [9.56719 6.05449 4.27631 4.85451 5.74904 3.0327 ] pdfxs + (o) show + (usfullyc) + [6.0654 7.81081 3.33815 6.05449 3.0327 3.0327 9.26174 4.85451 ] pdfxs + (o) show + (n) + [5.74904 ] pdfxs + (t) show + (ext-sensitive) + [4.85451 5.75995 4.23277 3.64352 4.29811 4.85451 6.05449 4.30902 3.0327 4.23277 3.0327 + 5.4545 8.35629 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (go) show + (ri) + [4.27631 3.0327 ] pdfxs + (t) show + (hms[) + [6.05449 9.08711 7.82172 3.02179 ] pdfxs + (9) show + (2,) + [5.46541 6.53449 ] pdfxs + (140) show + (,) + [6.5454 ] pdfxs + (103) show + (],m) + [3.02179 6.56721 9.09802 ] pdfxs + (a) show + (kingi) + [5.74904 3.0327 6.0654 8.9672 3.02179 ] pdfxs + (t) show + 27.273 -328.512 m + (t) show + (he\frst) + [6.05449 8.13811 6.05449 4.27631 4.29811 7.52729 ] pdfxs + (t) show + (o) + [8.73811 ] pdfxs + (ta) show + (keasm) + [5.4545 8.1272 8.73811 4.29811 9.09802 ] pdfxs + (a) show + (llfr) + [3.02179 6.31631 3.33815 4.2654 ] pdfxs + (a) show + (c) + [4.85451 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [9.34901 ] pdfxs + (o) show + (f) + [6.61085 ] pdfxs + (t) show + (he) + [6.0654 8.1272 ] pdfxs + (t) show + (imerequired) + [3.02179 9.09802 8.1272 4.27631 4.8436 5.75995 6.0654 3.02179 4.27631 4.8436 9.34901 + ] pdfxs + (t) show + (oc) + [8.73811 4.8436 ] pdfxs + (o) show + (mpile) + [9.08711 6.0654 3.0327 3.02179 8.13811 ] pdfxs + (t) show + (hepr) + [6.05449 8.1272 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (mwithas) + [12.3816 7.8763 3.0327 4.23277 9.34901 8.73811 4.29811 ] pdfxs + (ta) show + (nd) + [6.0654 6.05449 ] pdfxs + (a) show + (rd) + [4.27631 6.0654 ] pdfxs + 27.273 -350.434 m + (o) show + (ptimizingc) + [6.0654 4.23277 3.0327 9.09802 3.02179 4.85451 3.0327 6.05449 9.08719 4.85451 ] pdfxs + (o) show + (mpiler.) + [9.08711 6.0654 3.0327 3.02179 4.85451 4.27631 3.0327 ] pdfxs + 16.364 -380.525 m + /N1028 10.909 Tf + (\017) show + 27.273 -380.525 m + /N614 10.909 Tf + (A) show + (ut) + [6.0654 4.23277 ] pdfxs + (o) show + (m) + [9.09802 ] pdfxs + (at) show + (icPo) + [3.02179 7.59266 7.12357 5.75995 ] pdfxs + (o) show + (l) + [5.77086 ] pdfxs + (A) show + (lloc) + [3.0327 3.02179 5.75995 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n:The\frstfully) + [6.0654 7.42903 7.8763 6.0654 7.59266 6.05449 4.27631 4.29811 6.99275 3.32724 6.0654 + 3.0327 3.02179 8.49811 ] pdfxs + (a) show + (u) + [6.0654 ] pdfxs + (to) show + (m) + [9.08711 ] pdfxs + (at) show + (icc) + [3.0327 7.59266 4.8436 ] pdfxs + (o) show + (mpiler) + [9.08711 6.0654 3.0327 3.0327 4.8436 7.01447 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [8.80356 ] pdfxs + (t) show + (op) + [8.19266 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [8.79265 ] pdfxs + (t) show + (he) + [6.0654 4.8436 ] pdfxs + 27.273 -402.447 m + (d) + [6.0654 ] pdfxs + (a) show + (tas) + [4.23277 9.04356 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ures) + [6.0654 4.2654 4.85451 7.88717 ] pdfxs + (o) show + (fapr) + [6.92721 9.03265 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (m) + [12.6871 ] pdfxs + (o) show + (n) + [9.64355 ] pdfxs + (t) show + (hehe) + [6.05449 8.44357 6.05449 4.85451 ] pdfxs + (a) show + (pwhilere) + [9.64355 7.8763 6.0654 3.0327 3.02179 8.44357 4.2654 4.85451 ] pdfxs + (ta) show + (iningen) + [3.0327 6.05449 3.0327 6.05449 9.04356 4.85451 6.05449 ] pdfxs + (o) show + (u) + [6.0654 ] pdfxs + (g) show + (hinf) + [9.64355 3.0327 6.0654 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nf) + [9.64355 3.33815 ] pdfxs + (o) show + (rsubsequen) + [7.85446 4.30902 6.05449 6.0654 4.29811 4.85451 5.75995 6.05449 4.85451 5.74904 ] pdfxs + (t) show + 27.273 -424.37 m + (c) + [4.8436 ] pdfxs + (o) show + (mpiler) + [9.09802 6.05449 3.0327 3.0327 4.8436 8.31264 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.0327 5.74904 4.30902 3.0327 8.33444 ] pdfxs + (a) show + (nd) + [6.0654 10.0908 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n.Po) + [6.05449 9.08719 7.12357 5.75995 ] pdfxs + (o) show + (l) + [7.06903 ] pdfxs + (a) show + (lloc) + [3.02179 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nprovides) + [10.1017 6.05449 4.27631 5.14905 5.75995 3.0327 6.05449 4.85451 8.33444 ] pdfxs + (t) show + (hec) + [6.0654 8.87993 4.85451 ] pdfxs + (o) show + (mpilerwithinf) + [9.08711 6.0654 3.02179 3.0327 4.85451 8.31264 7.8763 3.0327 4.23277 10.1017 3.0327 + 6.05449 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) show + 27.273 -446.292 m + (a) show + (b) + [6.35994 ] pdfxs + (o) show + (ut) + [6.0654 7.6582 ] pdfxs + (a) show + (ndp) + [6.0654 9.47991 6.0654 ] pdfxs + (a) show + (rti) + [4.27631 4.23277 3.0327 ] pdfxs + (a) show + (lc) + [6.45812 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (o) show + (lover) + [6.44722 5.14905 5.4545 4.85451 7.69082 ] pdfxs + (t) show + (helay) + [6.0654 8.26902 3.02179 5.15996 5.4545 ] pdfxs + (o) show + (ut) + [6.05449 7.66911 ] pdfxs + (o) show + (fmem) + [6.75267 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 9.17446 ] pdfxs + (o) show + (bjec) + [6.6763 3.32724 4.85451 4.8436 ] pdfxs + (t) show + (s) + [7.72354 ] pdfxs + (o) show + (nap) + [9.47991 8.87992 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (s-to) + [4.29811 3.64352 4.23277 8.87992 ] pdfxs + (g) show + (r) + [4.27631 ] pdfxs + (a) show + (phnode) + [6.05449 9.49082 6.05449 5.75995 6.0654 8.26902 ] pdfxs + (g) show + (r) + [4.2654 ] pdfxs + (a) show + (n-) + [6.0654 3.63261 ] pdfxs + 27.273 -468.215 m + (ul) + [6.0654 3.02179 ] pdfxs + (a) show + (rity,) + [4.27631 3.0327 3.93823 4.84359 7.09085 ] pdfxs + (a) show + (ndc) + [6.0654 10.0363 4.8436 ] pdfxs + (a) show + (nsubs) + [10.0363 4.30902 6.05449 6.0654 4.29811 ] pdfxs + (ta) show + (n) + [5.75995 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (a) show + (llyimprove) + [3.0327 3.02179 9.74173 3.02179 9.09802 6.05449 4.27631 5.14905 5.4545 8.82538 ] pdfxs + (t) show + (heperf) + [6.05449 8.82538 6.37085 4.8436 4.27631 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nce) + [6.0654 4.8436 8.82538 ] pdfxs + (o) show + (frecursived) + [7.30902 4.27631 4.8436 4.85451 6.05449 4.27631 4.30902 3.02179 5.4545 8.82538 6.0654 + ] pdfxs + (at) show + (astruc) + [9.42537 4.30902 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (urein) + [6.0654 4.2654 8.82538 3.0327 5.75995 ] pdfxs + (t) show + (ensive) + [4.8436 6.0654 4.29811 3.0327 5.4545 4.8436 ] pdfxs + 27.273 -490.137 m + (pr) + [6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms.) + [9.08711 4.30902 3.0327 ] pdfxs + 16.364 -520.228 m + /N1028 10.909 Tf + (\017) show + 27.273 -520.228 m + /N614 10.909 Tf + (P) + [7.12357 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (erC) + [4.85451 8.57445 7.8763 ] pdfxs + (o) show + (mpressi) + [9.09802 6.05449 4.27631 4.8436 4.30902 4.29811 3.0327 ] pdfxs + (o) show + (n:The\frsttr) + [6.0654 9.20719 7.88721 6.05449 9.15265 6.0654 4.27631 4.29811 8.55274 4.23277 4.27631 + ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [10.3745 ] pdfxs + (t) show + (oselec) + [9.75264 4.30902 4.8436 3.0327 4.8436 4.85451 ] pdfxs + (t) show + (ivelyshrinkp) + [3.02179 5.4545 4.85451 3.0327 10.0581 4.30902 6.05449 4.27631 3.0327 6.05449 10.069 + 6.35994 ] pdfxs + (o) show + (intersinselec) + [3.0327 5.75995 4.23277 4.85451 4.27631 8.60717 3.02179 10.3745 4.29811 4.85451 3.02179 + 4.85451 4.8436 ] pdfxs + (t) show + (edre-) + [4.85451 10.3635 4.27631 4.8436 3.63261 ] pdfxs + 27.273 -542.15 m + (cursived) + [4.8436 6.0654 4.27631 4.29811 3.0327 5.4545 9.58901 6.05449 ] pdfxs + (at) show + (as) + [10.1999 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (uresfr) + [6.05449 4.27631 4.85451 9.04353 3.32724 4.27631 ] pdfxs + (o) show + (m) + [13.8325 ] pdfxs + (64) show + (-bit) + [3.63261 6.0654 3.02179 8.9891 ] pdfxs + (t) show + (o) + [10.189 ] pdfxs + (32) show + (-bi) + [3.64352 6.05449 3.0327 ] pdfxs + (t) show + (,dr) + [8.05084 6.05449 4.27631 ] pdfxs + (a) show + (m) + [9.08711 ] pdfxs + (at) show + (ic) + [3.0327 4.8436 ] pdfxs + (a) show + (llyreducing) + [3.0327 3.0327 10.4945 4.27631 4.8436 6.0654 6.05449 4.85451 3.0327 6.05449 10.1999 + ] pdfxs + (t) show + (hemem) + [6.05449 9.58901 9.09802 4.8436 9.08711 ] pdfxs + (o) show + (ryfo) + [4.27631 10.4945 3.33815 5.75995 ] pdfxs + (ot) show + (prin) + [6.05449 4.27631 3.0327 5.74904 ] pdfxs + (t) show + 27.273 -564.073 m + (a) show + (ndw) + [6.0654 11.0181 7.57085 ] pdfxs + (o) show + (rkingset) + [4.27631 5.75995 3.02179 6.0654 10.4181 4.29811 4.85451 9.19637 ] pdfxs + (o) show + (fp) + [8.29083 6.37085 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (erin) + [4.8436 9.2399 3.0327 5.74904 ] pdfxs + (t) show + (ensivepr) + [4.85451 6.05449 4.30902 3.02179 5.4545 9.8181 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (ms) + [9.09802 9.26171 ] pdfxs + (o) show + (n) + [11.0181 ] pdfxs + (64) show + (-bitsys) + [3.63261 6.0654 3.0327 9.19637 4.30902 5.75995 4.29811 ] pdfxs + (t) show + (ems.Wedescribe\(buthave) + [4.8436 9.09802 4.29811 11.8472 10.309 9.80719 6.05449 4.85451 4.29811 4.85451 4.2654 + 3.0327 6.35994 9.8181 4.23277 6.0654 6.0654 9.19637 6.0654 5.14905 5.4545 4.8436 + ] pdfxs + 27.273 -585.995 m + (n) + [6.0654 ] pdfxs + (o) show + (tyetimplemented\)afully) + [8.52001 5.4545 4.8436 8.52001 3.0327 9.08711 6.0654 3.0327 4.8436 9.08711 4.85451 + 5.75995 4.23277 4.85451 6.05449 8.52001 9.74173 3.32724 6.0654 3.02179 3.0327 10.0363 + ] pdfxs + (g) show + (ener) + [4.85451 6.05449 4.85451 4.2654 ] pdfxs + (a) show + (lversi) + [7.30903 5.4545 4.85451 4.2654 4.30902 3.0327 ] pdfxs + (o) show + (n) + [10.3308 ] pdfxs + (o) show + (f) + [7.61448 ] pdfxs + (t) show + (he) + [6.05449 9.13083 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nwhichc) + [10.3417 7.8763 6.05449 3.0327 4.54905 10.3308 4.85451 ] pdfxs + (a) show + (nspecul) + [10.3417 4.29811 6.35994 4.85451 4.8436 6.0654 3.0327 ] pdfxs + (a) show + (tively) + [4.23277 3.0327 5.4545 4.85451 3.0327 5.75995 ] pdfxs + 27.273 -607.918 m + (shrinkp) + [4.29811 6.0654 4.27631 3.02179 6.0654 9.54537 6.37085 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (erswhilere) + [4.8436 4.27631 8.09444 7.8763 6.0654 3.0327 3.02179 8.63993 4.27631 4.8436 ] pdfxs + (ta) show + (ining) + [3.0327 6.0654 3.02179 6.0654 9.23992 ] pdfxs + (t) show + (he) + [6.0654 8.63993 ] pdfxs + (a) show + (bility) + [6.05449 3.0327 3.0327 3.0327 3.93823 9.54537 ] pdfxs + (t) show + (odyn) + [9.23992 6.0654 5.75995 6.05449 ] pdfxs + (a) show + (mic) + [9.09802 3.02179 4.85451 ] pdfxs + (a) show + (llyexp) + [3.0327 3.02179 9.55628 4.8436 5.75995 6.05449 ] pdfxs + (a) show + (nd) + [6.0654 9.85082 ] pdfxs + (t) show + (hem) + [6.05449 4.85451 12.8834 ] pdfxs + (a) show + (trun-) + [8.0291 4.27631 6.05449 6.0654 3.63261 ] pdfxs + (t) show + (imeif) + [3.0327 9.08711 8.63993 3.0327 7.12357 ] pdfxs + (64) show + (-bi) + [3.63261 6.0654 3.02179 ] pdfxs + (t) show + 27.273 -629.841 m + (g) show + (ener) + [4.8436 6.0654 4.8436 4.27631 ] pdfxs + (a) show + (lityisrequired.) + [3.0327 3.0327 3.93823 9.39264 3.0327 7.93081 4.27631 4.85451 5.74904 6.0654 3.0327 + 4.2654 4.85451 6.05449 3.0327 ] pdfxs + 231.273 -657.201 m + (9) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (21) 22 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 595.275591 788.031496 translate + 180 rotate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 88.364 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N1028 10.909 Tf + (\017) show + 10.909 0 m + /N614 10.909 Tf + (Po) + [7.12357 5.75995 ] pdfxs + (o) show + (lMicr) + [6.7963 9.99272 3.0327 4.85451 4.2654 ] pdfxs + (o) show + (-) + [3.64352 ] pdfxs + (o) show + (p) + [6.05449 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns:Ac) + [6.0654 4.29811 8.13811 11.9563 4.8436 ] pdfxs + (o) show + (llec) + [3.0327 3.0327 4.8436 4.85451 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [9.829 ] pdfxs + (o) show + (fsimple) + [7.10175 4.30902 3.02179 9.09802 6.05449 3.0327 8.61811 ] pdfxs + (o) show + (ptimiz) + [6.0654 4.23277 3.0327 9.09802 3.02179 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (nswhichc) + [6.0654 8.07263 7.8763 6.0654 3.02179 4.54905 9.829 4.8436 ] pdfxs + (a) show + (np) + [9.829 6.37085 ] pdfxs + (ot) show + (en) + [4.8436 5.75995 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (a) show + (llybe) + [3.02179 3.0327 9.52355 6.37085 8.6072 ] pdfxs + (a) show + (p-) + [6.0654 3.63261 ] pdfxs + 10.909 -21.922 m + (plied) + [6.0654 3.02179 3.0327 4.85451 9.62173 ] pdfxs + (t) show + (om) + [9.02174 9.08711 ] pdfxs + (a) show + (nypo) + [5.75995 9.32719 6.35994 5.75995 ] pdfxs + (o) show + (l-b) + [3.0327 3.63261 6.0654 ] pdfxs + (a) show + (sed) + [4.29811 4.85451 9.62173 ] pdfxs + (a) show + (ndre) + [6.0654 9.62173 4.27631 4.8436 ] pdfxs + (g) show + (i) + [3.0327 ] pdfxs + (o) show + (n-b) + [6.0654 3.63261 6.0654 ] pdfxs + (a) show + (sedrun) + [4.29811 4.8436 9.63264 4.27631 6.05449 5.75995 ] pdfxs + (t) show + (imelibr) + [3.0327 9.08711 8.41084 3.0327 3.0327 6.0654 4.2654 ] pdfxs + (a) show + (ries,) + [4.27631 3.0327 4.8436 4.30902 6.61085 ] pdfxs + (a) show + (imed) + [3.02179 9.09802 4.8436 9.63264 ] pdfxs + (a) show + (timprovingc) + [7.81092 3.02179 9.09802 6.05449 4.27631 5.14905 5.75995 3.0327 6.05449 9.02174 4.85451 + ] pdfxs + (a) show + (cheden-) + [4.53815 6.0654 8.41084 6.0654 4.8436 6.0654 3.63261 ] pdfxs + 10.909 -43.845 m + (sitybyreducingin) + [4.29811 3.0327 3.93823 8.7272 5.75995 8.7272 4.2654 4.85451 6.05449 6.0654 4.8436 + 3.0327 6.0654 8.42175 3.0327 5.74904 ] pdfxs + (t) show + (er-nodep) + [4.85451 4.2654 3.64352 6.05449 5.75995 6.0654 7.81084 6.0654 ] pdfxs + (a) show + (dding) + [6.05449 6.0654 3.02179 6.0654 8.42175 ] pdfxs + (\() show + (mem) + [9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 8.7272 ] pdfxs + (a) show + (lloc) + [3.02179 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nhe) + [9.03265 6.05449 4.85451 ] pdfxs + (a) show + (ders,) + [6.05449 4.85451 4.2654 4.30902 6.13086 ] pdfxs + (a) show + (li) + [3.0327 3.02179 ] pdfxs + (g) show + (nmentp) + [6.0654 9.08711 4.85451 5.74904 7.21093 6.0654 ] pdfxs + (a) show + (ddin) + [6.0654 6.05449 3.0327 6.05449 ] pdfxs + (g) show + (,e) + [6.13086 4.85451 ] pdfxs + (t) show + (c\)) + [4.8436 7.21093 ] pdfxs + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + 10.909 -65.768 m + (using) + [6.0654 4.29811 3.0327 6.05449 9.0981 ] pdfxs + (t) show + (hesem) + [6.05449 8.4872 4.29811 4.85451 9.08711 ] pdfxs + (a) show + (n) + [5.75995 ] pdfxs + (t) show + (ics) + [3.0327 4.8436 7.94172 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (t) show + (hepo) + [6.05449 8.4872 6.35994 5.75995 ] pdfxs + (o) show + (llibr) + [6.6654 3.0327 3.0327 6.05449 4.27631 ] pdfxs + (a) show + (ry) + [4.27631 9.39264 ] pdfxs + (t) show + (oelimin) + [9.08719 4.8436 3.0327 3.0327 9.08711 3.0327 6.0654 ] pdfxs + (at) show + (e) + [8.47629 ] pdfxs + (o) show + (per) + [6.37085 4.8436 4.27631 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns.) + [6.05449 4.30902 3.0327 ] pdfxs + -16.364 -111.222 m + /N622 14.346 Tf + (1.4T) + [8.07685 4.476 24.2161 11.2185 ] pdfxs + (h) show + (esis) + [7.3595 6.36962 4.49035 11.735 ] pdfxs + (O) show + (rg) + [6.59915 8.0625 ] pdfxs + (an) show + (i) + [4.49035 ] pdfxs + (z) show + (atio) + [7.83287 6.2836 4.476 8.07685 ] pdfxs + (n) show + -16.364 -143.948 m + /N614 10.909 Tf + (Ch) + [7.8763 6.0654 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (er2describesb) + [4.85451 7.81082 9.01083 6.05449 4.85451 4.29811 4.8436 4.27631 3.0327 6.35994 4.85451 + 7.84354 6.0654 ] pdfxs + (a) show + (ck) + [4.53815 5.75995 ] pdfxs + (g) show + (r) + [4.27631 ] pdfxs + (o) show + (undinf) + [6.0654 6.05449 9.61082 3.0327 6.05449 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [9.61082 ] pdfxs + (a) show + (b) + [6.35994 ] pdfxs + (o) show + (ut) + [6.0654 7.78911 ] pdfxs + (t) show + (he) + [6.05449 8.39993 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (MC) + [13.5491 7.8763 ] pdfxs + (o) show + (mpilerInfr) + [9.08711 6.0654 3.02179 3.0327 4.85451 7.81082 3.94897 6.05449 3.33815 4.2654 ] pdfxs + (a) show + (s) + [4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ure,whichw) + [6.0654 4.27631 4.8436 6.59994 7.8763 6.05449 3.0327 4.54905 9.59991 7.58175 ] pdfxs + (a) show + (s) show + -16.364 -165.87 m + (devel) + [6.0654 4.8436 5.4545 4.8436 3.0327 ] pdfxs + (o) show + (ped) + [6.37085 4.8436 10.4726 ] pdfxs + (t) show + (osupp) + [9.86173 4.29811 6.0654 6.0654 6.35994 ] pdfxs + (o) show + (rt) + [4.27631 8.65092 ] pdfxs + (t) show + (hisw) + [6.05449 3.0327 8.71626 7.57085 ] pdfxs + (o) show + (rk.F) + [4.27631 5.75995 10.1999 6.20722 ] pdfxs + (o) show + (llowing) + [3.0327 3.0327 5.14905 7.8763 3.0327 6.0654 9.86173 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (at) show + (,Ch) + [7.6363 7.8763 6.0654 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (ers3) + [4.85451 4.2654 8.71626 9.86173 ] pdfxs + (a) show + (nd5describe) + [6.0654 10.4726 9.86173 6.0654 4.8436 4.29811 4.85451 4.27631 3.02179 6.37085 9.25083 + ] pdfxs + (t) show + (hetwof) + [6.0654 9.26174 3.93823 7.57085 9.86173 3.33815 ] pdfxs + (o) show + (und) + [6.0654 6.05449 6.0654 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (ns) + [6.0654 4.29811 ] pdfxs + -16.364 -187.793 m + (o) show + (fm) + [7.82175 9.08711 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.30902 4.8436 ] pdfxs + (o) show + (pic) + [6.0654 3.02179 9.3381 ] pdfxs + (t) show + (echniques:) + [4.8436 4.54905 6.0654 6.05449 3.0327 5.75995 6.05449 4.85451 4.29811 9.5781 ] pdfxs + (Dat) show + (aS) + [9.9381 6.05449 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ure) + [6.05449 4.27631 9.3381 ] pdfxs + (A) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 8.79262 ] pdfxs + (a) show + (nd) + [6.05449 10.549 ] pdfxs + (A) show + (u) + [6.05449 ] pdfxs + (to) show + (m) + [9.09802 ] pdfxs + (a) show + (ticPo) + [4.23277 3.0327 9.3381 7.12357 5.74904 ] pdfxs + (o) show + (l) + [7.5163 ] pdfxs + (A) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n.Ch) + [6.05449 10.429 7.8763 6.0654 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (er) + [4.85451 8.749 ] pdfxs + (4) show + -16.364 -209.715 m + (ev) + [4.8436 5.15995 ] pdfxs + (a) show + (lu) + [3.02179 6.0654 ] pdfxs + (at) show + (es) + [4.8436 8.95625 ] pdfxs + (t) show + (heprecisi) + [6.05449 9.50174 6.05449 4.27631 4.8436 4.85451 3.0327 4.29811 3.0327 ] pdfxs + (o) show + (n) + [10.7017 ] pdfxs + (o) show + (f) + [7.98538 ] pdfxs + (D) show + (SAf) + [6.05449 12.829 3.33815 ] pdfxs + (o) show + (r) + [8.92354 ] pdfxs + (a) show + (li) + [3.02179 3.0327 ] pdfxs + (a) show + (s) + [8.95625 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 8.94535 ] pdfxs + (a) show + (pplic) + [6.0654 6.0654 3.02179 3.0327 4.85451 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (ns) + [6.0654 8.94535 ] pdfxs + (a) show + (ndCh) + [6.0654 10.7017 7.88721 6.05449 ] pdfxs + (a) show + (p) + [6.0654 ] pdfxs + (t) show + (er6describes) + [4.8436 8.92354 10.1017 6.05449 4.85451 4.29811 4.85451 4.2654 3.0327 6.35994 4.85451 + 8.94535 ] pdfxs + (t) show + (hesui) + [6.0654 9.49083 4.30902 6.05449 3.0327 ] pdfxs + (t) show + (e) show + -16.364 -231.638 m + (o) show + (fsimple) + [7.59266 4.30902 3.0327 9.08711 6.05449 3.0327 9.10902 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nsused) + [6.05449 8.57444 6.05449 4.30902 4.8436 10.3199 ] pdfxs + (t) show + (oimprove) + [9.71992 3.0327 9.08711 6.0654 4.2654 5.15996 5.4545 9.10902 ] pdfxs + (t) show + (heperf) + [6.05449 9.10902 6.37085 4.8436 4.27631 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nce) + [6.0654 4.8436 9.11992 ] pdfxs + (o) show + (fpo) + [7.59266 6.35994 5.75995 ] pdfxs + (o) show + (l) + [7.29812 ] pdfxs + (a) show + (lloc) + [3.02179 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (edpr) + [4.85451 10.3199 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms.Ch) + [9.08711 4.30902 9.75264 7.8763 6.0654 ] pdfxs + (a) show + (pter) + [6.0654 4.23277 4.85451 8.53082 ] pdfxs + (7) show + -16.364 -253.56 m + (describesTr) + [6.0654 4.8436 4.29811 4.85451 4.27631 3.02179 6.37085 4.8436 8.22535 6.97085 4.27631 + ] pdfxs + (a) show + (nsp) + [6.05449 4.30902 6.05449 ] pdfxs + (a) show + (rentP) + [4.27631 4.8436 5.75995 8.17092 7.12357 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (erC) + [4.8436 8.20355 7.8763 ] pdfxs + (o) show + (mpressi) + [9.08711 6.0654 4.27631 4.8436 4.29811 4.30902 3.0327 ] pdfxs + (o) show + (n,) + [6.05449 7.02539 ] pdfxs + (a) show + (n) + [9.98173 ] pdfxs + (agg) show + (ressivem) + [4.27631 4.85451 4.29811 4.29811 3.0327 5.4545 8.77084 9.09802 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.29811 4.85451 ] pdfxs + (o) show + (pic) + [6.05449 3.0327 8.77084 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n.F) + [6.05449 8.74901 6.20722 ] pdfxs + (o) show + (llowin) + [3.0327 3.0327 5.14905 7.8763 3.0327 6.05449 ] pdfxs + (g) show + -16.364 -275.483 m + (t) show + (his,Ch) + [6.05449 3.0327 4.30902 7.89811 7.88721 6.05449 ] pdfxs + (a) show + (p) + [6.0654 ] pdfxs + (t) show + (er8describesm) + [4.8436 8.90172 10.0799 6.0654 4.8436 4.30902 4.8436 4.27631 3.0327 6.35994 4.85451 + 8.92353 9.09802 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.29811 4.85451 ] pdfxs + (o) show + (pic) + [6.05449 3.0327 9.47992 ] pdfxs + (a) show + (pplic) + [6.05449 6.0654 3.0327 3.02179 4.85451 ] pdfxs + (at) show + (ions) + [3.02179 5.46541 6.05449 8.93444 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [8.8691 ] pdfxs + (a) show + (ren) + [4.27631 9.47992 6.05449 ] pdfxs + (o) show + (tac) + [8.88001 10.0799 4.8436 ] pdfxs + (o) show + (rep) + [4.27631 9.47992 6.05449 ] pdfxs + (a) show + (rt) + [4.27631 8.8691 ] pdfxs + (o) show + (f) + [7.96357 ] pdfxs + (t) show + (his) + [6.05449 3.0327 8.93444 ] pdfxs + (t) show + (hesis:b) + [6.05449 4.85451 4.29811 3.0327 4.29811 9.87264 6.35994 ] pdfxs + (ot) show + (h) show + -16.364 -297.405 m + (t) show + (h) + [6.05449 ] pdfxs + (o) show + (seexpl) + [4.30902 9.07629 4.8436 5.75995 6.05449 3.0327 ] pdfxs + (o) show + (redprim) + [4.27631 4.8436 10.2872 6.0654 4.2654 3.0327 9.08711 ] pdfxs + (a) show + (rilyby) + [4.27631 3.0327 3.0327 9.98173 5.74904 9.98173 ] pdfxs + (ot) show + (herpe) + [6.0654 4.8436 8.49809 6.35994 4.85451 ] pdfxs + (o) show + (ple) + [6.05449 3.0327 9.07629 ] pdfxs + (a) show + (nd) + [6.05449 10.2872 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (o) show + (se) + [4.29811 9.07629 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [8.46546 ] pdfxs + (a) show + (res) + [4.27631 9.06538 4.30902 ] pdfxs + (t) show + (illspecul) + [3.0327 3.02179 7.25448 4.30902 6.35994 4.85451 4.8436 6.0654 3.02179 ] pdfxs + (at) show + (ive.Fin) + [3.0327 5.4545 4.8436 9.64355 7.12357 3.0327 6.05449 ] pdfxs + (a) show + (lly,Ch) + [3.0327 3.0327 4.84359 7.40721 7.8763 6.0654 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (er) + [4.8436 8.49809 ] pdfxs + (9) show + -16.364 -319.328 m + (c) + [4.8436 ] pdfxs + (o) show + (ncludesthew) + [6.0654 4.8436 3.0327 6.0654 6.05449 4.85451 7.94172 4.23277 6.0654 8.4872 7.57085 + ] pdfxs + (o) show + (rk.) + [4.27631 5.75995 3.0327 ] pdfxs + 212.181 -657.201 m + (10) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 72 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (between) + [6.35994 4.85451 3.93823 7.57085 4.85451 4.8436 11.3235 ] pdfxs + (t) show + (hec) + [6.05449 10.1126 4.8436 ] pdfxs + (o) show + (mpiler) + [9.09802 6.05449 3.0327 3.0327 4.8436 9.53444 ] pdfxs + (a) show + (nd) + [6.05449 11.3235 ] pdfxs + (t) show + (hemem) + [6.0654 10.1017 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (rym) + [4.27631 11.0181 9.08711 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (ag) show + (ementruntimec) + [4.8436 9.08711 4.85451 5.75995 9.50182 4.2654 6.0654 5.75995 4.23277 3.0327 9.09802 + 10.1017 4.85451 ] pdfxs + (a) show + (nbeused) + [11.3126 6.35994 10.1126 6.0654 4.29811 4.8436 11.3235 ] pdfxs + (t) show + (oimprovepr) + [10.7126 3.0327 9.08711 6.0654 4.2654 5.15996 5.4545 10.1017 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (m) show + 0 -21.922 m + (perf) + [6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nce.) + [6.0654 4.8436 4.8436 3.0327 ] pdfxs + 16.936 -43.845 m + (A) show + (sam) + [6.97082 8.1272 9.08711 ] pdfxs + (o) show + (re) + [4.27631 7.5163 ] pdfxs + (agg) show + (ressivedem) + [4.27631 4.85451 4.29811 4.29811 3.0327 5.4545 7.5163 6.0654 4.8436 9.09802 ] pdfxs + (o) show + (ns) + [6.05449 4.30902 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [8.72719 ] pdfxs + (o) show + (f) + [6.01085 ] pdfxs + (t) show + (hepower) + [6.05449 7.52721 6.35994 5.14905 7.58175 4.8436 6.9381 ] pdfxs + (o) show + (fm) + [6.01085 9.08711 ] pdfxs + (a) show + (cr) + [4.85451 4.2654 ] pdfxs + (o) show + (sc) + [4.30902 4.8436 ] pdfxs + (o) show + (pic) + [6.0654 3.0327 7.5163 ] pdfxs + (t) show + (echniques,Ch) + [4.8436 4.54905 6.05449 6.0654 3.0327 5.75995 6.05449 4.85451 4.29811 5.89086 7.8763 + 6.0654 ] pdfxs + (a) show + (p) + [6.0654 ] pdfxs + (t) show + (er7describes) + [4.8436 6.9381 8.1272 6.0654 4.8436 4.30902 4.8436 4.27631 3.0327 6.35994 4.8436 + 4.29811 ] pdfxs + 0 -65.768 m + (a) show + (ndev) + [6.0654 9.85082 4.8436 5.14904 ] pdfxs + (a) show + (lu) + [3.0327 6.0654 ] pdfxs + (a) show + (tes) + [4.23277 4.85451 4.29811 ] pdfxs + 68.549 -65.768 m + /N1025 10.909 Tf + (Tr) + [7.67997 5.17085 ] pdfxs + (an) show + (s) + [4.94172 ] pdfxs + (pa) show + (r) + [5.17085 ] pdfxs + (e) show + (ntP) + [6.62184 9.23999 8.22533 ] pdfxs + (o) show + (in) + [3.47997 6.62184 ] pdfxs + (te) show + (rC) + [9.53445 9.0544 ] pdfxs + (o) show + (m) + [10.4507 ] pdfxs + (p) show + (r) + [5.17085 ] pdfxs + (e) show + (ssi) + [4.95263 4.94172 3.49088 ] pdfxs + (on) show + 254.314 -65.768 m + /N614 10.909 Tf + (,which) + [6.86176 7.8763 6.05449 3.0327 4.54905 9.85082 ] pdfxs + (o) show + (p) + [6.05449 ] pdfxs + (t) show + (imis) + [3.0327 9.08711 3.0327 4.30902 ] pdfxs + (t) show + (ic) + [3.02179 4.85451 ] pdfxs + (a) show + (llyshrinksp) + [3.0327 3.02179 9.55628 4.29811 6.0654 4.2654 3.0327 6.0654 5.74904 8.09444 6.37085 + ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (ersin) + [4.8436 4.27631 8.09444 3.0327 9.85082 ] pdfxs + (64) show + (-) show + 0 -87.69 m + (bitsys) + [6.0654 3.02179 7.14548 4.29811 5.75995 4.29811 ] pdfxs + (t) show + (em) + [4.85451 11.978 ] pdfxs + (t) show + (o) + [8.34538 ] pdfxs + (32) show + (-bitindices) + [3.64352 6.05449 3.0327 7.13457 3.0327 6.0654 6.05449 3.0327 4.8436 4.85451 7.189 + ] pdfxs + (a) show + (llowing) + [3.0327 3.0327 5.14905 7.8763 3.0327 6.0654 8.34538 ] pdfxs + (t) show + (hem) + [6.0654 4.8436 11.9889 ] pdfxs + (t) show + (o) + [8.34538 ] pdfxs + (g) show + (rowb) + [4.2654 5.15996 10.7672 6.0654 ] pdfxs + (a) show + (ckto) + [4.53815 8.66174 4.23277 8.35629 ] pdfxs + (64) show + (-bi) + [3.63261 6.0654 3.02179 ] pdfxs + (t) show + (sif) + [7.19991 3.0327 6.22903 ] pdfxs + (a) show + (nyins) + [5.74904 8.65083 3.0327 6.0654 4.29811 ] pdfxs + (ta) show + (nce) + [6.0654 4.8436 7.74539 ] pdfxs + (o) show + (fad) + [6.22903 8.34538 6.0654 ] pdfxs + (a) show + (tas) + [4.23277 8.35629 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ure) + [6.05449 4.27631 4.8436 ] pdfxs + 0 -109.613 m + (g) show + (rowsover) + [4.27631 5.14905 7.8763 7.66899 5.14905 5.4545 4.85451 7.63628 ] pdfxs + (4) show + (GBinsize.Weshowth) + [8.5636 11.0944 3.0327 9.42537 4.29811 3.0327 4.8436 4.85451 7.78902 10.2981 8.21448 + 4.30902 6.05449 5.15996 11.2472 4.23277 6.0654 ] pdfxs + (a) show + (tthis) + [7.61456 4.23277 6.0654 3.0327 7.66899 ] pdfxs + (t) show + (echniquec) + [4.8436 4.54905 6.05449 6.0654 3.0327 5.75995 6.05449 8.21448 4.85451 ] pdfxs + (a) show + (ndr) + [9.42537 6.05449 4.27631 ] pdfxs + (a) show + (m) + [9.08711 ] pdfxs + (at) show + (icallyimprove) + [3.0327 4.8436 5.46541 3.02179 3.0327 9.11992 3.0327 9.09802 6.05449 4.27631 5.14905 + 5.4545 8.21448 ] pdfxs + (t) show + (heperf) + [6.0654 8.21448 6.35994 4.8436 4.27631 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (nce) + [6.05449 4.85451 8.21448 ] pdfxs + (o) show + (f) show + 0 -131.535 m + (p) + [6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er-in) + [4.8436 4.27631 3.63261 3.0327 5.75995 ] pdfxs + (t) show + (ensivepr) + [4.8436 6.0654 4.29811 3.0327 5.4545 8.31266 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (msbye\013ec) + [9.08711 7.76717 5.75995 9.2181 4.85451 6.35986 4.85451 4.8436 ] pdfxs + (t) show + (ivelyincre) + [3.0327 5.4545 4.8436 3.0327 9.2181 3.0327 6.0654 4.8436 4.27631 4.8436 ] pdfxs + (a) show + (singc) + [4.30902 3.02179 6.0654 8.91265 4.85451 ] pdfxs + (a) show + (chec) + [4.54905 6.05449 8.31266 4.85451 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (a) show + (city,incre) + [4.85451 3.02179 3.94914 4.84359 6.52358 3.0327 6.0654 4.8436 4.27631 4.8436 ] pdfxs + (a) show + (singmem) + [4.30902 3.0327 6.05449 8.92356 9.08711 4.8436 9.09802 ] pdfxs + (o) show + (ryb) + [4.27631 9.2181 6.05449 ] pdfxs + (a) show + (ndwid) + [6.0654 6.0654 7.8763 3.0327 6.05449 ] pdfxs + (t) show + (h,) + [6.0654 3.0327 ] pdfxs + 0 -153.458 m + (a) show + (ndreducing) + [6.0654 8.89083 4.27631 4.8436 6.0654 6.05449 4.85451 3.02179 6.0654 8.29084 ] pdfxs + (t) show + (hew) + [6.05449 7.69085 7.57085 ] pdfxs + (o) show + (rkingsetsize) + [4.27631 5.75995 3.02179 6.0654 8.29084 4.29811 4.85451 7.08002 4.29811 3.0327 4.8436 + 7.69085 ] pdfxs + (o) show + (f) + [6.16358 ] pdfxs + (t) show + (hepr) + [6.05449 7.69085 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (m.This) + [9.08711 7.61448 7.8763 6.0654 3.02179 7.14536 ] pdfxs + (t) show + (echniquebuilds) + [4.8436 4.54905 6.05449 6.0654 3.0327 5.74904 6.0654 7.67994 6.0654 6.05449 3.0327 + 3.0327 6.05449 7.14536 ] pdfxs + (o) show + (n) + [8.89083 ] pdfxs + (Dat) show + (aS) + [8.29084 6.05449 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.0654 4.2654 7.69085 ] pdfxs + (A) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 4.29811 ] pdfxs + 0 -175.38 m + (t) show + (oiden) + [10.5708 3.0327 6.0654 4.8436 5.75995 ] pdfxs + (t) show + (ifytype-s) + [3.02179 3.33815 10.8763 3.93823 5.75995 6.35994 4.85451 3.63261 4.30902 ] pdfxs + (a) show + (fed) + [3.32724 9.97083 6.0654 ] pdfxs + (a) show + (tas) + [4.23277 10.5817 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ures,iden) + [6.05449 4.27631 4.8436 4.30902 8.51993 3.0327 6.05449 4.85451 5.74904 ] pdfxs + (t) show + (ifypr) + [3.0327 3.33815 10.8763 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (mreferences) + [14.2034 4.27631 4.85451 3.32724 4.85451 4.2654 4.85451 6.05449 4.85451 4.8436 9.42534 + ] pdfxs + (t) show + (o) + [10.5708 ] pdfxs + (t) show + (hesed) + [6.0654 4.8436 4.29811 9.97083 6.0654 ] pdfxs + (at) show + (astruc) + [10.5708 4.30902 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ures,) + [6.0654 4.2654 4.85451 4.29811 8.51993 ] pdfxs + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + 0 -197.303 m + (indic) + [3.0327 6.05449 6.0654 3.0327 4.8436 ] pdfxs + (at) show + (ewhetherad) + [9.43629 7.88721 6.05449 4.85451 4.23277 6.0654 4.8436 8.869 10.0472 6.05449 ] pdfxs + (at) show + (astruc) + [10.0472 4.30902 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ureeveresc) + [6.0654 4.2654 9.44719 4.8436 5.4545 4.8436 8.869 4.8436 4.30902 4.8436 ] pdfxs + (a) show + (pesfr) + [6.37085 4.8436 8.8908 3.33815 4.27631 ] pdfxs + (o) show + (m) + [13.6798 ] pdfxs + (t) show + (hepr) + [6.05449 9.43629 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (m.Itbuilds) + [9.09802 10.7345 3.94897 8.82546 6.0654 6.05449 3.0327 3.0327 6.0654 8.8908 ] pdfxs + (o) show + (n) + [10.6472 ] pdfxs + (A) show + (u) + [6.0654 ] pdfxs + (to) show + (m) + [9.08711 ] pdfxs + (at) show + (icPo) + [3.0327 9.43629 7.12357 5.75995 ] pdfxs + (o) show + (l) show + 0 -219.225 m + (A) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [11.3017 ] pdfxs + (t) show + (o) + [10.7017 ] pdfxs + (ta) show + (kec) + [5.4545 10.0799 4.85451 ] pdfxs + (o) show + (ntr) + [5.75995 4.23277 4.27631 ] pdfxs + (o) show + (l) + [8.26902 ] pdfxs + (o) show + (f) + [8.57447 ] pdfxs + (t) show + (hemem) + [6.0654 10.0799 9.09802 4.8436 9.09802 ] pdfxs + (o) show + (rylay) + [4.2654 10.9963 3.0327 5.14905 5.4545 ] pdfxs + (o) show + (ut) + [6.0654 9.48 ] pdfxs + (a) show + (ndproviderun) + [6.0654 11.3017 6.05449 4.27631 5.14905 5.75995 3.0327 6.05449 10.0908 4.27631 6.05449 + 5.75995 ] pdfxs + (t) show + (imeinf) + [3.0327 9.08711 10.0908 3.0327 6.05449 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [11.3017 ] pdfxs + (a) show + (ndc) + [6.0654 11.3017 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (o) show + (l) show + 0 -241.148 m + (overwhichnodesinapo) + [5.14905 5.4545 4.85451 9.02172 7.88721 6.05449 3.0327 4.54905 10.8108 6.0654 5.75995 + 6.05449 4.85451 9.05444 3.0327 10.8217 10.2108 6.35994 5.75995 ] pdfxs + (o) show + (l) + [7.78902 ] pdfxs + (a) show + (redyn) + [4.2654 9.61083 6.05449 5.75995 6.0654 ] pdfxs + (a) show + (mic) + [9.08711 3.0327 4.8436 ] pdfxs + (a) show + (lly) + [3.0327 3.0327 10.5163 ] pdfxs + (a) show + (lloc) + [3.02179 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (ed,) + [4.85451 6.05449 8.07266 ] pdfxs + (a) show + (llowingit) + [3.0327 3.02179 5.15996 7.8763 3.0327 6.05449 10.2108 3.0327 9 ] pdfxs + (t) show + (orewri) + [10.2108 4.27631 4.8436 7.8763 4.27631 3.0327 ] pdfxs + (t) show + (e) + [9.59992 ] pdfxs + (t) show + (hed) + [6.0654 9.59992 6.0654 ] pdfxs + (at) show + (as) + [10.2108 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ure) + [6.05449 4.27631 4.8436 ] pdfxs + 0 -263.07 m + (a) show + (trun) + [9.24 4.27631 6.05449 5.75995 ] pdfxs + (t) show + (ime.Fur) + [3.0327 9.08711 4.8436 11.9672 6.20722 6.0654 4.27631 ] pdfxs + (t) show + (herm) + [6.05449 4.85451 4.2654 9.09802 ] pdfxs + (o) show + (re,itin) + [4.2654 4.85451 8.3672 3.0327 9.24 3.02179 5.75995 ] pdfxs + (t) show + (rinsic) + [4.27631 3.0327 6.05449 4.30902 3.02179 4.85451 ] pdfxs + (a) show + (llydepends) + [3.0327 3.02179 10.7563 6.0654 4.8436 6.37085 4.8436 6.0654 6.05449 9.30534 ] pdfxs + (o) show + (n) + [11.0508 ] pdfxs + (t) show + (hes) + [6.0654 9.83992 4.30902 ] pdfxs + (tat) show + (icp) + [3.02179 9.85083 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er) + [4.8436 9.27263 ] pdfxs + (t) show + (os) + [10.4508 4.29811 ] pdfxs + (tat) show + (icpo) + [3.0327 9.85083 6.35994 5.75995 ] pdfxs + (o) show + (lm) + [8.02902 9.08711 ] pdfxs + (a) show + (ppin) + [6.05449 6.0654 3.0327 6.05449 ] pdfxs + (g) show + 0 -284.993 m + (inf) + [3.0327 6.05449 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nc) + [9.68719 4.85451 ] pdfxs + (o) show + (mpu) + [9.08711 6.0654 6.05449 ] pdfxs + (t) show + (edbythepo) + [4.85451 9.6981 5.74904 9.40355 4.23277 6.0654 8.4872 6.35994 5.75995 ] pdfxs + (o) show + (l) + [6.6654 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.68719 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n.) + [6.0654 3.0327 ] pdfxs + 16.936 -306.915 m + (I) show + (n) + [9.0981 ] pdfxs + (a) show + (ddi) + [6.0654 6.0654 3.02179 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.0981 ] pdfxs + (t) show + (o) + [8.49811 ] pdfxs + (t) show + (hesenew) + [6.05449 4.85451 4.29811 7.88721 6.0654 4.85451 10.909 ] pdfxs + (a) show + (nd) + [6.0654 9.0981 ] pdfxs + (agg) show + (ressive) + [4.27631 4.8436 4.30902 4.29811 3.0327 5.4545 7.88721 ] pdfxs + (t) show + (echniques,weshow) + [4.85451 4.53815 6.0654 6.05449 3.0327 5.75995 6.0654 4.8436 4.29811 6.19631 7.57085 + 7.89812 4.29811 6.0654 5.14905 10.9199 ] pdfxs + (\() show + (inCh) + [3.02179 9.10901 7.8763 6.05449 ] pdfxs + (a) show + (p) + [6.0654 ] pdfxs + (t) show + (er) + [4.8436 7.31992 ] pdfxs + (4) show + (\)) + [7.27638 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (tthisfr) + [7.28729 4.23277 6.0654 3.0327 7.34172 3.32724 4.27631 ] pdfxs + (a) show + (mew) + [9.09802 4.8436 7.57085 ] pdfxs + (o) show + (rk) + [4.27631 5.75995 ] pdfxs + 0 -328.838 m + (c) + [4.8436 ] pdfxs + (a) show + (n) + [8.93447 ] pdfxs + (a) show + (lsobeused) + [3.0327 4.29811 8.32356 6.37085 7.71266 6.05449 4.30902 4.8436 8.93447 ] pdfxs + (t) show + (oh) + [8.32356 6.05449 ] pdfxs + (o) show + (st) + [4.30902 7.11275 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lyses) + [3.0327 5.75995 4.29811 4.85451 7.16718 ] pdfxs + (a) show + (nd) + [6.0654 8.92356 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nth) + [8.93447 4.23277 6.0654 ] pdfxs + (a) show + (tuse) + [7.11275 6.05449 4.30902 7.71266 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (di) + [6.05449 3.0327 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [6.05449 ] pdfxs + (a) show + (l) + [5.90177 ] pdfxs + (a) show + (li) + [3.0327 3.0327 ] pdfxs + (a) show + (s) + [7.16718 ] pdfxs + (a) show + (ndmod) + [6.0654 8.92356 9.09802 5.74904 6.0654 ] pdfxs + (/) show + (ref) + [4.27631 4.8436 6.20722 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 4.29811 ] pdfxs + 0 -350.761 m + (inf) + [3.0327 6.05449 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n,providing) + [6.05449 5.99995 6.05449 4.27631 5.14905 5.75995 3.0327 6.05449 3.0327 6.0654 8.2472 + ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisprecisi) + [3.02179 5.75995 4.30902 3.02179 7.10173 6.0654 4.2654 4.85451 4.8436 3.0327 4.29811 + 3.0327 ] pdfxs + (o) show + (n) + [8.8581 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (tmee) + [7.03639 9.08711 4.85451 4.8436 ] pdfxs + (t) show + (s) + [7.10173 ] pdfxs + (a) show + (ndexceeds) + [6.05449 8.8581 4.85451 5.75995 4.8436 4.8436 4.85451 6.05449 7.10173 ] pdfxs + (ot) show + (herp) + [6.0654 4.8436 7.06901 6.37085 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (er) + [4.8436 7.06901 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lyses) + [3.0327 5.75995 4.29811 4.8436 7.10173 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (trequire) + [7.03639 4.27631 4.8436 5.75995 6.05449 3.0327 4.27631 4.8436 ] pdfxs + 0 -372.683 m + (simil) + [4.29811 3.0327 9.09802 3.02179 3.0327 ] pdfxs + (a) show + (r) + [7.909 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.02179 5.75995 4.30902 3.0327 7.93081 ] pdfxs + (t) show + (ime.) + [3.0327 9.08711 4.85451 3.0327 ] pdfxs + 16.936 -394.606 m + (Fin) + [7.12357 3.0327 6.05449 ] pdfxs + (a) show + (lly,Ch) + [3.0327 3.0327 4.84359 6.83994 7.8763 6.0654 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (er8describess) + [4.85451 8.03991 9.22901 6.0654 4.8436 4.30902 4.8436 4.27631 3.0327 6.35994 4.85451 + 8.07263 4.29811 ] pdfxs + (o) show + (mep) + [9.09802 8.61811 6.37085 ] pdfxs + (o) show + (ten) + [4.23277 4.85451 5.75995 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (a) show + (lf) + [6.80721 3.33815 ] pdfxs + (o) show + (rfu) + [8.03991 3.33815 6.05449 ] pdfxs + (t) show + (urew) + [6.0654 4.27631 8.61811 7.57085 ] pdfxs + (o) show + (rkin) + [4.27631 9.53446 3.0327 9.829 ] pdfxs + (t) show + (his\feld.) + [6.0654 3.02179 8.08354 6.05449 4.85451 3.0327 6.05449 8.29084 ] pdfxs + (I) show + (np) + [9.83991 6.0654 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (t) show + (icul) + [3.0327 4.8436 6.0654 3.0327 ] pdfxs + (a) show + (r,) + [4.2654 6.83994 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (o) show + (u) + [6.05449 ] pdfxs + (g) show + (h) show + 0 -416.528 m + (t) show + (hisw) + [6.05449 3.0327 9.06535 7.57085 ] pdfxs + (o) show + (rkh) + [4.27631 10.5163 6.0654 ] pdfxs + (a) show + (sprim) + [9.05444 6.0654 4.27631 3.02179 9.09802 ] pdfxs + (a) show + (rilyfocused) + [4.2654 3.0327 3.0327 10.5163 3.33815 5.74904 4.85451 6.05449 4.30902 4.8436 10.8217 + ] pdfxs + (o) show + (n) + [10.8217 ] pdfxs + (t) show + (hepr) + [6.05449 9.61083 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (mperf) + [13.8543 6.35994 4.8436 4.27631 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (nce) + [6.05449 4.85451 9.59992 ] pdfxs + (a) show + (spec) + [4.30902 6.35994 4.85451 4.8436 ] pdfxs + (t) show + (s) + [9.06535 ] pdfxs + (o) show + (fthisw) + [8.09447 4.23277 6.0654 3.0327 9.05444 7.58175 ] pdfxs + (o) show + (rk,m) + [4.27631 5.74904 8.07266 9.09802 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.29811 4.85451 ] pdfxs + (o) show + (pic) + [6.05449 3.0327 4.8436 ] pdfxs + 0 -438.451 m + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysistechniques) + [3.02179 5.75995 4.30902 3.02179 7.00355 4.23277 4.85451 4.54905 6.05449 6.0654 3.0327 + 5.74904 6.0654 4.8436 7.00355 ] pdfxs + (a) show + (re) + [4.2654 7.53812 ] pdfxs + (a) show + (pplic) + [6.0654 6.0654 3.02179 3.0327 4.85451 ] pdfxs + (a) show + (ble) + [6.05449 3.0327 7.53812 ] pdfxs + (t) show + (oawidev) + [8.14902 8.14902 7.8763 3.0327 6.05449 7.53812 5.15995 ] pdfxs + (a) show + (riety) + [4.2654 3.0327 4.85451 3.93823 8.44356 ] pdfxs + (o) show + (fdi\013erentpr) + [6.03267 6.05449 3.0327 6.35986 4.85451 4.2654 4.85451 5.75995 6.9273 6.0654 4.27631 + ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (m) + [11.7816 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 6.99264 ] pdfxs + (a) show + (nd) + [6.0654 8.74901 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) show + 0 -460.373 m + (pr) + [6.0654 4.2654 ] pdfxs + (o) show + (blemsinm) + [6.0654 3.0327 4.8436 9.08711 9.1308 3.0327 10.8872 9.08711 ] pdfxs + (a) show + (nyd) + [5.75995 10.5817 6.0654 ] pdfxs + (o) show + (m) + [9.08711 ] pdfxs + (a) show + (ins\(e.) + [3.0327 6.0654 9.1308 4.23277 4.85451 3.0327 ] pdfxs + (g) show + (.mem) + [11.4435 9.09802 4.8436 9.08711 ] pdfxs + (o) show + (rym) + [4.27631 10.5817 9.09802 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (ag) show + (emen) + [4.85451 9.08711 4.8436 5.75995 ] pdfxs + (t) show + (,pr) + [8.15993 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (ms) + [13.9198 4.30902 ] pdfxs + (a) show + (fety,distribu) + [3.32724 4.85451 3.93823 4.84359 8.15993 6.05449 3.0327 4.30902 4.23277 4.27631 3.0327 + 6.05449 6.0654 ] pdfxs + (t) show + (edc) + [4.8436 10.8872 4.85451 ] pdfxs + (o) show + (mpu) + [9.08711 6.0654 6.05449 ] pdfxs + (t) show + (in) + [3.0327 6.0654 ] pdfxs + (g) show + (,) show + 0 -482.296 m + (e) + [4.8436 ] pdfxs + (t) show + (c) + [4.85451 ] pdfxs + (\)) show + (.Weh) + [8.75992 10.309 8.78174 6.05449 ] pdfxs + (o) show + (pe) + [6.37085 8.78174 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tc) + [8.17092 4.85451 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (inuingw) + [3.02179 5.75995 6.0654 3.0327 6.05449 9.39265 7.57085 ] pdfxs + (o) show + (rkin) + [4.27631 9.68719 3.0327 9.99264 ] pdfxs + (t) show + (he\feldwillexp) + [6.05449 8.78174 6.0654 4.8436 3.0327 9.99264 7.8763 3.0327 3.0327 6.95994 4.85451 + 5.74904 6.37085 ] pdfxs + (o) show + (sem) + [4.29811 8.78174 9.08711 ] pdfxs + (a) show + (nynewide) + [5.75995 9.68719 6.0654 4.8436 11.8144 3.0327 6.0654 4.8436 ] pdfxs + (a) show + (s) + [8.23626 ] pdfxs + (a) show + (nd) + [6.05449 10.0035 ] pdfxs + (a) show + (ppr) + [6.05449 6.0654 4.2654 ] pdfxs + (oa) show + (ches) + [4.54905 6.0654 4.8436 8.23626 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (at) show + 0 -504.218 m + (wehaven'tevenc) + [7.57085 8.4872 6.0654 5.14905 5.4545 4.8436 6.0654 3.0327 7.87638 4.8436 5.4545 + 4.85451 9.6981 4.8436 ] pdfxs + (o) show + (nsideredyet.) + [6.0654 4.29811 3.0327 6.0654 4.8436 4.27631 4.8436 9.6981 5.4545 4.85451 4.23277 + 3.0327 ] pdfxs + 225.818 -657.201 m + (195) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (22) 23 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 0.000000 0.000000 translate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 72 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (s) + [4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (uresusedbyc) + [6.05449 4.27631 4.85451 8.86898 6.05449 4.30902 4.8436 10.6254 5.75995 10.3199 4.85451 + ] pdfxs + (o) show + (mm) + [9.08711 9.08711 ] pdfxs + (o) show + (nhelperfunc) + [10.6254 6.0654 4.8436 3.0327 6.37085 4.8436 8.83627 3.33815 6.05449 6.0654 4.8436 + ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns,h) + [6.0654 4.29811 7.83266 6.05449 ] pdfxs + (a) show + (ndles) + [6.0654 6.05449 3.0327 4.8436 8.86898 ] pdfxs + (a) show + (ll) + [3.0327 7.60357 ] pdfxs + (o) show + (f) + [7.89811 ] pdfxs + (t) show + (hedi\016cult) + [6.05449 9.41447 6.0654 3.02179 9.09802 4.8436 6.0654 3.0327 8.80364 ] pdfxs + (a) show + (spects) + [4.29811 6.37085 4.8436 4.85451 4.23277 8.86898 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (t) + [8.80364 ] pdfxs + (t) show + (he) + [6.0654 9.41447 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (M) show + 0 -21.922 m + (I) show + (Rexp) + [11.7707 4.8436 5.75995 6.35994 ] pdfxs + (o) show + (ses) + [4.30902 4.8436 8.0399 ] pdfxs + (\() show + (which) + [7.8763 6.0654 3.02179 4.54905 9.79628 ] pdfxs + (a) show + (reinheri) + [4.27631 8.58538 3.02179 6.0654 6.05449 4.85451 4.27631 3.02179 ] pdfxs + (t) show + (edfr) + [4.85451 9.79628 3.32724 4.27631 ] pdfxs + (o) show + (mC,includingp) + [12.8289 7.8763 6.76358 3.0327 6.05449 4.85451 3.0327 6.05449 6.0654 3.0327 6.05449 + 9.19628 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (erc) + [4.85451 8.00718 4.8436 ] pdfxs + (a) show + (ses,v) + [4.30902 4.8436 4.30902 6.78539 5.14904 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (g) show + (s,excep) + [4.29811 6.7963 4.8436 5.75995 4.8436 4.85451 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns,e) + [6.0654 4.29811 6.78539 4.85451 ] pdfxs + (t) show + (c) + [4.8436 ] pdfxs + (\)) show + (,c) + [6.7963 4.8436 ] pdfxs + (a) show + (nsee) + [9.79628 4.29811 4.85451 4.8436 ] pdfxs + 0 -43.845 m + (t) show + (hr) + [6.05449 4.27631 ] pdfxs + (o) show + (u) + [6.0654 ] pdfxs + (g) show + (h) show + 41.846 -43.845 m + /N722 10.909 Tf + (void*) show + 74.723 -43.845 m + /N614 10.909 Tf + (c) + [4.8436 ] pdfxs + (a) show + (s) + [4.30902 ] pdfxs + (t) show + (s,iden) + [4.29811 7.42903 3.02179 6.0654 4.8436 5.75995 ] pdfxs + (t) show + (i\fes) + [3.0327 6.05449 4.85451 8.54171 ] pdfxs + (t) show + (heimp) + [6.05449 9.09811 3.02179 9.09802 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (ta) show + (nts) + [5.74904 8.48728 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.05449 4.27631 9.0872 ] pdfxs + (o) show + (frecursive) + [7.58175 4.2654 4.85451 4.8436 6.0654 4.2654 4.30902 3.0327 5.4545 9.0872 ] pdfxs + (o) show + (bjec) + [6.66539 3.32724 4.85451 4.8436 ] pdfxs + (t) show + (s,e) + [4.30902 7.41812 4.8436 ] pdfxs + (t) show + (c.Fin) + [4.85451 9.68719 7.12357 3.0327 6.05449 ] pdfxs + (a) show + (lly,despi) + [3.0327 3.0327 4.84359 7.42903 6.05449 4.85451 4.29811 6.0654 3.02179 ] pdfxs + (t) show + (e) show + 0 -65.768 m + (t) show + (he) + [6.05449 9.43629 ] pdfxs + (agg) show + (ressiven) + [4.2654 4.85451 4.29811 4.30902 3.0327 5.4545 9.42537 6.05449 ] pdfxs + (at) show + (ure) + [6.0654 4.2654 9.43629 ] pdfxs + (o) show + (f) + [7.90902 ] pdfxs + (D) show + (S) + [6.05449 ] pdfxs + (A) show + (,itusesli) + [7.61448 3.0327 8.82546 6.05449 4.30902 4.8436 8.87989 3.0327 3.0327 ] pdfxs + (tt) show + (lemem) + [3.02179 9.43629 9.08711 4.8436 9.09802 ] pdfxs + (o) show + (ry) + [4.2654 10.3417 ] pdfxs + (a) show + (ndisf) + [6.0654 10.6363 3.0327 8.87989 3.32724 ] pdfxs + (a) show + (st) + [4.30902 8.82546 ] pdfxs + (a) show + (ndsc) + [6.05449 10.6472 4.29811 4.8436 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (a) show + (blein) + [6.0654 3.0327 9.42537 3.0327 10.6363 ] pdfxs + (o) show + (urexperimen) + [6.05449 8.85809 4.8436 5.75995 6.37085 4.8436 4.27631 3.02179 9.09802 4.8436 5.75995 + ] pdfxs + (t) show + (s) show + 0 -87.69 m + (o) show + (npr) + [10.3199 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (mssp) + [9.08711 8.56353 4.29811 6.0654 ] pdfxs + (a) show + (nning) + [6.05449 6.0654 3.02179 6.0654 9.70901 ] pdfxs + (4) show + (-5) + [3.63261 9.71992 ] pdfxs + (o) show + (rders) + [4.2654 6.0654 4.8436 4.27631 8.56353 ] pdfxs + (o) show + (fm) + [7.58175 9.09802 ] pdfxs + (ag) show + (ni) + [6.05449 3.0327 ] pdfxs + (t) show + (ude) + [6.05449 6.0654 9.09811 ] pdfxs + (o) show + (fcodesize) + [7.59266 4.85451 5.74904 6.0654 9.10902 4.29811 3.0327 4.8436 9.10902 ] pdfxs + (\() show + (p) + [6.05449 ] pdfxs + (a) show + (st) + [4.30902 8.49819 ] pdfxs + (200) show + (,) + [3.02179 ] pdfxs + (00) show + (0lines) + [9.71992 3.02179 3.0327 6.0654 4.8436 8.56353 ] pdfxs + (o) show + (fcode) + [7.58175 4.85451 5.75995 6.05449 4.85451 ] pdfxs + (\)) show + (.Webe-) + [9.73082 10.309 9.09811 6.37085 4.8436 3.63261 ] pdfxs + 0 -109.613 m + (lieve) + [3.0327 3.0327 4.8436 5.4545 9.27265 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (titsh) + [8.66183 3.0327 8.66183 4.30902 6.05449 ] pdfxs + (o) show + (uldc) + [6.0654 3.02179 10.4835 4.85451 ] pdfxs + (o) show + (n) + [5.74904 ] pdfxs + (t) show + (inue) + [3.0327 5.75995 6.05449 9.27265 ] pdfxs + (t) show + (osc) + [9.87264 4.30902 4.8436 ] pdfxs + (a) show + (lewell) + [3.0327 9.27265 7.57085 4.8436 3.0327 7.45084 ] pdfxs + (t) show + (ol) + [9.87264 3.0327 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (g) show + (erpr) + [4.8436 8.69445 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms) + [9.08711 8.72717 ] pdfxs + (\(a) show + (sdiscussedinSecti) + [8.72717 6.05449 3.0327 4.29811 4.85451 6.05449 4.30902 4.29811 4.85451 10.4835 3.02179 + 10.4835 6.0654 4.8436 4.85451 4.23277 3.0327 ] pdfxs + (o) show + (ns) + [6.0654 8.71626 ] pdfxs + (3) show + (.) + [3.0327 ] pdfxs + (2) show + (.5) + [3.0327 9.87264 ] pdfxs + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + 0 -131.535 m + (3) show + (.) + [3.0327 ] pdfxs + (4) show + (.) + [3.0327 ] pdfxs + (2) show + (\).Fin) + [4.23277 8.63992 7.12357 3.0327 6.05449 ] pdfxs + (a) show + (lly,wedem) + [3.0327 3.0327 4.84359 6.98176 7.58175 8.73811 6.05449 4.85451 9.08711 ] pdfxs + (o) show + (ns) + [6.0654 4.29811 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (at) show + (e) + [8.73811 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tDSArequires) + [8.13819 8.32365 6.0654 12.0763 4.2654 4.85451 5.74904 6.0654 3.0327 4.2654 4.85451 + 8.19263 ] pdfxs + (o) show + (nlyasm) + [6.05449 3.0327 9.65446 9.3381 4.30902 9.08711 ] pdfxs + (a) show + (llfr) + [3.0327 6.9163 3.32724 4.27631 ] pdfxs + (a) show + (c) + [4.85451 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [9.949 ] pdfxs + (o) show + (f) + [7.22175 ] pdfxs + (t) show + (he) + [6.0654 8.73811 ] pdfxs + (tota) show + (lc) + [6.9163 4.8436 ] pdfxs + (o) show + (mpile) + [9.09802 6.05449 3.0327 3.0327 8.73811 ] pdfxs + (t) show + (ime) + [3.0327 9.08711 4.8436 ] pdfxs + 0 -153.458 m + (f) + [3.33815 ] pdfxs + (o) show + (r) + [8.47627 ] pdfxs + (t) show + (hepr) + [6.05449 9.05447 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (mswe) + [9.08711 8.50899 7.57085 9.05447 ] pdfxs + (t) show + (es) + [4.85451 4.29811 ] pdfxs + (t) show + (ed,whichwebelieveh) + [4.8436 6.0654 7.37448 7.8763 6.0654 3.0327 4.53815 10.2654 7.58175 9.05447 6.35994 + 4.8436 3.0327 3.0327 4.8436 5.4545 9.05447 6.0654 ] pdfxs + (a) show + (sneverbeen) + [8.50899 6.05449 4.85451 5.4545 4.8436 8.47627 6.35994 4.85451 4.8436 10.2654 ] pdfxs + (a) show + (cc) + [4.85451 4.8436 ] pdfxs + (o) show + (mplishedf) + [9.09802 6.05449 3.0327 3.0327 4.29811 6.0654 4.8436 10.2654 3.33815 ] pdfxs + (o) show + (ra) + [8.47627 9.65446 ] pdfxs + (g) show + (ener) + [4.8436 6.0654 4.8436 4.27631 ] pdfxs + (a) show + (l-purp) + [3.0327 3.63261 6.0654 6.05449 4.27631 6.35994 ] pdfxs + (o) show + (se) + [4.30902 4.8436 ] pdfxs + 0 -175.38 m + (c) + [4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (ex) + [4.85451 5.74904 ] pdfxs + (t) show + (-sensi) + [3.64352 4.29811 4.8436 6.0654 4.29811 3.0327 ] pdfxs + (t) show + (ivep) + [3.0327 5.4545 8.4872 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er) + [4.8436 7.909 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysiswi) + [3.02179 5.75995 4.30902 3.02179 7.94172 7.8763 3.0327 ] pdfxs + (t) show + (hfullhe) + [9.6981 3.32724 6.0654 3.0327 6.6654 6.0654 4.8436 ] pdfxs + (a) show + (pcl) + [9.6981 4.8436 3.0327 ] pdfxs + (o) show + (nin) + [6.0654 3.02179 6.0654 ] pdfxs + (g) show + (.) show + 16.936 -197.303 m + /N1025 10.909 Tf + (A) + [9.47995 ] pdfxs + (u) show + (t) + [4.8873 ] pdfxs + (o) show + (m) + [10.4507 ] pdfxs + (at) show + (icPo) + [3.49088 10.8872 8.22533 6.62173 ] pdfxs + (o) show + (lAllo) + [8.80356 9.47995 3.49088 3.47997 6.62173 ] pdfxs + (ca) show + (ti) + [4.8873 3.47997 ] pdfxs + (on) show + 171.253 -197.303 m + /N614 10.909 Tf + (\() show + (Ch) + [7.8763 6.0654 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (er) + [4.85451 8.89081 ] pdfxs + (5) show + (\)isdesi) + [8.8691 3.02179 8.93444 6.05449 4.85451 4.29811 3.0327 ] pdfxs + (g) show + (ned) + [6.0654 4.8436 10.6799 ] pdfxs + (t) show + (oprovide) + [10.0799 6.0654 4.2654 5.14905 5.75995 3.0327 6.0654 9.46901 ] pdfxs + (t) show + (hec) + [6.05449 9.47992 4.8436 ] pdfxs + (o) show + (mpilerwi) + [9.08711 6.0654 3.0327 3.02179 4.85451 8.89081 7.88721 3.02179 ] pdfxs + (t) show + (h) + [10.6908 ] pdfxs + (t) show + (hein-) + [6.05449 9.46901 3.0327 6.0654 3.63261 ] pdfxs + -1.52588e-05 -219.225 m + (f) + [3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n) + [10.2326 ] pdfxs + (a) show + (ndp) + [6.05449 10.2326 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (a) show + (lc) + [7.18903 4.85451 ] pdfxs + (o) show + (n) + [5.74904 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (o) show + (litneeds) + [7.19994 3.02179 8.41092 6.0654 4.8436 4.85451 6.05449 8.46535 ] pdfxs + (t) show + (ore) + [9.62173 4.27631 4.8436 ] pdfxs + (a) show + (s) + [4.30902 ] pdfxs + (o) show + (n) + [10.2217 ] pdfxs + (a) show + (b) + [6.37085 ] pdfxs + (o) show + (ut) + [6.05449 8.41092 ] pdfxs + (a) show + (nd) + [6.05449 10.2326 ] pdfxs + (o) show + (p) + [6.05449 ] pdfxs + (t) show + (imize) + [3.0327 9.08711 3.0327 4.85451 9.01083 ] pdfxs + (t) show + (hehe) + [6.05449 9.02174 6.05449 4.85451 ] pdfxs + (a) show + (play) + [10.2217 3.0327 5.14905 5.4545 ] pdfxs + (o) show + (ut) + [6.0654 8.40001 ] pdfxs + (o) show + (frecursive) + [7.50539 4.27631 4.8436 4.8436 6.0654 4.27631 4.29811 3.0327 5.4545 4.8436 ] pdfxs + -1.52588e-05 -241.148 m + (d) + [6.0654 ] pdfxs + (a) show + (tas) + [4.23277 8.58538 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ures.) + [6.0654 4.2654 4.85451 4.29811 7.71266 ] pdfxs + (A) show + (u) + [6.05449 ] pdfxs + (to) show + (m) + [9.09802 ] pdfxs + (a) show + (ticPo) + [4.23277 3.0327 7.97448 7.12357 5.75995 ] pdfxs + (o) show + (l) + [6.15267 ] pdfxs + (A) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (np) + [9.18537 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (ns) + [6.0654 7.429 ] pdfxs + (t) show + (hehe) + [6.05449 7.98539 6.05449 4.85451 ] pdfxs + (a) show + (p,ch) + [6.05449 6.26176 4.53815 6.0654 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (ingitfr) + [3.02179 6.0654 8.58538 3.02179 7.37456 3.32724 4.27631 ] pdfxs + (o) show + (ma) + [12.218 8.58538 ] pdfxs + (g) show + (i) + [3.02179 ] pdfxs + (a) show + (ntbl) + [5.75995 7.37456 6.05449 3.0327 ] pdfxs + (a) show + (ckbox) + [4.54905 8.87992 6.35994 5.15996 5.75995 ] pdfxs + -1.52588e-05 -263.07 m + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (th) + [8.0291 6.05449 ] pdfxs + (o) show + (ldsmem) + [3.0327 6.05449 8.08354 9.09802 4.8436 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 9.53446 ] pdfxs + (o) show + (bjectsin) + [6.66539 3.33815 4.8436 4.85451 4.23277 8.08354 3.0327 5.75995 ] pdfxs + (t) show + (o) + [9.22901 ] pdfxs + (\() show + (p) + [6.35994 ] pdfxs + (ot) show + (en) + [4.8436 5.75995 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (a) show + (llym) + [3.0327 3.02179 9.53446 9.09802 ] pdfxs + (a) show + (ny\)dis) + [5.75995 5.74904 8.01819 6.0654 3.0327 4.29811 ] pdfxs + (t) show + (inctpo) + [3.0327 6.05449 4.85451 8.01819 6.35994 5.75995 ] pdfxs + (o) show + (lsin) + [3.0327 8.08354 3.02179 9.83991 ] pdfxs + (t) show + (hehe) + [6.0654 8.61811 6.0654 4.8436 ] pdfxs + (a) show + (pwhich) + [9.83991 7.8763 6.0654 3.0327 4.53815 9.83991 ] pdfxs + (o) show + (f) + [3.33815 ] pdfxs + (t) show + (enc) + [4.8436 9.83991 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (ta) show + (in) + [3.0327 6.0654 ] pdfxs + -1.52588e-05 -284.993 m + (ah) + [9.95991 6.0654 ] pdfxs + (o) show + (m) + [9.08711 ] pdfxs + (og) show + (en) + [4.8436 6.0654 ] pdfxs + (o) show + (usc) + [6.0654 8.80353 4.85451 ] pdfxs + (o) show + (llec) + [3.02179 3.0327 4.85451 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [10.5599 ] pdfxs + (o) show + (fmem) + [7.84357 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 10.2654 ] pdfxs + (o) show + (bjec) + [6.66539 3.32724 4.85451 4.8436 ] pdfxs + (t) show + (swi) + [8.81444 7.8763 3.0327 ] pdfxs + (t) show + (hc) + [10.5599 4.85451 ] pdfxs + (o) show + (mm) + [9.08711 9.08711 ] pdfxs + (o) show + (npr) + [10.5708 6.0654 4.2654 ] pdfxs + (o) show + (per) + [6.37085 4.8436 4.27631 ] pdfxs + (t) show + (ies.Byi) + [3.02179 4.85451 4.29811 10.4945 7.72349 10.2654 3.0327 ] pdfxs + (t) show + (self) + [4.29811 4.85451 3.02179 7.84357 ] pdfxs + (t) show + (his) + [6.0654 3.02179 8.81444 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (-) show + -1.52588e-05 -306.915 m + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.55628 ] pdfxs + (o) show + (f) + [3.32724 ] pdfxs + (t) show + (enh) + [4.8436 9.55628 6.0654 ] pdfxs + (a) show + (sap) + [7.7999 8.94538 6.35994 ] pdfxs + (o) show + (si) + [4.30902 3.02179 ] pdfxs + (t) show + (iveperf) + [3.0327 5.4545 8.34538 6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nceimp) + [6.0654 4.8436 8.34538 3.02179 9.09802 6.05449 ] pdfxs + (a) show + (ct) + [4.85451 7.73456 ] pdfxs + (o) show + (nhe) + [9.55628 6.05449 4.85451 ] pdfxs + (a) show + (p-in) + [6.05449 3.64352 3.0327 5.74904 ] pdfxs + (t) show + (ensivepr) + [4.85451 6.05449 4.30902 3.02179 5.4545 8.34538 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms) + [9.08711 7.7999 ] pdfxs + (\() show + (byincre) + [5.75995 9.25083 3.0327 6.05449 4.85451 4.2654 4.85451 ] pdfxs + (a) show + (singloc) + [4.29811 3.0327 6.0654 8.94538 3.0327 5.75995 4.8436 ] pdfxs + (a) show + (lity) + [3.0327 3.0327 3.93823 9.25083 ] pdfxs + (o) show + (f) show + -1.52588e-05 -328.838 m + (reference) + [4.27631 4.8436 3.33815 4.8436 4.27631 4.8436 6.0654 4.8436 8.39993 ] pdfxs + (a) show + (m) + [9.09802 ] pdfxs + (o) show + (ng) + [6.05449 9.01083 ] pdfxs + (t) show + (hed) + [6.05449 8.39993 6.0654 ] pdfxs + (at) show + (as) + [8.99992 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ure,) + [6.0654 4.2654 4.85451 6.59994 ] pdfxs + (a) show + (nd) + [6.05449 9.61082 ] pdfxs + (\\) show + (dein) + [6.0654 4.8436 3.0327 5.75995 ] pdfxs + (t) show + (erl) + [4.8436 4.27631 3.0327 ] pdfxs + (a) show + (cin) + [4.8436 3.0327 6.0654 ] pdfxs + (g) show + ("dis) + [8.99992 6.0654 3.02179 4.30902 ] pdfxs + (t) show + (inctd) + [3.0327 6.05449 4.85451 7.78911 6.0654 ] pdfxs + (at) show + (astruc) + [8.99992 4.30902 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (uresfr) + [6.0654 4.2654 4.85451 7.85445 3.32724 4.27631 ] pdfxs + (o) show + (me) + [12.6434 4.8436 ] pdfxs + (a) show + (ch) + [4.54905 9.61082 ] pdfxs + (ot) show + (her) + [6.0654 4.8436 4.27631 ] pdfxs + (\)) show + (,) show + -1.52588e-05 -350.761 m + (butitsm) + [6.0654 6.05449 8.44365 3.0327 4.23277 8.50899 9.08711 ] pdfxs + (o) show + (stimp) + [4.29811 8.44365 3.0327 9.08711 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (ta) show + (ntpurp) + [5.75995 8.43274 6.0654 6.0654 4.2654 6.37085 ] pdfxs + (o) show + (seis) + [4.29811 9.04356 3.0327 8.49808 ] pdfxs + (t) show + (o) + [9.65446 ] pdfxs + (ta) show + (kec) + [5.4545 9.04356 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (o) show + (l) + [7.22175 ] pdfxs + (o) show + (fp) + [7.5272 6.37085 ] pdfxs + (o) show + (r) + [4.2654 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.0654 8.49808 ] pdfxs + (o) show + (f) + [7.5272 ] pdfxs + (t) show + (hehe) + [6.0654 9.04356 6.05449 4.85451 ] pdfxs + (a) show + (p) + [10.2545 ] pdfxs + (a) show + (nden) + [6.0654 10.2545 4.8436 6.0654 ] pdfxs + (a) show + (blesubsequen) + [6.05449 3.0327 9.04356 4.30902 6.05449 6.0654 4.29811 4.85451 5.75995 6.05449 4.85451 + 5.74904 ] pdfxs + (t) show + -1.52588e-05 -372.683 m + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lyses) + [3.02179 5.75995 4.30902 4.8436 7.94172 ] pdfxs + (a) show + (nd) + [6.05449 9.6981 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns.) + [6.05449 4.30902 3.0327 ] pdfxs + 16.936 -394.606 m + (T) + [6.97085 ] pdfxs + (og) show + (e) + [4.8436 ] pdfxs + (t) show + (her,) + [6.0654 4.8436 4.27631 5.73813 ] pdfxs + (t) show + (hese) + [6.05449 4.85451 4.29811 7.33085 ] pdfxs + (t) show + (echniques) + [4.8436 4.54905 6.05449 6.0654 3.0327 5.74904 6.0654 4.8436 6.78537 ] pdfxs + (a) show + (nd) + [6.05449 8.54174 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (go) show + (ri) + [4.2654 3.0327 ] pdfxs + (t) show + (hms) + [6.0654 9.08711 6.77446 ] pdfxs + (a) show + (re) + [4.27631 7.31994 ] pdfxs + (t) show + (hef) + [6.0654 7.31994 3.33815 ] pdfxs + (o) show + (und) + [6.05449 6.0654 6.05449 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [8.54174 ] pdfxs + (o) show + (f) + [5.80358 ] pdfxs + (t) show + (he) + [6.0654 4.8436 ] pdfxs + 334.017 -394.606 m + /N1025 10.909 Tf + (M) + [11.9126 ] pdfxs + (ac) show + (r) + [5.15995 ] pdfxs + (o) show + (s) + [4.95263 ] pdfxs + (cop) show + (ic) + [3.49088 8.42176 ] pdfxs + (Dat) show + (a) + [8.94544 ] pdfxs + (St) show + (ruc-) + [5.17085 6.96002 5.58542 4.1781 ] pdfxs + -3.05176e-05 -416.528 m + (tu) show + (reA) + [5.17085 10.6689 9.49086 ] pdfxs + (na) show + (l) + [3.47997 ] pdfxs + (y) show + (sis) + [4.95263 3.47997 9.87258 ] pdfxs + (an) show + (d) + [11.9018 ] pdfxs + (O) show + (ptimi) + [6.96002 4.8873 3.47997 10.4507 3.49088 ] pdfxs + (zat) show + (i) + [3.49088 ] pdfxs + (on) show + 179.882 -416.528 m + /N614 10.909 Tf + (a) show + (ppr) + [6.0654 6.05449 4.27631 ] pdfxs + (oa) show + (ch:we) + [4.53815 6.0654 9.17447 7.57085 9.13083 ] pdfxs + (a) show + (im) + [3.0327 13.3743 ] pdfxs + (t) show + (oiden) + [9.74173 3.0327 6.05449 4.85451 5.74904 ] pdfxs + (t) show + (ify,is) + [3.0327 3.33815 4.84359 7.47266 3.0327 4.30902 ] pdfxs + (o) show + (l) + [3.02179 ] pdfxs + (at) show + (e,) + [4.85451 7.47266 ] pdfxs + (a) show + (nd) + [6.0654 10.3417 ] pdfxs + (o) show + (p) + [6.05449 ] pdfxs + (t) show + (imizedis) + [3.0327 9.08711 3.0327 4.85451 9.13083 6.05449 3.0327 4.29811 ] pdfxs + (t) show + (inc) + [3.0327 6.0654 4.8436 ] pdfxs + (t) show + -3.05176e-05 -438.451 m + (ins) + [3.0327 6.05449 4.30902 ] pdfxs + (ta) show + (nces) + [6.05449 4.85451 4.8436 8.23626 ] pdfxs + (o) show + (fpr) + [7.25448 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (md) + [13.0253 6.05449 ] pdfxs + (at) show + (astruc) + [9.38174 4.30902 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ures) + [6.0654 4.2654 4.85451 8.22535 ] pdfxs + (a) show + (nd) + [6.0654 9.98173 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 13.0253 ] pdfxs + (t) show + (hem) + [6.05449 4.85451 13.0144 ] pdfxs + (a) show + (sawh) + [8.22535 9.39265 7.8763 6.05449 ] pdfxs + (o) show + (le.Thedrivingm) + [3.0327 4.85451 8.74901 7.8763 6.0654 8.77084 6.0654 4.27631 3.02179 5.75995 3.0327 + 6.05449 9.39265 9.08711 ] pdfxs + (ot) show + (iv) + [3.0327 5.14904 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (nf) + [9.99264 3.33815 ] pdfxs + (o) show + (r) show + -3.05176e-05 -460.373 m + (t) show + (his) + [6.05449 3.0327 8.18172 ] pdfxs + (a) show + (ppr) + [6.0654 6.05449 4.27631 ] pdfxs + (oa) show + (chis) + [4.54905 9.93809 3.0327 8.18172 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tpr) + [8.12729 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (ms) + [9.09802 8.18172 ] pdfxs + (a) show + (re) + [4.2654 8.7272 ] pdfxs + (g) show + (rowin) + [4.27631 5.14905 7.88721 3.02179 6.0654 ] pdfxs + (g) show + (,frequency) + [6.97085 3.32724 4.27631 4.8436 5.75995 6.0654 4.8436 6.0654 4.8436 9.64355 ] pdfxs + (o) show + (fcodereuse) + [7.21084 4.8436 5.75995 6.0654 8.7272 4.2654 4.85451 6.05449 4.30902 8.7272 ] pdfxs + (a) show + (ndpr) + [6.05449 9.93809 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (mmodul) + [12.9707 9.09802 5.74904 6.0654 6.05449 3.0327 ] pdfxs + (a) show + (riz) + [4.27631 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) show + -3.05176e-05 -482.296 m + (a) show + (re) + [4.27631 8.05084 ] pdfxs + (g) show + (rowin) + [4.27631 5.14905 7.88721 3.02179 6.0654 ] pdfxs + (g) show + (,c) + [6.32722 4.8436 ] pdfxs + (o) show + (reprocess) + [4.27631 8.06175 6.05449 4.27631 5.75995 4.8436 4.85451 4.29811 4.30902 ] pdfxs + (o) show + (rspeeds) + [7.48355 4.29811 6.35994 4.85451 4.8436 6.0654 7.51627 ] pdfxs + (a) show + (re) + [4.2654 8.06175 ] pdfxs + (g) show + (rowing) + [4.27631 5.14905 7.8763 3.0327 6.05449 8.67265 ] pdfxs + (\() show + (f) + [3.32724 ] pdfxs + (a) show + (r) + [7.48355 ] pdfxs + (o) show + (u) + [6.0654 ] pdfxs + (t) show + (p) + [6.05449 ] pdfxs + (a) show + (cing) + [4.85451 3.02179 6.0654 8.66174 ] pdfxs + (t) show + (hemem) + [6.0654 8.06175 9.08711 4.8436 9.09802 ] pdfxs + (o) show + (rysubsys) + [4.2654 8.96719 4.30902 6.05449 6.0654 4.29811 5.75995 4.30902 ] pdfxs + (t) show + (em) + [4.8436 9.08711 ] pdfxs + (\)) show + (,) + [6.32722 ] pdfxs + (a) show + (nd) + [6.0654 9.27264 ] pdfxs + (t) show + (heuse) + [6.05449 8.06175 6.05449 4.30902 4.8436 ] pdfxs + -3.05176e-05 -504.218 m + (o) show + (frecursived) + [6.97085 4.27631 4.8436 4.8436 6.0654 4.27631 4.29811 3.0327 5.4545 8.4872 6.05449 + ] pdfxs + (at) show + (as) + [9.0981 4.29811 ] pdfxs + (t) show + (ructuresisb) + [4.27631 6.05449 4.85451 4.23277 6.0654 4.27631 4.8436 7.94172 3.0327 7.93081 6.37085 + ] pdfxs + (ot) show + (hprev) + [9.6981 6.05449 4.27631 4.8436 5.14904 ] pdfxs + (a) show + (lent) + [3.0327 4.85451 5.75995 7.87638 ] pdfxs + (a) show + (nd) + [6.05449 9.6981 ] pdfxs + (g) show + (rowin) + [4.27631 5.14905 7.8763 3.0327 6.0654 ] pdfxs + (g) show + (.) show + 16.936 -526.141 m + (Thisw) + [7.8763 6.0654 3.0327 8.94535 7.57085 ] pdfxs + (o) show + (rkisprim) + [4.27631 10.3963 3.0327 8.94535 6.05449 4.27631 3.0327 9.08711 ] pdfxs + (a) show + (rilyfocused) + [4.27631 3.0327 3.02179 10.4072 3.32724 5.75995 4.8436 6.0654 4.29811 4.85451 10.7017 + ] pdfxs + (o) show + (npr) + [10.7017 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (mperf) + [13.7343 6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nce.) + [6.05449 4.85451 4.8436 10.8981 ] pdfxs + (A) show + (ssuch,weshow) + [8.94535 4.30902 6.05449 4.54905 6.05449 7.93084 7.57085 9.49083 4.30902 6.05449 5.14905 + 12.5235 ] pdfxs + (t) show + (hat) + [6.05449 5.46541 8.88001 ] pdfxs + (A) show + (u) + [6.05449 ] pdfxs + (to) show + (m) + [9.09802 ] pdfxs + (at) show + (ic) + [3.02179 4.8436 ] pdfxs + -3.05176e-05 -548.063 m + (Po) + [7.12357 5.75995 ] pdfxs + (o) show + (l) + [6.98176 ] pdfxs + (A) show + (lloc) + [3.0327 3.02179 5.75995 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (nc) + [10.0145 4.85451 ] pdfxs + (a) show + (nhaveasubs) + [10.0145 6.05449 5.15996 5.4545 8.80356 9.40355 4.30902 6.05449 6.0654 4.29811 ] pdfxs + (ta) show + (n) + [5.75995 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (a) show + (lperf) + [6.98176 6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (ncee\013ect) + [6.05449 4.85451 8.80356 4.8436 6.37077 4.8436 4.8436 8.20365 ] pdfxs + (o) show + (nhe) + [10.0145 6.0654 4.8436 ] pdfxs + (a) show + (pintensivepr) + [10.0145 3.0327 5.75995 4.23277 4.85451 6.05449 4.30902 3.0327 5.4545 8.80356 6.05449 + 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms) + [9.08711 8.25808 ] pdfxs + (a) show + (nd) + [6.05449 10.0145 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (t) + [8.19274 ] pdfxs + (a) show + -3.05176e-05 -569.986 m + (number) + [5.75995 6.05449 8.79257 6.35994 4.85451 8.06173 ] pdfxs + (o) show + (fex) + [7.13448 4.85451 5.74904 ] pdfxs + (t) show + (remelysimplem) + [4.27631 4.8436 9.09802 4.8436 3.0327 9.55628 4.29811 3.0327 9.08711 6.0654 3.0327 + 8.63993 9.09802 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.29811 4.85451 ] pdfxs + (o) show + (pic) + [6.05449 3.0327 8.63993 ] pdfxs + (t) show + (echniques) + [4.85451 4.53815 6.0654 6.0654 3.02179 5.75995 6.0654 4.8436 8.10535 ] pdfxs + (\() show + (Ch) + [7.8763 6.05449 ] pdfxs + (a) show + (p) + [6.0654 ] pdfxs + (t) show + (er) + [4.8436 8.07264 ] pdfxs + (6) show + (\)c) + [8.04001 4.8436 ] pdfxs + (a) show + (nbeused) + [9.86173 6.35994 8.65084 6.05449 4.30902 4.8436 9.86173 ] pdfxs + (t) show + (oimprovepr) + [9.25083 3.0327 9.08711 6.0654 4.2654 5.15996 5.4545 8.63993 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (m) show + -3.05176e-05 -591.908 m + (perf) + [6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nceevenm) + [6.0654 4.8436 9.75265 4.85451 5.4545 4.8436 10.9744 9.08711 ] pdfxs + (o) show + (re.Thesesimple) + [4.27631 4.8436 11.6944 7.8763 6.05449 4.85451 4.29811 9.76355 4.29811 3.0327 9.08711 + 6.0654 3.02179 9.76355 ] pdfxs + (t) show + (echniquesfocus) + [4.8436 4.54905 6.05449 6.0654 3.0327 5.74904 6.0654 4.8436 9.21807 3.32724 5.75995 + 4.8436 6.0654 9.20716 ] pdfxs + (o) show + (ndirectlyincre) + [10.9744 6.05449 3.0327 4.27631 4.8436 4.85451 4.23277 3.0327 10.669 3.0327 6.05449 + 4.85451 4.2654 4.85451 ] pdfxs + (a) show + (singc) + [4.29811 3.0327 6.0654 10.3526 4.85451 ] pdfxs + (a) show + (chedensityby) + [4.53815 6.0654 9.75265 6.0654 4.8436 6.0654 4.29811 3.0327 3.93823 10.669 5.75995 + 5.75995 ] pdfxs + -3.05176e-05 -613.831 m + (elimin) + [4.8436 3.0327 3.0327 9.08711 3.0327 6.0654 ] pdfxs + (at) show + (ingin) + [3.02179 6.0654 9.3381 3.0327 5.75995 ] pdfxs + (t) show + (er-) + [4.8436 4.27631 3.63261 ] pdfxs + (o) show + (bjectp) + [6.66539 3.33815 4.8436 4.85451 8.12729 6.05449 ] pdfxs + (a) show + (dding) + [6.0654 6.05449 3.0327 6.0654 9.3381 ] pdfxs + (a) show + (ndmem) + [6.05449 9.949 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 9.64355 ] pdfxs + (a) show + (lloc) + [3.0327 3.02179 5.75995 4.85451 ] pdfxs + (ato) show + (roverhe) + [8.149 5.15996 5.4545 4.8436 4.27631 6.05449 4.85451 ] pdfxs + (a) show + (d,dem) + [6.05449 6.98176 6.05449 4.85451 9.08711 ] pdfxs + (o) show + (ns) + [6.0654 4.29811 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (at) show + (inghowco) + [3.0327 6.05449 9.3381 6.0654 5.14905 11.7599 4.85451 5.75995 ] pdfxs + (o) show + (per) + [6.35994 4.8436 4.27631 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) show + 225.818 -657.201 m + (194) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 72 634.321 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N622 20.663 Tf + (C) + [16.7991 ] pdfxs + (hap) show + (ter2) + [9.07113 10.6001 17.2536 11.6333 ] pdfxs + 0 -49.813 m + /N622 24.787 Tf + (T) + [19.3834 ] pdfxs + (h) show + (e) + [22.0356 ] pdfxs + (L) show + (LVMCom) + [13.6575 21.0443 35.7429 20.1519 13.9304 23.2503 ] pdfxs + (p) show + (iler) + [7.73363 7.75841 12.7157 20.6971 ] pdfxs + (In) show + (fr) + [8.50179 11.402 ] pdfxs + (a) show + (str) + [10.9806 10.8568 11.3772 ] pdfxs + (uc) show + (t) + [10.8568 ] pdfxs + (u) show + (re) + [11.3772 12.7157 ] pdfxs + 0 -111.586 m + /N614 10.909 Tf + (M) + [10.0036 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.29811 4.85451 ] pdfxs + (o) show + (picd) + [6.05449 3.0327 7.57085 6.0654 ] pdfxs + (at) show + (as) + [8.18175 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.05449 4.27631 7.58176 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 7.02536 ] pdfxs + (a) show + (nd) + [6.0654 8.78174 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ninheren) + [8.79265 3.02179 6.0654 6.05449 4.85451 4.27631 4.8436 5.75995 ] pdfxs + (t) show + (lyrequires) + [3.02179 8.4872 4.27631 4.8436 5.75995 6.0654 3.02179 4.27631 4.85451 7.02536 ] pdfxs + (agg) show + (ressivein) + [4.27631 4.8436 4.30902 4.29811 3.0327 5.4545 7.57085 3.0327 5.75995 ] pdfxs + (t) show + (erprocedur) + [4.8436 4.27631 6.05449 4.27631 5.75995 4.8436 4.85451 6.05449 6.0654 4.27631 ] pdfxs + (a) show + (l) show + 0 -133.509 m + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.02179 5.75995 4.30902 3.02179 9.44716 ] pdfxs + (a) show + (nd) + [6.05449 11.2035 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [11.1926 ] pdfxs + (t) show + (obee\013ec) + [10.5926 6.35994 9.99264 4.8436 6.37077 4.8436 4.8436 ] pdfxs + (t) show + (ive.When) + [3.0327 5.4545 4.85451 12.3817 11.2035 6.0654 4.8436 11.2035 ] pdfxs + (t) show + (hisw) + [6.05449 3.0327 9.44716 7.57085 ] pdfxs + (o) show + (rks) + [4.27631 10.8981 4.29811 ] pdfxs + (ta) show + (rted,no) + [4.27631 4.23277 4.85451 6.05449 8.55265 6.05449 10.5926 ] pdfxs + (o) show + (pen-s) + [6.35994 4.85451 6.05449 3.64352 4.29811 ] pdfxs + (o) show + (urcec) + [6.0654 4.2654 4.85451 9.98173 4.85451 ] pdfxs + (o) show + (mpiler) + [9.08711 6.0654 3.02179 3.0327 4.85451 4.27631 ] pdfxs + 0 -155.431 m + (sys) + [4.29811 5.75995 4.30902 ] pdfxs + (t) show + (emw) + [4.8436 13.2325 7.57085 ] pdfxs + (a) show + (sav) + [8.45444 5.14905 5.14904 ] pdfxs + (a) show + (il) + [3.0327 3.0327 ] pdfxs + (a) show + (ble) + [6.05449 3.0327 8.98902 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (tprovided) + [8.37819 6.0654 4.2654 5.15996 5.74904 3.0327 6.0654 4.8436 10.1999 ] pdfxs + (t) show + (hec) + [6.0654 8.98902 4.8436 ] pdfxs + (a) show + (p) + [6.0654 ] pdfxs + (a) show + (bili) + [6.05449 3.0327 3.0327 3.0327 ] pdfxs + (t) show + (iesneeded.) + [3.02179 4.85451 8.44353 6.0654 4.8436 4.8436 6.0654 4.8436 6.0654 9.39264 ] pdfxs + (A) show + (ssuch,wedevel) + [8.44353 4.30902 6.05449 4.54905 6.0654 7.29812 7.57085 8.98902 6.0654 4.8436 5.4545 + 4.85451 3.02179 ] pdfxs + (o) show + (ped) + [6.37085 4.8436 10.1999 ] pdfxs + (a) show + (ndbuilt) + [6.0654 10.1999 6.0654 6.05449 3.0327 3.0327 8.37819 ] pdfxs + (t) show + (he) + [6.0654 4.8436 ] pdfxs + 0 -177.354 m + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (MC) + [14.1818 7.8763 ] pdfxs + (o) show + (mpilerInfr) + [9.09802 6.05449 3.0327 3.0327 4.8436 8.45445 3.94897 6.05449 3.33815 4.2654 ] pdfxs + (a) show + (s) + [4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.0654 4.2654 9.03265 ] pdfxs + (\() show + (c) + [4.85451 ] pdfxs + (o) show + (ncurren) + [6.05449 4.85451 6.05449 4.27631 4.27631 4.8436 5.75995 ] pdfxs + (t) show + (lywi) + [3.0327 9.9381 7.8763 3.0327 ] pdfxs + (t) show + (h) + [10.2435 ] pdfxs + (t) show + (hew) + [6.05449 9.03265 7.58175 ] pdfxs + (o) show + (rkin) + [4.2654 9.949 3.0327 10.2435 ] pdfxs + (t) show + (herest) + [6.05449 9.03265 4.27631 4.8436 4.30902 8.42183 ] pdfxs + (o) show + (f) + [7.5163 ] pdfxs + (t) show + (his) + [6.0654 3.02179 8.48717 ] pdfxs + (t) show + (hesis\)) + [6.0654 4.8436 4.30902 3.0327 4.29811 8.42183 ] pdfxs + (t) show + (osupp) + [9.64355 4.29811 6.0654 6.05449 6.37085 ] pdfxs + (o) show + (r) + [4.2654 ] pdfxs + (t) show + 0 -199.276 m + (agg) show + (ressivein) + [4.27631 4.8436 4.30902 4.29811 3.0327 5.4545 8.49811 3.0327 5.75995 ] pdfxs + (t) show + (erprocedur) + [4.8436 4.27631 6.05449 4.27631 5.75995 4.8436 4.85451 6.05449 6.0654 4.27631 ] pdfxs + (a) show + (l) + [6.6763 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n,) + [6.05449 6.69812 ] pdfxs + (a) show + (nd) + [6.05449 9.71991 ] pdfxs + (t) show + (obuildanovelpr) + [9.10901 6.05449 6.0654 3.0327 3.0327 9.709 9.10901 6.0654 5.14905 5.4545 4.85451 + 6.6763 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (mrepresen) + [12.7525 4.2654 4.85451 6.05449 4.27631 4.8436 4.30902 4.8436 5.75995 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.709 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (treduces) + [7.8982 4.2654 4.85451 6.05449 6.0654 4.8436 4.85451 4.29811 ] pdfxs + 0 -221.199 m + (t) show + (hedi\016culty) + [6.05449 8.4872 6.0654 3.0327 9.08711 4.8436 6.0654 3.0327 3.93823 9.39264 ] pdfxs + (o) show + (fimplemen) + [6.97085 3.0327 9.08711 6.0654 3.02179 4.85451 9.08711 4.85451 5.74904 ] pdfxs + (t) show + (ing) + [3.0327 6.0654 9.08719 ] pdfxs + (t) show + (hese) + [6.05449 4.85451 4.29811 8.4872 ] pdfxs + (agg) show + (ressive) + [4.27631 4.8436 4.30902 4.29811 3.0327 5.4545 8.4872 ] pdfxs + (t) show + (echniques.) + [4.8436 4.54905 6.05449 6.0654 3.0327 5.74904 6.0654 4.8436 4.30902 3.0327 ] pdfxs + 16.936 -243.121 m + (Thisch) + [7.8763 6.0654 3.0327 8.10535 4.53815 6.0654 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (erdescribess) + [4.85451 8.07264 6.0654 4.8436 4.30902 4.8436 4.27631 3.02179 6.37085 4.8436 8.10535 + 4.30902 ] pdfxs + (o) show + (me) + [9.08711 8.65084 ] pdfxs + (o) show + (f) + [7.13448 ] pdfxs + (t) show + (heimp) + [6.0654 8.65084 3.0327 9.08711 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (ta) show + (ntde) + [5.75995 8.04001 6.0654 4.8436 ] pdfxs + (ta) show + (ils) + [3.0327 3.0327 8.10535 ] pdfxs + (o) show + (f) + [7.13448 ] pdfxs + (t) show + (he) + [6.05449 8.66175 ] pdfxs + (L) show + (L) + [5.59632 ] pdfxs + (V) show + (MC) + [13.8109 7.8763 ] pdfxs + (o) show + (mpilerSys) + [9.08711 6.0654 3.0327 3.02179 4.85451 8.07264 6.0654 5.75995 4.29811 ] pdfxs + (t) show + (em) + [4.8436 12.8944 ] pdfxs + (\() show + (whichis) + [7.8763 6.0654 3.0327 4.53815 9.87264 3.02179 4.29811 ] pdfxs + 0 -265.044 m + (nowusedf) + [6.0654 5.14905 11.9017 6.05449 4.30902 4.8436 10.0799 3.33815 ] pdfxs + (o) show + (rf) + [8.29082 3.33815 ] pdfxs + (a) show + (rm) + [8.29082 9.09802 ] pdfxs + (o) show + (re) + [4.2654 8.86902 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (n) + [10.0799 ] pdfxs + (t) show + (hem) + [6.05449 8.87993 9.08711 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.29811 4.85451 ] pdfxs + (o) show + (pic) + [6.0654 3.02179 8.86902 ] pdfxs + (t) show + (echniquesin) + [4.85451 4.53815 6.0654 6.0654 3.02179 5.75995 6.0654 4.8436 8.32353 3.0327 10.0799 + ] pdfxs + (t) show + (histhesis) + [6.0654 3.02179 8.33444 4.23277 6.0654 4.8436 4.30902 3.0327 4.29811 ] pdfxs + (\)) show + (,including) + [7.14539 3.0327 6.0654 4.8436 3.0327 6.05449 6.0654 3.0327 6.05449 9.47992 ] pdfxs + (t) show + (hetypesys) + [6.0654 8.86902 3.93823 5.75995 6.35994 8.86902 4.29811 5.75995 4.30902 ] pdfxs + (t) show + (em) + [4.8436 9.08711 ] pdfxs + 0 -286.966 m + (implemen) + [3.0327 9.08711 6.0654 3.02179 4.85451 9.08711 4.85451 5.74904 ] pdfxs + (t) show + (ed) + [4.85451 9.6981 ] pdfxs + (a) show + (ndins) + [6.05449 9.6981 3.0327 6.0654 4.29811 ] pdfxs + (t) show + (ructi) + [4.27631 6.05449 4.85451 4.23277 3.0327 ] pdfxs + (o) show + (nrepresent) + [9.6981 4.27631 4.8436 6.0654 4.2654 4.85451 4.29811 4.85451 5.75995 4.23277 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n.) + [6.0654 3.0327 ] pdfxs + 0 -332.421 m + /N622 14.346 Tf + (2.1) + [8.07685 4.476 24.2161 ] pdfxs + (I) show + (ntro) + [8.50717 6.2836 6.58481 8.52157 ] pdfxs + (duc) show + (tio) + [6.2836 4.476 8.07685 ] pdfxs + (n) show + 0 -365.146 m + /N614 10.909 Tf + (Modern) + [10.0036 5.74904 6.0654 4.8436 4.27631 10.669 ] pdfxs + (a) show + (pplic) + [6.05449 6.0654 3.0327 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 8.91262 ] pdfxs + (a) show + (reincre) + [4.27631 9.44719 3.0327 6.0654 4.8436 4.27631 4.8436 ] pdfxs + (a) show + (singinsize,ch) + [4.30902 3.02179 6.0654 10.0581 3.0327 10.669 4.29811 3.0327 4.8436 4.85451 7.87629 + 4.54905 6.05449 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (e) + [9.4581 ] pdfxs + (t) show + (heirbehavi) + [6.05449 4.85451 3.02179 8.8799 6.37085 4.8436 6.0654 5.14905 5.75995 3.02179 ] pdfxs + (o) show + (rsi) + [8.8799 4.30902 3.02179 ] pdfxs + (g) show + (ni\fc) + [6.0654 3.0327 6.05449 4.85451 ] pdfxs + (a) show + (ntlyduringexecu) + [5.75995 4.23277 3.0327 10.3635 6.0654 6.05449 4.27631 3.0327 6.05449 10.069 4.8436 + 5.75995 4.8436 4.85451 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n,) + [6.0654 3.0327 ] pdfxs + 0 -387.069 m + (supp) + [4.29811 6.0654 6.0654 6.35994 ] pdfxs + (o) show + (rtdyn) + [4.27631 7.33093 6.0654 5.75995 6.05449 ] pdfxs + (a) show + (micex) + [9.09802 3.02179 7.95266 4.8436 5.75995 ] pdfxs + (t) show + (ensi) + [4.8436 6.0654 4.29811 3.0327 ] pdfxs + (o) show + (ns) + [6.0654 7.39627 ] pdfxs + (a) show + (ndup) + [6.0654 9.15265 6.0654 6.05449 ] pdfxs + (g) show + (r) + [4.27631 ] pdfxs + (a) show + (des,) + [6.05449 4.85451 4.29811 6.23994 ] pdfxs + (a) show + (nd) + [6.05449 9.16356 ] pdfxs + (o) show + (f) + [3.32724 ] pdfxs + (t) show + (enhavec) + [4.85451 9.15265 6.0654 5.14905 5.4545 7.94175 4.85451 ] pdfxs + (o) show + (mp) + [9.08711 6.37085 ] pdfxs + (o) show + (nen) + [6.05449 4.85451 5.74904 ] pdfxs + (t) show + (swri) + [7.40718 7.8763 4.2654 3.0327 ] pdfxs + (tt) show + (eninmul) + [4.8436 9.16356 3.0327 9.15265 8.79257 6.05449 3.0327 ] pdfxs + (t) show + (ipledi\013eren) + [3.0327 6.05449 3.0327 7.94175 6.0654 3.0327 6.35986 4.85451 4.2654 4.85451 5.74904 + ] pdfxs + (t) show + 0 -408.991 m + (l) + [3.0327 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (es.Whiles) + [4.8436 4.30902 7.66902 11.2144 6.0654 3.02179 3.0327 7.8763 4.29811 ] pdfxs + (o) show + (me) + [9.09802 7.86539 ] pdfxs + (a) show + (pplic) + [6.0654 6.0654 3.02179 3.0327 4.85451 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (nshavesm) + [6.0654 7.31991 6.0654 5.14905 5.4545 7.8763 4.29811 9.09802 ] pdfxs + (a) show + (llh) + [3.0327 6.05449 6.05449 ] pdfxs + (o) show + (tsp) + [7.26547 4.30902 6.35994 ] pdfxs + (ot) show + (s,) + [4.29811 6.1854 ] pdfxs + (ot) show + (hersspre) + [6.05449 4.85451 4.2654 7.33081 4.29811 6.0654 4.27631 4.8436 ] pdfxs + (a) show + (d) + [9.08719 ] pdfxs + (t) show + (heirexecu) + [6.05449 4.85451 3.0327 7.28719 4.85451 5.75995 4.8436 4.85451 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ntimeevenly) + [9.08719 4.23277 3.0327 9.09802 7.86539 4.85451 5.4545 4.8436 6.0654 3.0327 5.75995 + ] pdfxs + 0 -430.914 m + (t) show + (hr) + [6.05449 4.27631 ] pdfxs + (o) show + (u) + [6.0654 ] pdfxs + (g) show + (h) + [6.05449 ] pdfxs + (o) show + (ut) + [6.0654 8.43274 ] pdfxs + (t) show + (he) + [6.05449 9.04356 ] pdfxs + (a) show + (pplic) + [6.05449 6.0654 3.0327 3.02179 4.85451 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n[) + [10.2435 3.0327 ] pdfxs + (34) show + (].) + [3.0327 9.53446 ] pdfxs + (I) show + (n) + [10.2545 ] pdfxs + (o) show + (rder) + [4.27631 6.05449 4.85451 8.45445 ] pdfxs + (t) show + (om) + [9.64355 9.09802 ] pdfxs + (a) show + (ximize) + [5.74904 3.0327 9.08711 3.0327 4.85451 9.03265 ] pdfxs + (t) show + (hee\016ciency) + [6.0654 9.03265 4.85451 9.08711 4.8436 3.0327 4.85451 6.05449 4.85451 9.9381 ] pdfxs + (o) show + (f) + [7.5272 ] pdfxs + (a) show + (ll) + [3.0327 7.22175 ] pdfxs + (o) show + (f) + [7.5163 ] pdfxs + (t) show + (hesepr) + [6.0654 4.8436 4.30902 9.03265 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms,we) + [9.08711 4.30902 7.35266 7.58175 4.8436 ] pdfxs + 0 -452.836 m + (believe) + [6.35994 4.85451 3.0327 3.02179 4.85451 5.4545 8.57447 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tpr) + [7.97456 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (m) + [12.818 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 8.02899 ] pdfxs + (a) show + (nd) + [6.0654 9.78537 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nmustbeperf) + [9.78537 8.79257 6.05449 4.30902 7.96365 6.37085 8.57447 6.35994 4.85451 4.2654 3.33815 + ] pdfxs + (o) show + (rmed) + [4.2654 9.09802 4.8436 9.78537 ] pdfxs + (t) show + (hr) + [6.0654 4.27631 ] pdfxs + (o) show + (u) + [6.05449 ] pdfxs + (g) show + (h) + [6.0654 ] pdfxs + (o) show + (ut) + [6.05449 7.97456 ] pdfxs + (t) show + (helife) + [6.05449 8.57447 3.0327 3.0327 3.33815 4.8436 ] pdfxs + (t) show + (ime) + [3.0327 9.08711 8.57447 ] pdfxs + (o) show + (f) + [7.05812 ] pdfxs + (a) show + 0 -474.759 m + (pr) + [6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (m.Such) + [9.08711 10.2545 6.0654 6.05449 4.54905 10.4835 ] pdfxs + (\\) show + (lifel) + [3.0327 3.0327 3.32724 4.85451 3.0327 ] pdfxs + (o) show + (ngcode) + [6.05449 9.88355 4.8436 5.75995 6.0654 9.27265 ] pdfxs + (o) show + (ptimiz) + [6.0654 4.23277 3.0327 9.09802 3.02179 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n") + [6.0654 9.88355 ] pdfxs + (t) show + (echniquesenc) + [4.8436 4.54905 6.05449 6.0654 3.0327 5.75995 6.05449 4.85451 8.72717 4.8436 6.0654 + 4.8436 ] pdfxs + (o) show + (mp) + [9.09802 6.05449 ] pdfxs + (a) show + (ssin) + [4.30902 8.72717 3.0327 5.74904 ] pdfxs + (t) show + (erprocedur) + [4.85451 4.27631 6.05449 4.27631 5.75995 4.8436 4.8436 6.0654 6.0654 4.2654 ] pdfxs + (a) show + (l) + [7.46175 ] pdfxs + (o) show + (p) + [6.05449 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (ns) + [6.0654 4.29811 ] pdfxs + 0 -496.682 m + (perf) + [6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rmed) + [4.27631 9.08711 4.8436 10.0581 ] pdfxs + (a) show + (tlink-time) + [8.23637 3.0327 3.0327 6.05449 5.75995 3.64352 4.23277 3.0327 9.09802 8.83629 ] pdfxs + (\(t) show + (opreserve) + [9.44719 6.0654 4.2654 4.85451 4.29811 4.85451 4.2654 5.4545 8.8472 ] pdfxs + (t) show + (hebene\f) + [6.05449 8.8472 6.35994 4.85451 6.05449 4.85451 6.05449 ] pdfxs + (t) show + (s) + [8.30172 ] pdfxs + (o) show + (fsep) + [7.33084 4.29811 4.85451 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (at) show + (ec) + [8.83629 4.85451 ] pdfxs + (o) show + (mpil) + [9.08711 6.0654 3.02179 3.0327 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [6.05449 ] pdfxs + (\)) show + (,m) + [7.12357 9.08711 ] pdfxs + (a) show + (chine-dependent) + [4.54905 6.05449 3.0327 6.05449 4.85451 3.63261 6.0654 4.8436 6.37085 4.8436 6.0654 + 6.05449 4.85451 5.74904 8.23637 ] pdfxs + (o) show + (p-) + [6.0654 3.63261 ] pdfxs + 0 -518.604 m + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 8.80353 ] pdfxs + (a) show + (tins) + [8.73819 3.0327 6.05449 4.30902 ] pdfxs + (ta) show + (ll) + [3.02179 7.52721 ] pdfxs + (t) show + (ime) + [3.0327 9.08711 9.34901 ] pdfxs + (o) show + (ne) + [10.549 4.85451 ] pdfxs + (a) show + (chsys) + [4.53815 10.5599 4.29811 5.75995 4.29811 ] pdfxs + (t) show + (em,dynamic) + [4.85451 9.08711 7.74539 6.05449 5.75995 6.05449 5.46541 9.08711 3.0327 9.3381 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imiz) + [3.02179 9.09802 3.02179 4.85451 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [10.549 ] pdfxs + (a) show + (trun) + [8.73819 4.27631 6.05449 5.75995 ] pdfxs + (t) show + (ime,) + [3.0327 9.08711 4.8436 7.74539 ] pdfxs + (a) show + (ndpr) + [6.0654 10.549 6.0654 4.2654 ] pdfxs + (o) show + (\fle-) + [6.0654 3.0327 4.8436 3.63261 ] pdfxs + (g) show + (uided) + [6.0654 3.0327 6.05449 4.85451 6.0654 ] pdfxs + 0 -540.527 m + (o) show + (ptimiz) + [6.0654 4.23277 3.0327 9.09802 3.02179 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (nbetweenruns) + [9.6981 6.37085 4.8436 3.93823 7.58175 4.8436 4.85451 9.6981 4.2654 6.0654 6.05449 + 7.94172 ] pdfxs + (\(\\) show + (idle) + [3.0327 6.05449 3.0327 8.4872 ] pdfxs + (t) show + (ime) + [3.0327 9.08711 4.8436 ] pdfxs + (") show + (\)usingpr) + [7.88729 6.05449 4.30902 3.02179 6.0654 9.08719 6.0654 4.27631 ] pdfxs + (o) show + (\fleinf) + [6.05449 3.0327 8.4872 3.02179 6.0654 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (nc) + [9.6981 4.85451 ] pdfxs + (o) show + (llec) + [3.02179 3.0327 4.85451 4.8436 ] pdfxs + (t) show + (edfr) + [4.8436 9.6981 3.33815 4.27631 ] pdfxs + (o) show + (m) + [12.7198 ] pdfxs + (t) show + (heend-user.) + [6.0654 8.47629 4.85451 6.05449 6.0654 3.63261 6.0654 4.29811 4.85451 4.2654 3.0327 + ] pdfxs + 228.545 -582.481 m + (11) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (23) 24 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 595.275591 788.031496 translate + 180 rotate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 88.936 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (Pr) + [7.42902 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (m) + [12.4144 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nisn) + [9.38173 3.0327 7.63627 6.05449 ] pdfxs + (o) show + (t) + [7.57093 ] pdfxs + (t) show + (he) + [6.05449 8.18175 ] pdfxs + (o) show + (nlyusef) + [6.05449 3.0327 9.08719 6.05449 4.30902 8.17084 3.33815 ] pdfxs + (o) show + (rlifel) + [7.60355 3.02179 3.0327 3.33815 4.8436 3.0327 ] pdfxs + (o) show + (ng) + [6.05449 8.78174 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 7.62536 ] pdfxs + (a) show + (nd) + [6.0654 9.38173 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n.O) + [6.0654 7.77811 8.47629 ] pdfxs + (t) show + (her) + [6.0654 4.8436 7.60355 ] pdfxs + (a) show + (ppli-) + [6.05449 6.0654 3.0327 3.0327 3.63261 ] pdfxs + -16.936 -21.922 m + (c) + [4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.0654 8.14899 ] pdfxs + (o) show + (fs) + [7.18903 4.29811 ] pdfxs + (tat) show + (ic) + [3.0327 8.69447 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.0327 5.74904 4.30902 3.0327 8.14899 ] pdfxs + (a) show + (refund) + [4.27631 8.69447 3.33815 6.0654 6.05449 6.0654 ] pdfxs + (a) show + (men) + [9.08711 4.8436 5.75995 ] pdfxs + (ta) show + (llyin) + [3.0327 3.0327 9.61082 3.02179 5.75995 ] pdfxs + (t) show + (erprocedur) + [4.8436 4.27631 6.0654 4.2654 5.75995 4.85451 4.8436 6.0654 6.05449 4.27631 ] pdfxs + (a) show + (l,) + [3.0327 6.92721 ] pdfxs + (a) show + (nd) + [6.0654 9.91628 ] pdfxs + (a) show + (re) + [4.2654 8.70538 ] pdfxs + (t) show + (heref) + [6.05449 4.85451 4.2654 4.85451 3.32724 ] pdfxs + (o) show + (rem) + [4.27631 8.69447 9.09802 ] pdfxs + (o) show + (stc) + [4.29811 8.09456 4.85451 ] pdfxs + (o) show + (nvenient) + [5.74904 5.4545 4.85451 6.05449 3.0327 4.85451 5.74904 8.09456 ] pdfxs + (to) show + -16.936 -43.845 m + (perf) + [6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 12.6653 ] pdfxs + (a) show + (tlink-time) + [7.81092 3.0327 3.0327 6.05449 5.75995 3.64352 4.23277 3.0327 9.09802 8.42175 ] pdfxs + (\() show + (ex) + [4.8436 5.75995 ] pdfxs + (a) show + (mplesinclude) + [9.08711 6.0654 3.0327 4.8436 7.87627 3.0327 6.0654 4.8436 3.0327 6.05449 6.0654 + 4.8436 ] pdfxs + 172.575 -43.845 m + /N634 10.909 Tf + (m) + [8.92348 ] pdfxs + (ac) show + (rosc) + [4.0363 5.58542 4.45083 4.46185 ] pdfxs + (o) show + (pic) + [5.58542 3.33823 8.86909 ] pdfxs + (da) show + (ta) + [3.62179 9.42539 ] pdfxs + (s) show + (tru) + [3.62179 4.60356 5.84725 ] pdfxs + (c) show + (ture) + [3.6327 5.84725 4.04721 8.86909 ] pdfxs + (op) show + (timi) + [3.62179 3.34914 8.91258 3.34914 ] pdfxs + (za) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) show + 363.235 -43.845 m + /N614 10.909 Tf + (,s) + [6.62176 4.29811 ] pdfxs + (tat) show + (icdebu) + [3.0327 8.42175 6.05449 4.85451 6.05449 6.0654 ] pdfxs + (gg) show + (in) + [3.0327 6.05449 ] pdfxs + (g) show + (,) show + -16.936 -65.768 m + (s) + [4.29811 ] pdfxs + (tat) show + (icle) + [3.0327 8.91265 3.02179 4.85451 ] pdfxs + (a) show + (kde) + [9.8181 6.05449 4.85451 ] pdfxs + (t) show + (ecti) + [4.8436 4.85451 4.23277 3.0327 ] pdfxs + (o) show + (n[) + [10.1235 3.0327 ] pdfxs + (69) show + (],) + [3.02179 7.19994 ] pdfxs + (a) show + (ndm) + [6.0654 10.1126 9.09802 ] pdfxs + (a) show + (ny) + [5.74904 9.8181 ] pdfxs + (ot) show + (her) + [6.0654 4.8436 8.33445 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 4.30902 ] pdfxs + (\)) show + (.S) + [9.14174 6.0654 ] pdfxs + (o) show + (phis) + [6.05449 6.0654 3.0327 4.29811 ] pdfxs + (t) show + (ic) + [3.0327 4.8436 ] pdfxs + (at) show + (ed) + [4.85451 10.1126 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lyses) + [3.0327 5.74904 4.30902 4.8436 8.36717 ] pdfxs + (a) show + (nd) + [6.0654 10.1126 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (r-) + [4.27631 3.63261 ] pdfxs + -16.936 -87.69 m + (m) + [9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.0654 8.17081 ] pdfxs + (a) show + (rebeingdevel) + [4.2654 8.71629 6.37085 4.8436 3.0327 6.05449 9.32719 6.0654 4.8436 5.4545 4.8436 + 3.0327 ] pdfxs + (o) show + (ped) + [6.37085 4.8436 9.92718 ] pdfxs + (t) show + (oenf) + [9.32719 4.8436 6.0654 3.32724 ] pdfxs + (o) show + (rcepr) + [4.27631 4.8436 8.71629 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (ms) + [12.9598 4.30902 ] pdfxs + (a) show + (fety,butmustbedone) + [3.32724 4.85451 3.93823 4.84359 6.95994 6.05449 6.0654 8.11638 8.78166 6.0654 4.29811 + 8.11638 6.35994 8.71629 6.05449 5.46541 6.05449 8.71629 ] pdfxs + (a) show + (ts) + [8.11638 4.29811 ] pdfxs + (o) show + (ftw) + [3.33815 3.93823 7.57085 ] pdfxs + (a) show + (reins) + [4.27631 8.71629 3.0327 6.05449 4.30902 ] pdfxs + (ta) show + (ll) + [3.02179 3.0327 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) show + -16.936 -109.613 m + (t) show + (ime) + [3.0327 9.08711 8.62902 ] pdfxs + (o) show + (rl) + [8.06173 3.0327 ] pdfxs + (oa) show + (d-) + [6.0654 3.63261 ] pdfxs + (t) show + (ime[) + [3.0327 9.08711 8.62902 3.0327 ] pdfxs + (48) show + (].) + [3.0327 8.32356 ] pdfxs + (A) show + (llowinglifel) + [3.0327 3.0327 5.14905 7.8763 3.0327 6.0654 9.23992 3.02179 3.0327 3.33815 4.8436 + 3.0327 ] pdfxs + (o) show + (ngre) + [6.0654 9.23992 4.2654 4.85451 ] pdfxs + (o) show + (p) + [6.05449 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.85451 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n) + [9.85082 ] pdfxs + (o) show + (f) + [7.11266 ] pdfxs + (t) show + (hepr) + [6.0654 8.62902 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (m) + [12.8834 ] pdfxs + (g) show + (ives) + [3.02179 5.4545 4.85451 8.08354 ] pdfxs + (a) show + (rchi) + [4.27631 4.54905 6.05449 3.0327 ] pdfxs + (t) show + (ec) + [4.8436 4.85451 ] pdfxs + (t) show + (s) + [8.08354 ] pdfxs + (t) show + (hepower) + [6.0654 8.62902 6.37085 5.14905 7.57085 4.85451 4.27631 ] pdfxs + -16.936 -131.535 m + (t) show + (oev) + [10.0254 4.8436 5.4545 ] pdfxs + (o) show + (lveprocess) + [3.0327 5.4545 9.41447 6.0654 4.2654 5.75995 4.8436 4.85451 4.29811 4.30902 ] pdfxs + (o) show + (rs) + [4.2654 8.87989 ] pdfxs + (a) show + (ndexp) + [6.05449 10.6254 4.85451 5.75995 6.35994 ] pdfxs + (o) show + (sedin) + [4.30902 4.8436 10.6254 3.0327 5.75995 ] pdfxs + (t) show + (erf) + [4.8436 4.27631 3.32724 ] pdfxs + (a) show + (cesinm) + [4.85451 4.8436 8.86898 3.0327 10.6254 9.09802 ] pdfxs + (o) show + (re\rexibleways[) + [4.27631 9.41447 6.05449 4.85451 5.74904 3.0327 6.0654 3.0327 9.41447 7.57085 5.14905 + 5.75995 8.86898 3.0327 ] pdfxs + (27) show + (,) + [7.60357 ] pdfxs + (50) show + (],while) + [3.02179 7.83266 7.8763 6.0654 3.0327 3.0327 9.41447 ] pdfxs + (a) show + (llowingle) + [3.0327 3.02179 5.15996 7.8763 3.0327 6.05449 10.0254 3.0327 4.8436 ] pdfxs + (ga) show + (cy) + [4.85451 5.75995 ] pdfxs + -16.936 -153.458 m + (a) show + (pplic) + [6.0654 6.05449 3.0327 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 7.94172 ] pdfxs + (t) show + (orun) + [9.08719 4.27631 6.0654 6.0654 ] pdfxs + 77.094 -153.458 m + /N634 10.909 Tf + (w) + [7.24359 ] pdfxs + (e) show + (ll) + [3.34903 2.79267 ] pdfxs + 99.131 -153.458 m + /N614 10.909 Tf + (o) show + (nnewsys) + [9.6981 6.05449 4.85451 11.509 4.30902 5.75995 4.29811 ] pdfxs + (t) show + (ems.) + [4.8436 9.09802 4.29811 3.0327 ] pdfxs + -1.52588e-05 -175.38 m + (Thisch) + [7.8763 6.0654 3.0327 8.93444 4.54905 6.05449 ] pdfxs + (a) show + (p) + [6.0654 ] pdfxs + (t) show + (erdescribes) + [4.8436 8.90172 6.0654 4.8436 4.30902 4.8436 4.27631 3.0327 6.35994 4.85451 4.29811 + ] pdfxs + 113.539 -175.38 m + /N1025 10.909 Tf + (LLVM) + [7.54904 6.15269 9.47995 11.9126 ] pdfxs + 153.263 -175.38 m + /N614 10.909 Tf + (|) + [15.5453 ] pdfxs + (L) show + (ow-) + [5.14905 7.8763 3.64352 ] pdfxs + (L) show + (evel) + [4.8436 5.4545 4.85451 7.65811 ] pdfxs + (V) show + (irtu) + [3.0327 4.27631 4.23277 6.0654 ] pdfxs + (a) show + (lM) + [7.66902 9.99272 ] pdfxs + (a) show + (chine|ac) + [4.54905 6.0654 3.02179 6.0654 9.47992 15.5453 10.0908 4.8436 ] pdfxs + (o) show + (mpilerfr) + [9.09802 6.05449 3.0327 3.0327 4.8436 8.91263 3.32724 4.27631 ] pdfxs + (a) show + (mew) + [9.08711 4.85451 7.57085 ] pdfxs + (o) show + (rk) + [4.27631 10.3854 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (at) show + -16.936 -197.303 m + (a) show + (ims) + [3.0327 9.08711 8.84717 ] pdfxs + (t) show + (om) + [9.99264 9.08711 ] pdfxs + (a) show + (kelifel) + [5.4545 9.39265 3.02179 3.0327 3.33815 4.8436 3.0327 ] pdfxs + (o) show + (ngpr) + [6.05449 10.0035 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (m) + [13.6362 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.30902 3.02179 8.84717 ] pdfxs + (a) show + (nd) + [6.05449 10.6035 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nav) + [10.6035 5.14905 5.14904 ] pdfxs + (a) show + (il) + [3.0327 3.0327 ] pdfxs + (a) show + (blef) + [6.05449 3.0327 9.38174 3.33815 ] pdfxs + (o) show + (r) + [8.81445 ] pdfxs + (a) show + (rbi) + [4.2654 6.0654 3.0327 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (rys) + [4.27631 10.2981 4.29811 ] pdfxs + (o) show + (ftw) + [3.33815 3.93823 7.58175 ] pdfxs + (a) show + (re,) + [4.2654 4.85451 7.78902 ] pdfxs + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + -16.936 -219.225 m + (inam) + [3.0327 10.5163 9.91628 9.09802 ] pdfxs + (a) show + (nner) + [6.05449 6.0654 4.8436 8.73809 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tis) + [8.70546 3.0327 8.75989 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsp) + [6.05449 4.30902 6.05449 ] pdfxs + (a) show + (rent) + [4.27631 4.85451 5.74904 8.70546 ] pdfxs + (t) show + (opr) + [9.91628 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (mmers.) + [9.08711 9.09802 4.8436 4.27631 4.29811 10.3526 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (M) + [14.4654 ] pdfxs + (a) show + (chieves) + [4.53815 6.0654 3.0327 4.8436 5.4545 4.85451 8.75989 ] pdfxs + (t) show + (his) + [6.0654 3.02179 8.7708 ] pdfxs + (t) show + (hr) + [6.05449 4.27631 ] pdfxs + (o) show + (u) + [6.05449 ] pdfxs + (g) show + (htwop) + [10.5272 3.93823 7.57085 9.91628 6.0654 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (s:) + [4.29811 9.52355 ] pdfxs + (\(a\)) show + 445.488 -219.225 m + /N634 10.909 Tf + (a) show + -16.936 -241.148 m + (co) + [4.46185 5.01816 ] pdfxs + (d) show + (er) + [8.4 4.0363 ] pdfxs + (ep) show + (r) + [4.04721 ] pdfxs + (ese) show + (nt) + [6.13082 3.62179 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) show + 77.601 -241.148 m + /N614 10.909 Tf + (wi) + [7.8763 3.0327 ] pdfxs + (t) show + (hsever) + [9.11992 4.30902 4.8436 5.4545 4.85451 4.2654 ] pdfxs + (a) show + (lnovelfe) + [6.09813 6.0654 5.14905 5.4545 4.8436 6.09813 3.32724 4.85451 ] pdfxs + (at) show + (ures) + [6.05449 4.27631 4.85451 7.36354 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tserves) + [7.30911 4.30902 4.8436 4.27631 5.4545 4.8436 7.36354 ] pdfxs + (a) show + (sac) + [7.37445 8.51993 4.8436 ] pdfxs + (o) show + (mm) + [9.08711 9.09802 ] pdfxs + (o) show + (nrepresen) + [9.11992 4.27631 4.8436 6.0654 4.27631 4.8436 4.29811 4.85451 5.75995 ] pdfxs + (ta) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (nf) + [9.13083 3.32724 ] pdfxs + (o) show + (r) + [7.34174 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis,) + [3.0327 5.75995 4.29811 3.0327 4.30902 3.0327 ] pdfxs + -16.936 -263.07 m + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n,) + [6.05449 6.83994 ] pdfxs + (a) show + (ndcodedis) + [6.05449 9.829 4.85451 5.75995 6.05449 8.61811 6.0654 3.02179 4.30902 ] pdfxs + (t) show + (ribu) + [4.2654 3.0327 6.0654 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n;) + [6.0654 6.86176 ] pdfxs + (a) show + (nd) + [6.0654 9.829 ] pdfxs + (\() show + (b) + [6.05449 ] pdfxs + (\)) show + 209.628 -263.07 m + /N634 10.909 Tf + (ac) + [9.59993 4.46185 ] pdfxs + (o) show + (m) + [8.92348 ] pdfxs + (p) show + (il) + [3.34914 2.78176 ] pdfxs + (e) show + (r) + [8.62898 ] pdfxs + (des) show + (i) + [3.33823 ] pdfxs + (g) show + (n) show + 297.696 -263.07 m + /N614 10.909 Tf + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (texpl) + [8.01819 4.8436 5.75995 6.0654 3.02179 ] pdfxs + (o) show + (i) + [3.0327 ] pdfxs + (t) show + (s) + [8.07263 ] pdfxs + (t) show + (hisrepresen) + [6.05449 3.0327 8.07263 4.27631 4.8436 6.0654 4.27631 4.8436 4.29811 4.85451 5.75995 + ] pdfxs + (tat) show + (i) + [3.02179 ] pdfxs + (o) show + (n) show + -16.936 -284.993 m + (t) show + (oprovideac) + [8.85811 6.0654 4.27631 5.14905 5.75995 3.02179 6.0654 8.25811 8.85811 4.85451 ] pdfxs + (o) show + (mbin) + [8.78166 6.0654 3.0327 6.05449 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.46901 ] pdfxs + (o) show + (fc) + [6.74176 4.85451 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (a) show + (bili) + [6.0654 3.0327 3.02179 3.0327 ] pdfxs + (t) show + (ies) + [3.0327 4.8436 7.71263 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (tisn) + [7.64729 3.0327 7.71263 6.05449 ] pdfxs + (o) show + (tav) + [7.6582 5.14905 5.14904 ] pdfxs + (a) show + (il) + [3.0327 3.0327 ] pdfxs + (a) show + (blein) + [6.05449 3.0327 8.25811 3.0327 9.46901 ] pdfxs + (a) show + (nyprevi) + [5.75995 9.16356 6.05449 4.27631 4.85451 5.74904 3.0327 ] pdfxs + (o) show + (usc) + [6.0654 7.71263 4.8436 ] pdfxs + (o) show + (mpil) + [9.08711 6.0654 3.0327 3.0327 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n) + [9.46901 ] pdfxs + (a) show + (ppr) + [6.0654 6.05449 4.27631 ] pdfxs + (oa) show + (ch) + [4.54905 6.0654 ] pdfxs + -16.936 -306.915 m + (weknow) + [7.57085 8.4872 5.75995 6.0654 5.14905 11.509 ] pdfxs + (o) show + (f.) + [3.33815 3.0327 ] pdfxs + -4.57764e-05 -328.838 m + (The) + [7.8763 6.0654 9.50174 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mcoderepresen) + [14.6618 4.8436 5.75995 6.0654 9.50174 4.27631 4.8436 6.0654 4.27631 4.8436 4.29811 + 4.85451 5.75995 ] pdfxs + (ta) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (ndescribesapr) + [10.7235 6.05449 4.85451 4.29811 4.85451 4.2654 3.0327 6.37085 4.8436 8.95625 10.1235 + 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (musing) + [13.7562 6.05449 4.30902 3.0327 6.05449 10.1126 ] pdfxs + (a) show + (n) + [10.7235 ] pdfxs + (a) show + (bs) + [6.05449 4.30902 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (ct) + [4.85451 8.90182 ] pdfxs + (RI) show + (SC-likeins) + [6.0654 7.8763 3.63261 3.0327 3.0327 5.4545 9.50174 3.0327 6.0654 4.29811 ] pdfxs + (t) show + (ructi) + [4.27631 6.05449 4.85451 4.23277 3.0327 ] pdfxs + (o) show + (n) show + -16.936 -350.761 m + (setbutwi) + [4.29811 4.85451 8.95637 6.0654 6.05449 8.96728 7.8763 3.0327 ] pdfxs + (t) show + (hkeyhi) + [10.7781 5.4545 4.8436 10.4835 6.05449 3.0327 ] pdfxs + (g) show + (her-levelinf) + [6.0654 4.8436 4.27631 3.63261 3.0327 4.8436 5.4545 4.85451 7.74539 3.0327 6.05449 + 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nf) + [10.7781 3.32724 ] pdfxs + (o) show + (re\013ec) + [8.98899 4.85451 6.35986 4.85451 4.8436 ] pdfxs + (t) show + (ive) + [3.0327 5.4545 9.56719 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis.Thisincludestypeinf) + [3.0327 5.75995 4.29811 3.0327 4.30902 11.1163 7.88721 6.05449 3.0327 9.02171 3.0327 + 6.05449 4.85451 3.0327 6.05449 6.0654 4.8436 9.02171 3.93823 5.75995 6.35994 9.56719 + 3.0327 6.0654 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n,) + [6.0654 3.0327 ] pdfxs + -16.936 -372.683 m + (explicitc) + [4.8436 5.75995 6.0654 3.0327 3.02179 4.85451 3.0327 6.91639 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (o) show + (l\row) + [5.7054 6.0654 5.14905 10.5599 ] pdfxs + (g) show + (r) + [4.2654 ] pdfxs + (a) show + (phs,) + [6.0654 6.05449 4.30902 5.89086 ] pdfxs + (a) show + (nd) + [6.0654 8.7381 ] pdfxs + (a) show + (nexplicitdat) + [8.72719 4.85451 5.75995 6.05449 3.0327 3.0327 4.8436 3.0327 6.91639 6.05449 5.46541 + 4.23277 ] pdfxs + (a) show + (\rowrepresen) + [6.0654 5.14905 10.5599 4.2654 4.85451 6.05449 4.27631 4.8436 4.30902 4.8436 5.75995 + ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [8.72719 ] pdfxs + (\() show + (using) + [6.0654 4.29811 3.0327 6.0654 8.1272 ] pdfxs + (a) show + (nin\fni) + [8.72719 3.0327 6.0654 6.05449 6.0654 3.0327 ] pdfxs + (t) show + (e,typedre) + [4.8436 5.90177 3.93823 5.74904 6.37085 4.8436 8.7381 4.27631 4.8436 ] pdfxs + (g) show + (is) + [3.0327 4.29811 ] pdfxs + (t) show + (er) + [4.85451 4.27631 ] pdfxs + -16.936 -394.606 m + (setinS) + [4.29811 4.85451 8.97819 3.0327 10.7999 6.0654 ] pdfxs + (ta) show + (ticSin) + [4.23277 3.0327 9.58901 6.0654 3.02179 6.0654 ] pdfxs + (g) show + (le) + [3.0327 9.58901 ] pdfxs + (A) show + (ssi) + [4.29811 4.30902 3.02179 ] pdfxs + (g) show + (nmentf) + [6.0654 9.08711 4.85451 5.75995 8.97819 3.33815 ] pdfxs + (o) show + (rm[) + [4.2654 13.8325 3.0327 ] pdfxs + (40) show + (]\).There) + [3.0327 4.23277 11.1926 7.8763 6.0654 4.8436 4.27631 9.58901 ] pdfxs + (a) show + (resever) + [4.27631 9.58901 4.29811 4.8436 5.46541 4.8436 4.27631 ] pdfxs + (a) show + (lnovelfe) + [7.7672 6.05449 5.15996 5.4545 4.8436 7.7672 3.33815 4.8436 ] pdfxs + (at) show + (uresin) + [6.0654 4.27631 4.8436 9.04353 3.0327 10.7999 ] pdfxs + (t) show + (he) + [6.05449 9.58901 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mcode) + [14.7381 4.85451 5.74904 6.0654 4.8436 ] pdfxs + -16.936 -416.528 m + (represen) + [4.27631 4.8436 6.0654 4.2654 4.85451 4.29811 4.85451 5.74904 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (n:) + [6.0654 8.41084 ] pdfxs + (\(a) show + (\)Alow-level,) + [8.13819 12.0872 3.0327 5.14905 7.8763 3.64352 3.0327 4.8436 5.4545 4.85451 3.02179 + 3.0327 ] pdfxs + 137.012 -416.528 m + /N634 10.909 Tf + (l) + [2.79267 ] pdfxs + (a) show + (n) + [6.13082 ] pdfxs + (g) show + (u) + [5.85816 ] pdfxs + (age) show + (-in) + [3.89453 3.34914 6.13082 ] pdfxs + (de) show + (p) + [5.01816 ] pdfxs + (e) show + (n) + [6.14173 ] pdfxs + (de) show + (nt) + [6.13082 3.62179 ] pdfxs + 242.394 -416.528 m + /N614 10.909 Tf + (typesys) + [3.93823 5.75995 6.35994 8.74902 4.30902 5.75995 4.29811 ] pdfxs + (t) show + (em) + [4.85451 12.9925 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tc) + [8.1491 4.8436 ] pdfxs + (a) show + (nbeused) + [9.97082 6.35994 8.74902 6.0654 4.29811 4.85451 9.95991 ] pdfxs + (to) show + 401.719 -416.528 m + /N634 10.909 Tf + (impl) + [3.34914 8.91258 5.58542 2.78176 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + -16.9361 -438.451 m + /N614 10.909 Tf + (d) + [6.0654 ] pdfxs + (a) show + (tatypes) + [4.23277 8.58538 3.93823 5.75995 6.35994 4.85451 7.429 ] pdfxs + (a) show + (nd) + [6.0654 9.18537 ] pdfxs + (o) show + (per) + [6.35994 4.85451 4.2654 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nsfr) + [6.0654 7.429 3.32724 4.27631 ] pdfxs + (o) show + (mhi) + [12.218 6.0654 3.02179 ] pdfxs + (g) show + (h-levell) + [6.0654 3.63261 3.0327 4.85451 5.4545 4.8436 6.15267 3.0327 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (u) + [6.05449 ] pdfxs + (ag) show + (es,exp) + [4.85451 4.29811 6.26176 4.85451 5.74904 6.37085 ] pdfxs + (o) show + (sing) + [4.29811 3.0327 6.05449 8.58538 ] pdfxs + (t) show + (heirimplemen) + [6.0654 4.8436 3.0327 7.39628 3.0327 9.08711 6.0654 3.0327 4.8436 9.09802 4.8436 + 5.75995 ] pdfxs + (tat) show + (i) + [3.02179 ] pdfxs + (o) show + (nbehavi) + [9.19628 6.35994 4.8436 6.0654 5.14905 5.75995 3.0327 ] pdfxs + (o) show + (r) + [7.39628 ] pdfxs + (t) show + (o) + [8.58538 ] pdfxs + (a) show + (ll) + [3.0327 3.0327 ] pdfxs + -16.9361 -460.373 m + (s) + [4.29811 ] pdfxs + (tag) show + (es) + [4.85451 7.87627 ] pdfxs + (o) show + (f) + [6.90539 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imiz) + [3.02179 9.09802 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n.Thistypesys) + [6.05449 7.86538 7.8763 6.05449 3.0327 7.87627 3.93823 5.75995 6.37085 8.42175 4.29811 + 5.75995 4.29811 ] pdfxs + (t) show + (emincludes) + [4.85451 12.6653 3.0327 6.05449 4.85451 3.02179 6.0654 6.05449 4.85451 7.87627 ] pdfxs + (t) show + (hetypeinf) + [6.0654 8.42175 3.93823 5.75995 6.35994 8.42175 3.0327 6.05449 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nusedbys) + [9.63264 6.05449 4.30902 4.8436 9.64355 5.74904 9.3381 4.29811 ] pdfxs + (o) show + (phis) + [6.0654 6.05449 3.0327 4.30902 ] pdfxs + (t) show + (ic) + [3.02179 4.85451 ] pdfxs + (at) show + (ed) + [4.8436 9.63264 ] pdfxs + (\() show + (bu) + [6.0654 6.05449 ] pdfxs + (t) show + -16.9361 -482.296 m + (l) + [3.0327 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (e-independen) + [4.8436 3.64352 3.02179 6.0654 6.0654 4.8436 6.35994 4.85451 6.05449 6.0654 4.8436 + 5.75995 ] pdfxs + (t) show + (\)) + [9.01091 ] pdfxs + (t) show + (echniques,such) + [4.8436 4.54905 6.0654 6.05449 3.0327 5.75995 6.05449 4.85451 4.29811 8.08356 4.30902 + 6.05449 4.54905 10.8217 ] pdfxs + (a) show + (s) + [9.07625 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (go) show + (ri) + [4.27631 3.02179 ] pdfxs + (t) show + (hmsf) + [6.0654 9.08711 9.07625 3.32724 ] pdfxs + (o) show + (rp) + [9.04354 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er) + [4.8436 9.04354 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis,dependence) + [3.02179 5.75995 4.30902 3.02179 4.30902 8.08356 6.05449 4.85451 6.35994 4.85451 6.05449 + 6.0654 4.8436 6.0654 4.8436 9.62174 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis,) + [3.0327 5.75995 4.29811 3.0327 4.30902 3.0327 ] pdfxs + -16.9361 -504.218 m + (a) show + (ndd) + [6.0654 10.069 6.05449 ] pdfxs + (at) show + (a) + [9.46901 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (ns.) + [6.0654 4.29811 8.99992 ] pdfxs + (\() show + (b\)) + [6.0654 8.24728 ] pdfxs + (I) show + (ns) + [6.0654 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (nsf) + [6.0654 8.31262 3.33815 ] pdfxs + (o) show + (rperf) + [8.27991 6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rmingtypec) + [4.2654 9.09802 3.0327 6.05449 9.46901 3.93823 5.75995 6.35994 8.85811 4.8436 ] pdfxs + (o) show + (nversi) + [5.75995 5.4545 4.85451 4.2654 4.30902 3.02179 ] pdfxs + (o) show + (ns) + [6.0654 8.31262 ] pdfxs + (a) show + (ndlow-level) + [6.0654 10.069 3.02179 5.15996 7.8763 3.63261 3.0327 4.8436 5.4545 4.85451 7.0363 + ] pdfxs + (a) show + (ddress) + [6.0654 6.05449 4.27631 4.8436 4.30902 4.29811 ] pdfxs + -16.9361 -526.141 m + (a) show + (ri) + [4.27631 3.02179 ] pdfxs + (t) show + (hme) + [6.0654 9.08711 4.85451 ] pdfxs + (t) show + (icwhilepreservingtypeinf) + [3.02179 7.84357 7.8763 6.0654 3.0327 3.0327 7.83266 6.0654 4.27631 4.8436 4.30902 + 4.8436 4.27631 5.74904 3.0327 6.0654 8.44356 3.93823 5.75995 6.35994 7.84357 3.0327 + 6.0654 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n.) + [6.05449 7.66902 ] pdfxs + (\() show + (c\)Twolow-levelexcep) + [4.8436 7.24366 7.8763 7.57085 8.45447 3.0327 5.14905 7.8763 3.63261 3.0327 4.85451 + 5.4545 4.8436 6.02176 4.85451 5.74904 4.85451 4.8436 6.0654 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n-h) + [6.05449 3.63261 6.0654 ] pdfxs + (a) show + (ndlingins) + [6.0654 6.05449 3.0327 3.0327 6.05449 8.45447 3.02179 6.0654 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nsf) + [6.05449 7.29809 3.33815 ] pdfxs + (o) show + (r) show + -16.9361 -548.063 m + (implemen) + [3.0327 9.08711 6.0654 3.02179 4.85451 9.08711 4.85451 5.74904 ] pdfxs + (t) show + (ingl) + [3.0327 6.0654 9.58901 3.02179 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (u) + [6.05449 ] pdfxs + (ag) show + (e-speci\fcexcep) + [4.85451 3.63261 4.30902 6.35994 4.8436 4.85451 3.0327 6.05449 8.97811 4.85451 5.75995 + 4.8436 4.85451 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nsem) + [10.189 4.30902 4.8436 9.08711 ] pdfxs + (a) show + (n) + [5.75995 ] pdfxs + (t) show + (ics,whileexplici) + [3.0327 4.8436 4.30902 7.28721 7.8763 6.05449 3.0327 3.0327 8.97811 4.85451 5.75995 + 6.05449 3.0327 3.0327 4.8436 3.0327 ] pdfxs + (t) show + (lyexp) + [3.0327 9.88355 4.85451 5.74904 6.37085 ] pdfxs + (o) show + (singexcep) + [4.29811 3.0327 6.05449 9.58901 4.85451 5.74904 4.85451 4.8436 6.0654 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [6.05449 ] pdfxs + (a) show + (lc) + [7.16721 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (o) show + (l) show + -16.9361 -569.986 m + (\row) + [6.0654 5.14905 11.509 ] pdfxs + (t) show + (othec) + [9.0981 4.23277 6.0654 8.4872 4.8436 ] pdfxs + (o) show + (mpiler.) + [9.09802 6.05449 3.0327 3.0327 4.8436 4.27631 3.0327 ] pdfxs + -7.62939e-05 -591.908 m + (The) + [7.8763 6.0654 10.0799 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mrepresen) + [15.2399 4.2654 4.85451 6.05449 4.27631 4.85451 4.29811 4.8436 5.75995 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (nis) + [11.2908 3.0327 4.29811 ] pdfxs + 145.37 -591.908 m + /N634 10.909 Tf + (so) show + (urc) + [5.85816 4.0363 4.46185 ] pdfxs + (e) show + (-lan) + [3.90544 2.78176 5.58542 6.13082 ] pdfxs + (g) show + (ua) + [5.84725 5.58542 ] pdfxs + (ge) show + (-in) + [3.89453 3.34914 6.13082 ] pdfxs + (de) show + (p) + [5.01816 ] pdfxs + (e) show + (n) + [6.14173 ] pdfxs + (de) show + (nt) + [6.13082 3.62179 ] pdfxs + 280.163 -591.908 m + /N614 10.909 Tf + (,f) + [8.67265 3.32724 ] pdfxs + (o) show + (rtwore) + [9.51263 3.93823 7.57085 10.6908 4.27631 4.85451 ] pdfxs + (a) show + (s) + [4.29811 ] pdfxs + (o) show + (ns.Firs) + [6.0654 4.29811 12.6763 7.12357 3.0327 4.27631 4.29811 ] pdfxs + (t) show + (,ituses) + [8.66174 3.0327 9.48 6.0654 4.29811 4.85451 9.53443 ] pdfxs + (a) show + -16.9361 -613.831 m + (low-levelinstruc) + [3.0327 5.14905 7.8763 3.64352 3.02179 4.85451 5.4545 4.8436 7.22175 3.0327 6.05449 + 4.30902 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nset) + [10.2435 4.30902 4.8436 8.43274 ] pdfxs + (a) show + (ndmem) + [6.05449 10.2545 9.08711 4.8436 9.09802 ] pdfxs + (o) show + (rymodelth) + [4.2654 9.949 9.08711 5.75995 6.0654 4.8436 7.22175 4.23277 6.0654 ] pdfxs + (a) show + (t) + [8.43274 ] pdfxs + (a) show + (re) + [4.2654 9.04356 ] pdfxs + (o) show + (nlysligh) + [6.05449 3.0327 9.9381 4.30902 3.0327 3.02179 5.46541 5.74904 ] pdfxs + (t) show + (lyricher) + [3.0327 9.949 4.2654 3.0327 4.54905 6.05449 4.85451 8.45445 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (ns) + [10.2435 4.29811 ] pdfxs + (ta) show + (nd) + [6.0654 6.05449 ] pdfxs + (a) show + (rd) + [4.27631 10.2435 ] pdfxs + (a) show + (ssembly) + [4.30902 4.29811 4.85451 8.78166 6.0654 3.0327 5.75995 ] pdfxs + 211.609 -657.201 m + (12) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 88.364 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N1028 10.909 Tf + (\017) show + 10.909 0 m + /N614 10.909 Tf + (C) + [7.8763 ] pdfxs + (o) show + (mpilers) + [9.09802 6.05449 3.0327 3.0327 4.8436 4.27631 7.52718 ] pdfxs + (g) show + (ener) + [4.8436 6.0654 4.8436 4.27631 ] pdfxs + (a) show + (llyc) + [3.02179 3.0327 8.9781 4.85451 ] pdfxs + (a) show + (nn) + [6.05449 6.0654 ] pdfxs + (o) show + (tre) + [7.46184 4.27631 4.8436 ] pdfxs + (a) show + (s) + [4.30902 ] pdfxs + (o) show + (n) + [9.27264 ] pdfxs + (a) show + (b) + [6.37085 ] pdfxs + (o) show + (ut) + [6.05449 7.46184 ] pdfxs + (t) show + (hedyn) + [6.0654 8.07266 6.05449 5.75995 6.0654 ] pdfxs + (a) show + (miclay) + [9.08711 3.0327 8.06175 3.0327 5.14905 5.4545 ] pdfxs + (o) show + (ut) + [6.0654 7.46184 ] pdfxs + (o) show + (f) + [6.5563 ] pdfxs + (t) show + (hehe) + [6.05449 8.07266 6.0654 4.8436 ] pdfxs + (a) show + (p:he) + [6.0654 7.66902 6.05449 4.85451 ] pdfxs + (a) show + (play) + [9.28355 3.02179 5.15996 5.4545 ] pdfxs + (o) show + (utisc) + [6.05449 7.46184 3.0327 7.52718 4.8436 ] pdfxs + (o) show + (n-) + [6.0654 3.63261 ] pdfxs + 10.909 -21.922 m + (t) show + (r) + [4.27631 ] pdfxs + (o) show + (lledb) + [3.02179 3.0327 4.85451 8.71629 6.35994 ] pdfxs + (ot) show + (hby) + [8.71629 5.75995 8.41084 ] pdfxs + (t) show + (he) + [6.05449 7.50539 ] pdfxs + (\() show + (h) + [6.05449 ] pdfxs + (a) show + (rd) + [4.27631 8.71629 ] pdfxs + (t) show + (opredic) + [8.10538 6.0654 4.27631 4.8436 6.0654 3.02179 4.85451 ] pdfxs + (t) show + (\)dyn) + [6.89457 6.0654 5.74904 6.0654 ] pdfxs + (a) show + (micbehavi) + [9.08711 3.0327 7.50539 6.35994 4.85451 6.05449 5.14905 5.75995 3.0327 ] pdfxs + (o) show + (r) + [6.92719 ] pdfxs + (o) show + (f) + [5.98904 ] pdfxs + (t) show + (hepr) + [6.0654 7.49448 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (m) + [11.7489 ] pdfxs + (a) show + (swell) + [6.95991 7.57085 4.85451 3.0327 5.68359 ] pdfxs + (a) show + (s) + [6.95991 ] pdfxs + (t) show + (hep) + [6.05449 7.50539 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (icul) + [3.0327 4.8436 6.0654 3.0327 ] pdfxs + (a) show + (r) show + 10.909 -43.845 m + (implemen) + [3.0327 9.08711 6.0654 3.02179 4.85451 9.08711 4.85451 5.74904 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.18537 ] pdfxs + (o) show + (fm) + [6.46903 9.08711 ] pdfxs + (a) show + (lloc) + [3.0327 3.02179 5.75995 4.85451 ] pdfxs + (/) show + (freebeingused,whichisusu) + [3.32724 4.27631 4.8436 7.97448 6.37085 4.8436 3.0327 6.0654 8.57447 6.0654 4.29811 + 4.85451 6.05449 6.26176 7.8763 6.0654 3.0327 4.53815 9.19628 3.02179 7.429 6.0654 + 4.29811 6.0654 ] pdfxs + (a) show + (llyn) + [3.0327 3.0327 8.87992 6.0654 ] pdfxs + (o) show + (tprovidedby) + [7.36366 6.0654 4.2654 5.15996 5.74904 3.0327 6.0654 4.8436 9.18537 5.75995 8.89083 + ] pdfxs + (t) show + (hec) + [6.05449 7.97448 4.85451 ] pdfxs + (o) show + (mpilerven-) + [9.08711 6.0654 3.02179 3.0327 4.85451 7.39628 5.4545 4.8436 6.0654 3.63261 ] pdfxs + 10.909 -65.768 m + (d) + [6.0654 ] pdfxs + (o) show + (r.Wi) + [4.2654 7.83266 11.2144 3.02179 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (o) show + (ut) + [6.0654 7.72365 ] pdfxs + (t) show + (he) + [6.0654 8.33448 ] pdfxs + (a) show + (bilitytore) + [6.05449 3.0327 3.0327 3.0327 3.93823 9.25083 4.23277 8.94538 4.27631 4.8436 ] pdfxs + (a) show + (s) + [4.30902 ] pdfxs + (o) show + (n) + [9.54537 ] pdfxs + (a) show + (b) + [6.35994 ] pdfxs + (o) show + (ut) + [6.0654 7.73456 ] pdfxs + (a) show + (ndc) + [6.05449 9.55628 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (o) show + (llay) + [6.52358 3.0327 5.14905 5.4545 ] pdfxs + (o) show + (ut,) + [6.0654 4.23277 6.55631 ] pdfxs + (t) show + (hec) + [6.05449 8.33448 4.85451 ] pdfxs + (o) show + (mpilerh) + [9.08711 6.0654 3.0327 3.02179 4.85451 7.75628 6.0654 ] pdfxs + (a) show + (slimi) + [7.78899 3.0327 3.0327 9.08711 3.0327 ] pdfxs + (t) show + (ed) + [4.8436 9.54537 ] pdfxs + (a) show + (bility) + [6.0654 3.0327 3.0327 3.02179 3.94914 5.75995 ] pdfxs + 10.909 -87.69 m + (t) show + (ouses) + [9.06538 6.05449 4.30902 8.45447 4.30902 ] pdfxs + (ta) show + (ticinf) + [4.23277 3.0327 8.46538 3.02179 6.0654 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (ninfer) + [9.67628 3.0327 6.05449 3.33815 4.8436 7.88719 ] pdfxs + (a) show + (b) + [6.35994 ] pdfxs + (o) show + (ut) + [6.0654 7.84365 ] pdfxs + (t) show + (hepr) + [6.0654 8.45447 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (m) + [12.698 ] pdfxs + (t) show + (oimprovepr) + [9.06538 3.0327 9.08711 6.0654 4.27631 5.14905 5.4545 8.45447 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (mperf) + [12.7089 6.35994 4.8436 4.27631 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (nce,) + [6.05449 4.85451 4.8436 6.64358 ] pdfxs + (a) show + (ndh) + [6.0654 9.66537 6.0654 ] pdfxs + (a) show + (s) show + 10.909 -109.613 m + (limi) + [3.0327 3.0327 9.08711 3.0327 ] pdfxs + (t) show + (ed) + [4.8436 9.6981 ] pdfxs + (a) show + (bility) + [6.05449 3.0327 3.0327 3.0327 3.93823 9.39264 ] pdfxs + (t) show + (operf) + [9.08719 6.37085 4.8436 4.27631 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 12.7307 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (ns) + [6.0654 7.94172 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tdepend) + [7.88729 6.05449 4.85451 6.35994 4.8436 6.0654 9.6981 ] pdfxs + (o) show + (nhe) + [9.6981 6.05449 4.85451 ] pdfxs + (a) show + (play) + [9.6981 3.02179 5.15996 5.4545 ] pdfxs + (o) show + (u) + [6.05449 ] pdfxs + (t) show + (.) show + 0 -139.274 m + /N1028 10.909 Tf + (\017) show + 10.909 -139.274 m + /N614 10.909 Tf + (Modern) + [10.0036 5.74904 6.0654 4.8436 4.27631 10.4617 ] pdfxs + (a) show + (pplic) + [6.05449 6.0654 3.0327 3.02179 4.85451 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 8.70535 ] pdfxs + (a) show + (rel) + [4.2654 9.25083 3.02179 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (g) show + (e) + [9.25083 ] pdfxs + (a) show + (nd) + [6.05449 10.4617 ] pdfxs + (g) show + (e) + [4.8436 ] pdfxs + (tt) show + (ingbi) + [3.0327 6.05449 9.85082 6.0654 3.0327 ] pdfxs + (gg) show + (er:) + [4.8436 4.27631 9.39264 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.0327 5.74904 4.30902 3.0327 8.69444 ] pdfxs + (a) show + (nd) + [6.0654 10.4508 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [10.4508 ] pdfxs + (t) show + (imem) + [3.0327 9.08711 9.25083 9.08711 ] pdfxs + (att) show + (ers!) + [4.8436 4.27631 4.30902 3.0327 ] pdfxs + 10.909 -161.196 m + (C) + [7.8763 ] pdfxs + (o) show + (mmerci) + [9.09802 9.08711 4.8436 4.27631 4.8436 3.0327 ] pdfxs + (a) show + (lc) + [6.53449 4.8436 ] pdfxs + (o) show + (mpilers) + [9.09802 6.05449 3.0327 3.0327 4.8436 4.27631 7.7999 ] pdfxs + (g) show + (ener) + [4.85451 6.05449 4.85451 4.27631 ] pdfxs + (a) show + (lly) + [3.02179 3.0327 9.26174 ] pdfxs + (a) show + (reun) + [4.2654 8.35629 6.05449 6.0654 ] pdfxs + (a) show + (ble) + [6.0654 3.02179 8.35629 ] pdfxs + (t) show + (ouse) + [8.95629 6.05449 4.30902 8.34538 ] pdfxs + (t) show + (echniques) + [4.8436 4.54905 6.0654 6.05449 3.0327 5.75995 6.05449 4.85451 7.7999 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [7.74547 ] pdfxs + (\(a) show + (l) + [3.0327 ] pdfxs + (o) show + (ne\)) + [6.0654 4.8436 7.74547 ] pdfxs + (ta) show + (ke) + [5.4545 8.34538 ] pdfxs + (a) show + (smuch) + [7.81081 8.78166 6.0654 4.53815 9.56719 ] pdfxs + (t) show + (ime) + [3.02179 9.09802 4.8436 ] pdfxs + 10.909 -183.119 m + (t) show + (operf) + [9.65446 6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 13.2871 ] pdfxs + (a) show + (s) + [8.49808 ] pdfxs + (t) show + (herest) + [6.0654 9.04356 4.27631 4.8436 4.30902 8.44365 ] pdfxs + (o) show + (f) + [7.5272 ] pdfxs + (t) show + (hec) + [6.0654 9.04356 4.8436 ] pdfxs + (o) show + (mpile) + [9.09802 6.05449 3.0327 3.0327 9.04356 ] pdfxs + (t) show + (imef) + [3.0327 9.08711 9.05447 3.32724 ] pdfxs + (o) show + (rapr) + [8.47627 9.65446 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (m:) + [9.08711 9.01083 ] pdfxs + (t) show + (echniques) + [4.8436 4.54905 6.05449 6.0654 3.0327 5.74904 6.0654 4.8436 8.50899 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (trequireh) + [8.44365 4.27631 4.8436 5.75995 6.0654 3.02179 4.27631 9.04356 6.0654 ] pdfxs + (o) show + (urs) + [6.0654 4.2654 8.50899 ] pdfxs + (o) show + (r) show + 10.909 -205.041 m + (daysf) + [6.0654 5.14905 5.75995 7.93081 3.33815 ] pdfxs + (o) show + (rpr) + [7.909 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms) + [9.08711 7.94172 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [7.88729 ] pdfxs + (ta) show + (keminu) + [5.4545 8.47629 9.09802 3.02179 5.75995 6.0654 ] pdfxs + (t) show + (es) + [4.8436 7.94172 ] pdfxs + (t) show + (oc) + [9.08719 4.85451 ] pdfxs + (o) show + (mpile) + [9.08711 6.05449 3.0327 3.0327 8.4872 ] pdfxs + (a) show + (rec) + [4.27631 8.47629 4.85451 ] pdfxs + (o) show + (mple) + [9.08711 6.0654 3.02179 4.85451 ] pdfxs + (t) show + (ely) + [4.8436 3.0327 9.39264 ] pdfxs + (o) show + (ut) + [6.0654 7.87638 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (t) show + (heques) + [6.05449 8.4872 5.75995 6.05449 4.85451 4.29811 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n.) + [6.0654 3.0327 ] pdfxs + 0.572998 -235.235 m + (Atro) + [7.8763 7.80001 4.2654 5.75995 ] pdfxs + (ot) show + (,) + [6.59994 ] pdfxs + (t) show + (his) + [6.0654 3.02179 7.85445 ] pdfxs + (t) show + (hesisisdev) + [6.0654 4.8436 4.30902 3.0327 7.85445 3.02179 7.86536 6.05449 4.85451 5.4545 ] pdfxs + (o) show + (ted) + [4.23277 4.85451 9.61082 ] pdfxs + (t) show + (o) + [9.01083 ] pdfxs + (ta) show + (king) + [5.74904 3.0327 6.0654 8.99992 ] pdfxs + (t) show + (hesepr) + [6.0654 4.8436 4.30902 8.39993 6.05449 4.27631 ] pdfxs + (o) show + (blems) + [6.0654 3.02179 4.85451 9.08711 7.85445 ] pdfxs + (a) show + (ndc) + [6.0654 9.61082 4.8436 ] pdfxs + (a) show + (refullybre) + [4.27631 4.85451 3.32724 6.0654 3.02179 3.0327 9.31628 6.05449 4.27631 4.8436 ] pdfxs + (a) show + (king) + [5.75995 3.0327 6.0654 8.99992 ] pdfxs + (t) show + (hemdownin) + [6.0654 4.8436 12.6434 6.0654 5.14905 7.8763 9.61082 3.0327 5.75995 ] pdfxs + (to) show + -16.364 -257.157 m + (o) show + (r) + [4.27631 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (ogo) show + (n) + [6.0654 ] pdfxs + (a) show + (lpiecesth) + [6.15267 6.0654 3.02179 4.85451 4.8436 4.85451 7.429 4.23277 6.0654 ] pdfxs + (a) show + (tc) + [7.36366 4.85451 ] pdfxs + (a) show + (nbeh) + [9.18537 6.35994 7.97448 6.0654 ] pdfxs + (a) show + (ndledbypurely) + [6.05449 6.0654 3.0327 4.8436 9.18537 5.75995 8.87992 6.0654 6.05449 4.27631 4.8436 + 3.0327 8.87992 ] pdfxs + (a) show + (u) + [6.0654 ] pdfxs + (to) show + (m) + [9.08711 ] pdfxs + (at) show + (ed) + [4.8436 9.18537 ] pdfxs + (t) show + (echniques.Wi) + [4.85451 4.53815 6.0654 6.0654 3.02179 5.75995 6.0654 4.8436 4.30902 7.70175 11.2144 + 3.0327 ] pdfxs + (t) show + (hrespect) + [9.18537 4.2654 4.85451 4.29811 6.37085 4.8436 4.8436 7.37456 ] pdfxs + (t) show + (o) + [8.57447 ] pdfxs + (t) show + (he) + [6.0654 7.97448 ] pdfxs + (a) show + (bove,) + [6.35994 5.14905 5.4545 4.85451 3.0327 ] pdfxs + -16.364 -279.08 m + /N1025 10.909 Tf + (Th) show + (eLLVMC) + [10.6362 7.53813 6.15269 9.49086 16.7889 9.0544 ] pdfxs + (o) show + (m) + [10.4616 ] pdfxs + (p) show + (il) + [3.47997 3.49088 ] pdfxs + (e) show + (r) + [10.0472 ] pdfxs + (In) show + (fr) + [3.82904 5.17085 ] pdfxs + (a) show + (s) + [4.95263 ] pdfxs + (t) show + (r) + [5.15995 ] pdfxs + (uc) show + (tur) + [4.8873 6.96002 5.17085 ] pdfxs + (e) show + 186.843 -279.08 m + /N614 10.909 Tf + (\() show + (Ch) + [7.8763 6.0654 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (er) + [4.85451 8.509 ] pdfxs + (2) show + (\)isdesi) + [8.49819 3.02179 8.55262 6.0654 4.8436 4.30902 3.02179 ] pdfxs + (g) show + (ned) + [6.0654 4.8436 10.309 ] pdfxs + (t) show + (oc) + [9.6981 4.85451 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (o) show + (nic) + [6.0654 3.0327 4.8436 ] pdfxs + (a) show + (lize) + [3.0327 3.0327 4.8436 9.09811 ] pdfxs + (a) show + (smuch) + [8.55262 8.78166 6.0654 4.53815 10.309 ] pdfxs + (o) show + (f) + [7.58175 ] pdfxs + (t) show + (he) + [6.05449 4.8436 ] pdfxs + -16.364 -301.003 m + (s) + [4.29811 ] pdfxs + (o) show + (urce-levelc) + [6.0654 4.27631 4.8436 4.85451 3.63261 3.0327 4.8436 5.4545 4.85451 7.89811 4.85451 + ] pdfxs + (o) show + (mplexity) + [9.08711 6.0654 3.02179 4.85451 5.75995 3.02179 3.94914 10.6254 ] pdfxs + (a) show + (sp) + [9.18534 6.35994 ] pdfxs + (o) show + (ssiblein) + [4.30902 4.29811 3.0327 6.05449 3.0327 9.73083 3.02179 5.75995 ] pdfxs + (t) show + (osimplef) + [10.3308 4.29811 3.0327 9.09802 6.05449 3.0327 9.71992 3.33815 ] pdfxs + (o) show + (rms:itelimin) + [4.2654 9.09802 4.29811 10.3635 3.0327 9.10909 4.85451 3.0327 3.02179 9.09802 3.0327 + 6.05449 ] pdfxs + (at) show + (esbi) + [4.8436 9.18534 6.05449 3.0327 ] pdfxs + (t) show + (-\felds,li) + [3.63261 6.0654 4.8436 3.0327 6.0654 4.29811 8.21447 3.0327 3.0327 ] pdfxs + (t) show + (er) + [4.8436 4.27631 ] pdfxs + (a) show + (ls) + [7.90902 4.29811 ] pdfxs + (t) show + (ringc) + [4.27631 3.02179 6.0654 10.3308 4.8436 ] pdfxs + (o) show + (n-) + [6.0654 3.63261 ] pdfxs + -16.364 -322.925 m + (s) + [4.29811 ] pdfxs + (ta) show + (n) + [5.75995 ] pdfxs + (t) show + (s,unions,c) + [4.29811 6.68721 6.05449 6.0654 3.02179 5.46541 6.05449 4.30902 6.6763 4.8436 ] pdfxs + (o) show + (mplexlo) + [9.08711 6.0654 3.0327 4.8436 9.40355 3.0327 5.75995 ] pdfxs + (o) show + (pings) + [6.05449 3.0327 6.0654 9.0981 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ures,se) + [6.05449 4.27631 4.8436 4.30902 6.6763 4.29811 4.85451 ] pdfxs + (t) show + (jmp) + [3.32724 9.09802 6.05449 ] pdfxs + (/) show + (l) + [3.0327 ] pdfxs + (o) show + (ngjmp,s) + [6.0654 5.74904 3.33815 9.08711 6.0654 6.6763 4.29811 ] pdfxs + (o) show + (urce-levelexcep) + [6.0654 4.27631 4.8436 4.8436 3.64352 3.0327 4.8436 5.4545 4.8436 6.6763 4.85451 + 5.75995 4.8436 4.85451 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nsem) + [9.6981 4.30902 4.8436 9.09802 ] pdfxs + (a) show + (ntics,) + [5.75995 4.23277 3.0327 4.85451 4.29811 6.6763 ] pdfxs + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + -16.364 -344.848 m + (a) + [9.64355 ] pdfxs + (t) show + (remend) + [4.27631 4.8436 9.09802 4.8436 6.0654 6.05449 ] pdfxs + (o) show + (us) + [6.0654 8.49808 ] pdfxs + (a) show + (m) + [9.08711 ] pdfxs + (o) show + (unt) + [6.0654 5.74904 8.44365 ] pdfxs + (o) show + (f) + [7.5163 ] pdfxs + (ot) show + (hers) + [6.0654 4.8436 8.46536 4.30902 ] pdfxs + (o) show + (urce-levelde) + [6.05449 4.27631 4.85451 4.8436 3.63261 3.0327 4.85451 5.4545 4.8436 7.22175 6.0654 + 4.8436 ] pdfxs + (ta) show + (il) + [3.0327 7.22175 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tw) + [8.44365 7.57085 ] pdfxs + (o) show + (uldm) + [6.0654 3.02179 10.2545 9.09802 ] pdfxs + (a) show + (kein) + [5.4545 9.03265 3.0327 5.75995 ] pdfxs + (t) show + (erprocedur) + [4.8436 4.27631 6.0654 4.2654 5.75995 4.8436 4.85451 6.05449 6.0654 4.27631 ] pdfxs + (a) show + (l) + [7.22175 ] pdfxs + (o) show + (p) + [6.05449 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (ns) + [6.0654 4.29811 ] pdfxs + -16.364 -366.77 m + (like) + [3.0327 3.0327 5.4545 8.37811 ] pdfxs + (t) show + (hesem) + [6.0654 4.8436 4.30902 8.37811 9.08711 ] pdfxs + (o) show + (rec) + [4.27631 8.38902 4.8436 ] pdfxs + (o) show + (mplex,whilepreserving) + [9.08711 6.0654 3.0327 4.8436 5.75995 6.58903 7.8763 6.0654 3.02179 3.0327 8.38902 + 6.05449 4.27631 4.8436 4.30902 4.8436 4.27631 5.75995 3.0327 6.05449 8.98901 ] pdfxs + (t) show + (heimp) + [6.0654 8.37811 3.0327 9.08711 6.37085 ] pdfxs + (o) show + (r) + [4.2654 ] pdfxs + (ta) show + (ntfe) + [5.75995 7.7782 3.33815 4.8436 ] pdfxs + (at) show + (uressuch) + [6.0654 4.2654 4.85451 7.83263 4.30902 6.05449 4.54905 9.59991 ] pdfxs + (a) show + (s) + [7.83263 ] pdfxs + (t) show + (hetypes) + [6.0654 8.37811 3.93823 5.75995 6.37085 8.37811 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ure,d) + [6.0654 4.2654 4.85451 6.58903 6.05449 ] pdfxs + (ata) show + (-) show + -16.364 -388.693 m + (\rowe\013ec) + [6.0654 5.14905 12.6981 4.8436 6.35986 4.85451 4.8436 ] pdfxs + (t) show + (s,d) + [4.30902 8.13811 6.0654 ] pdfxs + (at) show + (a) + [10.2654 ] pdfxs + (a) show + (ccessbehavi) + [4.85451 4.8436 4.85451 4.29811 9.11989 6.35994 4.85451 6.05449 5.15996 5.74904 3.0327 + ] pdfxs + (o) show + (r,e) + [4.27631 8.13811 4.85451 ] pdfxs + (t) show + (c.) + [4.8436 11.4217 ] pdfxs + (I) show + (nprinciple,thel) + [10.8872 6.05449 4.27631 3.0327 6.05449 4.85451 3.02179 6.0654 3.0327 4.8436 8.14902 + 4.23277 6.0654 9.66537 3.0327 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (e-independentn) + [4.8436 3.64352 3.0327 6.05449 6.0654 4.8436 6.37085 4.8436 6.0654 6.05449 4.85451 + 5.74904 9.06546 6.05449 ] pdfxs + (at) show + (ure) + [6.0654 4.27631 9.66537 ] pdfxs + (o) show + (f) + [8.14902 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (M) show + -16.364 -410.615 m + (a) show + (llows) + [3.0327 3.0327 5.14905 7.8763 8.97807 ] pdfxs + (a) show + (ll) + [3.0327 7.70175 ] pdfxs + (o) show + (fthe) + [8.01811 4.23277 6.0654 9.52356 ] pdfxs + (t) show + (echniquesin) + [4.8436 4.54905 6.0654 6.05449 3.0327 5.75995 6.05449 4.85451 8.97807 3.0327 10.7344 + ] pdfxs + (t) show + (his) + [6.05449 3.0327 8.97807 ] pdfxs + (t) show + (hesis) + [6.0654 4.8436 4.30902 3.02179 8.97807 ] pdfxs + (t) show + (ow) + [10.1345 7.57085 ] pdfxs + (o) show + (rkunmodi\fedf) + [4.27631 10.4399 6.05449 6.0654 9.08711 5.75995 6.05449 3.0327 6.0654 4.8436 10.7344 + 3.33815 ] pdfxs + (o) show + (r) + [8.94536 ] pdfxs + (a) show + (nyl) + [5.75995 10.429 3.0327 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (u) + [6.05449 ] pdfxs + (ag) show + (e) + [9.52356 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (t) + [8.91273 ] pdfxs + (ta) show + (r) + [4.27631 ] pdfxs + (g) show + (e) + [4.8436 ] pdfxs + (t) show + (s) + [8.97807 ] pdfxs + (t) show + (he) + [6.0654 4.8436 ] pdfxs + -16.364 -432.538 m + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mrepresen) + [14.2254 4.2654 4.85451 6.05449 4.27631 4.8436 4.30902 4.8436 5.75995 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (n,th) + [6.05449 7.40721 4.23277 6.0654 ] pdfxs + (o) show + (u) + [6.0654 ] pdfxs + (g) show + (hinpr) + [10.2763 3.0327 10.2872 6.05449 4.27631 ] pdfxs + (a) show + (c) + [4.8436 ] pdfxs + (t) show + (ice,) + [3.0327 4.85451 4.8436 7.3963 ] pdfxs + (t) show + (he) + [6.0654 9.06538 ] pdfxs + (t) show + (echniquesmayhaveincre) + [4.85451 4.53815 6.0654 6.05449 3.0327 5.75995 6.0654 4.8436 8.5308 9.08711 5.14905 + 9.98173 6.0654 5.14905 5.4545 9.06538 3.0327 6.0654 4.8436 4.27631 4.8436 ] pdfxs + (a) show + (sed) + [4.30902 4.8436 10.2872 ] pdfxs + (o) show + (rreducedimp) + [8.49809 4.2654 4.85451 6.05449 6.0654 4.8436 4.85451 10.2872 3.02179 9.09802 6.05449 + ] pdfxs + (a) show + (c) + [4.85451 ] pdfxs + (t) show + (.) show + -16.364 -454.46 m + (I) show + (n) + [10.1017 ] pdfxs + (a) show + (ddi) + [6.05449 6.0654 3.02179 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n,) + [6.0654 7.1563 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Msupp) + [14.04 4.29811 6.0654 6.05449 6.37085 ] pdfxs + (o) show + (r) + [4.2654 ] pdfxs + (t) show + (s) + [8.34535 ] pdfxs + (agg) show + (ressive) + [4.2654 4.85451 4.29811 4.30902 3.0327 5.4545 8.87993 ] pdfxs + (a) show + (nde\016cientlink-) + [6.05449 10.1017 4.8436 9.09802 4.8436 3.0327 4.8436 5.75995 8.28001 3.0327 3.02179 + 6.0654 5.75995 3.63261 ] pdfxs + (t) show + (imepr) + [3.0327 9.08711 8.87993 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (m) + [13.1344 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 8.33444 ] pdfxs + (a) show + (nd) + [6.0654 10.0908 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) show + -16.364 -476.383 m + /N634 10.909 Tf + (wit) + [7.24359 3.34914 3.62179 ] pdfxs + (h) show + (out) + [5.58542 5.84725 6.61086 ] pdfxs + (h) show + (a) + [5.58542 ] pdfxs + (v) show + (ingtoma) + [3.33823 6.13082 8.00728 3.6327 8.56358 8.91258 5.58542 ] pdfxs + (k) show + (e) + [7.99637 ] pdfxs + (s) show + (i) + [3.34914 ] pdfxs + (g) show + (ni\fc) + [6.13082 3.34914 6.13082 4.46185 ] pdfxs + (a) show + (nt) + [6.13082 6.62177 ] pdfxs + (cha) show + (n) + [6.13082 ] pdfxs + (ge) show + (stoISVm) + [7.45081 3.62179 8.56358 4.21089 6.13082 11.0944 8.92348 ] pdfxs + (ake) show + (\fl) + [6.13082 2.79267 ] pdfxs + (es) show + 262.4 -476.383 m + /N614 10.909 Tf + (.The) + [7.54902 7.8763 6.0654 7.48357 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mrepresen) + [12.6436 4.27631 4.8436 6.0654 4.2654 4.85451 4.29811 4.85451 5.74904 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (nisex) + [8.70538 3.0327 6.93809 4.85451 5.74904 ] pdfxs + (t) show + (remely) + [4.27631 4.8436 9.09802 4.8436 3.0327 5.75995 ] pdfxs + -16.364 -498.305 m + (simple) + [4.29811 3.0327 9.09802 6.05449 3.0327 8.13811 ] pdfxs + (a) show + (ndli) + [6.0654 9.34901 3.0327 3.0327 ] pdfxs + (g) show + (h) + [5.75995 ] pdfxs + (t) show + (-wei) + [3.63261 7.57085 4.85451 3.0327 ] pdfxs + (g) show + (h) + [5.74904 ] pdfxs + (t) show + (,) + [6.39267 ] pdfxs + (a) show + (llowingin) + [3.0327 3.0327 5.14905 7.8763 3.0327 6.0654 8.74901 3.02179 5.75995 ] pdfxs + (t) show + (erprocedur) + [4.85451 4.2654 6.0654 4.2654 5.75995 4.85451 4.8436 6.0654 6.05449 4.27631 ] pdfxs + (a) show + (l) + [6.32722 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lyses) + [3.0327 5.75995 4.29811 4.85451 7.59263 ] pdfxs + (a) show + (nd) + [6.0654 9.34901 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.0654 7.59263 ] pdfxs + (t) show + (obeverye\016cien) + [8.74901 6.35994 8.14902 5.4545 4.8436 4.27631 9.04356 4.85451 9.08711 4.85451 3.02179 + 4.85451 5.75995 ] pdfxs + (t) show + (.) show + 0.572983 -520.228 m + /N1025 10.909 Tf + (Dat) show + (a) + [10.0691 ] pdfxs + (St) show + (r) + [5.17085 ] pdfxs + (uctu) show + (reA) + [5.15995 9.71984 9.49086 ] pdfxs + (na) show + (l) + [3.47997 ] pdfxs + (y) show + (sis) + [4.95263 3.47997 4.95263 ] pdfxs + 137.026 -520.228 m + /N614 10.909 Tf + (isdesi) + [3.0327 7.75627 6.05449 4.85451 4.29811 3.0327 ] pdfxs + (g) show + (ned) + [6.05449 4.85451 9.51264 ] pdfxs + (t) show + (odirec) + [8.90174 6.0654 3.02179 4.27631 4.85451 4.8436 ] pdfxs + (t) show + (ly) + [3.0327 9.20719 ] pdfxs + (a) show + (ddress) + [6.05449 6.0654 4.27631 4.8436 4.30902 7.74536 ] pdfxs + (t) show + (hedi\016cultpr) + [6.0654 8.30175 6.05449 3.0327 9.08711 4.85451 6.05449 3.0327 7.69093 6.0654 4.27631 + ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (m) + [12.5453 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysispr) + [3.02179 5.75995 4.30902 3.02179 7.75627 6.0654 4.27631 ] pdfxs + (o) show + (b-) + [6.05449 3.63261 ] pdfxs + -16.364 -542.15 m + (lemsf) + [3.0327 4.8436 9.09802 8.42171 3.33815 ] pdfxs + (a) show + (cedby) + [4.8436 4.85451 10.189 5.74904 9.89446 ] pdfxs + (agg) show + (ressivemem) + [4.2654 4.85451 4.29811 4.30902 3.02179 5.4545 8.97811 9.09802 4.8436 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 9.88355 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nsinac) + [6.0654 8.42171 3.0327 10.189 9.5781 4.85451 ] pdfxs + (o) show + (nsis) + [6.05449 4.30902 3.0327 4.29811 ] pdfxs + (t) show + (ent) + [4.8436 5.75995 8.36728 ] pdfxs + (a) show + (nduni\fedfr) + [6.0654 10.189 6.05449 6.0654 3.0327 6.05449 4.85451 10.189 3.32724 4.27631 ] pdfxs + (a) show + (mew) + [9.08711 4.85451 7.57085 ] pdfxs + (o) show + (rk.) + [4.27631 5.75995 9.34901 ] pdfxs + (I) show + (np) + [10.189 6.05449 ] pdfxs + (a) show + (r-) + [4.27631 3.63261 ] pdfxs + -16.364 -564.073 m + (t) show + (icul) + [3.0327 4.8436 6.0654 3.02179 ] pdfxs + (a) show + (r,) + [4.27631 7.71266 ] pdfxs + (D) show + (SAc) + [6.0654 12.6544 4.85451 ] pdfxs + (o) show + (mpu) + [9.08711 6.0654 6.05449 ] pdfxs + (t) show + (esc) + [4.8436 8.78171 4.85451 ] pdfxs + (o) show + (n) + [5.74904 ] pdfxs + (t) show + (ext-sensi) + [4.85451 5.75995 4.23277 3.64352 4.29811 4.85451 6.05449 4.30902 3.02179 ] pdfxs + (t) show + (ivep) + [3.0327 5.4545 9.3272 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (s-) + [4.29811 3.63261 ] pdfxs + (t) show + (o) + [9.9381 ] pdfxs + (a) show + (ndmod) + [6.05449 10.5381 9.08711 5.75995 6.0654 ] pdfxs + (/) show + (refinf) + [4.2654 4.85451 7.81084 3.0327 6.05449 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (nf) + [10.5381 3.33815 ] pdfxs + (o) show + (rmem) + [8.749 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 10.2326 ] pdfxs + (o) show + (bjec) + [6.66539 3.32724 4.85451 4.8436 ] pdfxs + (t) show + (s,) + [4.30902 3.0327 ] pdfxs + -16.364 -585.996 m + (inf) + [3.0327 6.05449 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [10.0581 ] pdfxs + (a) show + (b) + [6.37085 ] pdfxs + (o) show + (utwhichmem) + [6.05449 8.24728 7.8763 6.0654 3.0327 4.53815 10.069 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 9.76355 ] pdfxs + (o) show + (bjec) + [6.66539 3.33815 4.8436 4.8436 ] pdfxs + (t) show + (s) + [8.31262 ] pdfxs + (a) show + (re) + [4.27631 8.8472 ] pdfxs + (a) show + (ccessedinatype-c) + [4.85451 4.8436 4.8436 4.30902 4.29811 4.85451 10.0581 3.0327 10.069 9.4581 3.93823 + 5.75995 6.35994 4.85451 3.63261 4.85451 ] pdfxs + (o) show + (nsis) + [6.05449 4.30902 3.02179 4.30902 ] pdfxs + (t) show + (entm) + [4.8436 5.75995 8.24728 9.08711 ] pdfxs + (a) show + (nner,) + [6.0654 6.05449 4.85451 4.2654 7.13448 ] pdfxs + (a) show + (ndinf) + [6.05449 10.069 3.0327 6.05449 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (-) show + -16.364 -607.918 m + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.30537 ] pdfxs + (a) show + (b) + [6.35994 ] pdfxs + (o) show + (utwhichmem) + [6.0654 7.49456 7.8763 6.05449 3.0327 4.54905 9.30537 9.09802 4.8436 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 9.01083 ] pdfxs + (o) show + (bjec) + [6.66539 3.32724 4.85451 4.8436 ] pdfxs + (t) show + (sc) + [7.54899 4.85451 ] pdfxs + (a) show + (nesc) + [9.30537 4.8436 4.30902 4.8436 ] pdfxs + (a) show + (pe) + [6.37085 8.09448 ] pdfxs + (t) show + (hepr) + [6.05449 8.10539 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (m) + [12.338 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysissc) + [3.0327 5.75995 4.29811 3.0327 7.54899 4.30902 4.8436 ] pdfxs + (o) show + (pe) + [6.35994 8.10539 ] pdfxs + (\() show + (thusm) + [4.23277 5.75995 6.0654 7.54899 9.08711 ] pdfxs + (a) show + (kingitille) + [5.75995 3.0327 6.0654 8.69447 3.0327 7.49456 3.0327 3.02179 3.0327 4.85451 ] pdfxs + (ga) show + (lf) + [6.27267 3.33815 ] pdfxs + (o) show + (r) show + -16.364 -629.841 m + (a) + [9.3381 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n) + [9.949 ] pdfxs + (t) show + (omodify) + [9.34901 9.08711 5.75995 6.05449 3.0327 3.33815 5.74904 ] pdfxs + (\)) show + (.This) + [8.63992 7.8763 6.0654 3.02179 8.19263 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisisstr) + [3.0327 5.74904 4.30902 3.0327 8.18172 3.0327 8.19263 4.30902 4.23277 4.27631 ] pdfxs + (o) show + (ngen) + [6.0654 9.3381 4.85451 6.05449 ] pdfxs + (o) show + (u) + [6.0654 ] pdfxs + (g) show + (h) + [9.949 ] pdfxs + (t) show + (oidentifydis) + [9.3381 3.0327 6.05449 4.85451 5.75995 4.23277 3.0327 3.33815 9.64355 6.0654 3.02179 + 4.30902 ] pdfxs + (t) show + (inctinst) + [3.02179 6.0654 4.8436 8.13819 3.0327 6.05449 4.30902 4.23277 ] pdfxs + (a) show + (nces) + [6.0654 4.8436 4.85451 8.19263 ] pdfxs + (o) show + (fhe) + [7.22175 6.05449 4.85451 ] pdfxs + (a) show + (p) show + 209.454 -657.201 m + (193) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (24) 25 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 0.000000 0.000000 translate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + 1 0 0 1 72 634.321 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N622 20.663 Tf + (C) + [16.7991 ] pdfxs + (hap) show + (ter9) + [9.07113 10.6001 17.2536 11.6333 ] pdfxs + 0 -49.813 m + /N622 24.787 Tf + (Co) + [20.1519 13.9304 ] pdfxs + (nc) show + (l) + [7.75841 ] pdfxs + (u) show + (sio) + [10.9806 7.75841 13.9304 ] pdfxs + (n) show + 0 -111.586 m + /N614 10.909 Tf + (Mem) + [10.0036 4.8436 9.08711 ] pdfxs + (o) show + (rysys) + [4.27631 9.3381 4.29811 5.75995 4.29811 ] pdfxs + (t) show + (emperf) + [4.85451 12.6653 6.35994 4.8436 4.27631 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (nceis) + [6.05449 4.85451 8.42175 3.0327 7.87627 ] pdfxs + (a) show + (nimp) + [9.63264 3.0327 9.08711 6.37085 ] pdfxs + (o) show + (r) + [4.2654 ] pdfxs + (ta) show + (ntf) + [5.75995 7.81092 3.33815 ] pdfxs + (a) show + (c) + [4.8436 ] pdfxs + (to) show + (rin) + [7.85446 3.0327 9.63264 ] pdfxs + (t) show + (heperf) + [6.05449 8.42175 6.37085 4.8436 4.27631 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nce) + [6.0654 4.8436 8.43266 ] pdfxs + (o) show + (fmodernsystems,) + [6.90539 9.08711 5.75995 6.05449 4.85451 4.27631 9.63264 4.29811 5.75995 4.30902 4.23277 + 4.85451 9.08711 4.30902 6.61085 ] pdfxs + (a) show + (ndis) + [6.0654 9.63264 3.0327 4.29811 ] pdfxs + 0 -133.509 m + (bec) + [6.35994 4.85451 4.8436 ] pdfxs + (o) show + (mingevenm) + [9.09802 3.02179 6.0654 9.75264 4.85451 5.4545 4.8436 10.3635 9.08711 ] pdfxs + (o) show + (recri) + [4.27631 9.14174 4.85451 4.27631 3.02179 ] pdfxs + (t) show + (ic) + [3.0327 4.8436 ] pdfxs + (a) show + (lover) + [7.33084 5.15996 5.4545 4.8436 8.57445 ] pdfxs + (t) show + (ime.This) + [3.0327 9.08711 4.8436 9.87264 7.8763 6.0654 3.0327 8.59626 ] pdfxs + (t) show + (hesisdescribes) + [6.0654 4.8436 4.30902 3.02179 8.60717 6.0654 4.8436 4.30902 4.8436 4.27631 3.02179 + 6.37085 4.8436 8.60717 ] pdfxs + (a) show + (ndev) + [6.05449 10.3635 4.85451 5.14904 ] pdfxs + (a) show + (lu) + [3.0327 6.05449 ] pdfxs + (at) show + (es) + [4.85451 4.29811 ] pdfxs + 368.509 -133.509 m + /N1025 10.909 Tf + (M) + [11.9126 ] pdfxs + (ac) show + (r) + [5.15995 ] pdfxs + (o) show + (s) + [4.95263 ] pdfxs + (cop) show + (ic) + [3.47997 10.5272 ] pdfxs + (Data) show + 0 -155.431 m + (St) show + (r) + [5.17085 ] pdfxs + (uctu) show + (reA) + [5.15995 11.5744 9.47995 ] pdfxs + (na) show + (lysis) + [3.49088 6.61079 4.95263 3.49088 10.7562 ] pdfxs + (an) show + (d) + [12.7854 ] pdfxs + (Opt) show + (imi) + [3.49088 10.4507 3.49088 ] pdfxs + (zat) show + (i) + [3.47997 ] pdfxs + (on) show + 212.888 -155.431 m + /N614 10.909 Tf + ({aset) + [10.5163 10.5054 4.30902 4.8436 9.30546 ] pdfxs + (o) show + (f) + [8.38902 ] pdfxs + (agg) show + (ressive,butpr) + [4.27631 4.8436 4.29811 4.30902 3.0327 5.4545 4.8436 8.44356 6.0654 6.05449 9.30546 + 6.05449 4.27631 ] pdfxs + (a) show + (c) + [4.8436 ] pdfxs + (t) show + (ic) + [3.0327 4.85451 ] pdfxs + (a) show + (l,) + [3.02179 8.44356 ] pdfxs + (t) show + (echniques) + [4.85451 4.53815 6.0654 6.05449 3.0327 5.75995 6.0654 4.8436 9.35989 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (at) show + 0 -177.354 m + (a) show + (ddress) + [6.0654 6.05449 4.27631 4.8436 4.30902 8.68353 ] pdfxs + (a) show + (nex) + [10.4399 4.85451 5.74904 ] pdfxs + (t) show + (remelyh) + [4.27631 4.8436 9.09802 4.8436 3.0327 10.1345 6.0654 ] pdfxs + (a) show + (rdpr) + [4.27631 10.4399 6.05449 4.27631 ] pdfxs + (o) show + (blemf) + [6.0654 3.0327 4.8436 13.4725 3.33815 ] pdfxs + (a) show + (cingc) + [4.8436 3.0327 6.05449 9.83992 4.85451 ] pdfxs + (o) show + (mpilersf) + [9.08711 6.05449 3.0327 3.0327 4.8436 4.27631 8.68353 3.33815 ] pdfxs + (o) show + (rmodernsys) + [8.65082 9.09802 5.74904 6.0654 4.8436 4.27631 10.4399 4.30902 5.75995 4.29811 ] pdfxs + (t) show + (ems:) + [4.8436 9.09802 4.29811 9.37083 ] pdfxs + (H) show + (owsh) + [5.14905 12.2617 4.30902 6.05449 ] pdfxs + (o) show + (uldc) + [6.0654 3.0327 10.4399 4.8436 ] pdfxs + (o) show + (mpilers) + [9.09802 6.05449 3.0327 3.0327 4.8436 4.27631 4.29811 ] pdfxs + 0 -199.276 m + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lyze) + [3.02179 5.75995 4.85451 8.47629 ] pdfxs + (a) show + (nd) + [6.0654 9.6981 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rmpr) + [4.27631 12.7198 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (ms) + [9.09802 7.93081 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (tbuild) + [7.87638 6.0654 6.05449 3.0327 3.0327 9.6981 ] pdfxs + (a) show + (nd) + [6.05449 9.6981 ] pdfxs + (t) show + (raverserecursived) + [4.27631 5.14905 5.4545 4.8436 4.27631 4.29811 8.4872 4.27631 4.8436 4.85451 6.05449 + 4.27631 4.29811 3.0327 5.4545 8.4872 6.0654 ] pdfxs + (a) show + (tas) + [4.23277 9.0981 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ures?) + [6.05449 4.27631 4.8436 4.30902 5.14905 ] pdfxs + 16.936 -221.199 m + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lyzing) + [3.02179 5.75995 4.85451 3.02179 6.0654 8.15993 ] pdfxs + (a) show + (nd) + [6.0654 8.75992 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rmingpr) + [4.2654 9.09802 3.02179 6.0654 8.15993 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms) + [9.08711 7.01445 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tuserecursived) + [6.94911 6.0654 4.29811 7.55994 4.27631 4.8436 4.85451 6.05449 4.27631 4.29811 3.0327 + 5.4545 7.55994 6.05449 ] pdfxs + (at) show + (as) + [8.15993 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (uresis) + [6.0654 4.27631 4.8436 7.01445 3.02179 7.01445 ] pdfxs + (a) show + (nex) + [8.77083 4.8436 5.75995 ] pdfxs + (t) show + (remelydi\016cul) + [4.27631 4.8436 9.08711 4.85451 3.0327 8.45447 6.0654 3.0327 9.08711 4.85451 6.05449 + 3.0327 ] pdfxs + (t) show + 0 -243.121 m + (pr) + [6.0654 4.2654 ] pdfxs + (o) show + (blem,p) + [6.0654 3.0327 4.8436 9.08711 6.92721 6.0654 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (t) show + (icul) + [3.0327 4.8436 6.0654 3.0327 ] pdfxs + (a) show + (rlywhen) + [4.2654 3.0327 9.59992 7.8763 6.0654 4.8436 9.90537 ] pdfxs + (ta) show + (r) + [4.27631 ] pdfxs + (g) show + (e) + [4.8436 ] pdfxs + (tt) show + (ingpr) + [3.0327 6.05449 9.29447 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (mswri) + [9.09802 8.13808 7.8763 4.27631 3.0327 ] pdfxs + (tt) show + (eninal) + [4.8436 9.90537 3.0327 9.89446 9.29447 3.0327 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (u) + [6.05449 ] pdfxs + (ag) show + (elikeC) + [8.69447 3.0327 3.02179 5.4545 8.69447 11.7163 ] pdfxs + (o) show + (rC++.) + [8.11627 7.8763 8.4872 8.4872 8.49811 ] pdfxs + (A) show + (spec) + [4.29811 6.35994 4.85451 4.8436 ] pdfxs + (t) show + (s) + [8.14899 ] pdfxs + (o) show + (f) show + 0 -265.044 m + (t) show + (hispr) + [6.05449 3.0327 7.94172 6.0654 4.2654 ] pdfxs + (o) show + (bleminclude:) + [6.0654 3.0327 4.8436 12.7307 3.02179 6.0654 4.85451 3.02179 6.0654 6.05449 4.85451 + 3.0327 ] pdfxs + 16.364 -292.998 m + /N1028 10.909 Tf + (\017) show + 27.273 -292.998 m + /N614 10.909 Tf + (TheCf) + [7.8763 6.0654 10.2436 13.2762 3.33815 ] pdfxs + (a) show + (mily) + [9.08711 3.0327 3.0327 11.149 ] pdfxs + (o) show + (fl) + [8.7381 3.0327 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (esisveryc) + [4.8436 9.70898 3.02179 9.70898 5.4545 4.8436 4.27631 11.1599 4.8436 ] pdfxs + (o) show + (mplex,supp) + [9.08711 6.0654 3.0327 4.8436 5.75995 8.86901 4.30902 6.05449 6.0654 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (t) show + (sexcep) + [9.69807 4.8436 5.75995 4.85451 4.8436 6.0654 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (ns,unpredic) + [6.0654 4.29811 8.86901 6.0654 6.0654 6.05449 4.27631 4.8436 6.0654 3.0327 4.8436 + ] pdfxs + (ta) show + (blesetjmp) + [6.0654 3.02179 10.2545 4.29811 4.85451 4.23277 3.33815 9.08711 6.0654 ] pdfxs + (/) show + (-) show + 27.273 -314.92 m + (l) + [3.0327 ] pdfxs + (o) show + (ngjmpc) + [6.05449 5.75995 3.33815 9.08711 9.46901 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (o) show + (l\row,type-uns) + [6.43631 6.0654 5.14905 7.8763 6.47994 3.93823 5.75995 6.35994 4.85451 3.63261 6.0654 + 6.05449 4.30902 ] pdfxs + (a) show + (fep) + [3.32724 8.25811 6.35994 ] pdfxs + (o) show + (interc) + [3.0327 5.75995 4.23277 4.85451 7.67992 4.8436 ] pdfxs + (a) show + (s) + [4.29811 ] pdfxs + (t) show + (s) + [7.71263 ] pdfxs + (a) show + (nduni) + [6.05449 9.46901 6.05449 6.0654 3.0327 ] pdfxs + (o) show + (ns,v) + [6.05449 4.30902 6.47994 5.14904 ] pdfxs + (a) show + (ri) + [4.27631 3.02179 ] pdfxs + (a) show + (ble) + [6.0654 3.0327 8.2472 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (g) show + (umentfunc) + [6.05449 9.09802 4.8436 5.75995 7.64729 3.32724 6.0654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns,e) + [6.05449 4.30902 6.47994 4.8436 ] pdfxs + (t) show + (c.) + [4.85451 3.0327 ] pdfxs + 27.273 -336.843 m + (With) + [11.2144 3.0327 4.23277 10.309 ] pdfxs + (t) show + (heexcep) + [6.05449 9.09811 4.8436 5.75995 4.8436 4.85451 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [10.309 ] pdfxs + (o) show + (f) + [7.57084 ] pdfxs + (ga) show + (rb) + [4.27631 6.05449 ] pdfxs + (ag) show + (ec) + [9.09811 4.8436 ] pdfxs + (o) show + (llec) + [3.0327 3.0327 4.8436 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n,) + [6.0654 7.41812 ] pdfxs + (t) show + (heCl) + [6.0654 9.0872 12.1199 3.0327 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (ef) + [9.0872 3.33815 ] pdfxs + (a) show + (milyprovidesasuperset) + [9.08711 3.0327 3.0327 10.0035 6.05449 4.27631 5.14905 5.75995 3.0327 6.05449 4.85451 + 8.54171 9.6981 4.29811 6.0654 6.35994 4.85451 4.2654 4.30902 4.8436 8.48728 ] pdfxs + (o) show + (f) + [7.57084 ] pdfxs + (t) show + (he) + [6.0654 4.8436 ] pdfxs + 27.273 -358.765 m + (ch) + [4.54905 6.05449 ] pdfxs + (a) show + (llen) + [3.0327 3.0327 4.8436 6.0654 ] pdfxs + (g) show + (esf) + [4.8436 7.94172 3.33815 ] pdfxs + (a) show + (cedby) + [4.8436 4.8436 9.6981 5.75995 9.39264 ] pdfxs + (ot) show + (herl) + [6.0654 4.8436 7.909 3.0327 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (u) + [6.05449 ] pdfxs + (ag) show + (es,such) + [4.85451 4.29811 6.6654 4.30902 6.05449 4.54905 9.6981 ] pdfxs + (a) show + (sM) + [7.93081 10.0036 ] pdfxs + (L) show + (,) + [6.6654 ] pdfxs + (J) show + (av) + [5.14905 5.15995 ] pdfxs + (a) show + (,) + [6.6654 ] pdfxs + (a) show + (ndSm) + [6.05449 9.6981 6.0654 9.08711 ] pdfxs + (a) show + (ll) + [3.0327 3.0327 ] pdfxs + (ta) show + (lk.) + [3.02179 5.75995 3.0327 ] pdfxs + 16.364 -387.679 m + /N1028 10.909 Tf + (\017) show + 27.273 -387.679 m + /N614 10.909 Tf + (\\) show + (Pr) + [7.42902 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms") + [9.08711 4.30902 10.069 ] pdfxs + (a) show + (reinheren) + [4.2654 9.46901 3.02179 6.0654 6.0654 4.8436 4.27631 4.8436 5.75995 ] pdfxs + (t) show + (lyinc) + [3.0327 10.3635 3.0327 6.0654 4.8436 ] pdfxs + (o) show + (mple) + [9.08711 6.0654 3.0327 4.8436 ] pdfxs + (t) show + (echunks) + [9.4581 4.54905 5.75995 6.05449 6.0654 5.75995 8.91262 ] pdfxs + (o) show + (fcodewhich) + [7.95266 4.8436 5.75995 6.05449 9.46901 7.8763 6.0654 3.02179 4.54905 10.6799 ] pdfxs + (a) show + (re) + [4.2654 9.46901 ] pdfxs + (o) show + (f) + [3.32724 ] pdfxs + (t) show + (enbuiltusingex) + [4.8436 10.6799 6.05449 6.0654 3.0327 3.0327 8.84728 6.0654 4.29811 3.0327 6.0654 + 10.069 4.8436 5.75995 ] pdfxs + (t) show + (ern) + [4.8436 4.27631 6.0654 ] pdfxs + (a) show + (l) show + 27.273 -409.602 m + (libr) + [3.0327 3.0327 6.05449 4.27631 ] pdfxs + (a) show + (ries,dyn) + [4.2654 3.0327 4.85451 4.29811 7.50539 6.0654 5.74904 6.0654 ] pdfxs + (a) show + (mic) + [9.08711 3.0327 4.85451 ] pdfxs + (a) show + (llyl) + [3.02179 3.0327 10.069 3.0327 ] pdfxs + (oa) show + (dedlibr) + [6.05449 4.85451 10.3635 3.0327 3.0327 6.05449 4.27631 ] pdfxs + (a) show + (ries,e) + [4.27631 3.02179 4.85451 4.29811 7.50539 4.85451 ] pdfxs + (t) show + (c.C) + [4.8436 9.89446 7.8763 ] pdfxs + (o) show + (mpilers) + [9.08711 6.0654 3.0327 3.02179 4.85451 4.27631 8.60717 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [8.55274 ] pdfxs + (a) show + (ssume) + [4.30902 4.29811 6.0654 9.08711 9.15265 ] pdfxs + (t) show + (heyhaveknowled) + [6.0654 4.8436 10.069 6.05449 5.15996 5.4545 9.15265 5.75995 6.05449 5.14905 7.88721 + 3.02179 4.85451 6.05449 ] pdfxs + (g) show + (e) + [9.16356 ] pdfxs + (o) show + (f) show + 27.273 -431.524 m + (t) show + (hewh) + [6.05449 9.53447 7.88721 6.05449 ] pdfxs + (o) show + (lepr) + [3.0327 9.53447 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (m,) + [9.08711 7.97448 ] pdfxs + (o) show + (rc) + [8.95627 4.85451 ] pdfxs + (o) show + (mpilers) + [9.08711 6.0654 3.02179 3.0327 4.85451 4.2654 8.98898 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (trequirech) + [8.92364 4.27631 4.8436 5.75995 6.05449 3.0327 4.27631 9.53447 4.53815 6.0654 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (es) + [4.8436 8.98898 ] pdfxs + (t) show + (o) + [10.1345 ] pdfxs + (a) show + (n) + [10.7454 ] pdfxs + (I) show + (S) + [6.0654 ] pdfxs + (V) show + ('sbuildsys) + [3.0327 8.98898 6.05449 6.0654 3.02179 3.0327 10.7454 4.30902 5.74904 4.30902 ] pdfxs + (t) show + (em,) + [4.8436 9.09802 7.97448 ] pdfxs + (g) show + (ener) + [4.8436 6.0654 4.8436 4.27631 ] pdfxs + (a) show + (lly) + [3.0327 3.02179 5.75995 ] pdfxs + 27.273 -453.447 m + (havepo) + [6.0654 5.14905 5.4545 8.4872 6.35994 5.75995 ] pdfxs + (o) show + (r) + [7.909 ] pdfxs + (a) show + (ccept) + [4.8436 4.85451 4.8436 6.0654 4.23277 ] pdfxs + (a) show + (ncef) + [6.0654 4.85451 8.47629 3.33815 ] pdfxs + (o) show + (r) + [7.909 ] pdfxs + (a) show + (ny) + [5.75995 5.74904 ] pdfxs + (t) show + (hing) + [6.0654 3.0327 6.05449 9.0981 ] pdfxs + (o) show + (ther) + [4.23277 6.0654 4.8436 7.909 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (nsystembenchm) + [9.6981 4.29811 5.75995 4.30902 4.23277 4.85451 12.7307 6.35994 4.8436 6.0654 4.54905 + 6.05449 9.08711 ] pdfxs + (a) show + (rks.) + [4.27631 5.75995 4.29811 3.0327 ] pdfxs + 16.364 -482.361 m + /N1028 10.909 Tf + (\017) show + 27.273 -482.361 m + /N614 10.909 Tf + (Pr) + [7.42902 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms) + [9.08711 7.69081 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tuserecursived) + [7.63638 6.05449 4.30902 8.22539 4.27631 4.85451 4.8436 6.0654 4.2654 4.30902 3.02179 + 5.4545 8.23629 6.0654 ] pdfxs + (at) show + (as) + [8.83629 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ures) + [6.05449 4.27631 4.85451 7.6799 ] pdfxs + (o) show + (f) + [3.33815 ] pdfxs + (t) show + (endosowi) + [4.8436 9.44719 6.0654 8.83629 4.29811 8.8472 7.8763 3.0327 ] pdfxs + (t) show + (hlayers) + [9.44719 3.02179 5.15996 5.4545 4.8436 4.27631 7.6799 ] pdfxs + (o) show + (fhelperr) + [6.71994 6.0654 4.8436 3.0327 6.35994 4.85451 7.6581 4.27631 ] pdfxs + (o) show + (u) + [6.05449 ] pdfxs + (t) show + (ines\(which) + [3.0327 6.05449 4.85451 7.69081 4.23277 7.88721 6.05449 3.0327 4.54905 6.0654 ] pdfxs + 27.273 -504.284 m + (a) show + (re) + [4.27631 7.94175 ] pdfxs + (o) show + (f) + [3.32724 ] pdfxs + (t) show + (enrecursive) + [4.85451 9.15265 4.27631 4.8436 4.85451 6.05449 4.27631 4.29811 3.0327 5.4545 4.85451 + ] pdfxs + (\)) show + (,usefuncti) + [6.22904 6.0654 4.29811 7.94175 3.33815 6.0654 6.05449 4.85451 4.23277 3.0327 ] pdfxs + (o) show + (np) + [9.16356 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (ersf) + [4.85451 4.27631 7.39627 3.32724 ] pdfxs + (o) show + (r) + [7.37446 ] pdfxs + (a) show + (bs) + [6.05449 4.30902 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (c) + [4.85451 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n,use) + [6.05449 6.23994 6.05449 4.30902 4.8436 ] pdfxs + 320.386 -504.284 m + /N722 10.909 Tf + (void*) show + 349.022 -504.284 m + /N614 10.909 Tf + ('sf) + [3.0327 7.39627 3.33815 ] pdfxs + (o) show + (rtype) + [7.36355 3.93823 5.75995 6.35994 7.95266 ] pdfxs + (g) show + (enericity,e) + [4.8436 6.0654 4.8436 4.27631 3.0327 4.8436 3.0327 3.93823 4.84359 6.23994 4.8436 + ] pdfxs + (t) show + (c.) + [4.85451 3.0327 ] pdfxs + 16.364 -533.198 m + /N1028 10.909 Tf + (\017) show + 27.273 -533.198 m + /N614 10.909 Tf + (Log) show + (ic) + [3.0327 4.8436 ] pdfxs + (a) show + (llydistinctins) + [3.0327 3.0327 10.309 6.05449 3.0327 4.30902 4.23277 3.0327 6.0654 4.8436 8.79273 + 3.0327 6.0654 4.29811 ] pdfxs + (ta) show + (nces) + [6.0654 4.8436 4.8436 8.85807 ] pdfxs + (o) show + (frecursived) + [7.8872 4.2654 4.85451 4.8436 6.0654 4.27631 4.29811 3.0327 5.4545 9.39265 6.0654 + ] pdfxs + (at) show + (astruc) + [10.0035 4.30902 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ures) + [6.0654 4.2654 4.85451 8.84717 ] pdfxs + (a) show + (re) + [4.27631 9.40356 ] pdfxs + (o) show + (f) + [3.32724 ] pdfxs + (t) show + (enm) + [4.8436 10.6145 9.09802 ] pdfxs + (a) show + (nipul) + [6.05449 3.0327 6.05449 6.0654 3.0327 ] pdfxs + (at) show + (edbyc) + [4.8436 10.6145 5.75995 10.309 4.8436 ] pdfxs + (o) show + (mm) + [9.08711 9.09802 ] pdfxs + (o) show + (n) show + 27.273 -555.121 m + (r) + [4.27631 ] pdfxs + (o) show + (u) + [6.05449 ] pdfxs + (t) show + (inesin) + [3.0327 6.05449 4.85451 7.94172 3.02179 9.6981 ] pdfxs + (t) show + (hepr) + [6.0654 8.4872 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (m,requiringpowerful) + [9.08711 6.6654 4.27631 4.8436 5.75995 6.05449 3.0327 4.27631 3.0327 6.05449 9.0981 + 6.35994 5.14905 7.58175 4.8436 4.27631 3.32724 6.0654 6.6654 ] pdfxs + (a) show + (nalysis) + [6.05449 5.46541 3.02179 5.75995 4.30902 3.02179 7.94172 ] pdfxs + (t) show + (echniquestodistin) + [4.8436 4.54905 6.0654 6.05449 3.0327 5.75995 6.05449 4.85451 7.94172 4.23277 9.0981 + 6.05449 3.0327 4.30902 4.23277 3.0327 6.0654 ] pdfxs + (g) show + (uishthem.) + [6.05449 3.0327 4.30902 9.6981 4.23277 6.0654 4.8436 9.09802 3.0327 ] pdfxs + 225.818 -582.481 m + (192) show + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 72 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (l) + [3.0327 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (es,) + [4.8436 4.30902 7.66902 ] pdfxs + (a) show + (nd) + [6.05449 10.5054 ] pdfxs + (t) show + (hetypesys) + [6.05449 9.29447 3.93823 5.74904 6.37085 9.28356 4.30902 5.74904 4.30902 ] pdfxs + (t) show + (emdoesn) + [4.8436 13.5271 6.0654 5.75995 4.8436 8.73808 6.0654 ] pdfxs + (ot) show + 203.329 0 m + /N634 10.909 Tf + (p) show + (r) + [4.04721 ] pdfxs + (eve) show + (nt) + [6.13082 3.62179 ] pdfxs + 243.232 0 m + /N614 10.909 Tf + (representingcodewi) + [4.27631 4.8436 6.0654 4.2654 4.85451 4.29811 4.85451 5.75995 4.23277 3.0327 6.0654 + 9.89446 4.8436 5.75995 6.05449 9.29447 7.8763 3.0327 ] pdfxs + (t) show + (hlit) + [10.4945 3.0327 3.0327 4.23277 ] pdfxs + (t) show + (letypeinf) + [3.0327 9.28356 3.94914 5.74904 6.37085 9.28356 3.0327 6.05449 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n.) + [6.05449 3.0327 ] pdfxs + 0 -21.922 m + (Sec) + [6.0654 4.8436 4.8436 ] pdfxs + (o) show + (nd,itdoesn) + [6.0654 6.0654 7.22175 3.02179 8.33456 6.05449 5.75995 4.8436 8.38899 6.05449 ] pdfxs + (o) show + (timp) + [8.32365 3.0327 9.09802 6.35994 ] pdfxs + (o) show + (se) + [4.29811 8.93447 ] pdfxs + (a) show + (nyp) + [5.75995 9.83991 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (icul) + [3.0327 4.8436 6.0654 3.02179 ] pdfxs + (a) show + (rrun) + [8.35627 4.27631 6.05449 5.75995 ] pdfxs + (t) show + (imerequiremen) + [3.0327 9.08711 8.93447 4.2654 4.85451 5.75995 6.05449 3.0327 4.27631 4.8436 9.08711 + 4.85451 5.75995 ] pdfxs + (t) show + (s) + [8.37808 ] pdfxs + (o) show + (rsem) + [8.35627 4.29811 4.85451 9.08711 ] pdfxs + (a) show + (n) + [5.75995 ] pdfxs + (t) show + (ics) + [3.0327 4.8436 8.38899 ] pdfxs + (o) show + (npr) + [10.1345 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (ms.) + [9.09802 4.29811 9.2181 ] pdfxs + (N) show + (ev-) + [4.8436 5.75995 3.63261 ] pdfxs + 0 -43.845 m + (er) + [4.8436 4.27631 ] pdfxs + (t) show + (heless,it'simp) + [6.0654 4.8436 3.0327 4.8436 4.30902 4.29811 8.71629 3.0327 4.23277 3.0327 9.57807 + 3.0327 9.08711 6.37085 ] pdfxs + (o) show + (r) + [4.2654 ] pdfxs + (ta) show + (nt) + [5.75995 9.51273 ] pdfxs + (t) show + (on) + [10.7235 6.0654 ] pdfxs + (ot) show + (e) + [10.1236 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [9.51273 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mis) + [15.2727 3.0327 4.29811 ] pdfxs + 237.139 -43.845 m + /N634 10.909 Tf + (n) + [6.13082 ] pdfxs + (o) show + (tint) + [9.03266 3.34914 6.13082 3.62179 ] pdfxs + (e) show + (n) + [6.14173 ] pdfxs + (d) show + (edtobeauni) + [4.46185 10.9854 3.62179 10.9854 4.46185 10.4182 10.9854 5.85816 6.13082 3.34914 ] pdfxs + (ve) show + (r) + [4.60356 ] pdfxs + (sa) show + (lc) + [8.19262 4.46185 ] pdfxs + (o) show + (m) + [8.92348 ] pdfxs + (p) show + (il) + [3.34914 2.78176 ] pdfxs + (e) show + (rIR) + [10.0144 4.19998 7.9527 ] pdfxs + 449.697 -43.845 m + /N614 10.909 Tf + (.) + [8.30175 ] pdfxs + (I) show + (n) show + 0 -65.768 m + (p) + [6.0654 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (t) show + (icul) + [3.0327 4.8436 6.0654 3.0327 ] pdfxs + (a) show + (r,) + [4.2654 7.95266 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mdoesn) + [14.6618 6.05449 5.75995 4.8436 8.96716 6.0654 ] pdfxs + (o) show + (trepresenthi) + [8.90182 4.27631 4.8436 6.0654 4.2654 4.85451 4.29811 4.85451 5.74904 8.90182 6.0654 + 3.0327 ] pdfxs + (g) show + (h-levell) + [6.05449 3.64352 3.0327 4.8436 5.4545 4.8436 7.69084 3.0327 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (u) + [6.05449 ] pdfxs + (ag) show + (efe) + [9.51265 3.33815 4.8436 ] pdfxs + (at) show + (uresdirec) + [6.0654 4.2654 4.85451 8.95625 6.0654 3.0327 4.2654 4.85451 4.8436 ] pdfxs + (t) show + (ly) + [3.0327 10.4181 ] pdfxs + (\() show + (soitc) + [4.29811 10.1235 3.02179 8.91273 4.8436 ] pdfxs + (a) show + (nn) + [6.0654 6.05449 ] pdfxs + (o) show + (tbeused) + [8.90182 6.37085 9.50174 6.0654 4.29811 4.85451 6.0654 ] pdfxs + 0 -87.69 m + (f) + [3.33815 ] pdfxs + (o) show + (rs) + [7.83264 4.29811 ] pdfxs + (o) show + (mel) + [9.09802 8.41084 3.0327 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (e-dependent) + [4.8436 3.64352 6.05449 4.85451 6.35994 4.85451 6.05449 6.0654 4.8436 5.75995 7.81092 + ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (ns) + [6.0654 4.29811 ] pdfxs + (\)) show + (,n) + [6.61085 6.0654 ] pdfxs + (o) show + (rdoesitc) + [7.83264 6.0654 5.75995 4.8436 7.86536 3.0327 7.81092 4.8436 ] pdfxs + (a) show + (p) + [6.0654 ] pdfxs + (t) show + (urem) + [6.05449 4.27631 8.41084 9.09802 ] pdfxs + (a) show + (chine-dependentfe) + [4.53815 6.0654 3.0327 6.05449 4.85451 3.63261 6.0654 4.8436 6.35994 4.85451 6.05449 + 6.0654 4.8436 5.75995 7.81092 3.32724 4.85451 ] pdfxs + (at) show + (ures) + [6.05449 4.27631 4.8436 7.87627 ] pdfxs + (o) show + (r) show + 0 -109.613 m + (codesequencesusedbyb) + [4.8436 5.75995 6.0654 8.4872 4.29811 4.8436 5.75995 6.0654 4.8436 6.0654 4.8436 + 4.85451 7.93081 6.0654 4.30902 4.8436 9.6981 5.75995 9.39264 6.05449 ] pdfxs + (a) show + (ck-endcode) + [4.54905 5.75995 3.63261 4.85451 6.05449 9.6981 4.8436 5.75995 6.0654 8.4872 ] pdfxs + (g) show + (ener) + [4.8436 6.0654 4.8436 4.27631 ] pdfxs + (ato) show + (rs) + [4.2654 7.94172 ] pdfxs + (\() show + (itmustbelowered) + [3.0327 7.87638 8.79257 6.05449 4.30902 7.87638 6.35994 8.4872 3.0327 5.14905 7.57085 + 4.85451 4.2654 4.85451 9.6981 ] pdfxs + (t) show + (odos) + [9.08719 6.0654 9.08719 4.29811 ] pdfxs + (o\)) show + (.) show + 16.937 -131.535 m + (Bec) + [7.72349 4.85451 4.8436 ] pdfxs + (a) show + (use) + [6.0654 4.29811 8.02902 ] pdfxs + (o) show + (f) + [6.51267 ] pdfxs + (t) show + (hedi\013ering) + [6.0654 8.02902 6.0654 3.02179 6.37077 4.8436 4.27631 3.0327 6.05449 8.63993 ] pdfxs + (goa) show + (ls) + [3.02179 7.49445 ] pdfxs + (a) show + (ndrepresen) + [6.05449 9.23992 4.27631 4.8436 6.0654 4.27631 4.8436 4.30902 4.8436 5.75995 ] pdfxs + (tat) show + (i) + [3.02179 ] pdfxs + (o) show + (ns,) + [6.0654 4.29811 3.0327 ] pdfxs + 256.75 -131.535 m + /N634 10.909 Tf + (LLVMiscom) + [6.83993 5.72721 8.11625 13.2654 3.33823 7.95262 4.45094 5.58542 8.91258 ] pdfxs + (p) show + (l) + [2.79267 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + (a) show + (ryto) + [4.60356 8.78166 3.62179 9.06539 ] pdfxs + (h) show + (i) + [3.33823 ] pdfxs + (g) show + (h-l) + [5.58542 3.89453 2.79267 ] pdfxs + (eve) show + (l) + [6.27264 ] pdfxs + (v) show + (irtu) + [3.34914 4.59266 3.62179 5.85816 ] pdfxs + (a) show + (l) show + 0 -153.458 m + (m) + [8.92348 ] pdfxs + (ach) show + (in) + [3.34914 6.13082 ] pdfxs + (es) show + 47.779 -153.458 m + /N614 10.909 Tf + (\() show + (e.) + [4.8436 3.0327 ] pdfxs + (g) show + (.,Sm) + [3.0327 6.78539 6.05449 9.09802 ] pdfxs + (a) show + (llT) + [3.0327 3.02179 6.97085 ] pdfxs + (a) show + (lk[) + [3.0327 9.49083 3.0327 ] pdfxs + (47) show + (],Self[) + [3.02179 6.78539 6.0654 4.8436 3.0327 7.06903 3.02179 ] pdfxs + (137) show + (],) + [3.0327 6.78539 ] pdfxs + (JV) show + (M[) + [13.7345 3.0327 ] pdfxs + (93) show + (],Micr) + [3.02179 6.78539 10.0036 3.0327 4.8436 4.27631 ] pdfxs + (o) show + (s) + [4.29811 ] pdfxs + (o) show + (f) + [3.33815 ] pdfxs + (t) show + ('sC) + [3.0327 8.02899 7.8763 ] pdfxs + (L) show + (I[) + [7.66894 3.0327 ] pdfxs + (95) show + (],) + [3.0327 6.78539 ] pdfxs + (a) show + (nd) + [6.05449 9.79628 ] pdfxs + (ot) show + (hers) + [6.05449 4.85451 4.27631 4.29811 ] pdfxs + (\)) show + (,) + [6.78539 ] pdfxs + (a) show + (nd) + [6.05449 6.0654 ] pdfxs + 436.968 -153.458 m + /N634 10.909 Tf + (n) + [6.13082 ] pdfxs + (o) show + (t) + [7.61449 ] pdfxs + (a) show + (n) show + 0 -175.38 m + (a) show + (lt) + [2.79267 3.62179 ] pdfxs + (e) show + (rn) + [4.60356 6.13082 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (v) show + (etoth) + [9.42545 3.6327 9.98175 3.62179 5.58542 ] pdfxs + (e) show + (se) + [4.45083 9.43635 ] pdfxs + (s) show + (yst) + [5.30169 4.45083 3.6327 ] pdfxs + (e) show + (m) + [8.91258 ] pdfxs + (s) show + 132.7 -175.38 m + /N614 10.909 Tf + (.) + [9.54537 ] pdfxs + (I) show + (tdi\013ersfr) + [8.43274 6.0654 3.02179 6.37077 4.8436 4.27631 8.49808 3.32724 4.27631 ] pdfxs + (o) show + (m) + [13.2762 ] pdfxs + (t) show + (hesein) + [6.0654 4.8436 4.30902 9.03265 3.0327 10.2545 ] pdfxs + (t) show + (hreekeyways.Firs) + [6.05449 4.27631 4.8436 9.04356 5.4545 4.85451 9.949 7.57085 5.14905 5.75995 4.29811 + 9.54537 7.12357 3.0327 4.27631 4.29811 ] pdfxs + (t) show + (,) + [7.36357 ] pdfxs + (L) show + (L) + [5.59632 ] pdfxs + (V) show + (Mh) + [14.1927 6.0654 ] pdfxs + (a) show + (snon) + [8.49808 6.05449 9.64355 6.0654 ] pdfxs + (ot) show + (i) + [3.0327 ] pdfxs + (o) show + (n) show + 0 -197.303 m + (o) show + (fhi) + [7.79993 6.0654 3.0327 ] pdfxs + (g) show + (h-levelc) + [6.05449 3.63261 3.0327 4.85451 5.4545 4.8436 7.50539 4.8436 ] pdfxs + (o) show + (ns) + [6.0654 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ssuch) + [8.7708 4.29811 6.0654 4.53815 10.5381 ] pdfxs + (a) show + (scl) + [8.7708 4.8436 3.0327 ] pdfxs + (a) show + (sses,inheri) + [4.29811 4.30902 4.8436 4.30902 7.70175 3.0327 6.0654 6.05449 4.85451 4.2654 3.0327 + ] pdfxs + (ta) show + (nce,) + [6.0654 4.8436 4.85451 7.70175 ] pdfxs + (o) show + (rexcep) + [8.73809 4.85451 5.75995 4.8436 4.85451 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n-h) + [6.05449 3.64352 6.05449 ] pdfxs + (a) show + (ndlingsem) + [6.0654 6.05449 3.0327 3.0327 6.0654 9.91628 4.30902 4.8436 9.08711 ] pdfxs + (a) show + (n) + [5.75995 ] pdfxs + (t) show + (ics,evenwhen) + [3.0327 4.8436 4.30902 7.70175 4.85451 5.4545 4.8436 10.5381 7.8763 6.05449 4.85451 + 6.0654 ] pdfxs + 0 -219.225 m + (c) + [4.8436 ] pdfxs + (o) show + (mpilings) + [9.09802 6.05449 3.0327 3.0327 3.0327 6.05449 9.10901 4.29811 ] pdfxs + (o) show + (urcel) + [6.0654 4.2654 4.85451 8.4872 3.0327 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (u) + [6.05449 ] pdfxs + (ag) show + (eswi) + [4.85451 7.94172 7.88721 3.02179 ] pdfxs + (t) show + (h) + [9.709 ] pdfxs + (t) show + (hesefe) + [6.0654 4.8436 4.29811 8.49811 3.33815 4.8436 ] pdfxs + (at) show + (ures.Sec) + [6.0654 4.2654 4.85451 4.29811 7.90902 6.0654 4.8436 4.85451 ] pdfxs + (o) show + (nd,) + [6.05449 6.0654 6.6763 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mdoesn) + [13.6472 6.05449 5.75995 4.85451 7.94172 6.0654 ] pdfxs + (o) show + (tspecifyarun) + [7.88729 4.29811 6.37085 4.8436 4.85451 3.02179 3.33815 9.40355 9.0981 4.27631 6.05449 + 5.75995 ] pdfxs + (t) show + (imesys) + [3.0327 9.08711 8.49811 4.29811 5.75995 4.30902 ] pdfxs + (t) show + (em) + [4.8436 9.08711 ] pdfxs + 0 -241.148 m + (o) show + (rp) + [7.42901 6.0654 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (t) show + (icul) + [3.0327 4.8436 6.0654 3.0327 ] pdfxs + (a) show + (r) + [7.42901 ] pdfxs + (o) show + (bjectmodel:itislow-levelen) + [6.66539 3.33815 4.8436 4.85451 7.39638 9.08711 5.75995 6.0654 4.8436 3.0327 7.6363 + 3.0327 7.39638 3.0327 7.46172 3.0327 5.14905 7.8763 3.64352 3.02179 4.85451 5.4545 + 4.8436 6.1854 4.85451 6.05449 ] pdfxs + (o) show + (u) + [6.0654 ] pdfxs + (g) show + (h) + [9.2181 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [7.40729 ] pdfxs + (t) show + (herun) + [6.05449 8.00721 4.27631 6.05449 5.75995 ] pdfxs + (t) show + (imesys) + [3.0327 9.08711 8.00721 4.30902 5.74904 4.30902 ] pdfxs + (t) show + (emf) + [4.8436 12.2507 3.33815 ] pdfxs + (o) show + (rap) + [7.42901 8.6072 6.0654 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (t) show + (icul) + [3.0327 4.8436 6.0654 3.0327 ] pdfxs + (a) show + (rl) + [7.42901 3.0327 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (e) show + 0 -263.07 m + (c) + [4.8436 ] pdfxs + (a) show + (nbeimplemen) + [10.3963 6.35994 9.17447 3.0327 9.08711 6.0654 3.0327 4.8436 9.08711 4.85451 5.75995 + ] pdfxs + (t) show + (edin) + [4.8436 10.3854 3.0327 10.3854 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mi) + [14.3345 3.02179 ] pdfxs + (t) show + (self.) + [4.30902 4.8436 3.0327 3.32724 9.95991 ] pdfxs + (I) show + (ndeed,) + [6.05449 6.0654 4.8436 4.85451 6.05449 7.53812 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mc) + [14.3236 4.8436 ] pdfxs + (a) show + (nbeused) + [10.3963 6.35994 9.17447 6.0654 4.29811 4.85451 10.3854 ] pdfxs + (to) show + 332.697 -263.07 m + /N634 10.909 Tf + (impl) + [3.34914 8.91258 5.58542 2.78176 ] pdfxs + (e) show + (m) + [8.92348 ] pdfxs + (e) show + (nt) + [6.13082 3.62179 ] pdfxs + 386.369 -263.07 m + /N614 10.909 Tf + (hi) + [6.0654 3.02179 ] pdfxs + (g) show + (h-levelvir) + [6.0654 3.63261 3.0327 4.85451 5.4545 4.8436 7.35266 5.75995 3.0327 4.27631 ] pdfxs + (t) show + (u) + [6.05449 ] pdfxs + (a) show + (l) show + 0 -284.993 m + (m) + [9.08711 ] pdfxs + (a) show + (chines.Third,) + [4.54905 6.0654 3.02179 6.0654 4.8436 4.30902 7.52721 7.8763 6.0654 3.0327 4.2654 + 6.0654 5.8254 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mdoesn) + [12.6 6.05449 5.75995 4.8436 6.89446 6.0654 ] pdfxs + (o) show + (t) + [6.82911 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (a) show + (n) + [5.74904 ] pdfxs + (t) show + (eetypes) + [4.85451 7.43994 3.93823 5.75995 6.35994 7.43994 4.29811 ] pdfxs + (a) show + (fety,mem) + [3.33815 4.8436 3.94914 4.84359 5.83631 9.08711 4.8436 9.09802 ] pdfxs + (o) show + (rys) + [4.2654 8.35629 4.29811 ] pdfxs + (a) show + (fety,) + [3.33815 4.8436 3.93823 4.8545 5.8254 ] pdfxs + (o) show + (rl) + [6.87265 3.02179 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (u) + [6.05449 ] pdfxs + (ag) show + (ein) + [7.43994 3.0327 5.75995 ] pdfxs + (t) show + (er) + [4.8436 4.27631 ] pdfxs + (o) show + (per) + [6.35994 4.85451 4.27631 ] pdfxs + (a) show + (bility) + [6.05449 3.0327 3.0327 3.02179 3.94914 5.75995 ] pdfxs + 0 -306.915 m + (a) show + (nym) + [5.75995 9.39264 9.08711 ] pdfxs + (o) show + (re) + [4.27631 8.4872 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (n) + [9.6981 ] pdfxs + (t) show + (he) + [6.0654 8.47629 ] pdfxs + (a) show + (ssemblyl) + [4.30902 4.29811 4.85451 8.78166 6.0654 3.0327 9.39264 3.02179 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (ef) + [8.47629 3.33815 ] pdfxs + (o) show + (raphysic) + [7.909 9.08719 6.0654 5.75995 5.74904 4.30902 3.0327 4.8436 ] pdfxs + (a) show + (lprocess) + [6.6654 6.0654 4.2654 5.75995 4.85451 4.8436 4.30902 4.29811 ] pdfxs + (o) show + (rdoes.) + [7.909 6.0654 5.74904 4.85451 4.29811 3.0327 ] pdfxs + 16.936 -328.838 m + (The) + [7.8763 6.0654 7.61448 ] pdfxs + (L) show + (L) + [5.59632 ] pdfxs + (V) show + (Mc) + [12.7636 4.85451 ] pdfxs + (o) show + (mpilerfr) + [9.08711 6.0654 3.02179 3.0327 4.85451 7.03628 3.32724 4.27631 ] pdfxs + (a) show + (mew) + [9.08711 4.85451 7.57085 ] pdfxs + (o) show + (rkexpl) + [4.27631 8.51993 4.8436 5.75995 6.05449 3.0327 ] pdfxs + (o) show + (i) + [3.0327 ] pdfxs + (t) show + (sthecoderepresen) + [7.069 4.23277 6.0654 7.61448 4.8436 5.75995 6.0654 7.60357 4.27631 4.8436 6.0654 + 4.27631 4.8436 4.29811 4.85451 5.75995 ] pdfxs + (ta) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n) + [8.82538 ] pdfxs + (t) show + (oprovideac) + [8.21447 6.0654 4.2654 5.15996 5.74904 3.0327 6.0654 7.60357 8.22538 4.8436 ] pdfxs + (o) show + (mbin) + [8.79257 6.05449 3.0327 6.0654 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n) + [8.82538 ] pdfxs + (o) show + (f\fve) + [6.09813 6.05449 5.4545 4.8436 ] pdfxs + 0 -350.761 m + (c) + [4.8436 ] pdfxs + (a) show + (p) + [6.0654 ] pdfxs + (a) show + (bili) + [6.0654 3.02179 3.0327 3.0327 ] pdfxs + (t) show + (ies) + [3.0327 4.8436 7.90899 ] pdfxs + (t) show + (hatwebelieve) + [6.05449 5.46541 7.84365 7.57085 8.45447 6.37085 4.8436 3.0327 3.0327 4.8436 5.4545 + 8.45447 ] pdfxs + (a) show + (reimp) + [4.27631 8.45447 3.0327 9.08711 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (ta) show + (ntin) + [5.75995 7.84365 3.0327 9.66537 ] pdfxs + (o) show + (rder) + [4.27631 6.05449 4.85451 7.87628 ] pdfxs + (t) show + (osupp) + [9.05447 4.30902 6.05449 6.0654 6.35994 ] pdfxs + (o) show + (rtlifel) + [4.27631 7.84365 3.0327 3.0327 3.33815 4.8436 3.0327 ] pdfxs + (o) show + (ng) + [6.05449 9.06538 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 7.90899 ] pdfxs + (a) show + (nd) + [6.0654 9.66537 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) show + 0 -372.683 m + (f) + [3.33815 ] pdfxs + (o) show + (r) + [8.44354 ] pdfxs + (a) show + (rbi) + [4.27631 6.0654 3.02179 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (rypr) + [4.27631 9.9381 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms.) + [9.08711 4.29811 9.51264 ] pdfxs + (I) show + (n) + [10.2435 ] pdfxs + (g) show + (ener) + [4.85451 6.05449 4.85451 4.2654 ] pdfxs + (a) show + (l,) + [3.0327 7.35266 ] pdfxs + (t) show + (hesec) + [6.05449 4.85451 4.29811 9.03265 4.8436 ] pdfxs + (a) show + (p) + [6.0654 ] pdfxs + (a) show + (bili) + [6.05449 3.0327 3.0327 3.0327 ] pdfxs + (t) show + (ies) + [3.02179 4.85451 8.47626 ] pdfxs + (a) show + (requi) + [4.27631 9.03265 5.75995 6.05449 3.0327 ] pdfxs + (t) show + (edi\016cult) + [9.03265 6.05449 3.0327 9.08711 4.85451 6.05449 3.0327 8.42183 ] pdfxs + (t) show + (o) + [9.63264 ] pdfxs + (o) show + (b) + [6.0654 ] pdfxs + (ta) show + (insimul) + [3.02179 10.2435 4.30902 3.0327 8.78166 6.0654 3.02179 ] pdfxs + (ta) show + (ne) + [6.0654 4.8436 ] pdfxs + (o) show + (usly,) + [6.0654 4.29811 3.0327 4.8545 3.0327 ] pdfxs + 0 -394.606 m + (but) + [6.0654 6.05449 7.87638 ] pdfxs + (t) show + (he) + [6.0654 8.4872 ] pdfxs + (L) show + (L) + [5.59632 ] pdfxs + (V) show + (Mdesi) + [13.6472 6.05449 4.85451 4.29811 3.0327 ] pdfxs + (g) show + (ndoessoinheren) + [9.6981 6.05449 5.75995 4.8436 7.94172 4.30902 9.08719 3.0327 6.05449 6.0654 4.8436 + 4.27631 4.8436 5.75995 ] pdfxs + (t) show + (ly:) + [3.0327 5.75995 3.0327 ] pdfxs + 7.879 -421.53 m + (\(1\)) show + 27.273 -421.53 m + /N634 10.909 Tf + (P) + [7.39623 ] pdfxs + (e) show + (r) + [4.60356 ] pdfxs + (s) show + (ist) + [3.34914 4.45083 3.6327 ] pdfxs + (e) show + (nt) + [6.13082 7.55994 ] pdfxs + (p) show + (ro) + [4.0363 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (minf) + [12.8507 3.34914 6.13082 3.34914 ] pdfxs + (o) show + (rm) + [4.60356 8.92348 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) show + 178.032 -421.53 m + /N614 10.909 Tf + (:Thec) + [7.94175 7.88721 6.05449 8.51993 4.85451 ] pdfxs + (o) show + (mpil) + [9.08711 6.05449 3.0327 3.0327 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nmodelpreserves) + [9.73082 9.08711 5.75995 6.05449 4.85451 6.69812 6.0654 4.2654 4.85451 4.29811 4.85451 + 4.2654 5.4545 4.85451 7.97445 ] pdfxs + (t) show + (he) + [6.05449 8.51993 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mrepresen) + [13.6691 4.27631 4.8436 6.0654 4.2654 4.85451 4.29811 4.85451 5.74904 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (n) show + 27.273 -443.452 m + (t) show + (hr) + [6.05449 4.27631 ] pdfxs + (o) show + (u) + [6.0654 ] pdfxs + (g) show + (h) + [6.05449 ] pdfxs + (o) show + (ut) + [6.0654 7.51638 ] pdfxs + (a) show + (n) + [9.3381 ] pdfxs + (a) show + (pplic) + [6.05449 6.0654 3.0327 3.02179 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n'slife) + [6.0654 3.0327 7.57081 3.0327 3.0327 3.32724 4.85451 ] pdfxs + (t) show + (ime,) + [3.0327 9.08711 4.8436 6.38176 ] pdfxs + (a) show + (llowings) + [3.0327 3.0327 5.14905 7.8763 3.0327 6.05449 8.73811 4.29811 ] pdfxs + (o) show + (phis) + [6.0654 6.05449 3.0327 4.29811 ] pdfxs + (t) show + (ic) + [3.0327 4.8436 ] pdfxs + (at) show + (ed) + [4.85451 9.3381 ] pdfxs + (o) show + (p) + [6.05449 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.0654 7.57081 ] pdfxs + (t) show + (obeperf) + [8.7272 6.37085 8.1163 6.37085 4.8436 4.27631 3.32724 ] pdfxs + (o) show + (rmed) + [4.27631 9.08711 4.85451 9.32719 ] pdfxs + (at) show + 27.273 -465.375 m + (a) show + (lls) + [3.0327 6.6654 4.29811 ] pdfxs + (tag) show + (es,includingrun) + [4.85451 4.29811 6.6654 3.0327 6.0654 4.8436 3.0327 6.05449 6.0654 3.0327 6.05449 + 9.0981 4.2654 6.0654 5.75995 ] pdfxs + (t) show + (ime) + [3.02179 9.09802 8.47629 ] pdfxs + (a) show + (ndidle) + [6.0654 9.6981 3.0327 6.05449 3.0327 8.4872 ] pdfxs + (t) show + (imebetweenruns.) + [3.02179 9.09802 8.4872 6.35994 4.8436 3.93823 7.58175 4.8436 4.85451 9.6981 4.2654 + 6.0654 6.0654 4.29811 3.0327 ] pdfxs + 7.879 -494.678 m + (\(2\)) show + 27.273 -494.678 m + /N634 10.909 Tf + (O\017ineco) + [8.36718 9.75261 3.34914 6.13082 9.39272 4.46185 5.01816 ] pdfxs + (d) show + (e) + [9.40363 ] pdfxs + (ge) show + (n) + [6.13082 ] pdfxs + (e) show + (r) + [4.04721 ] pdfxs + (a) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) show + 139.044 -494.678 m + /N614 10.909 Tf + (:) + [8.91265 ] pdfxs + (D) show + (espi) + [4.85451 4.29811 6.0654 3.02179 ] pdfxs + (t) show + (ethel) + [9.01083 4.23277 6.0654 8.99993 3.0327 ] pdfxs + (a) show + (stp) + [4.29811 8.40001 6.37085 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (,itisp) + [7.30903 3.0327 8.40001 3.0327 8.45444 6.35994 ] pdfxs + (o) show + (ssible) + [4.30902 4.29811 3.0327 6.0654 3.02179 9.01083 ] pdfxs + (t) show + (oc) + [9.59992 4.85451 ] pdfxs + (o) show + (mpilepr) + [9.08711 6.0654 3.0327 3.02179 9.01083 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (msin) + [9.08711 8.45444 3.0327 5.75995 ] pdfxs + (t) show + (oe\016-) + [9.59992 4.85451 9.08711 3.63261 ] pdfxs + 27.273 -516.601 m + (cientn) + [4.8436 3.0327 4.85451 5.74904 7.4182 6.0654 ] pdfxs + (at) show + (ivem) + [3.02179 5.4545 8.02902 9.08711 ] pdfxs + (a) show + (chinecode) + [4.54905 6.05449 3.0327 6.0654 8.01812 4.8436 5.75995 6.0654 4.8436 ] pdfxs + 152.389 -516.601 m + /N634 10.909 Tf + (o) show + (\017in) + [9.76352 3.33823 6.13082 ] pdfxs + (e) show + 182.22 -516.601 m + /N614 10.909 Tf + (,usingexpensivecode) + [6.29449 6.0654 4.29811 3.0327 6.05449 8.62902 4.85451 5.75995 6.35994 4.8436 6.0654 + 4.29811 3.0327 5.4545 8.01812 4.85451 5.75995 6.05449 8.02902 ] pdfxs + (g) show + (ener) + [4.8436 6.0654 4.8436 4.27631 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [9.23992 ] pdfxs + (t) show + (echniquesn) + [4.8436 4.54905 6.05449 6.0654 3.0327 5.74904 6.0654 4.8436 7.48354 6.05449 ] pdfxs + (o) show + (tsui) + [7.4182 4.30902 6.05449 3.0327 ] pdfxs + (ta) show + (blef) + [6.05449 3.0327 8.01812 3.33815 ] pdfxs + (o) show + (r) show + 27.273 -538.523 m + (run) + [4.27631 6.05449 5.75995 ] pdfxs + (t) show + (imecode) + [3.0327 9.08711 8.4872 4.8436 5.75995 6.0654 8.47629 ] pdfxs + (g) show + (ener) + [4.85451 6.05449 4.85451 4.27631 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n.Thisiscruci) + [6.0654 7.87629 7.8763 6.0654 3.0327 7.93081 3.0327 7.94172 4.8436 4.27631 6.0654 + 4.8436 3.0327 ] pdfxs + (a) show + (lf) + [6.6654 3.32724 ] pdfxs + (o) show + (rperf) + [7.909 6.37085 4.8436 4.27631 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (nce-cri) + [6.05449 4.85451 4.8436 3.63261 4.85451 4.2654 3.0327 ] pdfxs + (t) show + (ic) + [3.0327 4.8436 ] pdfxs + (a) show + (lpr) + [6.6654 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (ms.) + [9.09802 4.29811 3.0327 ] pdfxs + 7.879 -567.826 m + (\(3\)) show + 27.273 -567.826 m + /N634 10.909 Tf + (U) + [8.10534 ] pdfxs + (se) show + (r-b) + [4.60356 3.90544 4.46185 ] pdfxs + (as) show + (ed) + [4.45094 10.189 ] pdfxs + (p) show + (r) + [4.04721 ] pdfxs + (o) show + (\fling) + [6.13082 2.79267 3.33823 6.14173 9.62181 ] pdfxs + (a) show + (nd) + [6.13082 10.189 ] pdfxs + (op) show + (timi) + [3.6327 3.33823 8.92348 3.34914 ] pdfxs + (za) show + (ti) + [3.62179 3.34914 ] pdfxs + (o) show + (n) show + 207.562 -567.826 m + /N614 10.909 Tf + (:The) + [9.41446 7.8763 6.0654 9.25083 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mfr) + [14.4 3.33815 4.27631 ] pdfxs + (a) show + (mew) + [9.08711 4.8436 7.58175 ] pdfxs + (o) show + (rk) + [4.2654 10.1672 ] pdfxs + (gat) show + (herspr) + [6.0654 4.8436 4.27631 8.70535 6.05449 4.27631 ] pdfxs + (o) show + (\flinginf) + [6.0654 3.02179 3.0327 6.0654 9.86173 3.02179 6.0654 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) show + 27.273 -589.749 m + (a) show + (trun-) + [9.52364 4.2654 6.0654 6.05449 3.64352 ] pdfxs + (t) show + (ime) + [3.02179 9.09802 4.8436 ] pdfxs + 88.767 -589.749 m + /N634 10.909 Tf + (int) + [3.34914 11.5417 3.62179 ] pdfxs + (h) show + (e\f) + [10.44 6.13082 ] pdfxs + (e) show + (l) + [2.78176 ] pdfxs + (d) show + 148.081 -589.749 m + /N614 10.909 Tf + (so) + [4.29811 10.7345 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (titisrepresen) + [9.51273 3.0327 9.52364 3.0327 9.57807 4.2654 4.85451 6.05449 4.27631 4.85451 4.29811 + 4.8436 5.75995 ] pdfxs + (tat) show + (ive) + [3.0327 5.4545 10.1236 ] pdfxs + (o) show + (f) + [8.6072 ] pdfxs + (a) show + (c) + [4.85451 ] pdfxs + (t) show + (u) + [6.05449 ] pdfxs + (a) show + (lusers,) + [8.31265 6.05449 4.30902 4.8436 4.27631 4.29811 8.71629 ] pdfxs + (a) show + (ndc) + [6.0654 11.3344 4.85451 ] pdfxs + (a) show + (n) + [11.3344 ] pdfxs + (a) show + (pplyitf) + [6.0654 6.05449 3.0327 11.029 3.0327 9.52364 3.32724 ] pdfxs + (o) show + (r) show + 27.273 -611.671 m + (pr) + [6.0654 4.2654 ] pdfxs + (o) show + (\fle-) + [6.0654 3.0327 4.8436 3.63261 ] pdfxs + (g) show + (uidedtr) + [6.0654 3.0327 6.05449 4.85451 9.6981 4.23277 4.27631 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (nsb) + [6.0654 7.94172 6.35994 ] pdfxs + (ot) show + (h) + [9.6981 ] pdfxs + (a) show + (trun-) + [7.87638 4.27631 6.05449 6.0654 3.63261 ] pdfxs + (t) show + (ime) + [3.0327 9.08711 8.4872 ] pdfxs + (a) show + (ndinidle) + [6.0654 9.6981 3.02179 9.6981 3.0327 6.0654 3.02179 8.4872 ] pdfxs + (t) show + (ime) + [3.0327 9.08711 4.8436 ] pdfxs + 334.182 -607.713 m + /N703 7.96999 Tf + (1) show + 338.915 -611.671 m + /N614 10.909 Tf + (.) show + 1 0 0 1 0 -619.579 cm + q + [] 0 d + 0 J + 0.397995 w + n + 0 0.19899 m + 187.197 0.19899 l + S + Q + 1 0 0 1 12.437 -6.45299 cm + 0 0 m + /N1153 5.978 Tf + (1) show + 4.15099 -3.80899 m + /N1156 8.96599 Tf + (Ani) + [6.91274 8.18594 2.56423 ] pdfxs + (d) show + (l) + [2.55527 ] pdfxs + (e) show + (-time) + [3.07535 3.58634 2.55527 7.6838 7.1728 ] pdfxs + (op) show + (timiz) + [3.57737 2.56423 7.67484 2.56423 4.09746 ] pdfxs + (e) show + (r) + [6.67063 ] pdfxs + (ha) show + (s) + [6.70655 ] pdfxs + (no) show + (tyetbe) + [6.66167 4.59962 4.10643 6.65271 5.37062 4.10643 ] pdfxs + (e) show + (nim) + [8.18594 2.56423 7.67484 ] pdfxs + (p) show + (l) + [2.56423 ] pdfxs + (e) show + (m) + [7.6838 ] pdfxs + (e) show + (nt) + [4.85956 3.58634 ] pdfxs + (e) show + (dinLLV) + [8.19491 2.55527 8.19491 5.75615 4.73403 6.91274 ] pdfxs + (M) show + (.) show + 216.108 -31.169 m + /N614 10.909 Tf + (13) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (25) 26 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 595.275591 788.031496 translate + 180 rotate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 79.879 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (\(4\)) show + 19.394 0 m + /N634 10.909 Tf + (Tran) + [6.97089 4.0363 5.58542 6.13082 ] pdfxs + (s) show + (p) + [5.01816 ] pdfxs + (a) show + (r) + [4.0363 ] pdfxs + (e) show + (ntruntimemo) + [6.14173 8.22539 4.60356 5.85816 6.13082 3.62179 3.34914 8.92348 9.62181 8.92348 5.01816 + ] pdfxs + (de) show + (l) show + 151.155 0 m + /N614 10.909 Tf + (:Thesys) + [9.41446 7.88721 6.05449 9.26174 4.29811 5.75995 4.29811 ] pdfxs + (t) show + (emdoesn) + [4.85451 13.4943 6.05449 5.75995 4.85451 8.70535 6.0654 ] pdfxs + (o) show + (tspecify) + [8.64001 4.30902 6.35994 4.85451 4.8436 3.0327 3.32724 10.1672 ] pdfxs + (a) show + (nyp) + [5.75995 10.1672 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (icul) + [3.0327 4.8436 6.0654 3.02179 ] pdfxs + (a) show + (r) + [8.68354 ] pdfxs + (o) show + (bjectmodel,ex-) + [6.66539 3.33815 4.8436 4.8436 8.65092 9.09802 5.74904 6.0654 4.8436 3.0327 7.6363 + 4.8436 5.75995 3.63261 ] pdfxs + 19.394 -21.922 m + (cep) + [4.8436 4.85451 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nsem) + [10.4508 4.29811 4.85451 9.08711 ] pdfxs + (a) show + (n) + [5.75995 ] pdfxs + (t) show + (ics,) + [3.02179 4.85451 4.29811 7.60357 ] pdfxs + (o) show + (rrun) + [8.66173 4.2654 6.0654 5.75995 ] pdfxs + (t) show + (imeenvir) + [3.02179 9.09802 9.22901 4.85451 5.74904 5.75995 3.0327 4.27631 ] pdfxs + (o) show + (nmen) + [6.05449 9.08711 4.85451 5.75995 ] pdfxs + (t) show + (,) + [7.59266 ] pdfxs + (t) show + (hus) + [5.75995 6.0654 8.68353 ] pdfxs + (a) show + (llowing) + [3.0327 3.0327 5.14905 7.8763 3.0327 6.05449 9.83992 ] pdfxs + (a) show + (nyl) + [5.75995 10.1454 3.0327 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (e) + [9.22901 ] pdfxs + (\(o) show + (rc) + [8.66173 4.8436 ] pdfxs + (o) show + (mbin) + [8.79257 6.05449 3.0327 6.0654 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n) + [10.4508 ] pdfxs + (o) show + (f) show + 19.394 -43.845 m + (l) + [3.0327 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (es\)) + [4.8436 4.30902 7.87638 ] pdfxs + (t) show + (obec) + [9.08719 6.37085 8.47629 4.85451 ] pdfxs + (o) show + (mpiledusingi) + [9.08711 6.0654 3.0327 3.02179 4.85451 9.6981 6.05449 4.30902 3.02179 6.0654 9.08719 + 3.0327 ] pdfxs + (t) show + (.) show + 0 -74.184 m + (\(5\)) show + 19.394 -74.184 m + /N634 10.909 Tf + (Unif) + [8.10534 6.14173 3.33823 3.34914 ] pdfxs + (o) show + (rm,w) + [4.60356 8.91258 7.52728 7.24359 ] pdfxs + (ho) show + (l) + [2.79267 ] pdfxs + (e) show + (-) + [3.90544 ] pdfxs + (p) show + (ro) + [4.0363 5.01816 ] pdfxs + (g) show + (r) + [4.04721 ] pdfxs + (a) show + (mc) + [13.0362 4.46185 ] pdfxs + (o) show + (m) + [8.92348 ] pdfxs + (p) show + (il) + [3.34914 2.78176 ] pdfxs + (a) show + (ti) + [3.6327 3.33823 ] pdfxs + (o) show + (n) show + 195.12 -74.184 m + /N614 10.909 Tf + (:) + [8.34538 ] pdfxs + (La) show + (n) + [6.0654 ] pdfxs + (g) show + (u) + [6.05449 ] pdfxs + (ag) show + (e-independencem) + [4.85451 3.63261 3.0327 6.05449 6.0654 4.8436 6.37085 4.8436 6.0654 6.05449 4.85451 + 6.05449 4.85451 8.71629 9.08711 ] pdfxs + (a) show + (kesitp) + [5.4545 4.85451 8.17081 3.0327 8.10547 6.37085 ] pdfxs + (o) show + (ssible) + [4.29811 4.30902 3.02179 6.0654 3.0327 8.71629 ] pdfxs + (t) show + (o) + [9.32719 ] pdfxs + (o) show + (p) + [6.05449 ] pdfxs + (t) show + (imize) + [3.0327 9.08711 3.0327 4.8436 4.8436 ] pdfxs + 19.394 -96.107 m + (a) show + (ndc) + [6.0654 9.16356 4.85451 ] pdfxs + (o) show + (mpile) + [9.08711 6.0654 3.02179 3.0327 7.96357 ] pdfxs + (a) show + (llcodec) + [3.0327 6.13086 4.85451 5.75995 6.05449 7.96357 4.8436 ] pdfxs + (o) show + (mprising) + [9.09802 6.05449 4.27631 3.0327 4.29811 3.0327 6.05449 8.57447 ] pdfxs + (a) show + (n) + [9.16356 ] pdfxs + (a) show + (pplic) + [6.0654 6.05449 3.0327 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ninaunif) + [9.17446 3.0327 9.16356 8.57447 6.05449 6.0654 3.02179 3.33815 ] pdfxs + (o) show + (rmm) + [4.27631 12.1962 9.09802 ] pdfxs + (a) show + (nner) + [6.05449 6.0654 4.8436 7.38537 ] pdfxs + (\(a) show + (f) + [3.32724 ] pdfxs + (t) show + (erlinkin) + [4.85451 7.38537 3.02179 3.0327 6.0654 5.74904 3.0327 6.0654 ] pdfxs + (g\)) show + (,includin) + [6.23994 3.0327 6.0654 4.8436 3.0327 6.05449 6.0654 3.0327 6.05449 ] pdfxs + (g) show + 19.394 -118.03 m + (l) + [3.0327 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (e-speci\fcruntimelibr) + [4.8436 3.64352 4.29811 6.35994 4.85451 4.8436 3.0327 6.0654 8.47629 4.27631 6.0654 + 5.75995 4.23277 3.0327 9.09802 8.47629 3.0327 3.0327 6.05449 4.27631 ] pdfxs + (a) show + (ries) + [4.27631 3.0327 4.8436 7.94172 ] pdfxs + (a) show + (ndsys) + [6.05449 9.6981 4.30902 5.74904 4.30902 ] pdfxs + (t) show + (emlibr) + [4.8436 12.7307 3.0327 3.0327 6.05449 4.27631 ] pdfxs + (a) show + (ries.) + [4.2654 3.0327 4.85451 4.29811 3.0327 ] pdfxs + 9.058 -147.545 m + (Webelieve) + [10.2981 8.54175 6.35994 4.85451 3.02179 3.0327 4.85451 5.4545 8.53084 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (at) show + 87.697 -147.545 m + /N634 10.909 Tf + (nopr) + [6.13082 9.52357 5.58542 4.0363 ] pdfxs + (ev) show + (i) + [3.34914 ] pdfxs + (o) show + (ussy) + [5.85816 8.4108 4.45083 5.30169 ] pdfxs + (s) show + (t) + [3.62179 ] pdfxs + (e) show + (m) + [12.8725 ] pdfxs + (p) show + (r) + [4.04721 ] pdfxs + (ov) show + (id) + [3.33823 5.58542 ] pdfxs + (e) show + (s) + [8.4108 ] pdfxs + (a) show + (ll\f) + [3.33812 6.74172 6.13082 ] pdfxs + (v) show + (e) + [8.96727 ] pdfxs + (o) show + (fth) + [7.29819 3.62179 5.58542 ] pdfxs + (e) show + (se) + [4.45083 8.97818 ] pdfxs + (p) show + (r) + [4.0363 ] pdfxs + (o) show + (p) + [5.01816 ] pdfxs + (e) show + (rti) + [4.60356 3.62179 3.34914 ] pdfxs + (es) show + 347.067 -147.545 m + /N614 10.909 Tf + (.S) + [8.02902 6.0654 ] pdfxs + (o) show + (urce-levelc) + [6.05449 4.27631 4.85451 4.8436 3.63261 3.0327 4.85451 5.4545 4.8436 6.71994 4.8436 + ] pdfxs + (o) show + (mpilers) + [9.09802 6.05449 3.0327 3.0327 4.8436 4.27631 4.29811 ] pdfxs + -7.879 -169.467 m + (provide#2) + [6.0654 4.2654 5.14905 5.75995 3.0327 6.0654 9.73083 9.08711 10.3526 ] pdfxs + (a) show + (nd#) + [6.05449 10.9526 9.08711 ] pdfxs + (4) show + (,butdon) + [8.23629 6.05449 6.0654 9.13091 6.05449 10.3417 6.0654 ] pdfxs + (o) show + (t) + [9.13091 ] pdfxs + (att) show + (empt) + [4.8436 9.09802 6.05449 9.13091 ] pdfxs + (t) show + (oprovide#) + [10.3417 6.0654 4.2654 5.15996 5.74904 3.0327 6.0654 9.73083 9.09802 ] pdfxs + (1) show + (,#3) + [8.22538 9.09802 10.3417 ] pdfxs + (o) show + (r#) + [9.15263 9.09802 ] pdfxs + (5) show + (.) + [11.629 ] pdfxs + (L) show + (ink-) + [3.0327 6.0654 5.74904 3.64352 ] pdfxs + (t) show + (imein) + [3.02179 9.09802 9.73083 3.0327 5.75995 ] pdfxs + (t) show + (erprocedur) + [4.8436 4.27631 6.05449 4.27631 5.75995 4.8436 4.85451 6.05449 6.0654 4.27631 ] pdfxs + (a) show + (l) show + -7.879 -191.39 m + (o) show + (ptimizers[) + [6.0654 4.23277 3.0327 9.09802 3.02179 4.85451 4.8436 4.27631 8.67262 3.0327 ] pdfxs + (54) show + (,) + [7.3963 ] pdfxs + (9) show + (,) + [7.3963 ] pdfxs + (76) show + (],c) + [3.0327 7.58175 4.8436 ] pdfxs + (o) show + (mm) + [9.09802 9.08711 ] pdfxs + (o) show + (ninc) + [10.429 3.0327 10.429 4.8436 ] pdfxs + (o) show + (mmerci) + [9.08711 9.09802 4.8436 4.27631 4.8436 3.0327 ] pdfxs + (a) show + (lc) + [7.3963 4.85451 ] pdfxs + (o) show + (mpilers,provide) + [9.08711 6.0654 3.02179 3.0327 4.85451 4.2654 4.30902 7.58175 6.05449 4.27631 5.14905 + 5.75995 3.0327 6.05449 9.21811 ] pdfxs + (t) show + (he) + [6.0654 9.2072 ] pdfxs + (a) show + (ddi) + [6.0654 6.0654 3.02179 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [6.0654 ] pdfxs + (a) show + (lc) + [7.3963 4.8436 ] pdfxs + (a) show + (p) + [6.0654 ] pdfxs + (a) show + (bility) + [6.05449 3.0327 3.0327 3.0327 3.93823 10.1235 ] pdfxs + (o) show + (f#) + [7.70175 9.08711 ] pdfxs + (1) show + -7.879 -213.312 m + (a) show + (nd#5but) + [6.0654 9.43628 9.09802 8.83629 6.05449 6.0654 7.62547 ] pdfxs + (o) show + (nlyup) + [6.0654 3.02179 9.14174 6.0654 9.44719 ] pdfxs + (t) show + (olink-) + [8.83629 3.0327 3.02179 6.0654 5.75995 3.63261 ] pdfxs + (t) show + (ime.Pr) + [3.0327 9.08711 4.85451 7.78902 7.42902 4.2654 ] pdfxs + (o) show + (\fle-) + [6.0654 3.0327 4.8436 3.63261 ] pdfxs + (g) show + (uided) + [6.0654 3.0327 6.05449 4.85451 9.44719 ] pdfxs + (o) show + (p) + [6.05449 ] pdfxs + (t) show + (imizersf) + [3.0327 9.08711 3.0327 4.8436 4.85451 4.27631 7.6799 3.33815 ] pdfxs + (o) show + (rs) + [7.6581 4.29811 ] pdfxs + (tat) show + (icl) + [3.0327 8.22539 3.0327 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (u) + [6.05449 ] pdfxs + (ag) show + (esprovidebene\ft#) + [4.85451 7.6799 6.0654 4.27631 5.14905 5.75995 3.02179 6.0654 8.23629 6.35994 4.8436 + 6.0654 4.8436 6.0654 7.62547 9.08711 ] pdfxs + (2) show + -7.879 -235.235 m + (a) show + (t) + [7.25457 ] pdfxs + (t) show + (hec) + [6.05449 7.86539 4.85451 ] pdfxs + (o) show + (st) + [4.29811 7.25457 ] pdfxs + (o) show + (f) + [6.34903 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (nsp) + [6.0654 4.29811 6.0654 ] pdfxs + (a) show + (rency,) + [4.27631 4.8436 6.0654 4.8436 4.84359 6.17449 ] pdfxs + (a) show + (ndm) + [6.05449 9.07628 9.08711 ] pdfxs + (o) show + (stcruci) + [4.30902 7.25457 4.8436 4.27631 6.0654 4.8436 3.0327 ] pdfxs + (a) show + (llydon) + [3.0327 3.02179 8.77083 6.0654 8.46538 6.0654 ] pdfxs + (o) show + (tprovide#) + [7.25457 6.05449 4.27631 5.14905 5.75995 3.0327 6.05449 7.86539 9.08711 ] pdfxs + (3) show + (.) + [7.66902 ] pdfxs + (H) show + (i) + [3.0327 ] pdfxs + (g) show + (h-levelvir) + [6.0654 3.63261 3.0327 4.8436 5.4545 4.85451 6.04358 5.74904 3.0327 4.27631 ] pdfxs + (t) show + (u) + [6.05449 ] pdfxs + (a) show + (lm) + [6.04358 9.08711 ] pdfxs + (a) show + (chinessuch) + [4.54905 6.0654 3.0327 6.05449 4.85451 7.309 4.30902 6.05449 4.54905 6.0654 ] pdfxs + -7.879 -257.157 m + (a) show + (s) + [8.10535 ] pdfxs + (JV) show + (M) + [13.8 ] pdfxs + (o) show + (rC) + [8.07264 7.88721 ] pdfxs + (L) show + (Iprovide#3) + [7.7344 6.0654 4.27631 5.14905 5.75995 3.02179 6.0654 8.65084 9.08711 9.26174 ] pdfxs + (a) show + (ndp) + [6.05449 9.87264 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (a) show + (llyprovide#1) + [3.0327 3.0327 9.55628 6.0654 4.27631 5.14905 5.75995 3.02179 6.0654 8.65084 9.08711 + 9.26174 ] pdfxs + (a) show + (nd#) + [6.05449 9.87264 9.08711 ] pdfxs + (5) show + (,butdon) + [6.87267 6.0654 6.05449 8.05092 6.05449 9.26174 6.05449 ] pdfxs + (o) show + (t) + [8.05092 ] pdfxs + (a) show + (im) + [3.0327 12.8944 ] pdfxs + (t) show + (oprovide#) + [9.25083 6.0654 4.2654 5.15996 5.74904 3.0327 6.0654 8.65084 9.08711 ] pdfxs + (4) show + (,) + [6.87267 ] pdfxs + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + -7.879 -279.08 m + (ei) + [4.8436 3.0327 ] pdfxs + (t) show + (herdon) + [6.0654 4.8436 7.45083 6.05449 8.62902 6.0654 ] pdfxs + (o) show + (tprovide#2) + [7.4182 6.05449 4.27631 5.14905 5.75995 3.0327 6.05449 8.02902 9.08711 8.62902 ] pdfxs + (a) show + (t) + [7.4182 ] pdfxs + (a) show + (ll) + [3.0327 6.19631 ] pdfxs + (o) show + (rwi) + [7.45083 7.8763 3.0327 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (o) show + (ut#1) + [6.0654 7.4182 9.08711 8.62902 ] pdfxs + (o) show + (r#) + [7.45083 9.08711 ] pdfxs + (3) show + (.Bin) + [7.72357 7.72349 3.0327 6.0654 ] pdfxs + (a) show + (ryrun) + [4.2654 8.93447 4.27631 6.05449 5.75995 ] pdfxs + (t) show + (ime) + [3.0327 9.08711 8.02902 ] pdfxs + (o) show + (p) + [6.05449 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nsys) + [9.23992 4.29811 5.75995 4.29811 ] pdfxs + (t) show + (emsprovide) + [4.85451 9.08711 7.47263 6.0654 4.27631 5.14905 5.75995 3.02179 6.0654 4.8436 ] pdfxs + -7.879 -301.003 m + (#) + [9.08711 ] pdfxs + (2) show + (,#4) + [6.40358 9.08711 8.75992 ] pdfxs + (a) show + (nd#) + [6.0654 9.35992 9.09802 ] pdfxs + (5) show + (,butprovide#3) + [6.39267 6.0654 6.05449 7.54911 6.0654 4.2654 5.15996 5.74904 3.0327 6.0654 8.14902 + 9.08711 8.75992 ] pdfxs + (o) show + (nly) + [6.0654 3.0327 9.05447 ] pdfxs + (a) show + (trun) + [7.54911 4.27631 6.05449 5.75995 ] pdfxs + (t) show + (ime) + [3.0327 9.08711 8.14902 ] pdfxs + (a) show + (nd) + [6.0654 9.35992 ] pdfxs + (t) show + (oalimi) + [8.75992 8.75992 3.0327 3.02179 9.09802 3.02179 ] pdfxs + (t) show + (edex) + [4.85451 9.35992 4.85451 5.74904 ] pdfxs + (t) show + (ent,) + [4.85451 5.75995 4.23277 6.40358 ] pdfxs + (a) show + (ndm) + [6.0654 9.35992 9.08711 ] pdfxs + (o) show + (stimp) + [4.30902 7.54911 3.02179 9.09802 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (ta) show + (n) + [5.74904 ] pdfxs + (t) show + (lyd) + [3.0327 9.06537 6.05449 ] pdfxs + (o) show + -7.879 -322.925 m + (n) + [6.0654 ] pdfxs + (o) show + (tprovide#) + [7.87638 6.05449 4.27631 5.14905 5.75995 3.0327 6.05449 8.4872 9.09802 ] pdfxs + (1) show + (.Weexpl) + [7.87629 10.2981 8.4872 4.8436 5.75995 6.0654 3.0327 ] pdfxs + (a) show + (in) + [3.02179 9.6981 ] pdfxs + (t) show + (heseinm) + [6.0654 4.8436 4.30902 8.47629 3.0327 9.6981 9.08711 ] pdfxs + (o) show + (rede) + [4.27631 8.4872 6.05449 4.85451 ] pdfxs + (ta) show + (ilinSec) + [3.0327 6.6654 3.02179 9.6981 6.0654 4.8436 4.85451 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (2) show + (.) + [3.0327 ] pdfxs + (3) show + (.) show + 9.058 -344.848 m + (Weev) + [10.2981 8.14902 4.8436 5.15995 ] pdfxs + (a) show + (lu) + [3.02179 6.0654 ] pdfxs + (at) show + (e) + [8.13811 ] pdfxs + (t) show + (hee\013ec) + [6.0654 8.13811 4.85451 6.35986 4.8436 4.85451 ] pdfxs + (t) show + (iveness) + [3.02179 5.4545 4.85451 6.05449 4.85451 4.29811 7.60354 ] pdfxs + (o) show + (f) + [6.62176 ] pdfxs + (t) show + (he) + [6.0654 8.13811 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Msys) + [13.2981 4.29811 5.75995 4.29811 ] pdfxs + (t) show + (emwi) + [4.85451 12.3816 7.8763 3.0327 ] pdfxs + (t) show + (hrespect) + [9.35992 4.2654 4.85451 4.29811 6.35994 4.85451 4.8436 7.5382 ] pdfxs + (t) show + (o) + [8.74901 ] pdfxs + (t) show + (hreeissues:) + [6.0654 4.2654 4.85451 8.13811 3.0327 4.29811 4.30902 6.05449 4.85451 4.29811 7.71266 + ] pdfxs + (\(a) show + (\)) + [7.5382 ] pdfxs + (t) show + (hesize) + [6.05449 8.14902 4.29811 3.0327 4.8436 8.14902 ] pdfxs + (a) show + (nd) + [6.05449 6.0654 ] pdfxs + -7.879 -366.77 m + (e\013ec) + [4.8436 6.37077 4.8436 4.85451 ] pdfxs + (t) show + (iveness) + [3.02179 5.4545 4.85451 6.05449 4.85451 4.29811 8.74898 ] pdfxs + (o) show + (f) + [7.7672 ] pdfxs + (t) show + (herepresen) + [6.0654 9.28356 4.27631 4.8436 6.0654 4.2654 4.85451 4.29811 4.85451 5.74904 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (n,includingthe) + [6.0654 7.66902 3.02179 6.0654 4.8436 3.0327 6.0654 6.05449 3.0327 6.0654 9.89446 + 4.23277 6.0654 9.28356 ] pdfxs + (a) show + (bility) + [6.0654 3.0327 3.0327 3.02179 3.93823 10.1999 ] pdfxs + (t) show + (oex) + [9.89446 4.8436 5.75995 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (ctusefultypeinf) + [4.8436 8.68364 6.0654 4.29811 4.8436 3.33815 6.0654 7.46175 3.93823 5.75995 6.37085 + 9.28356 3.0327 6.05449 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (nf) + [10.5054 3.33815 ] pdfxs + (o) show + (rC) + [8.70536 7.8763 ] pdfxs + -7.879 -388.693 m + (pr) + [6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms;) + [9.08711 4.30902 6.45812 ] pdfxs + (\() show + (b\)) + [6.0654 7.57093 ] pdfxs + (t) show + (hec) + [6.05449 8.18175 4.8436 ] pdfxs + (o) show + (mpilerperf) + [9.09802 6.05449 3.0327 3.0327 4.8436 7.60355 6.37085 4.8436 4.27631 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nce) + [6.0654 4.8436 8.18175 ] pdfxs + (\() show + (n) + [6.05449 ] pdfxs + (o) show + (ttheperf) + [7.58184 4.23277 6.0654 8.18175 6.35994 4.8436 4.27631 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (nce) + [6.05449 4.85451 8.17084 ] pdfxs + (o) show + (f) + [6.66539 ] pdfxs + (g) show + (ener) + [4.85451 6.05449 4.85451 4.2654 ] pdfxs + (at) show + (edcodewhichdepends) + [4.85451 9.39264 4.8436 5.75995 6.05449 8.18175 7.8763 6.0654 3.0327 4.53815 9.39264 + 6.0654 4.8436 6.35994 4.85451 6.0654 6.05449 7.63627 ] pdfxs + (o) show + (n) show + -7.879 -410.615 m + (t) show + (hep) + [6.05449 9.30538 6.0654 ] pdfxs + (a) show + (rticul) + [4.27631 4.23277 3.0327 4.85451 6.05449 3.0327 ] pdfxs + (a) show + (rcode) + [8.72718 4.85451 5.74904 6.0654 9.30538 ] pdfxs + (g) show + (ener) + [4.8436 6.0654 4.8436 4.27631 ] pdfxs + (ato) show + (r) + [8.72718 ] pdfxs + (o) show + (r) + [8.72718 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imiz) + [3.02179 9.09802 3.02179 4.85451 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nsequencesused) + [10.5163 4.29811 4.85451 5.74904 6.0654 4.8436 6.0654 4.8436 4.85451 8.75989 6.05449 + 4.30902 4.8436 6.0654 ] pdfxs + (\)) show + (;) + [7.8872 ] pdfxs + (a) show + (nd) + [6.0654 10.5163 ] pdfxs + (\() show + (c\)ex) + [4.8436 8.70546 4.8436 5.75995 ] pdfxs + (a) show + (mplesillus) + [9.08711 6.0654 3.02179 4.85451 8.75989 3.0327 3.02179 3.0327 6.0654 4.29811 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (at) show + (ing) + [3.02179 6.0654 9.90537 ] pdfxs + (t) show + (he) + [6.0654 4.8436 ] pdfxs + -7.879 -432.538 m + (keyc) + [5.4545 4.8436 9.40355 4.8436 ] pdfxs + (a) show + (p) + [6.0654 ] pdfxs + (a) show + (bili) + [6.05449 3.0327 3.0327 3.02179 ] pdfxs + (t) show + (ies) + [3.0327 4.85451 7.93081 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mprovidesf) + [13.6363 6.0654 4.27631 5.14905 5.75995 3.02179 6.0654 4.8436 7.94172 3.33815 ] pdfxs + (o) show + (rsever) + [7.909 4.29811 4.85451 5.4545 4.8436 4.27631 ] pdfxs + (a) show + (lch) + [6.6654 4.54905 6.05449 ] pdfxs + (a) show + (llen) + [3.0327 3.0327 4.8436 6.0654 ] pdfxs + (g) show + (ingc) + [3.02179 6.0654 9.08719 4.85451 ] pdfxs + (o) show + (mpilerpr) + [9.08711 6.0654 3.02179 3.0327 4.85451 7.909 6.05449 4.27631 ] pdfxs + (o) show + (blems.) + [6.05449 3.0327 4.85451 9.08711 4.30902 3.0327 ] pdfxs + 9.058 -454.46 m + (Ourexperimen) + [8.4872 6.05449 8.44354 4.85451 5.74904 6.37085 4.8436 4.27631 3.0327 9.08711 4.8436 + 5.75995 ] pdfxs + (ta) show + (lresul) + [7.19994 4.27631 4.8436 4.30902 6.05449 3.0327 ] pdfxs + (t) show + (sshow) + [8.47626 4.29811 6.0654 5.14905 12.0435 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (t) + [8.41092 ] pdfxs + (t) show + (he) + [6.05449 9.02174 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mc) + [14.1709 4.8436 ] pdfxs + (o) show + (mpiler) + [9.08711 6.0654 3.0327 3.0327 4.8436 8.44354 ] pdfxs + (\() show + (using) + [6.05449 4.30902 3.0327 6.05449 9.62173 ] pdfxs + (Dat) show + (aS) + [9.62173 6.0654 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.0654 4.27631 9.01083 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisfr) + [3.0327 5.74904 4.30902 3.0327 8.46535 3.33815 4.2654 ] pdfxs + (o) show + (m) show + -7.879 -476.383 m + (Ch) + [7.8763 6.0654 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (er) + [4.85451 7.54901 ] pdfxs + (3) show + (\)c) + [7.51638 4.85451 ] pdfxs + (a) show + (nex) + [9.3381 4.8436 5.75995 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (ctreli) + [4.8436 7.52729 4.2654 4.85451 3.02179 3.0327 ] pdfxs + (a) show + (bletypeinf) + [6.0654 3.0327 8.1163 3.94914 5.74904 6.37085 8.1272 3.02179 6.0654 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (nf) + [9.3381 3.33815 ] pdfxs + (o) show + (r) + [7.54901 ] pdfxs + (a) show + (naver) + [9.3381 5.14905 5.4545 4.85451 4.27631 ] pdfxs + (ag) show + (e) + [8.1272 ] pdfxs + (o) show + (f) + [6.61085 ] pdfxs + (68) show + (%) + [12.3598 ] pdfxs + (o) show + (fthes) + [6.62176 4.23277 6.0654 8.1272 4.29811 ] pdfxs + (tat) show + (icmem) + [3.0327 8.1272 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 9.03265 ] pdfxs + (a) show + (ccess) + [4.85451 4.8436 4.8436 4.30902 4.29811 ] pdfxs + -7.879 -498.305 m + (ins) + [3.0327 6.05449 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.0654 8.30172 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (ssar) + [4.29811 8.30172 9.4581 4.2654 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (e) + [8.8472 ] pdfxs + (o) show + (fSPEC) + [7.33084 6.05449 7.42902 7.41812 7.88721 ] pdfxs + (IN) show + (T) + [11.869 ] pdfxs + (200) show + (0Cbenchm) + [9.4581 11.8799 6.35994 4.8436 6.0654 4.54905 6.05449 9.09802 ] pdfxs + (a) show + (rks,) + [4.2654 5.75995 4.29811 7.12357 ] pdfxs + (a) show + (ndf) + [6.0654 10.0581 3.32724 ] pdfxs + (o) show + (rvir) + [8.269 5.75995 3.0327 4.27631 ] pdfxs + (t) show + (u) + [6.05449 ] pdfxs + (a) show + (lly) + [3.0327 3.0327 9.75264 ] pdfxs + (a) show + (ll) + [3.0327 7.02539 ] pdfxs + (t) show + (he) + [6.05449 8.8472 ] pdfxs + (a) show + (ccessesin) + [4.85451 4.8436 4.85451 4.29811 4.30902 4.8436 8.30172 3.0327 6.0654 ] pdfxs + -7.879 -520.228 m + (m) + [9.08711 ] pdfxs + (o) show + (redisciplinedpr) + [4.27631 9.58901 6.05449 3.0327 4.29811 4.85451 3.0327 6.05449 3.0327 3.0327 6.05449 + 4.85451 10.789 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (ms.We) + [9.09802 4.29811 11.1708 10.309 9.5781 ] pdfxs + (a) show + (lsodiscussb) + [3.0327 4.30902 10.189 6.05449 3.0327 4.30902 4.8436 6.0654 4.29811 9.04353 6.05449 + ] pdfxs + (a) show + (sed) + [4.30902 4.8436 10.7999 ] pdfxs + (o) show + (n) + [10.789 ] pdfxs + (o) show + (urexperience) + [6.0654 9.01081 4.8436 5.75995 6.35994 4.85451 4.2654 3.0327 4.8436 6.0654 4.8436 + 9.58901 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [8.97819 ] pdfxs + (t) show + (hetypeinf) + [6.0654 9.5781 3.94914 5.74904 6.37085 9.5781 3.0327 6.0654 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) show + -7.879 -542.15 m + (c) + [4.8436 ] pdfxs + (a) show + (p) + [6.0654 ] pdfxs + (t) show + (uredby) + [6.05449 4.27631 4.85451 11.2035 5.75995 10.909 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Misen) + [15.1418 3.0327 9.44716 4.85451 6.05449 ] pdfxs + (o) show + (u) + [6.0654 ] pdfxs + (g) show + (htoen) + [11.2144 4.23277 10.6035 4.85451 6.05449 ] pdfxs + (a) show + (ble) + [6.0654 3.0327 9.99264 ] pdfxs + (agg) show + (ressive) + [4.27631 4.8436 4.30902 4.29811 3.0327 5.4545 9.99264 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (ns) + [6.0654 9.44716 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (tw) + [9.39273 7.57085 ] pdfxs + (o) show + (uld) + [6.0654 3.02179 11.2144 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (di) + [6.05449 3.0327 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [6.05449 ] pdfxs + (a) show + (llybe) + [3.0327 3.0327 10.909 6.35994 4.8436 ] pdfxs + -7.879 -564.073 m + (att) show + (emp) + [4.8436 9.09802 6.05449 ] pdfxs + (t) show + (ed) + [4.8436 10.6799 ] pdfxs + (o) show + (nly) + [6.0654 3.0327 10.3635 ] pdfxs + (o) show + (ntype-s) + [10.6799 3.93823 5.75995 6.35994 4.85451 3.63261 4.30902 ] pdfxs + (a) show + (fel) + [3.32724 9.46901 3.0327 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (esins) + [4.8436 8.92353 3.0327 10.669 4.30902 ] pdfxs + (o) show + (urce-levelc) + [6.05449 4.27631 4.8436 4.85451 3.63261 3.0327 4.8436 5.4545 4.85451 7.6472 4.8436 + ] pdfxs + (o) show + (mpilers) + [9.09802 6.05449 3.0327 3.0327 4.8436 4.27631 8.91262 ] pdfxs + (t) show + (hr) + [6.0654 4.27631 ] pdfxs + (o) show + (u) + [6.05449 ] pdfxs + (g) show + (h) + [10.6799 ] pdfxs + (t) show + (heuse) + [6.05449 9.46901 6.05449 4.30902 9.4581 ] pdfxs + (o) show + (fm) + [7.95266 9.09802 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.29811 4.85451 ] pdfxs + (o) show + (pic) + [6.05449 3.0327 4.8436 ] pdfxs + -7.879 -585.996 m + (t) show + (echniques.Codesizeme) + [4.8436 4.54905 6.0654 6.05449 3.0327 5.75995 6.05449 4.85451 4.29811 8.57447 7.8763 + 5.75995 6.05449 8.71629 4.30902 3.02179 4.85451 8.71629 9.08711 4.85451 ] pdfxs + (a) show + (suremen) + [4.29811 6.0654 4.2654 4.85451 9.08711 4.8436 5.75995 ] pdfxs + (t) show + (sshow) + [8.17081 4.29811 6.0654 5.14905 11.749 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [8.11638 ] pdfxs + (t) show + (he) + [6.05449 8.71629 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mrepresent) + [13.8654 4.27631 4.8436 6.0654 4.2654 4.85451 4.29811 4.85451 5.75995 4.23277 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nisc) + [9.92718 3.0327 8.17081 4.8436 ] pdfxs + (o) show + (mp) + [9.09802 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (a) show + (bleinsize) + [6.05449 3.0327 8.71629 3.0327 9.92718 4.29811 3.0327 4.85451 8.70538 ] pdfxs + (to) show + -7.879 -607.918 m + (X8) show + (6m) + [10.0908 9.08711 ] pdfxs + (a) show + (chinecode) + [4.54905 6.0654 3.02179 6.0654 9.47992 4.85451 5.75995 6.05449 9.49083 ] pdfxs + (\() show + (aC) + [10.0908 7.8763 ] pdfxs + (I) show + (SC) + [6.05449 12.5235 ] pdfxs + (a) show + (rchi) + [4.2654 4.54905 6.0654 3.02179 ] pdfxs + (t) show + (ec) + [4.85451 4.8436 ] pdfxs + (t) show + (ure\)) + [6.0654 4.2654 4.85451 8.88001 ] pdfxs + (a) show + (ndr) + [6.05449 10.7017 4.2654 ] pdfxs + (o) show + (u) + [6.0654 ] pdfxs + (g) show + (hly) + [6.0654 3.02179 10.3963 ] pdfxs + (25) show + (%sm) + [13.7234 4.30902 9.08711 ] pdfxs + (a) show + (ller) + [3.0327 3.0327 4.8436 8.91263 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (n) + [10.7017 ] pdfxs + (RI) show + (SCcode) + [6.0654 12.5126 4.8436 5.75995 6.0654 9.47992 ] pdfxs + (o) show + (naver) + [10.7017 5.14905 5.4545 4.8436 4.27631 ] pdfxs + (ag) show + (e,) + [4.85451 3.0327 ] pdfxs + -7.879 -629.841 m + (despi) + [6.0654 4.8436 4.29811 6.0654 3.0327 ] pdfxs + (t) show + (ec) + [9.78537 4.85451 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (uringmuchrichertypeinf) + [6.0654 4.2654 3.0327 6.0654 10.3963 8.78166 6.0654 4.54905 10.9963 4.27631 3.0327 + 4.54905 6.05449 4.85451 9.20717 3.94914 5.74904 6.37085 9.78537 3.0327 6.0654 3.32724 + ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [11.0072 ] pdfxs + (a) show + (swell) + [9.23989 7.58175 4.8436 3.0327 7.97448 ] pdfxs + (a) show + (s) + [9.23989 ] pdfxs + (a) show + (nin\fni) + [11.0072 3.0327 6.05449 6.0654 6.0654 3.02179 ] pdfxs + (t) show + (ere) + [9.79628 4.27631 4.8436 ] pdfxs + (g) show + (is) + [3.0327 4.29811 ] pdfxs + (t) show + (ersetinSSAf) + [4.85451 9.20717 4.30902 4.8436 9.18546 3.0327 11.0072 6.05449 6.0654 13.1235 3.33815 + ] pdfxs + (o) show + (rm.) + [4.2654 9.09802 3.0327 ] pdfxs + 220.666 -657.201 m + (14) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + 1 0 0 1 72 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (a) show + (ppr) + [6.0654 6.05449 4.27631 ] pdfxs + (oa) show + (ches) + [4.53815 6.0654 4.8436 8.12717 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [8.06183 ] pdfxs + (a) show + (reei) + [4.27631 8.66175 4.85451 3.0327 ] pdfxs + (t) show + (herm) + [6.05449 4.85451 8.08355 9.09802 ] pdfxs + (a) show + (dem) + [6.05449 8.67266 9.08711 ] pdfxs + (o) show + (repowerful,m) + [4.27631 8.66175 6.35994 5.15996 7.57085 4.8436 4.27631 3.33815 6.05449 3.0327 6.89448 + 9.08711 ] pdfxs + (o) show + (re) + [4.27631 8.66175 ] pdfxs + (g) show + (ener) + [4.85451 6.05449 4.85451 4.27631 ] pdfxs + (a) show + (l,) + [3.02179 6.89448 ] pdfxs + (o) show + (r) + [8.09446 ] pdfxs + (a) show + (ut) + [6.0654 4.23277 ] pdfxs + (o) show + (m) + [9.09802 ] pdfxs + (at) show + (icwhere) + [3.02179 8.67266 7.8763 6.0654 4.8436 4.27631 8.66175 ] pdfxs + (t) show + (he) + [6.0654 8.66175 ] pdfxs + (t) show + (echniques) + [4.85451 4.53815 6.0654 6.05449 3.0327 5.75995 6.05449 4.85451 4.29811 ] pdfxs + 0 -21.922 m + (wereprevi) + [7.57085 4.85451 4.27631 8.47629 6.0654 4.27631 4.8436 5.75995 3.0327 ] pdfxs + (o) show + (uslym) + [6.05449 4.30902 3.02179 9.40355 9.08711 ] pdfxs + (a) show + (nu) + [5.75995 6.05449 ] pdfxs + (a) show + (l.Webelieve) + [3.0327 7.87629 10.309 8.47629 6.37085 4.8436 3.0327 3.0327 4.8436 5.4545 8.4872 + ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tm) + [7.88729 9.08711 ] pdfxs + (a) show + (ny) + [5.75995 9.39264 ] pdfxs + (a) show + (pplic) + [6.0654 6.05449 3.0327 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 7.94172 ] pdfxs + (a) show + (res) + [4.27631 8.4872 4.29811 ] pdfxs + (t) show + (illrem) + [3.0327 3.02179 6.6763 4.2654 4.85451 9.08711 ] pdfxs + (a) show + (iningundiscovered.) + [3.0327 6.05449 3.0327 6.0654 9.08719 6.0654 6.05449 6.0654 3.0327 4.29811 4.8436 + 5.15996 5.4545 4.8436 4.27631 4.8436 6.0654 3.0327 ] pdfxs + 225.818 -657.201 m + (191) show + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (26) 27 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 0.000000 0.000000 translate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 72 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (ifweknow) + [3.0327 7.5272 7.58175 9.05447 5.74904 6.0654 5.14905 12.0763 ] pdfxs + (t) show + (hed) + [6.0654 9.04356 6.0654 ] pdfxs + (at) show + (astruc) + [9.65446 4.30902 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ureisn'tcyclic) + [6.0654 4.2654 9.05447 3.0327 4.29811 6.0654 3.02179 8.44365 4.85451 5.75995 4.8436 + 3.0327 3.0327 9.04356 ] pdfxs + (\() show + (i.e.,anodec) + [3.0327 3.0327 4.8436 3.0327 7.37448 9.65446 6.05449 5.75995 6.0654 9.04356 4.85451 + ] pdfxs + (a) show + (nn) + [6.05449 6.0654 ] pdfxs + (o) show + (tbevisi) + [8.44365 6.35994 9.05447 5.75995 3.02179 4.30902 3.0327 ] pdfxs + (t) show + (edm) + [4.8436 10.2654 9.08711 ] pdfxs + (o) show + (re) + [4.27631 9.04356 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (n) + [10.2654 ] pdfxs + (o) show + (nce) + [6.05449 4.85451 4.8436 ] pdfxs + (\)) show + (,) + [7.37448 ] pdfxs + (a) show + (ndif) + [6.05449 10.2654 3.0327 3.33815 ] pdfxs + 0 -21.922 m + (t) show + (he) + [6.05449 9.02174 ] pdfxs + (\\) show + (processin) + [6.0654 4.27631 5.74904 4.85451 4.8436 4.30902 4.29811 3.0327 6.05449 ] pdfxs + (g) show + (") + [9.63264 ] pdfxs + (o) show + (fe) + [7.50539 4.8436 ] pdfxs + (a) show + (chnodeisindependent) + [4.54905 10.2326 6.05449 5.75995 6.0654 9.02174 3.02179 8.47626 3.0327 6.0654 6.05449 + 4.85451 6.35994 4.8436 6.0654 6.0654 4.8436 5.75995 8.41092 ] pdfxs + (o) show + (rc) + [8.44354 4.85451 ] pdfxs + (o) show + (mmu) + [9.08711 8.79257 6.05449 ] pdfxs + (tat) show + (ive[) + [3.0327 5.4545 9.02174 3.02179 ] pdfxs + (108) show + (]itisp) + [7.21085 3.02179 8.42183 3.02179 8.47626 6.37085 ] pdfxs + (o) show + (ssible) + [4.29811 4.29811 3.0327 6.0654 3.0327 9.01083 ] pdfxs + (t) show + (ouses) + [9.63264 6.05449 4.30902 9.02174 4.29811 ] pdfxs + (ta) show + (nd) + [6.0654 6.05449 ] pdfxs + (a) show + (rd) + [4.27631 6.0654 ] pdfxs + 0 -43.845 m + (\\) show + (divide-) + [6.0654 3.02179 5.75995 3.0327 6.05449 4.85451 3.63261 ] pdfxs + (a) show + (nd-c) + [6.0654 6.05449 3.64352 4.8436 ] pdfxs + (o) show + (nquer") + [6.0654 5.75995 6.05449 4.85451 4.2654 8.8472 ] pdfxs + (t) show + (echniques) + [4.8436 4.54905 6.05449 6.0654 3.0327 5.75995 6.05449 4.85451 7.69081 ] pdfxs + (t) show + (op) + [8.83629 6.0654 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (a) show + (llelize) + [3.02179 3.0327 4.85451 3.02179 3.0327 4.85451 8.23629 ] pdfxs + (t) show + (he) + [6.05449 8.23629 ] pdfxs + (o) show + (per) + [6.37085 4.8436 4.27631 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.44719 ] pdfxs + (o) show + (n) + [9.44719 ] pdfxs + (t) show + (hed) + [6.0654 8.23629 6.05449 ] pdfxs + (at) show + (as) + [8.8472 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ure.) + [6.05449 4.27631 4.8436 7.79993 ] pdfxs + (U) show + (nf) + [6.0654 3.32724 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (t) show + (un) + [6.05449 6.0654 ] pdfxs + (at) show + (ely,) + [4.8436 3.0327 4.8545 3.0327 ] pdfxs + 0 -65.768 m + (sh) + [4.29811 6.0654 ] pdfxs + (a) show + (pe) + [6.35994 8.32357 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 7.77808 ] pdfxs + (a) show + (l) + [3.02179 ] pdfxs + (go) show + (ri) + [4.27631 3.0327 ] pdfxs + (t) show + (hms) + [6.05449 9.09802 7.76717 ] pdfxs + (a) show + (re) + [4.27631 8.31266 ] pdfxs + (a) show + (lsoex) + [3.0327 4.30902 8.92356 4.8436 5.75995 ] pdfxs + (t) show + (remelyexpensive\() + [4.2654 4.85451 9.08711 4.85451 3.02179 9.22901 4.85451 5.74904 6.37085 4.8436 6.0654 + 4.29811 3.0327 5.4545 8.32357 4.23277 ] pdfxs + (o) show + (f) + [3.33815 ] pdfxs + (t) show + (end) + [4.8436 9.53446 6.05449 ] pdfxs + (o) show + (ublyexp) + [6.0654 6.0654 3.02179 9.22901 4.85451 5.74904 6.37085 ] pdfxs + (o) show + (nenti) + [6.05449 4.85451 5.75995 4.23277 3.0327 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (\)) show + (,limi) + [6.53449 3.0327 3.02179 9.09802 3.02179 ] pdfxs + (t) show + (ingitsuse) + [3.0327 6.0654 8.92356 3.0327 4.23277 7.77808 6.05449 4.30902 4.8436 ] pdfxs + 0 -87.69 m + (t) show + (opr) + [9.08719 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms) + [9.08711 7.94172 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (t) + [7.87638 ] pdfxs + (a) show + (requitesm) + [4.27631 8.47629 5.75995 6.0654 3.0327 4.23277 8.4872 4.30902 9.08711 ] pdfxs + (a) show + (ll) + [3.0327 6.6654 ] pdfxs + (\() show + (e.) + [4.8436 3.0327 ] pdfxs + (g) show + (.,less) + [3.0327 6.6654 3.0327 4.8436 4.30902 7.93081 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (na) + [9.6981 9.08719 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (o) show + (us) + [6.05449 4.30902 ] pdfxs + (a) show + (ndlinesinsize\)[) + [6.05449 9.6981 3.0327 3.0327 6.05449 4.85451 7.93081 3.0327 9.6981 4.29811 3.0327 + 4.85451 4.8436 7.87638 3.0327 ] pdfxs + (117) show + (].) + [3.0327 3.0327 ] pdfxs + 16.936 -109.613 m + (Thec) + [7.8763 6.0654 8.98902 4.85451 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (a) show + (bility) + [6.0654 3.02179 3.0327 3.0327 3.93823 9.90537 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [8.3891 ] pdfxs + (a) show + (llowssh) + [3.0327 3.02179 5.15996 7.8763 8.44353 4.30902 6.05449 ] pdfxs + (a) show + (pe) + [6.37085 8.98902 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 8.44353 ] pdfxs + (t) show + (odis) + [9.59992 6.0654 3.0327 4.29811 ] pdfxs + (t) show + (in) + [3.0327 6.05449 ] pdfxs + (g) show + (uishbetweenlis) + [6.0654 3.0327 4.29811 10.1999 6.37085 4.8436 3.93823 7.58175 4.8436 4.85451 10.1999 + 3.0327 3.0327 4.29811 ] pdfxs + (t/t) show + (ree-liked) + [4.2654 4.85451 4.8436 3.64352 3.02179 3.0327 5.4545 8.99993 6.05449 ] pdfxs + (at) show + (as) + [9.59992 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ures) + [6.05449 4.27631 4.8436 4.29811 ] pdfxs + 0 -131.535 m + (a) show + (ndDAGsis) + [6.0654 9.6981 8.0291 7.8872 8.55269 7.95263 3.0327 7.94172 ] pdfxs + (g) show + (ener) + [4.85451 6.05449 4.85451 4.2654 ] pdfxs + (a) show + (llyc) + [3.0327 3.0327 9.40355 4.8436 ] pdfxs + (a) show + (lled) + [3.0327 3.0327 4.8436 9.709 ] pdfxs + (t) show + (he) + [6.0654 8.4872 ] pdfxs + (\\) show + (sh) + [4.30902 6.05449 ] pdfxs + (a) show + (red"bit) + [4.27631 4.8436 6.0654 9.0981 6.0654 3.02179 7.88729 ] pdfxs + (\() show + (ei) + [4.85451 3.02179 ] pdfxs + (t) show + (her) + [6.0654 4.8436 7.91991 ] pdfxs + (o) show + (nanode[) + [9.709 9.0981 6.0654 5.74904 6.0654 8.4872 3.0327 ] pdfxs + (117) show + (]) + [6.6763 ] pdfxs + (o) show + (ra\feld[) + [7.91991 9.0981 6.0654 4.8436 3.0327 9.709 3.02179 ] pdfxs + (38) show + (]in) + [6.6763 3.0327 9.709 ] pdfxs + (t) show + (he) + [6.05449 8.49811 ] pdfxs + (g) show + (r) + [4.27631 ] pdfxs + (a) show + (ph) + [6.05449 6.0654 ] pdfxs + (\)) show + (.) show + 0 -153.458 m + (Thesh) + [7.8763 6.0654 8.31266 4.29811 6.0654 ] pdfxs + (a) show + (redbitindic) + [4.2654 4.85451 9.52355 6.05449 3.0327 7.70183 3.0327 6.0654 6.05449 3.0327 4.85451 + ] pdfxs + (at) show + (esifamem) + [4.8436 7.76717 3.0327 6.7963 8.91265 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 9.2181 ] pdfxs + (o) show + (bjectisp) + [6.66539 3.33815 4.8436 4.85451 7.70183 3.0327 7.76717 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (ed) + [4.8436 9.52355 ] pdfxs + (t) show + (obymul) + [8.91265 5.75995 9.2181 8.79257 6.05449 3.0327 ] pdfxs + (t) show + (iplehe) + [3.0327 6.05449 3.0327 8.31266 6.0654 4.8436 ] pdfxs + (a) show + (p) + [9.52355 ] pdfxs + (o) show + (bjec) + [6.66539 3.33815 4.8436 4.85451 ] pdfxs + (t) show + (s.) + [4.29811 7.82175 ] pdfxs + (I) show + (fn) + [6.7963 6.0654 ] pdfxs + (o) show + (tse) + [7.70183 4.29811 4.85451 ] pdfxs + (t) show + (,) + [6.52358 ] pdfxs + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + 0 -175.38 m + (if) + [3.0327 7.46175 ] pdfxs + (t) show + (ree-like,) + [4.2654 4.85451 4.8436 3.63261 3.0327 3.0327 5.4545 4.85451 7.2763 ] pdfxs + (t) show + (hed) + [6.05449 8.97811 6.0654 ] pdfxs + (at) show + (as) + [9.5781 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (uremaybeprocessedwi) + [6.05449 4.27631 8.97811 9.08711 5.15996 9.88355 6.35994 8.97811 6.05449 4.27631 5.75995 + 4.8436 4.85451 4.29811 4.30902 4.8436 10.189 7.8763 3.0327 ] pdfxs + (t) show + (hdivide-) + [10.189 6.05449 3.0327 5.75995 3.0327 6.05449 4.85451 3.63261 ] pdfxs + (a) show + (nd-c) + [6.0654 6.05449 3.64352 4.8436 ] pdfxs + (o) show + (nquer) + [6.0654 5.74904 6.0654 4.8436 8.39991 ] pdfxs + (t) show + (echniques.Webelieve) + [4.85451 4.53815 6.0654 6.05449 3.0327 5.75995 6.0654 4.8436 4.30902 9.34901 10.2981 + 8.97811 6.35994 4.85451 3.0327 3.02179 4.85451 5.4545 4.8436 ] pdfxs + 0 -197.303 m + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [8.12729 ] pdfxs + (t) show + (hein) + [6.0654 8.7272 3.0327 5.75995 ] pdfxs + (t) show + (roducti) + [4.2654 5.75995 6.0654 6.05449 4.85451 4.23277 3.0327 ] pdfxs + (o) show + (n) + [9.949 ] pdfxs + (o) show + (fasm) + [7.21084 9.3381 4.30902 9.08711 ] pdfxs + (a) show + (ll) + [3.0327 6.90539 ] pdfxs + (a) show + (m) + [9.09802 ] pdfxs + (o) show + (unt\row-sensi) + [6.05449 5.75995 8.12729 6.0654 5.14905 7.8763 3.63261 4.30902 4.8436 6.0654 4.29811 + 3.0327 ] pdfxs + (t) show + (ivityc) + [3.0327 5.74904 3.0327 3.93823 9.64355 4.85451 ] pdfxs + (o) show + (uldbe) + [6.05449 3.0327 9.93809 6.37085 8.7272 ] pdfxs + (a) show + (dded) + [6.0654 6.05449 4.85451 9.93809 ] pdfxs + (t) show + (o) + [9.3381 ] pdfxs + (D) show + (SAwhichmay) + [6.05449 12.0653 7.88721 6.05449 3.0327 4.54905 9.93809 9.08711 5.15996 9.63264 ] pdfxs + (a) show + (llow) + [3.0327 3.0327 5.14905 7.8763 ] pdfxs + 0 -219.225 m + (D) show + (SA) + [6.05449 12.2508 ] pdfxs + (t) show + (oc) + [9.51264 4.85451 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (urethispr) + [6.0654 4.27631 8.91265 4.23277 6.0654 3.0327 8.36717 6.05449 4.27631 ] pdfxs + (o) show + (pertyinm) + [6.35994 4.85451 4.2654 3.94914 9.8181 3.0327 10.1235 9.08711 ] pdfxs + (a) show + (nyc) + [5.75995 9.8181 4.85451 ] pdfxs + (a) show + (ses) + [4.29811 4.85451 8.36717 ] pdfxs + (a) show + (tac) + [8.30183 9.52355 4.8436 ] pdfxs + (o) show + (mpile-) + [9.08711 6.0654 3.0327 3.0327 4.8436 3.63261 ] pdfxs + (t) show + (imec) + [3.0327 9.08711 8.91265 4.85451 ] pdfxs + (o) show + (st) + [4.29811 8.31274 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tismuchless) + [8.31274 3.02179 8.36717 8.79257 6.0654 4.53815 10.1235 3.0327 4.85451 4.29811 8.36717 + ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (nsh) + [10.1345 4.29811 6.0654 ] pdfxs + (a) show + (pe) + [6.35994 4.8436 ] pdfxs + 0 -241.148 m + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis.) + [3.02179 5.75995 4.30902 3.02179 4.30902 3.0327 ] pdfxs + 0 -278.335 m + /N1025 10.909 Tf + (Po) + [8.22533 6.62173 ] pdfxs + (o) show + (l-) + [3.49088 4.1781 ] pdfxs + (o) show + (r) + [5.15995 ] pdfxs + (de) show + (r) + [9.349 ] pdfxs + (p) show + (ro) + [5.17085 6.62173 ] pdfxs + (ce) show + (ssi) + [4.95263 4.94172 3.49088 ] pdfxs + (n) show + (g) + [10.4508 ] pdfxs + (o) show + (f) + [8.01809 ] pdfxs + (dat) show + (as) + [10.2763 4.95263 ] pdfxs + (t) show + (r) + [5.17085 ] pdfxs + (uctu) show + (r) + [5.15995 ] pdfxs + (e) show + (s) show + 0 -307.303 m + /N614 10.909 Tf + (Thel) + [7.8763 6.0654 8.33448 3.0327 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (g) show + (est) + [4.8436 4.30902 7.73456 ] pdfxs + (ga) show + (infr) + [3.02179 9.55628 3.33815 4.2654 ] pdfxs + (o) show + (ms) + [12.5889 4.29811 ] pdfxs + (tat) show + (ic) + [3.0327 8.33448 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.02179 5.75995 4.30902 3.02179 7.7999 ] pdfxs + (a) show + (ndpo) + [6.05449 9.55628 6.35994 5.75995 ] pdfxs + (o) show + (l) + [6.52358 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (ionc) + [3.02179 5.46541 9.54537 4.85451 ] pdfxs + (o) show + (uldbe) + [6.05449 3.0327 9.54537 6.37085 8.33448 ] pdfxs + (a) show + (chievedbyc) + [4.54905 6.0654 3.02179 4.85451 5.4545 4.8436 9.55628 5.75995 9.23992 4.85451 ] pdfxs + (o) show + (mple) + [9.08711 6.0654 3.0327 4.8436 ] pdfxs + (t) show + (elyi) + [4.8436 3.0327 9.25083 3.0327 ] pdfxs + (g) show + (n) + [6.05449 ] pdfxs + (o) show + (rin) + [4.27631 3.0327 6.05449 ] pdfxs + (g) show + 0 -329.226 m + (t) show + (hed) + [6.05449 9.14174 6.0654 ] pdfxs + (at) show + (as) + [9.74173 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.05449 4.27631 9.14174 ] pdfxs + (t) show + (ravers) + [4.2654 5.15996 5.4545 4.8436 4.27631 4.29811 ] pdfxs + (a) show + (lp) + [7.31994 6.0654 ] pdfxs + (att) show + (ern) + [4.8436 4.27631 10.3526 ] pdfxs + (o) show + (f) + [7.61448 ] pdfxs + (t) show + (hes) + [6.0654 9.14174 4.29811 ] pdfxs + (o) show + (urcepr) + [6.0654 4.2654 4.85451 9.14174 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (m,elimin) + [9.09802 7.48357 4.8436 3.0327 3.0327 9.08711 3.0327 6.0654 ] pdfxs + (a) show + (tingp) + [4.23277 3.0327 6.0654 9.74173 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (erch) + [4.8436 8.56354 4.54905 6.05449 ] pdfxs + (a) show + (singfr) + [4.30902 3.0327 6.05449 9.75264 3.32724 4.27631 ] pdfxs + (o) show + (m) + [13.3743 ] pdfxs + (t) show + (he) + [6.0654 4.8436 ] pdfxs + 0 -351.148 m + (pr) + [6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (m) + [12.6434 ] pdfxs + (a) show + (ll) + [3.0327 6.57812 ] pdfxs + (tog) show + (e) + [4.8436 ] pdfxs + (t) show + (her.) + [6.0654 4.8436 4.27631 7.84357 ] pdfxs + (I) show + (de) + [6.0654 4.8436 ] pdfxs + (a) show + (lly,wew) + [3.0327 3.0327 4.84359 6.59994 7.58175 8.39993 7.57085 ] pdfxs + (o) show + (uldlike) + [6.0654 3.02179 9.61082 3.0327 3.0327 5.4545 8.39993 ] pdfxs + (t) show + (o) + [8.99992 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rmpr) + [4.27631 12.6434 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms) + [9.08711 7.85445 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (ti) + [7.78911 3.0327 ] pdfxs + (t) show + (er) + [4.8436 4.27631 ] pdfxs + (at) show + (eovereverynodein) + [8.39993 5.14905 5.4545 4.8436 7.82173 4.85451 5.4545 4.8436 4.27631 9.30537 6.0654 + 5.75995 6.05449 8.39993 3.0327 6.0654 ] pdfxs + 0 -373.071 m + (ad) + [9.01083 6.05449 ] pdfxs + (at) show + (as) + [9.01083 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.0654 4.2654 8.41084 ] pdfxs + (t) show + (oi) + [9.01083 3.02179 ] pdfxs + (t) show + (er) + [4.85451 4.2654 ] pdfxs + (at) show + (eover) + [8.41084 5.14905 5.4545 4.8436 7.83264 ] pdfxs + (t) show + (henodesin) + [6.05449 8.41084 6.05449 5.75995 6.0654 4.8436 7.86536 3.02179 6.0654 ] pdfxs + 213.455 -373.071 m + /N634 10.909 Tf + (po) + [5.01816 5.01816 ] pdfxs + (o) show + (l) + [6.62173 ] pdfxs + (o) show + (r) + [4.0363 ] pdfxs + (de) show + (r) show + 264.051 -373.071 m + /N614 10.909 Tf + (ins) + [3.0327 6.05449 4.30902 ] pdfxs + (t) show + (e) + [4.8436 ] pdfxs + (a) show + (d) + [9.62173 ] pdfxs + (o) show + (fbytraversing) + [6.88357 5.75995 9.31628 4.23277 4.27631 5.14905 5.4545 4.85451 4.2654 4.30902 3.0327 + 6.05449 9.01083 ] pdfxs + (t) show + (hep) + [6.0654 8.39993 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (ersinthe) + [4.8436 4.27631 7.85445 3.0327 9.62173 4.23277 6.0654 4.8436 ] pdfxs + -3.05176e-05 -394.994 m + (d) + [6.0654 ] pdfxs + (a) show + (tas) + [4.23277 9.19628 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ure.This) + [6.05449 4.27631 4.8436 8.18175 7.8763 6.0654 3.02179 8.0399 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nw) + [9.79628 7.57085 ] pdfxs + (o) show + (uldturnsp) + [6.0654 3.0327 9.79628 4.23277 6.0654 4.27631 9.79628 4.29811 6.0654 ] pdfxs + (a) show + (rsep) + [4.2654 4.30902 8.58538 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (er-ch) + [4.85451 4.2654 3.64352 4.53815 6.0654 ] pdfxs + (a) show + (sing) + [4.29811 3.0327 6.0654 9.18538 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (go) show + (ri) + [4.27631 3.02179 ] pdfxs + (t) show + (hmsinto) + [6.0654 9.08711 8.0399 3.0327 5.75995 4.23277 9.19628 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (go) show + (ri) + [4.2654 3.0327 ] pdfxs + (t) show + (hms) + [6.0654 9.08711 4.29811 ] pdfxs + -3.05176e-05 -416.916 m + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [7.88729 ] pdfxs + (a) show + (remuche) + [4.2654 8.4872 8.79257 6.05449 4.54905 9.6981 4.8436 ] pdfxs + (a) show + (sier) + [4.30902 3.0327 4.8436 7.909 ] pdfxs + (t) show + (o) + [9.08719 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lyze\() + [3.0327 5.74904 4.85451 8.4872 4.23277 ] pdfxs + (a) show + (nd) + [6.0654 9.6981 ] pdfxs + (t) show + (hepo) + [6.05449 8.4872 6.35994 5.75995 ] pdfxs + (o) show + (lc) + [6.6654 4.85451 ] pdfxs + (a) show + (nbedividedup) + [9.6981 6.35994 8.4872 6.05449 3.0327 5.75995 3.0327 6.05449 4.85451 9.6981 6.05449 + 9.6981 ] pdfxs + (t) show + (oexecu) + [9.08719 4.85451 5.75995 4.8436 4.8436 6.0654 ] pdfxs + (t) show + (einp) + [8.4872 3.0327 9.68719 6.0654 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (a) show + (llel) + [3.02179 3.0327 4.85451 3.02179 ] pdfxs + (\)) show + (.) show + 16.937 -438.839 m + (Tos) + [6.97085 8.69447 4.29811 ] pdfxs + (a) show + (felyperf) + [3.33815 4.8436 3.0327 8.99992 6.35994 4.85451 4.27631 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 12.3271 ] pdfxs + (t) show + (his) + [6.0654 3.02179 7.54899 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n,thec) + [6.05449 6.35994 4.23277 6.0654 8.09448 4.8436 ] pdfxs + (o) show + (mpilerw) + [9.08711 6.0654 3.0327 3.02179 4.85451 7.51628 7.57085 ] pdfxs + (o) show + (uldneed) + [6.0654 3.0327 9.29446 6.0654 4.8436 4.85451 9.29446 ] pdfxs + (t) show + (oiden) + [8.69447 3.0327 6.0654 4.8436 5.75995 ] pdfxs + (t) show + (ifyap) + [3.0327 3.32724 8.99992 8.69447 6.0654 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (a) show + (lleliz) + [3.0327 3.0327 4.8436 3.0327 3.0327 4.8436 ] pdfxs + (a) show + (bled) + [6.0654 3.0327 8.08357 6.0654 ] pdfxs + (ata) show + -3.05176e-05 -460.761 m + (s) + [4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (urec) + [6.05449 4.27631 9.3381 4.8436 ] pdfxs + (o) show + (mpu) + [9.08711 6.0654 6.05449 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [10.5381 ] pdfxs + (\(a) show + (sdescribedinSec) + [8.79262 6.05449 4.85451 4.29811 4.85451 4.2654 3.0327 6.35994 4.85451 10.5381 3.0327 + 10.549 6.05449 4.85451 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [10.5381 ] pdfxs + (8) show + (.) + [3.0327 ] pdfxs + (2) show + (.) + [3.0327 ] pdfxs + (5) show + (\)) + [8.72728 ] pdfxs + (a) show + (ndproveth) + [6.05449 10.549 6.05449 4.27631 5.14905 5.4545 9.3381 4.23277 6.0654 ] pdfxs + (a) show + (t) + [8.72728 ] pdfxs + (t) show + (hereis) + [6.05449 4.85451 4.2654 9.3381 3.0327 8.78171 ] pdfxs + (o) show + (nlyasin) + [6.0654 3.02179 10.2435 9.9381 4.29811 3.0327 6.0654 ] pdfxs + (g) show + (led) + [3.0327 9.3272 6.05449 ] pdfxs + (ata) show + -3.05176e-05 -482.684 m + (s) + [4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ureinthepo) + [6.05449 4.27631 9.09811 3.0327 10.309 4.23277 6.0654 9.09811 6.35994 5.75995 ] pdfxs + (o) show + (l.This) + [3.0327 9.70901 7.8763 6.0654 3.0327 8.54171 ] pdfxs + (goa) show + (lisbyf) + [7.2763 3.0327 8.55262 5.75995 10.0035 3.32724 ] pdfxs + (a) show + (r) + [8.51991 ] pdfxs + (t) show + (hem) + [6.0654 9.09811 9.08711 ] pdfxs + (o) show + (st) + [4.29811 8.49819 ] pdfxs + (agg) show + (ressive) + [4.2654 4.85451 4.29811 4.30902 3.02179 5.4545 9.09811 ] pdfxs + (o) show + (f) + [7.58175 ] pdfxs + (a) show + (ny) + [5.75995 10.0035 ] pdfxs + (o) show + (f) + [7.58175 ] pdfxs + (t) show + (he) + [6.05449 9.09811 ] pdfxs + (t) show + (echniquesdescribed) + [4.8436 4.54905 6.0654 6.05449 3.0327 5.75995 6.05449 4.85451 8.55262 6.05449 4.85451 + 4.29811 4.85451 4.2654 3.0327 6.35994 4.85451 6.0654 ] pdfxs + -3.05176e-05 -504.606 m + (here.At) + [6.0654 4.8436 4.27631 4.8436 7.81084 7.8763 7.64729 ] pdfxs + (t) show + (hisp) + [6.0654 3.0327 7.71263 6.35994 ] pdfxs + (o) show + (intitisn) + [3.0327 5.75995 7.6582 3.02179 7.6582 3.0327 7.71263 6.0654 ] pdfxs + (o) show + (tcle) + [7.64729 4.85451 3.0327 4.8436 ] pdfxs + (a) show + (rwhe) + [7.69082 7.8763 6.05449 4.85451 ] pdfxs + (t) show + (her) + [6.05449 4.85451 7.67992 ] pdfxs + (t) show + (his) + [6.0654 3.02179 7.72354 ] pdfxs + (goa) show + (lis) + [6.43631 3.0327 7.71263 ] pdfxs + (a) show + (chiev) + [4.54905 6.0654 3.02179 4.85451 5.14904 ] pdfxs + (a) show + (blewi) + [6.0654 3.02179 8.26902 7.8763 3.0327 ] pdfxs + (t) show + (hen) + [9.46901 4.8436 6.0654 ] pdfxs + (o) show + (u) + [6.0654 ] pdfxs + (g) show + (h) + [9.46901 ] pdfxs + (g) show + (ener) + [4.8436 6.0654 4.8436 4.27631 ] pdfxs + (a) show + (lity) + [3.0327 3.0327 3.93823 9.16356 ] pdfxs + (t) show + (om) + [8.86901 9.08711 ] pdfxs + (a) show + (kei) + [5.4545 8.26902 3.02179 ] pdfxs + (t) show + -3.05176e-05 -526.529 m + (usefulinpr) + [6.0654 4.29811 4.8436 3.33815 6.0654 6.6654 3.02179 9.6981 6.0654 4.27631 ] pdfxs + (a) show + (c) + [4.8436 ] pdfxs + (t) show + (ice.) + [3.0327 4.8436 4.85451 3.0327 ] pdfxs + -3.05176e-05 -571.983 m + /N622 14.346 Tf + (8.3) + [8.07685 4.476 24.2161 ] pdfxs + (Su) show + (mmary) + [13.4422 13.4566 7.83287 6.59915 8.52144 ] pdfxs + -3.05176e-05 -604.709 m + /N614 10.909 Tf + (Thisch) + [7.8763 6.0654 3.0327 6.97082 4.53815 6.0654 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (erbrie\rydescribedsever) + [4.85451 6.9381 6.0654 4.2654 3.0327 4.85451 6.05449 8.43265 6.05449 4.85451 4.29811 + 4.8436 4.27631 3.0327 6.35994 4.85451 8.72719 4.29811 4.85451 5.4545 4.8436 4.27631 + ] pdfxs + (a) show + (l) + [5.6945 ] pdfxs + (a) show + (re) + [4.27631 4.8436 ] pdfxs + (a) show + (sf) + [6.97082 3.33815 ] pdfxs + (o) show + (rfu) + [6.9381 3.33815 6.05449 ] pdfxs + (t) show + (urew) + [6.0654 4.27631 7.5163 7.57085 ] pdfxs + (o) show + (rkin) + [4.27631 8.42174 3.0327 8.72719 ] pdfxs + (t) show + (he\feld) + [6.0654 7.5163 6.05449 4.85451 3.02179 8.7381 ] pdfxs + (o) show + (fm) + [5.99995 9.08711 ] pdfxs + (a) show + (cr) + [4.85451 4.2654 ] pdfxs + (o) show + (sc) + [4.30902 4.8436 ] pdfxs + (o) show + (picd) + [6.0654 3.0327 7.5163 6.05449 ] pdfxs + (at) show + (as) + [8.1272 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ure) + [6.05449 4.27631 4.8436 ] pdfxs + -3.05176e-05 -626.631 m + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.02179 5.75995 4.30902 3.02179 7.28718 ] pdfxs + (a) show + (nd) + [6.0654 9.04356 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n.Sever) + [6.05449 7.65811 6.0654 4.8436 5.4545 4.85451 4.27631 ] pdfxs + (a) show + (l) + [6.01086 ] pdfxs + (o) show + (f) + [6.31631 ] pdfxs + (t) show + (hedescribed) + [6.05449 7.83266 6.0654 4.8436 4.30902 4.8436 4.27631 3.02179 6.37085 4.8436 9.04356 + ] pdfxs + (t) show + (echniques) + [4.85451 4.53815 6.0654 6.05449 3.0327 5.75995 6.05449 4.85451 7.28718 ] pdfxs + (a) show + (reextensi) + [4.2654 7.83266 4.85451 5.75995 4.23277 4.85451 6.05449 4.30902 3.0327 ] pdfxs + (o) show + (ns) + [6.05449 7.28718 ] pdfxs + (o) show + (f) + [6.31631 ] pdfxs + (ot) show + (herwellknown) + [6.0654 4.8436 7.25446 7.58175 4.8436 3.0327 6.01086 5.75995 6.05449 5.15996 7.8763 + 6.0654 ] pdfxs + 225.818 -657.201 m + (190) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 72 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (Fin) + [7.12357 3.0327 6.05449 ] pdfxs + (a) show + (lly,wepresentex) + [3.0327 3.0327 4.84359 8.01811 7.58175 9.56719 6.05449 4.27631 4.85451 4.29811 4.8436 + 5.75995 8.96728 4.8436 5.75995 ] pdfxs + (a) show + (mple) + [9.08711 6.0654 3.0327 9.56719 ] pdfxs + (t) show + (imin) + [3.02179 9.09802 3.02179 6.0654 ] pdfxs + (g) show + (sshowing) + [9.02171 4.30902 6.05449 5.14905 7.88721 3.02179 6.0654 10.1672 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (t) + [8.95637 ] pdfxs + (t) show + (he) + [6.0654 9.56719 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mrepresen) + [14.7163 4.27631 4.8436 6.0654 4.2654 4.85451 4.29811 4.85451 5.74904 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (nsupp) + [10.7781 4.30902 6.05449 6.0654 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (t) show + (sex) + [9.02171 4.8436 5.75995 ] pdfxs + (t) show + (remely) + [4.27631 4.8436 9.08711 4.85451 3.0327 5.75995 ] pdfxs + 0 -21.922 m + (f) + [3.33815 ] pdfxs + (a) show + (stin) + [4.29811 7.87638 3.0327 5.75995 ] pdfxs + (t) show + (erprocedur) + [4.8436 4.27631 6.05449 4.27631 5.75995 4.8436 4.85451 6.05449 6.0654 4.27631 ] pdfxs + (a) show + (l) + [6.6654 ] pdfxs + (o) show + (p) + [6.05449 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns.) + [6.0654 4.29811 3.0327 ] pdfxs + 16.936 -43.845 m + (Theprim) + [7.8763 6.0654 8.44357 6.0654 4.27631 3.02179 9.09802 ] pdfxs + (a) show + (ryl) + [4.2654 9.35992 3.0327 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (u) + [6.05449 ] pdfxs + (ag) show + (essupp) + [4.85451 7.89808 4.30902 6.05449 6.0654 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (t) show + (edby) + [4.8436 9.66537 5.75995 9.34901 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (M) + [13.6036 ] pdfxs + (a) show + (reC) + [4.27631 8.44357 11.4872 ] pdfxs + (a) show + (ndC++,which) + [6.05449 9.66537 7.8763 8.4872 8.4872 6.63267 7.8763 6.0654 3.0327 4.53815 9.66537 + ] pdfxs + (a) show + (re) + [4.27631 8.44357 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (di) + [6.05449 3.0327 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [6.05449 ] pdfxs + (a) show + (llyc) + [3.0327 3.0327 9.35992 4.8436 ] pdfxs + (o) show + (mpiled) + [9.09802 6.05449 3.0327 3.0327 4.8436 6.0654 ] pdfxs + 0 -65.768 m + (en) + [4.8436 5.75995 ] pdfxs + (t) show + (irelys) + [3.0327 4.27631 4.8436 3.0327 10.3417 4.29811 ] pdfxs + (tat) show + (ic) + [3.0327 4.8436 ] pdfxs + (a) show + (lly.) + [3.0327 3.0327 4.84359 10.7345 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (M) + [14.5854 ] pdfxs + (a) show + (lsosupp) + [3.0327 4.29811 10.0363 4.30902 6.05449 6.0654 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (t) show + (ssever) + [8.8908 4.29811 4.85451 5.4545 4.8436 4.27631 ] pdfxs + (a) show + (l) + [7.61448 ] pdfxs + (ot) show + (herl) + [6.05449 4.85451 8.85809 3.0327 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (es) + [4.8436 8.8908 ] pdfxs + (t) show + (ov) + [10.0472 5.14904 ] pdfxs + (a) show + (ryi) + [4.2654 5.75995 3.0327 ] pdfxs + (o) show + (usex) + [6.0654 8.87989 4.85451 5.75995 ] pdfxs + (t) show + (en) + [4.8436 5.75995 ] pdfxs + (t) show + (s,) + [4.29811 7.85448 ] pdfxs + (a) show + (nda) + [6.0654 10.6472 10.0363 ] pdfxs + (J) show + (av) + [5.14905 5.14904 ] pdfxs + (a) show + 0 -87.69 m + (fr) + [3.33815 4.2654 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (-endiscurren) + [3.63261 4.85451 6.05449 8.87992 3.0327 7.12354 4.85451 6.05449 4.27631 4.27631 4.8436 + 5.75995 ] pdfxs + (t) show + (lybeingdevel) + [3.02179 8.58538 6.35994 4.85451 3.02179 6.0654 8.26902 6.0654 4.8436 5.4545 4.85451 + 3.0327 ] pdfxs + (o) show + (ped.) + [6.35994 4.8436 6.0654 7.60357 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Misfreelyav) + [12.8182 3.0327 7.12354 3.33815 4.2654 4.85451 4.8436 3.0327 8.57447 5.15996 5.14904 + ] pdfxs + (a) show + (il) + [3.0327 3.02179 ] pdfxs + (a) show + (bleunderan) + [6.0654 3.0327 7.66903 6.05449 6.0654 6.0654 4.8436 7.09083 8.27993 6.05449 ] pdfxs + (o) show + (n-res) + [6.0654 3.63261 4.27631 4.8436 4.30902 ] pdfxs + (t) show + (rictivelicensefr) + [4.2654 3.0327 4.85451 4.23277 3.0327 5.4545 7.66903 3.0327 3.0327 4.8436 4.85451 + 6.05449 4.30902 7.66903 3.32724 4.27631 ] pdfxs + (o) show + (m) show + 0 -109.613 m + (t) show + (he) + [6.05449 8.01812 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mh) + [13.1672 6.05449 ] pdfxs + (o) show + (me-p) + [9.09802 4.8436 3.63261 6.0654 ] pdfxs + (ag) show + (e) + [8.01812 ] pdfxs + (\() show + 110.404 -109.613 m + /N722 10.909 Tf + (http://llvm.cs.uiuc.edu/) show + 247.857 -109.613 m + /N614 10.909 Tf + (\)) show + (,) + [6.28358 ] pdfxs + (a) show + (ndh) + [6.0654 9.22901 6.05449 ] pdfxs + (a) show + (sbeenusedf) + [7.47263 6.35994 4.85451 4.8436 9.22901 6.05449 4.30902 4.8436 9.22901 3.33815 ] pdfxs + (o) show + (rm) + [7.42901 9.09802 ] pdfxs + (a) show + (nyc) + [5.74904 8.92356 4.85451 ] pdfxs + (o) show + (mmerci) + [9.08711 9.09802 4.8436 4.27631 4.8436 3.0327 ] pdfxs + (a) show + (l) + [6.19631 ] pdfxs + (a) show + (nd) + [6.05449 6.0654 ] pdfxs + -1.52588e-05 -131.535 m + (a) show + (c) + [4.8436 ] pdfxs + (a) show + (demicprojec) + [6.0654 4.8436 9.09802 3.0327 8.47629 6.0654 4.27631 6.05449 3.33815 4.8436 4.85451 + ] pdfxs + (t) show + (s) + [7.93081 ] pdfxs + (t) show + (od) + [9.0981 6.05449 ] pdfxs + (at) show + (e..) + [4.8436 3.0327 3.0327 ] pdfxs + 16.936 -153.458 m + (Therest) + [7.8763 6.0654 9.21811 4.27631 4.85451 4.29811 8.61819 ] pdfxs + (o) show + (f) + [7.71266 ] pdfxs + (t) show + (hisch) + [6.05449 3.0327 8.68353 4.53815 6.0654 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (eris) + [4.85451 8.65082 3.02179 8.68353 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (ga) show + (nized) + [6.05449 3.0327 4.8436 4.85451 10.4399 ] pdfxs + (a) show + (sf) + [8.67262 3.33815 ] pdfxs + (o) show + (llows.Sec) + [3.0327 3.02179 5.15996 7.8763 4.29811 10.1017 6.0654 4.8436 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [10.4399 ] pdfxs + (2) show + (.2describesthe) + [3.0327 9.82901 6.05449 4.85451 4.29811 4.85451 4.2654 3.0327 6.37085 4.8436 8.68353 + 4.23277 6.0654 9.22901 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mcoderepre-) + [14.3672 4.85451 5.75995 6.05449 9.22901 4.2654 4.85451 6.05449 4.27631 4.85451 3.63261 + ] pdfxs + -1.52588e-05 -175.38 m + (sen) + [4.29811 4.85451 5.75995 ] pdfxs + (ta) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n.Sec) + [6.0654 10.9854 6.0654 4.8436 4.85451 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [10.7344 ] pdfxs + (2) show + (.3) + [3.0327 10.1345 ] pdfxs + (t) show + (hendescribes) + [6.05449 4.85451 10.7344 6.05449 4.85451 4.29811 4.85451 4.2654 3.0327 6.35994 4.85451 + 8.97807 ] pdfxs + (t) show + (hedesi) + [6.05449 9.52356 6.0654 4.8436 4.29811 3.0327 ] pdfxs + (g) show + (n) + [10.7344 ] pdfxs + (o) show + (f) + [8.0072 ] pdfxs + (t) show + (he) + [6.0654 9.52356 ] pdfxs + (L) show + (L) + [5.59632 ] pdfxs + (V) show + (Mc) + [14.6727 4.85451 ] pdfxs + (o) show + (mpilerfr) + [9.08711 6.0654 3.0327 3.02179 4.85451 8.94536 3.33815 4.2654 ] pdfxs + (a) show + (mew) + [9.09802 4.8436 7.57085 ] pdfxs + (o) show + (rk.Sec) + [4.27631 5.75995 10.9854 6.0654 4.8436 4.85451 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [10.7344 ] pdfxs + (2) show + (.) + [3.02179 ] pdfxs + (4) show + -1.52588e-05 -197.303 m + (discusses) + [6.0654 3.02179 4.30902 4.8436 6.0654 4.29811 4.30902 4.8436 7.40718 ] pdfxs + (o) show + (urev) + [6.05449 7.37446 4.8436 5.14904 ] pdfxs + (a) show + (lu) + [3.0327 6.0654 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [9.16356 ] pdfxs + (o) show + (fthe) + [6.43631 4.23277 6.0654 7.94175 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Msystem) + [13.1018 4.29811 5.75995 4.30902 4.23277 4.85451 12.1853 ] pdfxs + (a) show + (sdescribed) + [7.40718 6.05449 4.85451 4.29811 4.85451 4.2654 3.0327 6.35994 4.85451 9.15265 ] pdfxs + (a) show + (bove.Secti) + [6.37085 5.14905 5.4545 4.8436 7.70175 6.0654 4.8436 4.85451 4.23277 3.0327 ] pdfxs + (o) show + (n) + [9.16356 ] pdfxs + (2) show + (.5c) + [3.0327 8.54174 4.85451 ] pdfxs + (o) show + (mp) + [9.08711 6.0654 ] pdfxs + (a) show + (res) + [4.27631 4.8436 7.39627 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mwi) + [13.1018 7.8763 3.0327 ] pdfxs + (t) show + (h) show + -1.52588e-05 -219.225 m + (rel) + [4.27631 4.8436 3.0327 ] pdfxs + (at) show + (edprevi) + [4.8436 9.6981 6.0654 4.2654 4.85451 5.75995 3.02179 ] pdfxs + (o) show + (ussys) + [6.0654 7.94172 4.29811 5.75995 4.29811 ] pdfxs + (t) show + (ems.Sec) + [4.85451 9.08711 4.30902 7.87629 6.05449 4.85451 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (2) show + (.6c) + [3.0327 9.08719 4.8436 ] pdfxs + (o) show + (ncludeswithasumm) + [6.0654 4.8436 3.0327 6.0654 6.05449 4.85451 7.94172 7.8763 3.0327 4.23277 9.6981 + 9.0981 4.29811 6.0654 9.08711 9.08711 ] pdfxs + (a) show + (ry) + [4.27631 9.39264 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (t) show + (hep) + [6.05449 8.4872 6.0654 ] pdfxs + (a) show + (per.) + [6.35994 4.85451 4.2654 3.0327 ] pdfxs + -1.52588e-05 -264.68 m + /N622 14.346 Tf + (2.2Progr) + [8.07685 4.476 24.2161 11.0177 6.59915 8.0625 8.07685 6.58481 ] pdfxs + (a) show + (mRe) + [18.822 12.0507 7.3595 ] pdfxs + (p) show + (resent) + [6.58481 7.37385 6.35528 7.37385 8.52152 6.26925 ] pdfxs + (a) show + (tio) + [6.26925 4.49035 8.0625 ] pdfxs + (n) show + -1.52588e-05 -297.405 m + /N614 10.909 Tf + (Thecoderepresen) + [7.8763 6.0654 8.93447 4.8436 5.75995 6.0654 8.93447 4.2654 4.85451 6.05449 4.27631 + 4.85451 4.29811 4.8436 5.75995 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (nusedby) + [10.1454 6.0654 4.29811 4.85451 10.1454 5.75995 9.83991 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mis) + [14.0836 3.0327 8.38899 ] pdfxs + (o) show + (ne) + [6.0654 8.93447 ] pdfxs + (o) show + (f) + [7.41812 ] pdfxs + (t) show + (hekeyf) + [6.05449 8.93447 5.4545 4.85451 9.83991 3.33815 ] pdfxs + (a) show + (c) + [4.8436 ] pdfxs + (to) show + (rs) + [4.27631 8.38899 ] pdfxs + (t) show + (hatdi\013eren) + [6.05449 5.46541 8.32365 6.0654 3.02179 6.37077 4.8436 4.27631 4.8436 5.75995 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (at) show + (esitfr) + [4.8436 8.38899 3.0327 8.33456 3.32724 4.27631 ] pdfxs + (o) show + (m) + [13.178 ] pdfxs + (ot) show + (her) + [6.05449 4.85451 4.27631 ] pdfxs + -1.52588e-05 -319.328 m + (sys) + [4.29811 5.75995 4.30902 ] pdfxs + (t) show + (ems.Therepresen) + [4.8436 9.08711 4.30902 8.67265 7.8763 6.05449 8.74902 4.27631 4.85451 6.05449 4.27631 + 4.8436 4.30902 4.8436 5.75995 ] pdfxs + (tat) show + (i) + [3.02179 ] pdfxs + (o) show + (nisdesi) + [9.97082 3.02179 8.20354 6.0654 4.8436 4.30902 3.0327 ] pdfxs + (g) show + (ned) + [6.05449 4.85451 9.95991 ] pdfxs + (t) show + (oprovidehi) + [9.34901 6.0654 4.2654 5.15996 5.74904 3.0327 6.0654 8.74902 6.05449 3.0327 ] pdfxs + (g) show + (h-levelinf) + [6.0654 3.63261 3.0327 4.8436 5.4545 4.85451 6.92721 3.0327 6.05449 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.95991 ] pdfxs + (a) show + (b) + [6.35994 ] pdfxs + (o) show + (utpr) + [6.0654 8.13819 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms) + [9.08711 8.20354 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (tis) + [8.13819 3.0327 4.29811 ] pdfxs + -1.52588e-05 -341.25 m + (needed) + [6.0654 4.8436 4.8436 6.0654 4.8436 10.6035 ] pdfxs + (t) show + (osupp) + [9.99264 4.30902 6.05449 6.0654 6.35994 ] pdfxs + (o) show + (rts) + [4.27631 8.78183 4.29811 ] pdfxs + (o) show + (phistic) + [6.0654 6.05449 3.0327 4.30902 4.23277 3.0327 4.85451 ] pdfxs + (at) show + (ed) + [4.8436 10.6035 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lyses) + [3.0327 5.75995 4.29811 4.85451 8.83626 ] pdfxs + (a) show + (nd) + [6.0654 10.5926 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (ns) + [6.0654 8.83626 ] pdfxs + (\() show + (such) + [4.30902 6.05449 4.54905 10.6035 ] pdfxs + (a) show + (sm) + [8.83626 9.09802 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.29811 4.85451 ] pdfxs + (o) show + (pictechniques) + [6.05449 3.0327 9.39265 4.23277 4.85451 4.54905 6.05449 6.0654 3.02179 5.75995 6.0654 + 4.8436 4.30902 ] pdfxs + (\)) show + (,) show + -1.52588e-05 -363.173 m + (whilebeinglow-levelen) + [7.8763 6.0654 3.0327 3.02179 8.15993 6.35994 4.85451 3.0327 6.05449 8.75992 3.0327 + 5.14905 7.88721 3.63261 3.0327 4.8436 5.4545 4.85451 6.33813 4.8436 6.0654 ] pdfxs + (o) show + (u) + [6.05449 ] pdfxs + (g) show + (h) + [9.37082 ] pdfxs + (t) show + (orepresent) + [8.75992 4.27631 4.8436 6.0654 4.27631 4.8436 4.29811 4.85451 5.75995 7.54911 ] pdfxs + (a) show + (rbi) + [4.2654 6.0654 3.0327 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (rypr) + [4.27631 9.06537 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms) + [9.08711 7.61445 ] pdfxs + (a) show + (nd) + [6.0654 9.35992 ] pdfxs + (t) show + (opermitex) + [8.77083 6.35994 4.8436 4.27631 9.08711 3.0327 7.54911 4.85451 5.74904 ] pdfxs + (t) show + (ensive) + [4.85451 6.05449 4.30902 3.0327 5.4545 8.14902 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) show + -1.52588e-05 -385.095 m + (ins) + [3.0327 9.92718 4.30902 ] pdfxs + (ta) show + (ticc) + [4.23277 3.0327 8.7272 4.8436 ] pdfxs + (o) show + (mpilers.Thissec) + [9.08711 6.0654 3.0327 3.0327 4.8436 4.27631 4.29811 8.58538 7.8763 6.0654 3.0327 + 8.17081 4.29811 4.85451 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.92718 ] pdfxs + (g) show + (ives) + [3.0327 5.4545 4.85451 8.17081 ] pdfxs + (a) show + (noverview) + [9.92718 5.15996 5.4545 4.8436 4.27631 5.75995 3.02179 4.85451 11.749 ] pdfxs + (o) show + (f) + [7.19993 ] pdfxs + (t) show + (he) + [6.0654 8.71629 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mins) + [13.8763 3.02179 6.0654 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nset) + [9.92718 4.30902 4.8436 8.11638 ] pdfxs + (a) show + (nddescribes) + [6.05449 9.93809 6.05449 4.85451 4.29811 4.85451 4.27631 3.02179 6.37085 4.8436 8.17081 + ] pdfxs + (t) show + (he) + [6.0654 4.8436 ] pdfxs + -1.52588e-05 -407.018 m + (l) + [3.0327 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (e-independenttypesystem,) + [4.8436 3.64352 3.02179 6.0654 6.0654 4.8436 6.35994 4.85451 6.05449 6.0654 4.8436 + 5.75995 8.54183 3.93823 5.75995 6.35994 9.15265 4.29811 5.75995 4.30902 4.23277 4.85451 + 9.08711 7.49448 ] pdfxs + (t) show + (hemem) + [6.0654 9.14174 9.09802 4.8436 9.08711 ] pdfxs + (o) show + (rymodel,excep) + [4.27631 10.0581 9.08711 5.75995 6.0654 4.8436 3.0327 7.49448 4.8436 5.75995 4.8436 + 4.85451 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nh) + [10.3635 6.05449 ] pdfxs + (a) show + (ndlingmech) + [6.0654 6.05449 3.0327 3.0327 6.0654 9.75264 9.08711 4.8436 4.54905 6.0654 ] pdfxs + (a) show + (nisms,) + [6.05449 3.0327 4.29811 9.09802 4.29811 7.49448 ] pdfxs + (a) show + (nd) + [6.0654 10.3526 ] pdfxs + (t) show + (he) + [6.0654 4.8436 ] pdfxs + -1.52588e-05 -428.941 m + (o) show + (\017ine) + [9.08711 3.0327 6.0654 7.90903 ] pdfxs + (a) show + (ndin-mem) + [6.0654 9.11992 3.0327 6.05449 3.64352 9.08711 4.8436 9.09802 ] pdfxs + (o) show + (ryrepresen) + [4.2654 8.82538 4.27631 4.8436 6.0654 4.27631 4.8436 4.29811 4.85451 5.75995 ] pdfxs + (ta) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (ns.Thede) + [6.0654 4.29811 7.69084 7.8763 6.0654 7.90903 6.0654 4.8436 ] pdfxs + (ta) show + (iledsyn) + [3.0327 3.0327 4.8436 9.11992 4.30902 5.75995 5.74904 ] pdfxs + (ta) show + (x) + [8.82538 ] pdfxs + (a) show + (ndsem) + [6.0654 9.11992 4.29811 4.85451 9.08711 ] pdfxs + (a) show + (n) + [5.75995 ] pdfxs + (t) show + (ics) + [3.0327 4.8436 7.36354 ] pdfxs + (o) show + (f) + [6.40358 ] pdfxs + (t) show + (herepresen) + [6.05449 7.91993 4.2654 4.85451 6.05449 4.27631 4.85451 4.29811 4.8436 5.75995 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.11992 ] pdfxs + (a) show + (re) + [4.27631 4.8436 ] pdfxs + -1.52588e-05 -450.863 m + (de\fnedin) + [6.0654 4.8436 6.0654 6.05449 4.85451 9.68719 3.0327 9.6981 ] pdfxs + (t) show + (he) + [6.0654 8.47629 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mreferencem) + [13.6363 4.27631 4.8436 3.33815 4.8436 4.27631 4.85451 6.05449 4.85451 8.47629 9.09802 + ] pdfxs + (a) show + (nu) + [5.74904 6.0654 ] pdfxs + (a) show + (l[) + [6.6654 3.0327 ] pdfxs + (86) show + (].) + [3.0327 3.0327 ] pdfxs + -1.52588e-05 -488.695 m + /N622 11.955 Tf + (2.2.1Overviewoft) + [6.7307 3.73 6.7307 3.73 20.1801 10.09 6.73059 6.13291 5.49929 7.10119 3.73 + 6.13291 14.2026 6.71874 8.59556 5.23633 ] pdfxs + (h) show + (e) + [10.616 ] pdfxs + (L) show + (LVM) + [6.58714 10.1499 17.2511 ] pdfxs + (In) show + (str) + [5.29606 5.23633 5.48733 ] pdfxs + (uc) show + (tion) + [5.23633 3.73 6.7307 11.955 ] pdfxs + (S) show + (et) + [6.13291 5.23633 ] pdfxs + -1.52588e-05 -517.663 m + /N614 10.909 Tf + (The) + [7.8763 6.0654 8.44357 ] pdfxs + (L) show + (L) + [5.59632 ] pdfxs + (V) show + (Mins) + [13.5927 3.0327 6.0654 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (nsetc) + [9.65446 4.30902 4.8436 7.83274 4.85451 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (uresthekey) + [6.0654 4.2654 4.85451 7.89808 4.23277 6.0654 8.44357 5.4545 4.8436 9.34901 ] pdfxs + (o) show + (per) + [6.37085 4.8436 4.27631 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (ns) + [6.0654 7.89808 ] pdfxs + (o) show + (f) + [6.92721 ] pdfxs + (o) show + (rdin) + [4.2654 6.0654 3.0327 6.05449 ] pdfxs + (a) show + (ryprocess) + [4.27631 9.34901 6.05449 4.27631 5.75995 4.8436 4.85451 4.29811 4.30902 ] pdfxs + (o) show + (rsbutav) + [4.2654 7.89808 6.0654 6.05449 7.83274 5.15996 5.4545 ] pdfxs + (o) show + (idsm) + [3.02179 6.0654 7.89808 9.08711 ] pdfxs + (a) show + (chine-) + [4.54905 6.05449 3.0327 6.0654 4.8436 3.63261 ] pdfxs + -1.52588e-05 -539.586 m + (speci\fcc) + [4.29811 6.37085 4.8436 4.85451 3.02179 6.0654 8.93447 4.85451 ] pdfxs + (o) show + (ns) + [6.05449 4.30902 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (ssuch) + [8.38899 4.29811 6.0654 4.53815 10.1563 ] pdfxs + (a) show + (sphysic) + [8.38899 6.05449 5.75995 5.75995 4.29811 3.0327 4.85451 ] pdfxs + (a) show + (lre) + [7.11266 4.27631 4.8436 ] pdfxs + (g) show + (is) + [3.0327 4.29811 ] pdfxs + (t) show + (ers,pipelines,) + [4.85451 4.27631 4.29811 7.23266 6.05449 3.0327 6.35994 4.85451 3.0327 3.02179 6.0654 + 4.8436 4.30902 7.23266 ] pdfxs + (a) show + (ndlow-levelc) + [6.05449 10.1563 3.02179 5.15996 7.8763 3.63261 3.0327 4.8436 5.4545 4.85451 7.11266 + 4.85451 ] pdfxs + (a) show + (llingc) + [3.02179 3.0327 3.0327 6.0654 9.53446 4.85451 ] pdfxs + (o) show + (nven) + [5.75995 5.4545 4.8436 5.75995 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (ns.) + [6.0654 4.29811 9.23992 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (M) show + -1.52588e-05 -561.509 m + (provides) + [6.0654 4.2654 5.14905 5.75995 3.0327 6.0654 4.8436 7.5599 ] pdfxs + (a) show + (nin\fni) + [9.30537 3.0327 6.0654 6.05449 6.0654 3.0327 ] pdfxs + (t) show + (eset) + [8.09448 4.30902 4.8436 7.49456 ] pdfxs + (o) show + (ftypedvirtu) + [6.58903 3.93823 5.75995 6.35994 4.85451 9.30537 5.75995 3.0327 4.27631 4.23277 6.0654 + ] pdfxs + (a) show + (lre) + [6.28358 4.27631 4.8436 ] pdfxs + (g) show + (is) + [3.0327 4.29811 ] pdfxs + (t) show + (erswhichc) + [4.85451 4.2654 7.5599 7.8763 6.0654 3.0327 4.53815 9.31628 4.8436 ] pdfxs + (a) show + (nh) + [9.31628 6.0654 ] pdfxs + (o) show + (ldvalues) + [3.0327 9.30537 5.14904 5.46541 3.02179 6.0654 4.8436 7.5599 ] pdfxs + (o) show + (f) show + 349.379 -561.509 m + /N634 10.909 Tf + (p) show + (rimiti) + [4.60356 3.33823 8.92348 3.34914 3.62179 3.34914 ] pdfxs + (v) show + (etyp) + [8.56364 3.62179 5.30169 5.01816 ] pdfxs + (es) show + 422.394 -561.509 m + /N614 10.909 Tf + (\() show + (Bo) + [7.72349 5.75995 ] pdfxs + (o) show + (le) + [3.0327 4.8436 ] pdfxs + (a) show + (n,) + [6.0654 3.0327 ] pdfxs + 0 -583.431 m + (inte) + [3.0327 5.75995 4.23277 4.85451 ] pdfxs + (g) show + (er,\r) + [4.8436 4.27631 7.25448 6.05449 ] pdfxs + (oat) show + (ingp) + [3.0327 6.0654 9.55628 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (,) + [7.25448 ] pdfxs + (a) show + (ndp) + [6.05449 10.1672 6.37085 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (er) + [4.8436 4.27631 ] pdfxs + (\)) show + (.Thevir) + [9.28356 7.8763 6.0654 8.95629 5.75995 3.02179 4.27631 ] pdfxs + (t) show + (u) + [6.0654 ] pdfxs + (a) show + (lre) + [7.13448 4.2654 4.85451 ] pdfxs + (g) show + (is) + [3.0327 4.29811 ] pdfxs + (t) show + (ers) + [4.8436 4.27631 8.41081 ] pdfxs + (a) show + (reinSt) + [4.2654 8.95629 3.0327 10.1672 6.0654 4.23277 ] pdfxs + (at) show + (icSin) + [3.0327 8.95629 6.05449 3.0327 6.0654 ] pdfxs + (g) show + (le) + [3.0327 8.94538 ] pdfxs + (A) show + (ssi) + [4.30902 4.29811 3.0327 ] pdfxs + (g) show + (nment) + [6.0654 9.08711 4.8436 5.75995 8.34546 ] pdfxs + (\() show + (SS) + [6.0654 6.05449 ] pdfxs + (A\)) show + 0 -605.354 m + (f) + [3.33815 ] pdfxs + (o) show + (rm[) + [4.2654 14.2253 3.0327 ] pdfxs + (40) show + (].) + [3.0327 12.3599 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Misal) + [15.1309 3.02179 9.43625 10.5926 3.02179 ] pdfxs + (oa) show + (d) + [6.0654 ] pdfxs + (/) show + (st) + [4.30902 4.23277 ] pdfxs + (o) show + (re) + [4.27631 9.98173 ] pdfxs + (a) show + (rchitec) + [4.27631 4.53815 6.0654 3.0327 4.23277 4.85451 4.8436 ] pdfxs + (t) show + (ure:pr) + [6.0654 4.2654 4.85451 10.8654 6.0654 4.2654 ] pdfxs + (o) show + (gr) + [5.46541 4.2654 ] pdfxs + (a) show + (ms) + [9.09802 9.42534 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsferv) + [6.05449 4.30902 3.32724 4.85451 9.40354 5.14904 ] pdfxs + (a) show + (luesbetweenre) + [3.0327 6.0654 4.8436 9.43625 6.35994 4.85451 3.93823 7.57085 4.85451 4.8436 11.1926 + 4.27631 4.8436 ] pdfxs + (g) show + (is) + [3.0327 4.29811 ] pdfxs + (t) show + (ers) + [4.85451 4.2654 9.43625 ] pdfxs + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + 0 -627.276 m + (mem) + [9.08711 4.85451 9.08711 ] pdfxs + (o) show + (rys) + [4.27631 9.44719 4.29811 ] pdfxs + (o) show + (lelyvi) + [3.0327 4.85451 3.02179 9.4581 5.74904 3.0327 ] pdfxs + (a) show + 90.256 -627.276 m + /N722 10.909 Tf + (load) show + 116.856 -627.276 m + /N614 10.909 Tf + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + 138.123 -627.276 m + /N722 10.909 Tf + (store) show + 170.45 -627.276 m + /N614 10.909 Tf + (o) show + (per) + [6.35994 4.85451 4.27631 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (nsusingtypedp) + [6.0654 7.99626 6.05449 4.30902 3.02179 6.0654 9.14174 3.93823 5.75995 6.37085 4.8436 + 9.75264 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (ers.The) + [4.8436 4.27631 4.29811 8.05084 7.8763 6.05449 8.54175 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mmem) + [13.6909 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (rymodelis) + [4.27631 9.44719 9.08711 5.75995 6.0654 4.8436 6.71994 3.0327 4.29811 ] pdfxs + 228.545 -657.201 m + (15) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (27) 28 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 595.275591 788.031496 translate + 180 rotate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 72 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (describedinSec) + [6.0654 4.8436 4.29811 4.85451 4.27631 3.02179 6.37085 4.8436 9.6981 3.0327 9.6981 + 6.05449 4.85451 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (2) show + (.) + [3.0327 ] pdfxs + (2) show + (.) + [3.02179 ] pdfxs + (3) show + (.) show + 16.936 -21.922 m + (Theentire) + [7.8763 6.0654 8.23629 4.85451 5.75995 4.23277 3.0327 4.27631 8.23629 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mins) + [13.3963 3.0327 6.05449 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nsetc) + [9.4581 4.29811 4.8436 7.63638 4.85451 ] pdfxs + (o) show + (nsis) + [6.05449 4.30902 3.0327 4.29811 ] pdfxs + (t) show + (s) + [7.69081 ] pdfxs + (o) show + (f) + [6.73085 ] pdfxs + (o) show + (nly) + [6.0654 3.02179 9.15265 ] pdfxs + (3) show + (1) + [8.8472 ] pdfxs + (o) show + (pcodes.Thisisp) + [6.37085 4.8436 5.75995 6.05449 4.85451 4.29811 7.79993 7.8763 6.0654 3.0327 7.69081 + 3.0327 7.69081 6.37085 ] pdfxs + (o) show + (ssiblebec) + [4.29811 4.30902 3.02179 6.0654 3.0327 8.23629 6.37085 4.8436 4.8436 ] pdfxs + (a) show + (use,\frs) + [6.0654 4.29811 4.85451 6.46903 6.0654 4.2654 4.30902 ] pdfxs + (t) show + (,we) + [6.46903 7.57085 4.8436 ] pdfxs + 0 -43.845 m + (av) + [5.14905 5.4545 ] pdfxs + (o) show + (idmul) + [3.0327 10.1235 8.78166 6.0654 3.0327 ] pdfxs + (t) show + (iple) + [3.02179 6.0654 3.0327 8.91265 ] pdfxs + (o) show + (pcodesf) + [6.35994 4.8436 5.75995 6.0654 4.8436 8.36717 3.32724 ] pdfxs + (o) show + (r) + [8.33445 ] pdfxs + (t) show + (hes) + [6.0654 8.91265 4.29811 ] pdfxs + (a) show + (me) + [9.08711 8.91265 ] pdfxs + (o) show + (per) + [6.35994 4.85451 4.27631 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (ns) + [6.0654 4.29811 ] pdfxs + 227.641 -39.886 m + /N703 7.96999 Tf + (2) show + 232.373 -43.845 m + /N614 10.909 Tf + (.Sec) + [9.15265 6.0654 4.8436 4.85451 ] pdfxs + (o) show + (nd,m) + [6.05449 6.0654 7.18903 9.09802 ] pdfxs + (o) show + (st) + [4.29811 8.30183 ] pdfxs + (o) show + (pcodesin) + [6.37085 4.8436 5.75995 6.0654 4.8436 8.36717 3.0327 10.1126 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (M) + [14.0618 ] pdfxs + (a) show + (reoverl) + [4.27631 8.91265 5.14905 5.4545 4.8436 4.27631 3.0327 ] pdfxs + (oa) show + (ded) + [6.05449 4.85451 6.0654 ] pdfxs + 0 -65.768 m + (\() show + (f) + [3.32724 ] pdfxs + (o) show + (rex) + [7.70173 4.8436 5.75995 ] pdfxs + (a) show + (mple,) + [9.09802 6.05449 3.0327 4.8436 6.50176 ] pdfxs + (t) show + (he) + [6.05449 4.8436 ] pdfxs + 84.889 -65.768 m + /N722 10.909 Tf + (add) show + 105.494 -65.768 m + /N614 10.909 Tf + (ins) + [3.0327 6.05449 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nc) + [9.47991 4.85451 ] pdfxs + (a) show + (n) + [9.47991 ] pdfxs + (o) show + (per) + [6.37085 4.8436 4.27631 ] pdfxs + (at) show + (e) + [8.26902 ] pdfxs + (o) show + (n) + [9.47991 ] pdfxs + (o) show + (per) + [6.37085 4.8436 4.27631 ] pdfxs + (a) show + (nds) + [6.05449 6.0654 7.72354 ] pdfxs + (o) show + (f) + [6.75267 ] pdfxs + (a) show + (nyin) + [5.75995 9.18537 3.0327 5.74904 ] pdfxs + (t) show + (e) + [4.85451 ] pdfxs + (g) show + (er) + [4.8436 7.70173 ] pdfxs + (o) show + (r\r) + [7.69082 6.0654 ] pdfxs + (oat) show + (ingp) + [3.02179 6.0654 8.87992 6.35994 ] pdfxs + (o) show + (int) + [3.0327 5.75995 7.6582 ] pdfxs + (o) show + (per) + [6.37085 4.8436 4.27631 ] pdfxs + (a) show + (nd) + [6.05449 6.0654 ] pdfxs + 0 -87.69 m + (type) + [3.93823 5.75995 6.35994 4.85451 ] pdfxs + (\)) show + (.M) + [7.73448 9.99272 ] pdfxs + (o) show + (stins) + [4.30902 7.45093 3.02179 6.0654 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns,including) + [6.05449 4.30902 6.31631 3.0327 6.0654 4.8436 3.0327 6.05449 6.0654 3.0327 6.05449 + 8.66174 ] pdfxs + (a) show + (ll) + [3.0327 6.23994 ] pdfxs + (a) show + (ri) + [4.2654 3.0327 ] pdfxs + (t) show + (hmetic) + [6.0654 9.08711 4.85451 4.23277 3.0327 8.06175 ] pdfxs + (a) show + (ndl) + [6.05449 9.27264 3.02179 ] pdfxs + (og) show + (ic) + [3.0327 4.85451 ] pdfxs + (a) show + (l) + [6.22904 ] pdfxs + (o) show + (per) + [6.37085 4.8436 4.27631 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns,) + [6.05449 4.30902 6.31631 ] pdfxs + (a) show + (reinthree-) + [4.27631 8.05084 3.0327 9.27264 4.23277 6.0654 4.27631 4.8436 4.85451 3.63261 ] pdfxs + (a) show + (ddressf) + [6.05449 6.0654 4.27631 4.8436 4.30902 7.50536 3.33815 ] pdfxs + (o) show + (rm:) + [4.2654 9.09802 3.0327 ] pdfxs + 0 -109.613 m + (t) show + (hey) + [6.05449 4.85451 9.39264 ] pdfxs + (ta) show + (ke) + [5.4545 8.4872 ] pdfxs + (o) show + (ne) + [6.05449 8.4872 ] pdfxs + (o) show + (rtwo) + [7.909 3.93823 7.58175 9.08719 ] pdfxs + (o) show + (per) + [6.35994 4.85451 4.2654 ] pdfxs + (a) show + (nds) + [6.0654 6.0654 7.93081 ] pdfxs + (a) show + (ndproduceasin) + [6.0654 9.6981 6.05449 4.27631 5.75995 6.05449 6.0654 4.8436 8.4872 9.08719 4.30902 + 3.0327 6.05449 ] pdfxs + (g) show + (leresul) + [3.0327 8.4872 4.27631 4.8436 4.29811 6.0654 3.0327 ] pdfxs + (t) show + (.) show + 16.936 -131.535 m + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (MusesSSAf) + [14.269 6.05449 4.30902 4.8436 8.57444 6.05449 6.0654 12.4472 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 13.3634 ] pdfxs + (a) show + (si) + [8.57444 3.02179 ] pdfxs + (t) show + (sprim) + [8.57444 6.0654 4.2654 3.0327 9.08711 ] pdfxs + (a) show + (rycoderepresen) + [4.27631 10.0254 4.8436 5.75995 6.0654 9.10902 4.27631 4.85451 6.05449 4.27631 4.8436 + 4.30902 4.8436 5.75995 ] pdfxs + (tat) show + (i) + [3.02179 ] pdfxs + (o) show + (n,i.e.,e) + [6.0654 7.46175 3.02179 3.0327 4.85451 3.02179 7.46175 4.8436 ] pdfxs + (a) show + (chvir) + [4.54905 10.3308 5.74904 3.0327 4.27631 ] pdfxs + (t) show + (u) + [6.05449 ] pdfxs + (a) show + (lre) + [7.29812 4.27631 4.8436 ] pdfxs + (g) show + (is) + [3.0327 4.30902 ] pdfxs + (t) show + (eriswri) + [4.8436 8.54173 3.0327 8.56353 7.88721 4.2654 3.0327 ] pdfxs + (tt) show + (en) + [4.8436 6.0654 ] pdfxs + 0 -153.458 m + (inex) + [3.0327 11.2581 4.8436 5.75995 ] pdfxs + (a) show + (c) + [4.85451 ] pdfxs + (t) show + (ly) + [3.02179 10.9635 ] pdfxs + (o) show + (neins) + [6.05449 10.0472 3.0327 6.0654 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (n,) + [6.0654 8.61811 ] pdfxs + (a) show + (nde) + [6.0654 11.2581 4.85451 ] pdfxs + (a) show + (chuse) + [4.53815 11.2581 6.0654 4.29811 10.0581 ] pdfxs + (o) show + (fare) + [8.53083 10.6472 4.27631 4.85451 ] pdfxs + (g) show + (is) + [3.02179 4.30902 ] pdfxs + (t) show + (erisd) + [4.8436 9.46899 3.0327 9.50171 6.0654 ] pdfxs + (o) show + (min) + [9.08711 3.0327 6.0654 ] pdfxs + (a) show + (tedbyi) + [4.23277 4.85451 11.2581 5.75995 10.9526 3.0327 ] pdfxs + (t) show + (sde\fni) + [9.50171 6.0654 4.8436 6.0654 6.05449 3.0327 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n.Mem) + [6.05449 12.5672 10.0036 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 5.75995 ] pdfxs + 0 -175.38 m + (loc) + [3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nsin) + [6.05449 9.59989 3.0327 11.3563 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (M) + [15.2945 ] pdfxs + (a) show + (re) + [4.27631 4.8436 ] pdfxs + 117.64 -175.38 m + /N634 10.909 Tf + (n) + [6.13082 ] pdfxs + (o) show + (t) show + 139.305 -175.38 m + /N614 10.909 Tf + (inSSAf) + [3.0327 11.3563 6.05449 6.0654 13.4726 3.33815 ] pdfxs + (o) show + (rmbec) + [4.27631 14.3889 6.35994 4.8436 4.85451 ] pdfxs + (a) show + (usem) + [6.05449 4.30902 10.1454 9.08711 ] pdfxs + (a) show + (nyp) + [5.75995 11.0508 6.37085 ] pdfxs + (o) show + (ssibleloc) + [4.29811 4.30902 3.02179 6.0654 3.0327 10.1454 3.02179 5.75995 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (nsmaybemodi\fed) + [6.0654 9.59989 9.08711 5.14905 11.0617 6.35994 10.1454 9.08711 5.75995 6.0654 3.0327 + 6.05449 4.85451 11.3563 ] pdfxs + (at) show + 0 -197.303 m + (asin) + [10.1345 4.30902 3.0327 6.05449 ] pdfxs + (g) show + (les) + [3.0327 9.53447 4.29811 ] pdfxs + (to) show + (re) + [4.27631 9.52356 ] pdfxs + (t) show + (hr) + [6.0654 4.27631 ] pdfxs + (o) show + (u) + [6.05449 ] pdfxs + (g) show + (hap) + [10.7454 10.1345 6.37085 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (er,m) + [4.85451 4.2654 7.97448 9.09802 ] pdfxs + (a) show + (kingitdi\016cult) + [5.74904 3.0327 6.0654 10.1345 3.0327 8.92364 6.0654 3.02179 9.09802 4.8436 6.0654 + 3.0327 8.92364 ] pdfxs + (t) show + (oc) + [10.1345 4.8436 ] pdfxs + (o) show + (ns) + [6.0654 4.29811 ] pdfxs + (t) show + (ructare) + [4.27631 6.0654 4.8436 8.92364 10.1454 4.2654 4.85451 ] pdfxs + (a) show + (s) + [4.29811 ] pdfxs + (o) show + (n) + [6.0654 ] pdfxs + (a) show + (blyc) + [6.05449 3.0327 10.4399 4.85451 ] pdfxs + (o) show + (mp) + [9.08711 6.05449 ] pdfxs + (a) show + (c) + [4.85451 ] pdfxs + (t) show + (,explici) + [7.97448 4.8436 5.75995 6.0654 3.02179 3.0327 4.85451 3.02179 ] pdfxs + (t) show + 0 -219.225 m + (SSAcoderepresent) + [6.0654 6.05449 12.7853 4.85451 5.75995 6.05449 9.4581 4.27631 4.8436 6.0654 4.2654 + 4.85451 4.29811 4.85451 5.75995 4.23277 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nf) + [10.669 3.33815 ] pdfxs + (o) show + (rsuchloc) + [8.8799 4.29811 6.0654 4.53815 10.669 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns.The) + [6.0654 4.29811 10.7999 7.8763 6.05449 9.4581 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mins) + [14.6072 3.0327 6.0654 4.29811 ] pdfxs + (t) show + (ructi) + [4.27631 6.05449 4.85451 4.23277 3.0327 ] pdfxs + (o) show + (nsetincludes) + [10.669 4.30902 4.8436 8.84728 3.0327 6.0654 4.8436 3.0327 6.0654 6.05449 4.85451 + 8.90171 ] pdfxs + (a) show + (nexplici) + [10.669 4.85451 5.75995 6.05449 3.0327 3.0327 4.8436 3.0327 ] pdfxs + (t) show + 450.818 -219.225 m + /N722 10.909 Tf + (phi) show + 0 -241.148 m + /N614 10.909 Tf + (ins) + [3.0327 6.05449 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n,whichc) + [6.0654 6.85085 7.8763 6.0654 3.02179 4.54905 9.85082 4.8436 ] pdfxs + (o) show + (rresp) + [4.27631 4.27631 4.8436 4.29811 6.37085 ] pdfxs + (o) show + (ndsdirec) + [6.05449 6.0654 8.08354 6.0654 3.0327 4.2654 4.85451 4.8436 ] pdfxs + (t) show + (ly) + [3.0327 9.54537 ] pdfxs + (t) show + (o) + [9.23992 ] pdfxs + (t) show + (hes) + [6.05449 8.63993 4.29811 ] pdfxs + (ta) show + (nd) + [6.0654 6.05449 ] pdfxs + (a) show + (rd) + [4.27631 9.85082 ] pdfxs + (\() show + (n) + [6.05449 ] pdfxs + (o) show + (n-) + [6.0654 3.63261 ] pdfxs + (gat) show + (ed) + [4.8436 6.0654 ] pdfxs + (\)) show + 327.389 -241.148 m + /N695 10.909 Tf + (\036) show + 337.676 -241.148 m + /N614 10.909 Tf + (func) + [3.33815 6.05449 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.83991 ] pdfxs + (o) show + (fSSAf) + [7.12357 6.0654 6.05449 11.9672 3.33815 ] pdfxs + (o) show + (rm.SS) + [4.27631 9.08711 8.32356 6.0654 6.05449 ] pdfxs + (A) show + -3.05176e-05 -263.07 m + (f) + [3.33815 ] pdfxs + (o) show + (rmprovidesac) + [4.2654 13.5816 6.0654 4.27631 5.14905 5.75995 3.02179 6.0654 4.8436 8.80353 9.9381 + 4.85451 ] pdfxs + (o) show + (mp) + [9.08711 6.0654 ] pdfxs + (a) show + (ctdef-use) + [4.8436 8.73819 6.0654 4.8436 3.33815 3.63261 6.05449 4.30902 9.3381 ] pdfxs + (g) show + (r) + [4.27631 ] pdfxs + (a) show + (ph) + [6.05449 10.5599 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tsimpli\fesm) + [8.73819 4.29811 3.0327 9.08711 6.0654 3.0327 3.0327 6.05449 4.85451 8.79262 9.08711 + ] pdfxs + (a) show + (nyd) + [5.75995 10.2545 6.05449 ] pdfxs + (ata) show + (\row) + [6.0654 5.14905 12.3708 ] pdfxs + (o) show + (p) + [6.05449 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (ns) + [6.0654 8.79262 ] pdfxs + (a) show + (nden) + [6.0654 10.549 4.85451 6.05449 ] pdfxs + (a) show + (bles) + [6.0654 3.02179 4.85451 4.29811 ] pdfxs + -3.05176e-05 -284.993 m + (f) + [3.33815 ] pdfxs + (a) show + (s) + [4.29811 ] pdfxs + (t) show + (,\row-insensi) + [6.11995 6.0654 5.14905 7.8763 3.64352 3.02179 6.0654 4.29811 4.85451 6.05449 4.30902 + 3.0327 ] pdfxs + (t) show + (ive) + [3.02179 5.4545 7.81084 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (go) show + (ri) + [4.2654 3.0327 ] pdfxs + (t) show + (hms) + [6.0654 9.08711 7.26536 ] pdfxs + (t) show + (o) + [8.41084 ] pdfxs + (a) show + (chievem) + [4.53815 6.0654 3.0327 4.8436 5.4545 7.81084 9.08711 ] pdfxs + (a) show + (ny) + [5.75995 8.71629 ] pdfxs + (o) show + (f) + [6.29449 ] pdfxs + (t) show + (hebene\f) + [6.05449 7.81084 6.35994 4.85451 6.05449 4.85451 6.05449 ] pdfxs + (t) show + (s) + [7.26536 ] pdfxs + (o) show + (f\row-sensi) + [6.28358 6.0654 5.14905 7.8763 3.64352 4.29811 4.85451 6.05449 4.30902 3.02179 ] pdfxs + (t) show + (ive) + [3.0327 5.4545 7.81084 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (go) show + (ri) + [4.2654 3.0327 ] pdfxs + (t) show + (hmswi) + [6.05449 9.09802 7.25445 7.88721 3.02179 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (o) show + (u) + [6.05449 ] pdfxs + (t) show + -3.05176e-05 -306.915 m + (expensived) + [4.8436 5.75995 6.37085 4.8436 6.0654 4.29811 3.0327 5.4545 8.51993 6.05449 ] pdfxs + (ata) show + (\row) + [6.0654 5.14905 11.5417 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis.) + [3.0327 5.75995 4.29811 3.0327 4.29811 7.97448 ] pdfxs + (No) show + (n-lo) + [6.0654 3.63261 3.0327 5.75995 ] pdfxs + (o) show + (p) + [9.73082 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nsinSSAf) + [6.05449 7.97445 3.0327 9.73082 6.05449 6.0654 11.8472 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 12.7634 ] pdfxs + (a) show + (refur) + [4.27631 8.50902 3.33815 6.05449 4.27631 ] pdfxs + (t) show + (hersimpli\fedbec) + [6.0654 4.8436 7.94173 4.29811 3.0327 9.09802 6.05449 3.0327 3.0327 6.05449 4.85451 + 9.73082 6.35994 4.8436 4.85451 ] pdfxs + (a) show + (use) + [6.05449 4.30902 4.8436 ] pdfxs + -3.05176e-05 -328.838 m + (t) show + (heydon) + [6.05449 4.85451 8.87992 6.05449 8.57447 6.0654 ] pdfxs + (o) show + (tenc) + [7.36366 4.8436 6.0654 4.8436 ] pdfxs + (o) show + (un) + [6.0654 5.75995 ] pdfxs + (t) show + (er) + [4.8436 7.39628 ] pdfxs + (a) show + (n) + [5.74904 ] pdfxs + (t) show + (i-) + [3.0327 6.75259 ] pdfxs + (o) show + (r) + [7.39628 ] pdfxs + (o) show + (u) + [6.0654 ] pdfxs + (t) show + (putdependences) + [6.05449 6.0654 7.36366 6.05449 4.85451 6.35994 4.8436 6.0654 6.0654 4.8436 6.0654 + 4.8436 4.85451 7.41809 ] pdfxs + (o) show + (nSSAre) + [9.18537 6.05449 6.0654 11.3017 4.2654 4.85451 ] pdfxs + (g) show + (is) + [3.0327 4.29811 ] pdfxs + (t) show + (ers.) + [4.8436 4.27631 4.30902 7.70175 ] pdfxs + (No) show + (n-mem) + [6.0654 3.63261 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 8.86901 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (ns) + [6.0654 4.29811 ] pdfxs + -3.05176e-05 -350.761 m + (a) show + (re) + [4.27631 8.47629 ] pdfxs + (a) show + (lso) + [3.0327 4.30902 9.08719 ] pdfxs + (g) show + (re) + [4.27631 4.8436 ] pdfxs + (at) show + (lysimpli\fedbec) + [3.0327 9.39264 4.29811 3.0327 9.09802 6.05449 3.0327 3.0327 6.05449 4.85451 9.6981 + 6.35994 4.8436 4.85451 ] pdfxs + (a) show + (use\(unrel) + [6.05449 4.30902 8.4872 4.23277 6.0654 6.0654 4.2654 4.85451 3.02179 ] pdfxs + (at) show + (ed) + [4.85451 9.6981 ] pdfxs + (t) show + (oSS) + [9.08719 6.0654 6.05449 ] pdfxs + (A) show + (\)re) + [7.87638 4.27631 4.8436 ] pdfxs + (g) show + (is) + [3.0327 4.30902 ] pdfxs + (t) show + (ersc) + [4.8436 4.27631 7.93081 4.85451 ] pdfxs + (a) show + (nn) + [6.05449 6.0654 ] pdfxs + (o) show + (thave) + [7.87638 6.0654 5.14905 5.4545 8.4872 ] pdfxs + (a) show + (li) + [3.0327 3.02179 ] pdfxs + (a) show + (ses.) + [4.30902 4.8436 4.30902 3.0327 ] pdfxs + 16.936 -372.683 m + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (M) + [13.7018 ] pdfxs + (a) show + (lsom) + [3.0327 4.29811 9.15265 9.08711 ] pdfxs + (a) show + (kes) + [5.4545 4.85451 7.99626 ] pdfxs + (t) show + (heC) + [6.0654 8.54175 7.88721 ] pdfxs + (o) show + (n) + [5.74904 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (o) show + (lFlowGr) + [6.73085 7.12357 3.02179 5.15996 11.5744 8.5636 4.2654 ] pdfxs + (a) show + (ph) + [6.0654 9.76355 ] pdfxs + (\() show + (CFG\)) + [7.8763 6.81812 8.5636 7.94183 ] pdfxs + (o) show + (feveryfunc) + [7.02539 4.85451 5.4545 4.8436 4.27631 9.4581 3.32724 6.0654 6.05449 4.85451 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (nexplicitin) + [9.76355 4.85451 5.74904 6.0654 3.0327 3.02179 4.85451 3.0327 7.94183 3.02179 9.76355 + ] pdfxs + (t) show + (herepresen) + [6.0654 8.54175 4.27631 4.8436 6.0654 4.2654 4.85451 4.29811 4.85451 5.75995 ] pdfxs + (ta) show + (-) show + -3.05176e-05 -394.606 m + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n.Afunc) + [6.05449 8.03993 11.869 3.33815 6.05449 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nisaset) + [9.75264 3.02179 7.99626 9.14174 4.29811 4.85451 7.93092 ] pdfxs + (o) show + (fb) + [7.02539 6.05449 ] pdfxs + (a) show + (sicblocks,) + [4.30902 3.02179 8.54175 6.0654 3.02179 5.75995 4.54905 5.75995 4.29811 6.73085 ] pdfxs + (a) show + (nde) + [6.0654 9.74173 4.85451 ] pdfxs + (a) show + (chb) + [4.54905 9.74173 6.0654 ] pdfxs + (a) show + (sicblockisasequence) + [4.29811 3.0327 8.54175 6.05449 3.0327 5.75995 4.53815 9.44719 3.0327 7.99626 9.14174 + 4.29811 4.85451 5.74904 6.0654 4.8436 6.0654 4.8436 8.54175 ] pdfxs + (o) show + (f) + [7.02539 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mins) + [13.68 3.0327 6.0654 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns,) + [6.05449 4.30902 3.0327 ] pdfxs + -3.05176e-05 -416.528 m + (endinginex) + [4.8436 6.0654 6.0654 3.02179 6.0654 9.29447 3.02179 9.90537 4.8436 5.75995 ] pdfxs + (a) show + (c) + [4.8436 ] pdfxs + (t) show + (ly) + [3.0327 9.58901 ] pdfxs + (o) show + (ne) + [6.0654 8.68356 ] pdfxs + (t) show + (ermin) + [4.8436 4.27631 9.08711 3.0327 6.0654 ] pdfxs + (ato) show + (rins) + [8.10537 3.0327 6.05449 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.89446 ] pdfxs + (\() show + (br) + [6.0654 4.2654 ] pdfxs + (a) show + (nches,re) + [6.0654 4.54905 6.05449 4.85451 4.29811 6.9163 4.27631 4.8436 ] pdfxs + (t) show + (urn,) + [6.0654 4.2654 6.0654 3.0327 ] pdfxs + 305.942 -416.528 m + /N722 10.909 Tf + (unwind) show + 340.305 -416.528 m + /N614 10.909 Tf + (,) + [6.9163 ] pdfxs + (o) show + (r) show + 360.785 -416.528 m + /N722 10.909 Tf + (invoke) show + 395.149 -416.528 m + /N614 10.909 Tf + (;thel) + [6.97085 4.23277 6.0654 8.68356 3.0327 ] pdfxs + (att) show + (ertw) + [4.8436 8.10537 3.94914 7.57085 ] pdfxs + (o) show + -6.10352e-05 -438.451 m + (a) show + (reexpl) + [4.27631 8.47629 4.85451 5.75995 6.05449 3.0327 ] pdfxs + (a) show + (inedl) + [3.0327 6.05449 4.85451 9.6981 3.0327 ] pdfxs + (a) show + (terbelow) + [4.23277 4.85451 7.909 6.35994 4.85451 3.02179 5.15996 7.8763 ] pdfxs + (\)) show + (.E) + [7.87629 7.42902 ] pdfxs + (a) show + (ch) + [4.53815 9.6981 ] pdfxs + (t) show + (ermin) + [4.8436 4.27631 9.08711 3.0327 6.0654 ] pdfxs + (ato) show + (rexplici) + [7.909 4.8436 5.75995 6.0654 3.02179 3.0327 4.85451 3.02179 ] pdfxs + (t) show + (lyspeci\fesi) + [3.0327 9.39264 4.30902 6.35994 4.8436 4.85451 3.0327 6.05449 4.85451 7.93081 3.0327 + ] pdfxs + (t) show + (ssuccess) + [7.94172 4.29811 6.0654 4.8436 4.85451 4.8436 4.30902 4.29811 ] pdfxs + (o) show + (rb) + [7.909 6.0654 ] pdfxs + (a) show + (sicblocks.) + [4.29811 3.0327 8.4872 6.05449 3.0327 5.75995 4.53815 5.75995 4.30902 3.0327 ] pdfxs + -6.10352e-05 -476.283 m + /N622 11.955 Tf + (2.2.2L) + [6.7307 3.73 6.7307 3.73 20.1801 8.06955 ] pdfxs + (an) show + (g) + [6.7307 ] pdfxs + (ua) show + (ge) + [6.71874 6.14487 ] pdfxs + (-Ind) show + (epen) + [6.13291 7.84247 6.13291 7.48382 ] pdfxs + (d) show + (entType) + [6.13291 7.10126 9.70749 8.97817 7.10119 7.84247 10.628 ] pdfxs + (In) show + (form) + [4.10049 6.7307 5.48733 11.2138 ] pdfxs + (a) show + (tio) + [5.22437 3.74195 6.71874 ] pdfxs + (n) show + (,C) + [8.22507 9.70749 ] pdfxs + (a) show + (st,) + [5.30802 5.22437 8.22507 ] pdfxs + (an) show + (dGetElementPtr) + [11.955 10.5682 6.13291 5.23633 8.82286 3.74195 6.13291 11.2138 6.13291 7.10126 5.22437 + 9.19335 5.22437 5.48733 ] pdfxs + -6.10352e-05 -505.251 m + /N614 10.909 Tf + (One) + [8.4872 6.05449 8.82538 ] pdfxs + (o) show + (fthefund) + [7.30902 4.23277 6.0654 8.82538 3.32724 6.0654 6.05449 6.0654 ] pdfxs + (a) show + (men) + [9.08711 4.85451 5.74904 ] pdfxs + (ta) show + (ldesi) + [7.00357 6.0654 4.8436 4.30902 3.02179 ] pdfxs + (g) show + (nfe) + [10.0363 3.33815 4.8436 ] pdfxs + (at) show + (ures) + [6.05449 4.27631 4.85451 8.26899 ] pdfxs + (o) show + (f) + [7.30902 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mis) + [13.9636 3.0327 8.2799 ] pdfxs + (t) show + (heinclusi) + [6.05449 8.82538 3.02179 6.0654 4.85451 3.02179 6.0654 4.29811 3.0327 ] pdfxs + (o) show + (n) + [10.0363 ] pdfxs + (o) show + (fal) + [7.29812 9.42537 3.0327 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (u) + [6.05449 ] pdfxs + (ag) show + (e-independenttype) + [4.85451 3.63261 3.0327 6.0654 6.05449 4.85451 6.35994 4.8436 6.0654 6.05449 4.85451 + 5.75995 8.21456 3.93823 5.75995 6.35994 4.8436 ] pdfxs + -6.10352e-05 -527.174 m + (sys) + [4.29811 5.75995 4.30902 ] pdfxs + (t) show + (em.EverySSAre) + [4.8436 9.08711 7.84357 7.42902 5.4545 4.8436 4.27631 9.27265 6.0654 6.05449 11.7054 + 4.27631 4.8436 ] pdfxs + (g) show + (ister) + [3.0327 4.30902 4.23277 4.85451 7.78901 ] pdfxs + (a) show + (ndexplicitmem) + [6.0654 9.5781 4.85451 5.74904 6.0654 3.0327 3.0327 4.8436 3.0327 7.75638 9.09802 + 4.8436 9.09802 ] pdfxs + (o) show + (ry) + [4.2654 9.28356 ] pdfxs + (o) show + (bjecth) + [6.66539 3.32724 4.85451 4.8436 7.76729 6.0654 ] pdfxs + (a) show + (s) + [7.82172 ] pdfxs + (a) show + (n) + [9.5781 ] pdfxs + (a) show + (ssoci) + [4.30902 4.29811 5.75995 4.8436 3.0327 ] pdfxs + (at) show + (edtype,) + [4.8436 9.58901 3.93823 5.75995 6.35994 4.8436 6.57812 ] pdfxs + (a) show + (nd) + [6.0654 9.5781 ] pdfxs + (a) show + (ll) + [3.0327 6.5454 ] pdfxs + (o) show + (per) + [6.37085 4.8436 4.27631 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (ns) + [6.0654 4.29811 ] pdfxs + -6.10352e-05 -549.096 m + (o) show + (beys) + [6.35994 4.85451 10.0145 4.29811 ] pdfxs + (t) show + (ricttyperules.Thistypeinf) + [4.27631 3.0327 4.8436 8.49819 3.93823 5.75995 6.35994 9.10902 4.27631 6.05449 3.0327 + 4.85451 4.29811 9.74173 7.8763 6.0654 3.0327 8.55262 3.94914 5.74904 6.37085 9.09811 + 3.0327 6.0654 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nisusedinc) + [10.3199 3.0327 8.55262 6.0654 4.29811 4.85451 10.3199 3.02179 10.3199 4.85451 ] pdfxs + (o) show + (njunc) + [6.05449 3.33815 6.05449 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nwi) + [10.3199 7.8763 3.0327 ] pdfxs + (t) show + (h) + [10.3199 ] pdfxs + (t) show + (heins) + [6.05449 9.10902 3.0327 6.05449 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [10.3199 ] pdfxs + (o) show + (pcode) + [6.35994 4.85451 5.74904 6.0654 4.8436 ] pdfxs + -6.10352e-05 -571.019 m + (t) show + (ode) + [9.13083 6.0654 4.8436 ] pdfxs + (t) show + (ermine) + [4.85451 4.2654 9.09802 3.02179 6.0654 8.53084 ] pdfxs + (t) show + (heex) + [6.05449 8.53084 4.85451 5.74904 ] pdfxs + (a) show + (ctseman) + [4.85451 7.92001 4.30902 4.8436 9.08711 5.46541 5.74904 ] pdfxs + (t) show + (ics) + [3.0327 4.8436 7.98535 ] pdfxs + (o) show + (f) + [7.01448 ] pdfxs + (a) show + (nins) + [9.74173 3.0327 6.0654 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [9.74173 ] pdfxs + (\() show + (e.) + [4.85451 3.02179 ] pdfxs + (g) show + (.\r) + [8.01811 6.0654 ] pdfxs + (oa) show + (tingp) + [4.23277 3.0327 6.0654 9.13083 6.37085 ] pdfxs + (o) show + (intvs.in) + [3.02179 5.75995 7.92001 5.75995 4.30902 8.0072 3.0327 5.75995 ] pdfxs + (t) show + (e) + [4.8436 ] pdfxs + (g) show + (er) + [4.85451 7.95264 ] pdfxs + (a) show + (dd) + [6.05449 6.0654 ] pdfxs + (\)) show + (.Thistype) + [8.0072 7.8763 6.0654 3.0327 7.98535 3.93823 5.75995 6.35994 4.8436 ] pdfxs + -6.10352e-05 -592.941 m + (inf) + [3.0327 6.05449 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nen) + [9.80719 4.8436 6.0654 ] pdfxs + (a) show + (blesabr) + [6.05449 3.0327 4.8436 8.05081 9.20719 6.0654 4.2654 ] pdfxs + (oa) show + (dcl) + [9.80719 4.85451 3.0327 ] pdfxs + (a) show + (ss) + [4.29811 8.05081 ] pdfxs + (o) show + (f) show + 176.061 -592.941 m + /N634 10.909 Tf + (h) show + (i) + [3.34914 ] pdfxs + (gh) show + (-l) + [3.90544 2.78176 ] pdfxs + (eve) show + (l) show + 223.857 -592.941 m + /N614 10.909 Tf + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 8.05081 ] pdfxs + (o) show + (n) show + 317.897 -592.941 m + /N634 10.909 Tf + (l) + [2.79267 ] pdfxs + (o) show + (w-l) + [7.24359 3.90544 2.78176 ] pdfxs + (eve) show + (l) show + 361.79 -592.941 m + /N614 10.909 Tf + (code) + [4.8436 5.75995 6.0654 8.59629 ] pdfxs + (\() show + (f) + [3.32724 ] pdfxs + (o) show + (rex) + [8.01809 4.85451 5.75995 ] pdfxs + (a) show + (mple,see) + [9.08711 6.0654 3.02179 4.85451 6.80721 4.29811 4.85451 4.8436 ] pdfxs + 1 0 0 1 0 -603.041 cm + q + [] 0 d + 0 J + 0.397995 w + n + 0 0.19899 m + 187.197 0.19899 l + S + Q + 1 0 0 1 12.437 -6.452 cm + 0 0 m + /N1153 5.978 Tf + (2) show + 4.15099 -3.80899 m + /N1156 8.96599 Tf + (F) + [5.24515 ] pdfxs + (o) show + (r) + [6.6796 ] pdfxs + (e) show + (x) + [4.85963 ] pdfxs + (a) show + (m) + [7.6838 ] pdfxs + (p) show + (l) + [2.55527 ] pdfxs + (e) show + (,t) + [5.63957 3.57737 ] pdfxs + (her) show + (e) + [7.1728 ] pdfxs + (ar) show + (e) + [7.1728 ] pdfxs + (n) show + (o) + [7.68392 ] pdfxs + (un) show + (a) + [4.59962 ] pdfxs + (r) show + (yop) + [7.94393 4.59962 5.37959 ] pdfxs + (era) show + (t) + [3.58634 ] pdfxs + (or) show + (s:) + [3.63121 2.56423 ] pdfxs + 181.871 -3.80899 m + /N1196 8.96599 Tf + (not) show + 199.064 -3.80899 m + /N1156 8.96599 Tf + (and) show + 216.983 -3.80899 m + /N1196 8.96599 Tf + (neg) show + 234.177 -3.80899 m + /N1156 8.96599 Tf + (ar) show + (eim) + [7.1728 2.55527 7.6838 ] pdfxs + (p) show + (l) + [2.55527 ] pdfxs + (e) show + (m) + [7.6838 ] pdfxs + (e) show + (nt) + [4.86852 3.57737 ] pdfxs + (e) show + (dint) + [8.19491 2.56423 8.18594 3.58634 ] pdfxs + (er) show + (ms) + [7.6838 6.70655 ] pdfxs + (of) show + 351.015 -3.80899 m + /N1196 8.96599 Tf + (xor) show + 368.208 -3.80899 m + /N1156 8.96599 Tf + (and) show + 386.127 -3.80899 m + /N1196 8.96599 Tf + (sub) show + 400.249 -3.80899 m + /N1156 8.96599 Tf + (,) + [5.6306 ] pdfxs + (re) show + (sp) + [3.64018 5.37062 ] pdfxs + (e) show + (ctively.) + [4.09746 3.58634 2.56423 4.59962 4.10643 2.55527 4.09752 2.56423 ] pdfxs + 216.108 -47.708 m + /N614 10.909 Tf + (16) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 72 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (o) show + (rwi) + [7.909 7.8763 3.0327 ] pdfxs + (t) show + (hm) + [9.6981 9.08711 ] pdfxs + (a) show + (nualins) + [5.75995 6.05449 5.46541 6.6654 3.02179 6.0654 4.29811 ] pdfxs + (t) show + (rumen) + [4.27631 6.0654 9.08711 4.8436 5.75995 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (n,showingp) + [6.05449 6.6654 4.30902 6.05449 5.15996 7.8763 3.0327 6.05449 9.08719 6.37085 ] pdfxs + (o) show + (si) + [4.29811 3.0327 ] pdfxs + (t) show + (iveperf) + [3.0327 5.4545 8.4872 6.35994 4.8436 4.27631 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (ncee\013ec) + [6.05449 4.85451 8.47629 4.85451 6.35986 4.85451 4.8436 ] pdfxs + (t) show + (s[1) + [7.94172 3.02179 5.46541 ] pdfxs + (42) show + (,) + [6.6654 ] pdfxs + (30) show + (,) + [6.6654 ] pdfxs + (29) show + (,) + [6.6654 ] pdfxs + (75) show + (].) + [3.0327 3.0327 ] pdfxs + 16.936 -21.922 m + (M) + [10.0036 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.29811 4.85451 ] pdfxs + (o) show + (pic) + [6.05449 3.0327 7.86539 ] pdfxs + (t) show + (echniquesprovide) + [4.8436 4.54905 6.0654 6.05449 3.0327 5.75995 6.05449 4.85451 7.31991 6.05449 4.27631 + 5.14905 5.75995 3.0327 6.05449 7.86539 ] pdfxs + (a) show + (ll) + [3.0327 6.04358 ] pdfxs + (o) show + (ftheinf) + [6.35994 4.23277 6.0654 7.86539 3.0327 6.05449 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nnecess) + [9.07628 6.05449 4.85451 4.8436 4.85451 4.29811 4.29811 ] pdfxs + (a) show + (ry) + [4.27631 8.77083 ] pdfxs + (t) show + (operf) + [8.47629 6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 12.098 ] pdfxs + (t) show + (his) + [6.0654 3.0327 7.31991 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n,) + [6.05449 3.0327 ] pdfxs + 0 -43.845 m + (a) show + (ut) + [6.0654 4.23277 ] pdfxs + (o) show + (m) + [9.09802 ] pdfxs + (at) show + (ic) + [3.02179 4.85451 ] pdfxs + (a) show + (lly) + [3.0327 3.02179 8.79265 ] pdfxs + (a) show + (nds) + [6.05449 9.0981 4.29811 ] pdfxs + (a) show + (fely,evenf) + [3.33815 4.8436 3.0327 4.84359 6.1854 4.8436 5.4545 4.85451 9.08719 3.32724 ] pdfxs + (o) show + (rn) + [7.30901 6.05449 ] pdfxs + (o) show + (n-type-s) + [6.0654 3.63261 3.93823 5.75995 6.35994 4.85451 3.63261 4.29811 ] pdfxs + (a) show + (fel) + [3.33815 7.8763 3.0327 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (eslikeC.Thisincludesiden) + [4.8436 7.33081 3.0327 3.0327 5.4545 7.8763 7.8763 6.0654 7.8763 6.05449 3.0327 + 7.33081 3.0327 6.05449 4.85451 3.0327 6.05449 6.0654 4.8436 7.33081 3.0327 6.0654 + 4.8436 5.75995 ] pdfxs + (t) show + (i\fc) + [3.02179 6.0654 4.85451 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n) + [9.08719 ] pdfxs + (o) show + (f) + [6.35994 ] pdfxs + (t) show + (he) + [6.0654 4.8436 ] pdfxs + 0 -65.768 m + (a) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (ednodesin) + [4.8436 9.13083 6.05449 5.75995 6.0654 4.8436 7.37445 3.0327 9.11992 ] pdfxs + (t) show + (hed) + [6.0654 7.90903 6.0654 ] pdfxs + (at) show + (as) + [8.51993 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ure) + [6.05449 4.27631 7.90903 ] pdfxs + (a) show + (ndiden) + [6.0654 9.13083 3.02179 6.0654 4.8436 5.75995 ] pdfxs + (t) show + (i\fc) + [3.0327 6.0654 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.11992 ] pdfxs + (o) show + (f) + [6.40358 ] pdfxs + (a) show + (llsc) + [3.0327 6.09813 4.29811 4.85451 ] pdfxs + (a) show + (l) + [3.02179 ] pdfxs + (a) show + (rp) + [7.34174 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (ersin) + [4.8436 4.27631 7.37445 3.02179 5.75995 ] pdfxs + (t) show + (o) + [8.51993 ] pdfxs + (t) show + (hed) + [6.0654 7.90903 6.0654 ] pdfxs + (at) show + (as) + [8.51993 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ure) + [6.05449 4.27631 4.8436 ] pdfxs + 0 -87.69 m + (\() show + (whichw) + [7.8763 6.0654 3.02179 4.54905 9.98173 7.58175 ] pdfxs + (o) show + (uldneed) + [6.05449 3.0327 9.98173 6.0654 4.8436 4.85451 9.98173 ] pdfxs + (t) show + (obeupd) + [9.37083 6.37085 8.77084 6.05449 6.35994 6.0654 ] pdfxs + (at) show + (ed) + [4.8436 9.98173 ] pdfxs + (t) show + (ore) + [9.38174 4.27631 4.8436 ] pdfxs + (o) show + (rdernodesin) + [4.27631 6.05449 4.85451 8.19264 6.0654 5.74904 6.0654 4.8436 8.22535 3.0327 9.98173 + ] pdfxs + (t) show + (hed) + [6.0654 8.77084 6.05449 ] pdfxs + (at) show + (as) + [9.38174 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ure) + [6.05449 4.27631 4.8436 ] pdfxs + (\)) show + (,) + [7.02539 ] pdfxs + (a) show + (ndinf) + [6.0654 9.98173 3.0327 6.05449 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [9.99264 ] pdfxs + (a) show + (b) + [6.35994 ] pdfxs + (o) show + (u) + [6.05449 ] pdfxs + (t) show + 0 -109.613 m + (inter-nodep) + [3.0327 5.75995 4.23277 4.85451 4.27631 3.63261 6.05449 5.75995 6.0654 8.4872 6.35994 + ] pdfxs + (o) show + (inters) + [3.0327 5.75995 4.23277 4.85451 4.27631 7.93081 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (tneed) + [7.87638 6.0654 4.8436 4.8436 9.6981 ] pdfxs + (t) show + (obeupd) + [9.0981 6.35994 8.4872 6.05449 6.37085 6.05449 ] pdfxs + (at) show + (ed.) + [4.85451 6.05449 3.0327 ] pdfxs + 0 -147.445 m + /N622 11.955 Tf + (8.2.5) + [6.7307 3.73 6.7307 3.73 20.1801 ] pdfxs + (Id) show + (enti) + [6.13291 7.10126 5.22437 3.74195 ] pdfxs + (\fca) show + (tionofCo) + [5.22437 3.74195 6.71874 11.955 6.7307 8.58361 9.71945 6.71874 ] pdfxs + (a) show + (rse) + [5.49929 5.29606 6.14487 ] pdfxs + (-) show + (GrainP) + [10.5682 5.49929 6.52739 3.74195 11.955 8.81079 ] pdfxs + (a) show + (r) + [5.49929 ] pdfxs + (a) show + (llelWork) + [3.73 3.74195 6.13291 8.21312 12.7799 6.71874 5.49929 7.10119 ] pdfxs + 0 -176.413 m + /N614 10.909 Tf + (D) show + (SA) + [6.05449 13.0799 ] pdfxs + (a) show + (ndpo) + [6.05449 10.9526 6.35994 5.75995 ] pdfxs + (o) show + (l) + [7.91993 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [10.9526 ] pdfxs + (tog) show + (e) + [4.8436 ] pdfxs + (t) show + (herprovideinf) + [6.05449 4.85451 9.16354 6.05449 4.27631 5.14905 5.75995 3.0327 6.05449 9.74174 3.0327 + 6.05449 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [10.9526 ] pdfxs + (t) show + (om) + [10.3417 9.08711 ] pdfxs + (a) show + (kep) + [5.4545 9.74174 6.35994 ] pdfxs + (o) show + (ssible) + [4.30902 4.29811 3.0327 6.05449 3.0327 9.74174 ] pdfxs + (a) show + (tle) + [9.13091 3.0327 4.8436 ] pdfxs + (a) show + (st) + [4.30902 9.13091 ] pdfxs + (t) show + (hreedi\013eren) + [6.0654 4.2654 4.85451 9.73083 6.0654 3.0327 6.35986 4.85451 4.2654 4.85451 5.74904 + ] pdfxs + (t) show + 0 -198.336 m + (f) + [3.33815 ] pdfxs + (o) show + (rms) + [4.2654 9.09802 7.93081 ] pdfxs + (o) show + (fp) + [6.97085 6.0654 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (a) show + (lleliz) + [3.0327 3.0327 4.85451 3.02179 3.0327 4.85451 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (n.) + [6.0654 3.0327 ] pdfxs + 0 -235.523 m + /N1025 10.909 Tf + (Mo) + [11.9126 6.62173 ] pdfxs + (d/) show + (R) + [9.40363 ] pdfxs + (e) show + (f) + [8.01809 ] pdfxs + (ba) show + (s) + [4.94172 ] pdfxs + (e) show + (dr) + [11.16 5.15995 ] pdfxs + (eg) show + (i) + [3.49088 ] pdfxs + (o) show + (n) + [11.1491 ] pdfxs + (pa) show + (r) + [5.17085 ] pdfxs + (a) show + (lleliz) + [3.47997 3.47997 5.75987 3.47997 3.47997 5.58542 ] pdfxs + (at) show + (i) + [3.47997 ] pdfxs + (on) show + 0 -264.491 m + /N614 10.909 Tf + (Dat) show + (aS) + [8.99992 6.0654 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.0654 4.2654 8.39993 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisprovidesc) + [3.0327 5.74904 4.30902 3.0327 7.84354 6.0654 4.27631 5.14905 5.75995 3.02179 6.0654 + 4.8436 7.85445 4.85451 ] pdfxs + (o) show + (n) + [5.74904 ] pdfxs + (t) show + (ext-sensi) + [4.85451 5.75995 4.23277 3.64352 4.29811 4.85451 6.05449 4.30902 3.02179 ] pdfxs + (t) show + (ivemod) + [3.0327 5.4545 8.39993 9.08711 5.75995 6.0654 ] pdfxs + (/) show + (refinf) + [4.2654 4.85451 6.88357 3.02179 6.0654 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n,whichm) + [6.0654 6.59994 7.8763 6.05449 3.0327 4.54905 9.61082 9.08711 ] pdfxs + (a) show + (kesitverye) + [5.4545 4.85451 7.84354 3.0327 7.78911 5.4545 4.85451 4.27631 9.30537 4.8436 ] pdfxs + (a) show + (sy) + [4.30902 5.75995 ] pdfxs + 0 -286.414 m + (t) show + (oiden) + [9.03265 3.0327 6.0654 4.8436 5.75995 ] pdfxs + (t) show + (ifyfunc) + [3.0327 3.32724 9.34901 3.32724 6.0654 6.05449 4.85451 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (nc) + [9.65446 4.8436 ] pdfxs + (a) show + (lls) + [3.0327 3.0327 7.88717 ] pdfxs + (a) show + (nd) + [6.05449 9.64355 ] pdfxs + (ot) show + (herre) + [6.0654 4.8436 7.85446 4.27631 4.85451 ] pdfxs + (g) show + (i) + [3.02179 ] pdfxs + (o) show + (ns) + [6.0654 7.88717 ] pdfxs + (o) show + (fcode) + [6.9163 4.85451 5.74904 6.0654 8.43266 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tdon) + [7.83274 6.05449 9.04356 6.05449 ] pdfxs + (o) show + (tinterferewi) + [7.83274 3.0327 5.75995 4.23277 4.85451 4.27631 3.32724 4.85451 4.2654 8.43266 7.8763 + 3.0327 ] pdfxs + (t) show + (he) + [9.64355 4.85451 ] pdfxs + (a) show + (ch) + [4.53815 9.65446 ] pdfxs + (o) show + (ther.) + [4.23277 6.0654 4.8436 4.27631 7.86538 ] pdfxs + (I) show + (nsh) + [9.64355 4.29811 6.0654 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (t) show + (,) show + 0 -308.336 m + (t) show + (he) + [6.05449 7.50539 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (niden) + [8.70538 3.0327 6.0654 4.8436 5.75995 ] pdfxs + (t) show + (i\fesp) + [3.02179 6.0654 4.8436 6.95991 6.05449 ] pdfxs + (a) show + (irs) + [3.0327 4.27631 6.949 ] pdfxs + (o) show + (ffunc) + [5.98904 3.32724 6.0654 6.05449 4.85451 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nc) + [8.70538 4.85451 ] pdfxs + (a) show + (llswh) + [3.02179 3.0327 6.95991 7.8763 6.05449 ] pdfxs + (o) show + (sein) + [4.30902 7.49448 3.0327 5.75995 ] pdfxs + (t) show + (ersec) + [4.8436 4.27631 4.29811 4.85451 4.8436 ] pdfxs + (t) show + (edmodse) + [4.8436 8.71629 9.08711 5.75995 8.71629 4.29811 4.8436 ] pdfxs + (t) show + (s) + [6.95991 ] pdfxs + (a) show + (reempty,) + [4.2654 7.50539 4.8436 9.09802 6.05449 3.93823 4.8545 5.87995 ] pdfxs + (a) show + (ndwh) + [6.05449 8.71629 7.8763 6.05449 ] pdfxs + (o) show + (se) + [4.30902 4.8436 ] pdfxs + 0 -330.259 m + (modse) + [9.08711 5.75995 10.3526 4.29811 4.85451 ] pdfxs + (t) show + (sdon) + [8.58535 6.0654 9.74173 6.0654 ] pdfxs + (o) show + (tc) + [8.53092 4.8436 ] pdfxs + (o) show + (n\rictwi) + [6.0654 6.05449 3.0327 4.85451 8.53092 7.8763 3.0327 ] pdfxs + (t) show + (h) + [10.3417 ] pdfxs + (t) show + (herefset) + [6.0654 9.13083 4.27631 4.85451 7.61448 4.30902 4.8436 8.53092 ] pdfxs + (o) show + (f) + [7.62539 ] pdfxs + (t) show + (he) + [6.0654 9.13083 ] pdfxs + (ot) show + (herc) + [6.0654 4.8436 8.56354 4.8436 ] pdfxs + (a) show + (ll.) + [3.0327 3.0327 9.83991 ] pdfxs + (I) show + (f) + [7.62539 ] pdfxs + (t) show + (hesec) + [6.05449 4.85451 4.29811 9.14174 4.8436 ] pdfxs + (o) show + (ndi) + [6.0654 6.05449 3.0327 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 8.59626 ] pdfxs + (a) show + (re) + [4.27631 9.13083 ] pdfxs + (t) show + (rue,) + [4.27631 6.05449 4.85451 7.48357 ] pdfxs + (t) show + (hec) + [6.05449 9.14174 4.8436 ] pdfxs + (a) show + (lls) + [3.0327 3.0327 4.29811 ] pdfxs + 0 -352.181 m + (c) + [4.8436 ] pdfxs + (a) show + (nbeexecu) + [9.07628 6.37085 7.85448 4.85451 5.74904 4.85451 4.8436 6.0654 ] pdfxs + (t) show + (edinp) + [4.8436 9.07628 3.0327 9.07628 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (a) show + (llel,p) + [3.0327 3.02179 4.85451 3.0327 6.16358 6.35994 ] pdfxs + (ot) show + (en) + [4.85451 5.74904 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (a) show + (llyexp) + [3.0327 3.0327 8.77083 4.8436 5.75995 6.35994 ] pdfxs + (o) show + (singimp) + [4.30902 3.02179 6.0654 8.46538 3.0327 9.08711 6.37085 ] pdfxs + (o) show + (r) + [4.2654 ] pdfxs + (ta) show + (ntc) + [5.75995 7.25457 4.85451 ] pdfxs + (oa) show + (rse-) + [4.2654 4.30902 4.8436 3.64352 ] pdfxs + (g) show + (r) + [4.2654 ] pdfxs + (a) show + (inedp) + [3.0327 6.0654 4.8436 9.07628 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (a) show + (llelism,f) + [3.0327 3.0327 4.8436 3.0327 3.0327 4.29811 9.08711 6.17449 3.32724 ] pdfxs + (o) show + (rex) + [7.28719 4.85451 5.74904 ] pdfxs + (a) show + (mple,) + [9.09802 6.05449 3.0327 4.85451 3.0327 ] pdfxs + 0 -374.104 m + (p) + [6.0654 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (a) show + (llelizing) + [3.0327 3.0327 4.8436 3.0327 3.0327 4.8436 3.0327 6.0654 9.08719 ] pdfxs + (o) show + (per) + [6.35994 4.85451 4.2654 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.0654 7.93081 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (toccur) + [7.87638 5.75995 4.8436 4.85451 6.05449 7.909 ] pdfxs + (o) show + (ndisj) + [9.6981 6.0654 3.0327 4.29811 3.33815 ] pdfxs + (o) show + (intd) + [3.02179 5.75995 7.87638 6.0654 ] pdfxs + (at) show + (as) + [9.08719 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ures.) + [6.0654 4.2654 4.85451 4.29811 3.0327 ] pdfxs + 16.936 -396.026 m + (Weimplemen) + [10.2981 8.90174 3.0327 9.08711 6.0654 3.02179 4.85451 9.08711 4.85451 5.74904 ] pdfxs + (t) show + (edasimpleversi) + [4.85451 10.1017 9.50174 4.30902 3.02179 9.09802 6.05449 3.0327 8.89083 5.4545 4.85451 + 4.27631 4.29811 3.0327 ] pdfxs + (o) show + (n) + [10.1017 ] pdfxs + (o) show + (f) + [7.38539 ] pdfxs + (t) show + (his) + [6.05449 3.0327 8.34535 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (go) show + (ri) + [4.27631 3.0327 ] pdfxs + (t) show + (hmine) + [6.05449 13.1344 3.0327 10.1126 4.8436 ] pdfxs + (a) show + (rlierversi) + [4.27631 3.0327 3.02179 4.85451 8.31264 5.4545 4.85451 4.27631 4.29811 3.0327 ] pdfxs + (o) show + (ns) + [6.05449 8.35626 ] pdfxs + (o) show + (f) + [7.37448 ] pdfxs + (D) show + (S) + [6.0654 ] pdfxs + (A) show + (,usingCilk[) + [7.06903 6.0654 4.29811 3.0327 6.0654 9.50174 7.8763 3.0327 3.0327 9.79628 3.0327 + ] pdfxs + (15) show + (]) show + 0 -417.949 m + (t) show + (ospawn) + [10.1126 4.29811 6.0654 5.14905 7.8763 10.7235 ] pdfxs + (t) show + (hre) + [6.05449 4.27631 4.8436 ] pdfxs + (a) show + (dsf) + [6.0654 8.95625 3.33815 ] pdfxs + (o) show + (r) + [8.92354 ] pdfxs + (t) show + (hep) + [6.0654 9.50174 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (a) show + (llelc) + [3.0327 3.0327 4.8436 7.69084 4.8436 ] pdfxs + (a) show + (lls.Theprim) + [3.0327 3.0327 4.29811 10.9417 7.8763 6.0654 9.50174 6.0654 4.2654 3.0327 9.08711 + ] pdfxs + (a) show + (rylimi) + [4.27631 10.4181 3.0327 3.02179 9.09802 3.02179 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [10.7126 ] pdfxs + (o) show + (f) + [7.99629 ] pdfxs + (t) show + (his) + [6.05449 3.0327 8.95625 ] pdfxs + (a) show + (ppr) + [6.0654 6.0654 4.2654 ] pdfxs + (oa) show + (chis) + [4.54905 10.7126 3.0327 8.95625 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (titdoes) + [8.90182 3.02179 8.90182 6.0654 5.74904 4.85451 4.29811 ] pdfxs + 0 -439.871 m + (n) + [6.0654 ] pdfxs + (o) show + (t) + [7.86547 ] pdfxs + (a) show + (pply) + [6.0654 6.05449 3.0327 9.38174 ] pdfxs + (t) show + (op) + [9.08719 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (a) show + (llelism) + [3.0327 3.0327 4.8436 3.0327 3.0327 4.29811 9.08711 ] pdfxs + 117.937 -439.871 m + /N634 10.909 Tf + (wit) + [7.24359 3.34914 3.62179 ] pdfxs + (h) show + (in) + [3.34914 6.13082 ] pdfxs + 150.838 -439.871 m + /N614 10.909 Tf + (ad) + [9.08719 6.05449 ] pdfxs + (at) show + (as) + [9.08719 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ure,soith) + [6.05449 4.27631 4.8436 6.6654 4.29811 9.08719 3.0327 7.86547 6.0654 ] pdfxs + (a) show + (slimi) + [7.93081 3.02179 3.0327 9.09802 3.02179 ] pdfxs + (t) show + (ed) + [4.85451 9.68719 ] pdfxs + (a) show + (pplic) + [6.05449 6.0654 3.0327 3.02179 4.85451 ] pdfxs + (a) show + (bilityinm) + [6.05449 3.0327 3.0327 3.0327 3.93823 9.38174 3.0327 9.68719 9.09802 ] pdfxs + (a) show + (nyimp) + [5.74904 9.39264 3.02179 9.09802 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (ta) show + (n) + [5.75995 ] pdfxs + (t) show + -1.52588e-05 -461.794 m + (si) + [4.29811 3.0327 ] pdfxs + (t) show + (u) + [6.0654 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (ns.) + [6.0654 4.29811 3.0327 ] pdfxs + -1.52588e-05 -498.982 m + /N1025 10.909 Tf + (P) + [8.22533 ] pdfxs + (a) show + (r) + [5.17085 ] pdfxs + (a) show + (ll) + [3.47997 3.49088 ] pdfxs + (e) show + (lpro) + [7.66903 6.96002 5.17085 6.62173 ] pdfxs + (ce) show + (ssi) + [4.95263 4.94172 3.49088 ] pdfxs + (n) show + (g) + [10.4508 ] pdfxs + (o) show + (fre) + [8.01809 5.15995 5.75987 ] pdfxs + (cu) show + (rsive) + [5.15995 4.95263 3.47997 6.27261 9.93802 ] pdfxs + (dat) show + (as) + [10.2763 4.95263 ] pdfxs + (t) show + (ruc) + [5.17085 6.96002 5.58542 ] pdfxs + (tu) show + (r) + [5.15995 ] pdfxs + (e) show + (s) show + -1.52588e-05 -527.95 m + /N614 10.909 Tf + (Theprim) + [7.8763 6.0654 8.30175 6.05449 4.27631 3.0327 9.08711 ] pdfxs + (a) show + (ry) + [4.27631 9.20719 ] pdfxs + (t) show + (echnique) + [4.8436 4.54905 6.05449 6.0654 3.0327 5.75995 6.05449 8.30175 ] pdfxs + (t) show + (oexp) + [8.90174 4.85451 5.75995 6.35994 ] pdfxs + (o) show + (sein) + [4.29811 8.30175 3.0327 5.75995 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (-d) + [3.64352 6.05449 ] pdfxs + (ata) show + (-s) + [3.64352 4.29811 ] pdfxs + (t) show + (ructurep) + [4.27631 6.05449 4.85451 4.23277 6.0654 4.27631 8.30175 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (a) show + (llelismis) + [3.0327 3.02179 4.85451 3.0327 3.02179 4.30902 12.5453 3.02179 7.75627 ] pdfxs + (a) show + (n) + [9.51264 ] pdfxs + (a) show + (ppr) + [6.0654 6.05449 4.27631 ] pdfxs + (oa) show + (chknown) + [4.54905 9.51264 5.75995 6.05449 5.14905 7.88721 9.51264 ] pdfxs + (a) show + (s) + [7.74536 ] pdfxs + (\\) show + (Sh) + [6.0654 6.0654 ] pdfxs + (a) show + (pe) + [6.35994 4.8436 ] pdfxs + -1.52588e-05 -549.872 m + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis"[) + [3.02179 5.75995 4.30902 3.02179 4.30902 10.5599 3.0327 ] pdfxs + (60) show + (,) + [8.14902 ] pdfxs + (117) show + (].Sh) + [3.02179 12.3053 6.0654 6.05449 ] pdfxs + (a) show + (pe) + [6.37085 9.95992 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysisisapowerful) + [3.0327 5.75995 4.29811 3.0327 9.41443 3.0327 9.41443 10.5708 6.35994 5.14905 7.58175 + 4.8436 4.27631 3.32724 6.0654 8.13811 ] pdfxs + (t) show + (echnique) + [4.8436 4.54905 6.0654 6.05449 3.0327 5.75995 6.05449 9.95992 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (tc) + [9.34909 4.85451 ] pdfxs + (a) show + (nidentifyad) + [11.1708 3.0327 6.05449 4.85451 5.75995 4.23277 3.0327 3.33815 10.8654 10.5708 6.05449 + ] pdfxs + (at) show + (as) + [10.5708 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ure) + [6.05449 4.27631 4.8436 ] pdfxs + -1.52588e-05 -571.795 m + (a) show + (sbeinga) + [9.67625 6.37085 4.8436 3.0327 6.0654 10.8217 10.8326 ] pdfxs + (\\) show + (lis) + [3.0327 3.0327 4.29811 ] pdfxs + (t") show + (,) + [8.84719 ] pdfxs + (\\t) show + (ree) + [4.27631 4.8436 4.8436 ] pdfxs + (") show + (,) + [8.84719 ] pdfxs + (\\) show + (d) + [6.0654 ] pdfxs + (ag) show + (") + [10.8326 ] pdfxs + (o) show + (ra) + [9.64353 10.8326 ] pdfxs + (g) show + (ener) + [4.85451 6.05449 4.85451 4.2654 ] pdfxs + (a) show + (l) + [8.41084 ] pdfxs + (g) show + (r) + [4.27631 ] pdfxs + (a) show + (ph.Oneimp) + [6.05449 6.0654 13.1017 8.4872 6.05449 10.2326 3.02179 9.09802 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (ta) show + (ntuses) + [5.74904 9.62182 6.0654 4.29811 4.85451 9.67625 ] pdfxs + (o) show + (fsh) + [8.71629 4.29811 6.0654 ] pdfxs + (a) show + (pe) + [6.35994 10.2217 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysisis) + [3.0327 5.74904 4.30902 3.0327 9.67625 3.0327 4.29811 ] pdfxs + -1.52588e-05 -593.717 m + (t) show + (op) + [10.7999 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (a) show + (llelizec) + [3.0327 3.02179 4.85451 3.0327 3.02179 4.85451 10.189 4.8436 ] pdfxs + (o) show + (mpu) + [9.09802 6.05449 6.0654 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 9.64352 ] pdfxs + (o) show + (n) + [11.3999 ] pdfxs + (t) show + (hesed) + [6.0654 4.8436 4.30902 10.189 6.0654 ] pdfxs + (a) show + (tas) + [4.23277 10.7999 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ures[) + [6.0654 4.2654 4.85451 9.64352 3.0327 ] pdfxs + (71) show + (].) + [3.02179 13.0035 ] pdfxs + (I) show + (fe) + [8.67265 4.85451 ] pdfxs + (a) show + (chnode) + [4.53815 11.4108 6.05449 5.75995 6.05449 10.1999 ] pdfxs + (o) show + (fad) + [8.67265 10.7999 6.05449 ] pdfxs + (at) show + (as) + [10.7999 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ureis) + [6.05449 4.27631 10.189 3.0327 4.29811 ] pdfxs + -1.52588e-05 -615.64 m + (recursivelyprocessed,ifweknow) + [4.27631 4.8436 4.85451 6.05449 4.27631 4.29811 3.0327 5.4545 4.8436 3.0327 9.59992 + 6.0654 4.2654 5.75995 4.85451 4.8436 4.30902 4.29811 4.8436 6.0654 6.92721 3.02179 + 7.17812 7.58175 8.68356 5.75995 6.05449 5.15996 11.7163 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (t) + [8.08365 ] pdfxs + (a) show + (llnodesinad) + [3.02179 6.87267 6.0654 5.75995 6.05449 4.85451 8.13808 3.0327 9.90537 9.29447 6.05449 + ] pdfxs + (at) show + (as) + [9.29447 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.0654 4.27631 8.68356 ] pdfxs + (a) show + (reprocessed) + [4.27631 8.68356 6.0654 4.27631 5.74904 4.85451 4.8436 4.30902 4.29811 4.85451 9.89446 + ] pdfxs + (\() show + (noe) + [6.0654 9.29447 4.8436 ] pdfxs + (a) show + (rly) + [4.27631 3.0327 9.59992 ] pdfxs + (o) show + (u) + [6.05449 ] pdfxs + (t) show + (s) + [4.30902 ] pdfxs + (\)) show + (,) show + 225.818 -657.201 m + (189) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (28) 29 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 0.000000 0.000000 translate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + 1 0 0 1 72 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (overhe) + [5.14905 5.4545 4.85451 4.2654 6.0654 4.8436 ] pdfxs + (a) show + (d) + [8.98901 ] pdfxs + (o) show + (fincre) + [6.25085 3.0327 6.0654 4.8436 4.27631 4.8436 ] pdfxs + (a) show + (sing) + [4.30902 3.0327 6.05449 8.37811 ] pdfxs + (t) show + (hesize) + [6.05449 7.77812 4.29811 3.0327 4.85451 7.76721 ] pdfxs + (o) show + (f) + [6.25085 ] pdfxs + (t) show + (henodes.Als) + [6.0654 7.76721 6.0654 5.75995 6.05449 4.85451 4.29811 7.6363 8.19266 3.02179 4.30902 + ] pdfxs + (o) show + (,) + [6.09813 ] pdfxs + (a) show + (swi) + [7.22172 7.8763 3.0327 ] pdfxs + (t) show + (hp) + [8.9781 6.37085 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (erc) + [4.85451 7.18901 4.85451 ] pdfxs + (o) show + (mpressi) + [9.08711 6.0654 4.2654 4.85451 4.29811 4.30902 3.02179 ] pdfxs + (o) show + (n,d) + [6.0654 6.09813 6.05449 ] pdfxs + (at) show + (astruc) + [8.37811 4.30902 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.0654 4.2654 7.77812 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (l-) + [3.0327 3.63261 ] pdfxs + 0 -21.922 m + (ysisexp) + [5.75995 4.29811 3.0327 7.94172 4.8436 5.75995 6.35994 ] pdfxs + (o) show + (sesinf) + [4.30902 4.8436 7.94172 3.0327 6.05449 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.68719 ] pdfxs + (a) show + (b) + [6.37085 ] pdfxs + (o) show + (utwhenitis) + [6.05449 7.88729 7.8763 6.05449 4.85451 9.6981 3.02179 7.88729 3.02179 4.29811 ] pdfxs + 201.24 -21.922 m + /N634 10.909 Tf + (sa) show + (f) + [3.34914 ] pdfxs + (e) show + 223.276 -21.922 m + /N614 10.909 Tf + (t) show + (omodify) + [9.08719 9.09802 5.74904 6.0654 3.0327 3.32724 9.39264 ] pdfxs + (t) show + (helay) + [6.0654 8.47629 3.0327 5.14905 5.4545 ] pdfxs + (o) show + (ut) + [6.0654 7.87638 ] pdfxs + (o) show + (fap) + [6.97085 9.08719 6.0654 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (icul) + [3.02179 4.85451 6.05449 3.0327 ] pdfxs + (a) show + (rd) + [7.909 6.0654 ] pdfxs + (at) show + (as) + [9.08719 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ure,) + [6.05449 4.27631 4.8436 3.0327 ] pdfxs + 0 -43.845 m + (whichisaprerequisi) + [7.8763 6.0654 3.0327 4.53815 10.3199 3.0327 8.55262 9.70901 6.0654 4.27631 4.8436 + 4.27631 4.8436 5.75995 6.0654 3.02179 4.30902 3.0327 ] pdfxs + (t) show + (e) + [9.09811 ] pdfxs + (t) show + (operf) + [9.70901 6.37085 4.8436 4.27631 3.32724 ] pdfxs + (o) show + (rming) + [4.27631 9.08711 3.0327 6.0654 9.70901 ] pdfxs + (a) show + (u) + [6.05449 ] pdfxs + (to) show + (m) + [9.09802 ] pdfxs + (a) show + (tichist) + [4.23277 3.0327 9.10902 6.05449 3.0327 4.30902 4.23277 ] pdfxs + (o) show + (ry-p) + [4.27631 5.75995 3.63261 6.37085 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (erprefe) + [4.85451 8.51991 6.0654 4.27631 4.8436 3.33815 4.8436 ] pdfxs + (t) show + (chingf) + [4.54905 6.05449 3.0327 6.05449 9.71992 3.32724 ] pdfxs + (o) show + (rpr) + [8.53082 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (mswrit) + [9.08711 8.56353 7.8763 4.27631 3.0327 4.23277 ] pdfxs + (t) show + (en) + [4.85451 6.0654 ] pdfxs + 0 -65.768 m + (inl) + [3.0327 9.6981 3.02179 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (eslikeC.) + [4.8436 7.94172 3.0327 3.02179 5.4545 8.4872 7.8763 3.0327 ] pdfxs + 0 -102.955 m + /N1025 10.909 Tf + (Po) + [8.22533 6.62173 ] pdfxs + (o) show + (l-) + [3.49088 4.1781 ] pdfxs + (o) show + (r) + [5.15995 ] pdfxs + (de) show + (r) + [9.349 ] pdfxs + (p) show + (r) + [5.17085 ] pdfxs + (e) show + (f) + [3.82904 ] pdfxs + (e) show + (tc) + [4.8873 5.22543 ] pdfxs + (h) show + (i) + [3.47997 ] pdfxs + (ng) show + 0 -131.923 m + /N614 10.909 Tf + (Withs) + [11.2144 3.0327 4.23277 10.5708 4.30902 ] pdfxs + (ta) show + (nd) + [6.05449 6.0654 ] pdfxs + (a) show + (rdhe) + [4.27631 10.5708 6.05449 4.85451 ] pdfxs + (a) show + (p) + [10.5708 ] pdfxs + (a) show + (lloc) + [3.02179 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [10.5708 ] pdfxs + (o) show + (fd) + [7.84357 6.0654 ] pdfxs + (a) show + (tas) + [4.23277 9.97082 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (urenodes,) + [6.05449 4.27631 9.35992 6.05449 5.75995 6.0654 4.8436 4.30902 7.75629 ] pdfxs + (t) show + (heindividu) + [6.05449 9.35992 3.0327 6.0654 6.05449 3.0327 5.75995 3.02179 6.0654 6.0654 ] pdfxs + (a) show + (lnodesc) + [7.53812 6.05449 5.75995 6.0654 4.8436 8.81444 4.8436 ] pdfxs + (a) show + (nbefr) + [10.5708 6.37085 9.35992 3.32724 4.27631 ] pdfxs + (ag) show + (men) + [9.08711 4.85451 5.74904 ] pdfxs + (t) show + (ed) + [4.85451 6.0654 ] pdfxs + 0 -153.846 m + (t) show + (hr) + [6.05449 4.27631 ] pdfxs + (o) show + (u) + [6.0654 ] pdfxs + (g) show + (h) + [6.05449 ] pdfxs + (o) show + (utmem) + [6.0654 8.90182 9.09802 4.8436 9.09802 ] pdfxs + (o) show + (ry.) + [4.2654 4.8545 10.9635 ] pdfxs + (A) show + (u) + [6.0654 ] pdfxs + (to) show + (m) + [9.08711 ] pdfxs + (at) show + (icPo) + [3.0327 9.51265 7.12357 5.75995 ] pdfxs + (o) show + (l) + [7.69084 ] pdfxs + (A) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ninheren) + [10.7235 3.0327 6.05449 6.0654 4.8436 4.27631 4.8436 5.75995 ] pdfxs + (t) show + (lyimproves) + [3.0327 10.4181 3.0327 9.09802 6.05449 4.27631 5.14905 5.4545 4.8436 8.97807 ] pdfxs + (t) show + (hissi) + [6.05449 3.0327 8.96716 4.30902 3.02179 ] pdfxs + (t) show + (u) + [6.0654 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nby) + [10.7235 5.75995 10.4181 ] pdfxs + (g) show + (r) + [4.27631 ] pdfxs + (o) show + (upin) + [6.05449 6.0654 3.0327 6.05449 ] pdfxs + (g) show + 0 -175.768 m + (t) show + (henodes) + [6.05449 9.34901 6.0654 5.75995 6.05449 4.85451 8.79262 ] pdfxs + (tog) show + (e) + [4.85451 ] pdfxs + (t) show + (herinmem) + [6.05449 4.85451 8.75991 3.0327 10.5599 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry,whichh) + [4.27631 4.84359 7.74539 7.8763 6.0654 3.0327 4.53815 10.5599 6.0654 ] pdfxs + (a) show + (sap) + [8.80353 9.94901 6.35994 ] pdfxs + (o) show + (si) + [4.30902 3.02179 ] pdfxs + (t) show + (ivee\013ect) + [3.0327 5.4545 9.34901 4.8436 6.37077 4.8436 4.8436 8.7491 ] pdfxs + (o) show + (nloc) + [10.549 3.0327 5.75995 4.8436 ] pdfxs + (a) show + (lity) + [3.0327 3.0327 3.93823 10.2545 ] pdfxs + (\() show + (improvinge\013ec) + [3.0327 9.08711 6.0654 4.2654 5.15996 5.74904 3.0327 6.0654 9.94901 4.85451 6.35986 + 4.8436 4.85451 ] pdfxs + (t) show + (ivec) + [3.02179 5.4545 9.34901 4.85451 ] pdfxs + (a) show + (che) + [4.53815 6.0654 4.8436 ] pdfxs + 0 -197.691 m + (linedensity) + [3.0327 3.0327 6.05449 8.06175 6.05449 4.85451 6.05449 4.30902 3.02179 3.93823 8.96719 + ] pdfxs + (a) show + (ndT) + [6.0654 9.26173 7.88721 ] pdfxs + (L) show + (Bus) + [10.9307 6.05449 4.30902 ] pdfxs + (ag) show + (e) + [4.8436 ] pdfxs + (\)) show + (.) + [7.73448 ] pdfxs + (A) show + (ddi) + [6.0654 6.0654 3.02179 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [6.0654 ] pdfxs + (a) show + (lly,we\fnd) + [3.02179 3.0327 4.8545 6.31631 7.58175 8.05084 6.0654 6.05449 9.27264 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [7.45093 ] pdfxs + (t) show + (he) + [6.0654 8.05084 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [9.27264 ] pdfxs + (o) show + (rder) + [4.27631 6.05449 4.85451 7.47264 ] pdfxs + (a) show + (ndc) + [6.0654 9.26173 4.85451 ] pdfxs + (o) show + (mm) + [9.08711 9.09802 ] pdfxs + (o) show + (n) + [9.26173 ] pdfxs + (t) show + (ravers) + [4.27631 5.14905 5.4545 4.8436 4.27631 4.30902 ] pdfxs + (a) show + (l) show + 0 -219.613 m + (p) + [6.0654 ] pdfxs + (a) show + (t) + [4.23277 ] pdfxs + (t) show + (erns) + [4.85451 4.2654 6.0654 7.94172 ] pdfxs + (o) show + (fd) + [6.97085 6.05449 ] pdfxs + (at) show + (as) + [9.0981 4.29811 ] pdfxs + (t) show + (ructures) + [4.27631 6.05449 4.85451 4.23277 6.0654 4.27631 4.8436 7.94172 ] pdfxs + (a) show + (res) + [4.27631 8.47629 4.30902 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (o) show + (n) + [6.0654 ] pdfxs + (g) show + (lyc) + [3.0327 9.39264 4.8436 ] pdfxs + (o) show + (rrel) + [4.27631 4.27631 4.8436 3.0327 ] pdfxs + (at) show + (ed.) + [4.8436 6.0654 3.0327 ] pdfxs + 16.937 -241.536 m + (A) show + (ll) + [3.0327 5.90177 ] pdfxs + (o) show + (fthese) + [6.21813 4.23277 6.0654 4.8436 4.30902 7.72357 ] pdfxs + (o) show + (bserv) + [6.0654 4.29811 4.85451 4.2654 5.14904 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nsle) + [6.0654 7.17809 3.0327 4.8436 ] pdfxs + (a) show + (dus) + [8.93447 6.0654 7.17809 ] pdfxs + (t) show + (obelieve) + [8.33447 6.35994 4.8436 3.0327 3.0327 4.8436 5.4545 7.73448 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tsimples) + [7.12366 4.29811 3.0327 9.08711 6.0654 3.0327 7.72357 4.29811 ] pdfxs + (t) show + (rideprefe) + [4.27631 3.0327 6.05449 7.72357 6.0654 4.27631 4.8436 3.33815 4.8436 ] pdfxs + (t) show + (ching) + [4.54905 6.05449 3.0327 6.05449 8.33447 ] pdfxs + (o) show + (fd) + [6.20722 6.0654 ] pdfxs + (at) show + (as) + [8.33447 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (urenodes) + [6.05449 4.27631 7.72357 6.0654 5.74904 6.0654 4.8436 4.29811 ] pdfxs + 0 -263.458 m + (inapo) + [3.0327 10.2545 9.65446 6.35994 5.75995 ] pdfxs + (o) show + (lmi) + [7.23266 9.08711 3.0327 ] pdfxs + (g) show + (htbe) + [5.75995 8.43274 6.37085 9.04356 ] pdfxs + (a) show + (ne\013ec) + [10.2545 4.85451 6.35986 4.8436 4.85451 ] pdfxs + (t) show + (iveway) + [3.0327 5.4545 9.04356 7.57085 5.15996 9.949 ] pdfxs + (t) show + (oimprove) + [9.65446 3.0327 9.08711 6.05449 4.27631 5.14905 5.4545 9.05447 ] pdfxs + (t) show + (heperf) + [6.05449 9.04356 6.37085 4.8436 4.27631 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nce) + [6.0654 4.8436 9.05447 ] pdfxs + (o) show + (fp) + [7.5272 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er-chasingcodes.S) + [4.8436 4.27631 3.63261 4.54905 6.05449 5.46541 4.29811 3.0327 6.05449 9.65446 4.85451 + 5.74904 6.0654 4.8436 4.30902 9.55628 6.0654 ] pdfxs + (t) show + (ride) + [4.27631 3.02179 6.0654 4.8436 ] pdfxs + 0 -285.381 m + (prefe) + [6.0654 4.2654 4.85451 3.32724 4.85451 ] pdfxs + (t) show + (chingisverysimple) + [4.53815 6.0654 3.0327 6.05449 10.0035 3.0327 8.84717 5.4545 4.85451 4.2654 10.309 + 4.29811 3.0327 9.08711 6.0654 3.0327 9.39265 ] pdfxs + (a) show + (ndh) + [6.0654 10.6035 6.0654 ] pdfxs + (a) show + (s) + [8.84717 ] pdfxs + (t) show + (he) + [6.0654 9.39265 ] pdfxs + (a) show + (dv) + [6.05449 5.15995 ] pdfxs + (a) show + (n) + [5.74904 ] pdfxs + (tag) show + (e) + [9.40356 ] pdfxs + (\() show + (likehis) + [3.02179 3.0327 5.4545 9.39265 6.0654 3.0327 4.29811 ] pdfxs + (to) show + (ry-p) + [4.27631 5.75995 3.63261 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (erprefe) + [4.8436 8.82536 6.05449 4.27631 4.8436 3.33815 4.8436 ] pdfxs + (t) show + (chin) + [4.54905 6.0654 3.02179 6.0654 ] pdfxs + (g) show + (\)) + [8.79273 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (ty) + [8.79273 5.4545 ] pdfxs + (o) show + (uc) + [10.6035 4.85451 ] pdfxs + (a) show + (n) show + 0 -307.303 m + (prefe) + [6.0654 4.2654 4.85451 3.32724 4.85451 ] pdfxs + (t) show + (ch) + [4.53815 8.71629 ] pdfxs + (a) show + (sm) + [6.95991 9.09802 ] pdfxs + (a) show + (nynodes) + [5.75995 8.41084 6.0654 5.74904 6.0654 4.8436 6.95991 ] pdfxs + (a) show + (he) + [6.0654 4.8436 ] pdfxs + (a) show + (d) + [8.72719 ] pdfxs + (a) show + (sneeded) + [6.95991 6.05449 4.85451 4.8436 6.0654 4.8436 8.71629 ] pdfxs + (t) show + (ocover) + [8.11629 4.8436 5.14905 5.4545 4.85451 6.92719 ] pdfxs + (t) show + (hel) + [6.0654 7.50539 3.02179 ] pdfxs + (at) show + (ency) + [4.85451 6.05449 4.85451 8.41084 ] pdfxs + (o) show + (fmem) + [5.98904 9.09802 4.8436 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 8.42174 ] pdfxs + (a) show + (ccesses.) + [4.8436 4.8436 4.85451 4.29811 4.30902 4.8436 4.30902 7.54902 ] pdfxs + (I) show + (mplemen) + [9.08711 6.0654 3.0327 4.8436 9.09802 4.8436 5.75995 ] pdfxs + (t) show + (ing) + [3.02179 6.0654 8.11629 ] pdfxs + (t) show + (his) + [6.05449 3.0327 4.29811 ] pdfxs + 0 -329.226 m + (t) show + (echnique) + [4.8436 4.54905 6.0654 6.05449 3.0327 5.75995 6.05449 7.98539 ] pdfxs + (a) show + (ndexperimen) + [6.0654 9.18537 4.85451 5.75995 6.35994 4.8436 4.27631 3.0327 9.08711 4.85451 5.74904 + ] pdfxs + (t) show + (ingwi) + [3.0327 6.0654 8.58538 7.8763 3.0327 ] pdfxs + (t) show + (hitc) + [9.19628 3.0327 7.37456 4.8436 ] pdfxs + (o) show + (uldprovidev) + [6.0654 3.0327 9.18537 6.0654 4.27631 5.14905 5.75995 3.02179 6.0654 7.98539 5.14904 + ] pdfxs + (a) show + (lu) + [3.0327 6.05449 ] pdfxs + (a) show + (bleinsi) + [6.0654 3.0327 7.97448 3.0327 6.0654 4.29811 3.0327 ] pdfxs + (g) show + (htinto) + [5.75995 7.37456 3.0327 5.75995 4.23277 8.59629 ] pdfxs + (t) show + (heloc) + [6.05449 7.98539 3.0327 5.74904 4.85451 ] pdfxs + (a) show + (lity) + [3.0327 3.02179 3.94914 8.89083 ] pdfxs + (ga) show + (ins) + [3.02179 6.0654 7.4399 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tpo) + [7.37456 6.37085 5.75995 ] pdfxs + (o) show + (l) show + 0 -351.148 m + (a) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (nc) + [10.2545 4.8436 ] pdfxs + (a) show + (nprovide,especi) + [10.2545 6.0654 4.2654 5.14905 5.75995 3.0327 6.0654 4.8436 7.35266 4.85451 4.29811 + 6.37085 4.8436 4.8436 3.0327 ] pdfxs + (a) show + (llybec) + [3.0327 3.0327 9.949 6.35994 4.8436 4.85451 ] pdfxs + (a) show + (usem) + [6.05449 4.30902 9.03265 9.09802 ] pdfxs + (a) show + (nyprocess) + [5.74904 9.949 6.0654 4.2654 5.75995 4.85451 4.8436 4.29811 4.30902 ] pdfxs + (o) show + (rsnowhaveh) + [4.27631 8.48717 6.0654 5.14905 12.0654 6.05449 5.15996 5.4545 9.03265 6.0654 ] pdfxs + (a) show + (rdw) + [4.2654 6.0654 7.57085 ] pdfxs + (a) show + (res) + [4.27631 9.03265 4.30902 ] pdfxs + (t) show + (rideprefe) + [4.2654 3.0327 6.0654 9.03265 6.0654 4.2654 4.85451 3.32724 4.85451 ] pdfxs + (t) show + (chin) + [4.53815 6.0654 3.0327 6.05449 ] pdfxs + (g) show + 0 -373.071 m + (h) + [6.0654 ] pdfxs + (a) show + (rdw) + [4.2654 6.0654 7.57085 ] pdfxs + (a) show + (reav) + [4.27631 8.4872 5.14905 5.14904 ] pdfxs + (a) show + (il) + [3.0327 3.0327 ] pdfxs + (a) show + (ble.) + [6.05449 3.0327 4.85451 3.0327 ] pdfxs + 0 -410.903 m + /N622 11.955 Tf + (8.2.4D) + [6.7307 3.73 6.7307 3.73 20.1801 10.3052 ] pdfxs + (a) show + (ta) + [5.22437 11.0225 ] pdfxs + (S) show + (tr) + [5.23633 5.48733 ] pdfxs + (uc) show + (t) + [5.23633 ] pdfxs + (u) show + (reTravers) + [5.48733 10.616 8.23696 5.49929 6.15678 6.73059 6.13291 5.49929 5.29606 ] pdfxs + (a) show + (l) + [3.74195 ] pdfxs + (-O) show + (r) + [5.48733 ] pdfxs + (d) show + (erNo) + [6.13291 9.98241 10.5204 7.08935 ] pdfxs + (d) show + (e) + [10.628 ] pdfxs + (R) show + (elo) + [6.13291 3.74195 7.08935 ] pdfxs + (ca) show + (tio) + [5.23633 3.73 6.7307 ] pdfxs + (n) show + 0 -439.871 m + /N614 10.909 Tf + (Ac) + [12.7853 4.85451 ] pdfxs + (o) show + (mm) + [9.08711 9.08711 ] pdfxs + (o) show + (nus) + [10.669 6.0654 4.30902 ] pdfxs + (ag) show + (ep) + [9.44719 6.0654 ] pdfxs + (att) show + (ernf) + [4.8436 4.27631 10.669 3.32724 ] pdfxs + (o) show + (rd) + [8.89081 6.05449 ] pdfxs + (at) show + (as) + [10.0581 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (uresis) + [6.0654 4.27631 4.8436 8.91262 3.0327 8.91262 ] pdfxs + (t) show + (ohaveac) + [10.0581 6.0654 5.14905 5.4545 9.4581 10.0581 4.85451 ] pdfxs + (o) show + (nstruc) + [6.05449 4.30902 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [6.05449 ] pdfxs + (/) show + (mu) + [8.79257 6.05449 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (nph) + [10.669 6.0654 6.05449 ] pdfxs + (a) show + (sef) + [4.30902 9.4581 3.32724 ] pdfxs + (o) show + (llowed) + [3.0327 3.0327 5.14905 7.57085 4.85451 6.0654 ] pdfxs + 0 -461.794 m + (bya) + [5.75995 10.2654 9.97082 ] pdfxs + (t) show + (ravers) + [4.2654 5.15996 5.4545 4.8436 4.27631 4.29811 ] pdfxs + (a) show + (lph) + [7.54902 6.05449 6.0654 ] pdfxs + (a) show + (se,f) + [4.29811 4.85451 7.75629 3.33815 ] pdfxs + (o) show + (llowedbyades) + [3.0327 3.02179 5.15996 7.57085 4.8436 10.5817 5.74904 10.2763 9.97082 6.05449 4.85451 + 4.29811 ] pdfxs + (t) show + (ructi) + [4.27631 6.05449 4.85451 4.23277 3.0327 ] pdfxs + (o) show + (nph) + [10.5708 6.0654 6.0654 ] pdfxs + (a) show + (se.) + [4.29811 4.8436 10.5163 ] pdfxs + (A) show + (s) + [8.81444 ] pdfxs + (a) show + (nex) + [10.5708 4.8436 5.75995 ] pdfxs + (a) show + (mple,c) + [9.09802 6.05449 3.0327 4.8436 7.7672 4.8436 ] pdfxs + (o) show + (nsiderapr) + [6.0654 4.29811 3.0327 6.0654 4.8436 8.78172 9.97082 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (m) + [13.6034 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (at) show + 0 -483.716 m + (p) + [6.35994 ] pdfxs + (o) show + (pul) + [6.0654 6.05449 3.0327 ] pdfxs + (at) show + (esab) + [4.85451 7.5599 8.7272 6.05449 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (a) show + (ncedbin) + [6.0654 4.8436 4.85451 9.32719 6.05449 3.0327 6.0654 ] pdfxs + (a) show + (ry) + [4.2654 9.02174 ] pdfxs + (t) show + (ree) + [4.27631 4.8436 8.1163 ] pdfxs + (t) show + (henspendsal) + [6.0654 4.8436 9.32719 4.30902 6.35994 4.8436 6.0654 6.0654 7.5599 8.7272 3.0327 + ] pdfxs + (o) show + (t) + [7.50547 ] pdfxs + (o) show + (f) + [6.59994 ] pdfxs + (t) show + (imequeryingit.Whencre) + [3.0327 9.08711 8.1163 5.75995 6.05449 4.85451 4.2654 5.75995 3.0327 6.05449 8.7272 + 3.0327 4.23277 7.75629 11.2144 6.0654 4.8436 9.32719 4.85451 4.2654 4.85451 ] pdfxs + (at) show + (ed,the) + [4.8436 6.0654 6.37085 4.23277 6.0654 8.1163 ] pdfxs + (t) show + (reewill) + [4.2654 4.85451 8.1163 7.8763 3.0327 3.0327 3.0327 ] pdfxs + 0 -505.639 m + (require) + [4.27631 4.8436 5.75995 6.05449 3.0327 4.27631 8.21448 ] pdfxs + (t) show + (henodes) + [6.05449 8.21448 6.0654 5.75995 6.05449 4.85451 7.66899 ] pdfxs + (t) show + (obere) + [8.81447 6.37085 8.21448 4.2654 4.85451 ] pdfxs + (o) show + (rdered) + [4.2654 6.0654 4.8436 4.27631 4.85451 9.42537 ] pdfxs + (t) show + (om) + [8.81447 9.08711 ] pdfxs + (a) show + (in) + [3.0327 5.75995 ] pdfxs + (ta) show + (in) + [3.0327 9.42537 ] pdfxs + (t) show + (heb) + [6.05449 8.21448 6.0654 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (a) show + (ncingpr) + [6.05449 4.85451 3.02179 6.0654 8.82538 6.05449 4.27631 ] pdfxs + (o) show + (per) + [6.35994 4.85451 4.2654 ] pdfxs + (t) show + (ies,) + [3.0327 4.8436 4.30902 6.44722 ] pdfxs + (t) show + (hus) + [5.75995 6.05449 7.66899 ] pdfxs + (t) show + (hec) + [6.0654 8.21448 4.8436 ] pdfxs + (o) show + (mm) + [9.09802 9.08711 ] pdfxs + (o) show + (n) + [9.42537 ] pdfxs + (t) show + (ravers) + [4.27631 5.14905 5.4545 4.8436 4.27631 4.30902 ] pdfxs + (a) show + (l) show + 0 -527.562 m + (o) show + (rderswillbeunst) + [4.27631 6.05449 4.85451 4.2654 8.1599 7.88721 3.02179 3.0327 6.89448 6.35994 8.70538 + 6.0654 6.05449 4.30902 4.23277 ] pdfxs + (a) show + (ble.) + [6.0654 3.0327 4.8436 8.54174 ] pdfxs + (H) show + (owever,whenthepr) + [5.15996 7.57085 4.85451 5.4545 4.8436 4.27631 6.93812 7.8763 6.0654 4.8436 9.92718 + 4.23277 6.0654 8.70538 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (men) + [12.9489 4.8436 5.75995 ] pdfxs + (t) show + (ersi) + [4.8436 4.27631 8.1599 3.0327 ] pdfxs + (t) show + (squeryph) + [8.1599 5.75995 6.05449 4.85451 4.2654 9.62173 6.05449 6.0654 ] pdfxs + (a) show + (seitwillbe) + [4.29811 8.70538 3.0327 8.10547 7.8763 3.0327 3.0327 6.88358 6.35994 4.85451 ] pdfxs + (g) show + (inqueryin) + [3.0327 9.91628 5.75995 6.05449 4.85451 4.2654 5.75995 3.0327 6.05449 ] pdfxs + (g) show + 0 -549.484 m + (itwi) + [3.0327 7.87638 7.8763 3.0327 ] pdfxs + (t) show + (hverysimil) + [9.6981 5.4545 4.8436 4.27631 9.39264 4.30902 3.02179 9.09802 3.02179 3.0327 ] pdfxs + (a) show + (r) + [7.909 ] pdfxs + (t) show + (ravers) + [4.27631 5.14905 5.4545 4.8436 4.27631 4.30902 ] pdfxs + (a) show + (lp) + [6.6654 6.05449 ] pdfxs + (att) show + (erns.) + [4.8436 4.27631 6.0654 4.29811 3.0327 ] pdfxs + 16.937 -571.407 m + (F) + [6.20722 ] pdfxs + (o) show + (rpr) + [8.39991 6.0654 4.2654 ] pdfxs + (o) show + (gr) + [5.46541 4.2654 ] pdfxs + (a) show + (mswi) + [9.09802 8.42171 7.8763 3.0327 ] pdfxs + (t) show + (hdistinctph) + [10.189 6.05449 3.0327 4.30902 4.23277 3.0327 6.0654 4.8436 8.36728 6.0654 6.05449 + ] pdfxs + (a) show + (sebehavi) + [4.30902 8.97811 6.35994 4.8436 6.0654 5.14905 5.75995 3.0327 ] pdfxs + (o) show + (rlike) + [8.39991 3.02179 3.0327 5.4545 8.97811 ] pdfxs + (t) show + (his,itiss) + [6.05449 3.0327 4.29811 7.28721 3.02179 8.36728 3.0327 8.43262 4.29811 ] pdfxs + (o) show + (me) + [9.09802 4.8436 ] pdfxs + (t) show + (imese\013ec) + [3.0327 9.08711 4.85451 8.42171 4.85451 6.35986 4.8436 4.85451 ] pdfxs + (t) show + (ivef) + [3.0327 5.4545 8.9672 3.33815 ] pdfxs + (o) show + (r) + [8.39991 ] pdfxs + (t) show + (hec) + [6.05449 8.97811 4.8436 ] pdfxs + (o) show + (mpiler) + [9.09802 6.05449 3.0327 3.0327 4.8436 4.27631 ] pdfxs + 0 -593.329 m + (t) show + (oinsertcodein) + [9.31628 3.0327 6.05449 4.30902 4.8436 4.27631 8.10547 4.85451 5.74904 6.0654 8.71629 + 3.02179 5.75995 ] pdfxs + (t) show + (o) + [9.31628 ] pdfxs + (t) show + (hepr) + [6.0654 8.71629 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (m) + [12.9598 ] pdfxs + (t) show + (hatre) + [6.05449 5.46541 8.10547 4.2654 4.85451 ] pdfxs + (o) show + (rders) + [4.2654 6.0654 4.8436 4.27631 8.17081 ] pdfxs + (t) show + (henodes) + [6.05449 8.71629 6.0654 5.74904 6.0654 4.8436 8.17081 ] pdfxs + (o) show + (f) + [7.19993 ] pdfxs + (t) show + (hed) + [6.05449 8.71629 6.0654 ] pdfxs + (a) show + (tas) + [4.23277 9.32719 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (urein) + [6.05449 4.27631 8.71629 3.02179 9.92718 ] pdfxs + (t) show + (heexpec) + [6.0654 8.70538 4.85451 5.74904 6.37085 4.8436 4.85451 ] pdfxs + (t) show + (edh) + [4.8436 9.92718 6.05449 ] pdfxs + (ot) show + 0 -615.252 m + (t) show + (ravers) + [4.27631 5.14905 5.4545 4.8436 4.27631 4.29811 ] pdfxs + (a) show + (l) + [6.86176 ] pdfxs + (o) show + (rder.O) + [4.2654 6.0654 4.8436 4.27631 8.44356 8.4872 ] pdfxs + (t) show + (hershave) + [6.05449 4.85451 4.2654 8.12717 6.0654 5.14905 5.4545 8.67266 ] pdfxs + (o) show + (bserved) + [6.0654 4.29811 4.85451 4.2654 5.4545 4.85451 9.88355 ] pdfxs + (t) show + (hise\013ect) + [6.05449 3.0327 8.12717 4.8436 6.37077 4.8436 4.85451 8.06183 ] pdfxs + (a) show + (ndimplemen) + [6.0654 9.88355 3.0327 9.08711 6.0654 3.02179 4.85451 9.08711 4.85451 5.74904 ] pdfxs + (t) show + (editin) + [4.85451 9.88355 3.0327 8.06183 3.0327 9.88355 ] pdfxs + (ga) show + (rb) + [4.27631 6.05449 ] pdfxs + (ag) show + (ec) + [8.67266 4.85451 ] pdfxs + (o) show + (llec) + [3.02179 3.0327 4.85451 4.8436 ] pdfxs + (t) show + (edsys) + [4.8436 9.89446 4.29811 5.75995 4.29811 ] pdfxs + (t) show + (ems) + [4.85451 9.08711 4.29811 ] pdfxs + 225.818 -657.201 m + (188) show + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 72 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (Sec) + [6.0654 4.8436 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (2) show + (.) + [3.0327 ] pdfxs + (4) show + (.) + [3.0327 ] pdfxs + (1) show + (\).) + [4.23277 7.8872 ] pdfxs + (I) show + (n) + [9.6981 ] pdfxs + (a) show + (ddi) + [6.05449 6.0654 3.0327 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (n,typemism) + [6.0654 6.6654 3.93823 5.75995 6.35994 8.4872 9.08711 3.0327 4.30902 9.08711 ] pdfxs + (at) show + (ches) + [4.53815 6.0654 4.85451 7.93081 ] pdfxs + (a) show + (reusefulf) + [4.27631 8.4872 6.05449 4.30902 4.8436 3.33815 6.05449 6.6654 3.33815 ] pdfxs + (o) show + (rde) + [7.909 6.0654 4.8436 ] pdfxs + (t) show + (ec) + [4.8436 4.85451 ] pdfxs + (t) show + (ing) + [3.02179 6.0654 9.08719 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imizerbu) + [3.0327 9.08711 3.0327 4.8436 4.85451 7.909 6.05449 6.0654 ] pdfxs + (g) show + (s.) + [4.29811 3.0327 ] pdfxs + 16.936 -21.922 m + (The) + [7.8763 6.0654 8.69447 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mtypesys) + [13.8436 3.93823 5.75995 6.35994 8.69447 4.29811 5.75995 4.30902 ] pdfxs + (t) show + (emincludess) + [4.8436 12.938 3.0327 6.05449 4.85451 3.02179 6.0654 6.0654 4.8436 8.14899 4.29811 + ] pdfxs + (o) show + (urce-l) + [6.0654 4.27631 4.8436 4.85451 3.63261 3.0327 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (e-independentprimi) + [4.8436 3.64352 3.02179 6.0654 6.05449 4.85451 6.05449 4.85451 6.05449 6.0654 4.85451 + 5.74904 8.09456 6.05449 4.27631 3.0327 9.08711 3.0327 ] pdfxs + (t) show + (ivetypeswi) + [3.02179 5.4545 8.69447 3.94914 5.74904 6.37085 4.8436 8.14899 7.8763 3.0327 ] pdfxs + (t) show + (hprede\fned) + [9.90537 6.0654 4.2654 4.85451 6.05449 4.85451 6.05449 6.0654 4.8436 6.0654 ] pdfxs + 0 -43.845 m + (sizes) + [4.29811 3.0327 4.85451 4.8436 9.62171 ] pdfxs + (\() show + (v) + [5.4545 ] pdfxs + (o) show + (id,bo) + [3.0327 6.0654 8.77083 6.35994 5.75995 ] pdfxs + (o) show + (l,si) + [3.0327 8.77083 4.30902 3.02179 ] pdfxs + (g) show + (ned) + [6.0654 4.8436 6.0654 ] pdfxs + (/) show + (unsi) + [6.0654 6.05449 4.30902 3.02179 ] pdfxs + (g) show + (nedin) + [6.0654 4.8436 11.389 3.0327 5.74904 ] pdfxs + (t) show + (e) + [4.85451 ] pdfxs + (g) show + (ersfr) + [4.8436 4.27631 9.62171 3.33815 4.2654 ] pdfxs + (o) show + (m8) + [14.4216 10.7672 ] pdfxs + (t) show + (o) + [10.7781 ] pdfxs + (6) show + (4bi) + [10.7781 6.0654 3.02179 ] pdfxs + (t) show + (s,) + [4.30902 8.77083 ] pdfxs + (a) show + (ndsin) + [6.0654 11.3781 4.30902 3.02179 6.0654 ] pdfxs + (g) show + (le-) + [3.0327 4.8436 8.95621 ] pdfxs + (a) show + (ndd) + [6.0654 11.3781 6.0654 ] pdfxs + (o) show + (uble-precisi) + [6.0654 6.05449 3.0327 4.8436 3.64352 6.05449 4.27631 4.8436 4.85451 3.0327 4.29811 + 3.0327 ] pdfxs + (o) show + (n) show + 0 -65.768 m + (\r) + [6.0654 ] pdfxs + (oa) show + (tin) + [4.23277 3.0327 6.0654 ] pdfxs + (g) show + (-p) + [3.63261 6.35994 ] pdfxs + (o) show + (inttypes) + [3.0327 5.75995 9.30546 3.93823 5.75995 6.35994 4.8436 4.30902 ] pdfxs + (\)) show + (.Thism) + [12.1417 7.8763 6.0654 3.0327 9.35989 9.08711 ] pdfxs + (a) show + (kesitp) + [5.4545 4.85451 9.35989 3.0327 9.29455 6.37085 ] pdfxs + (o) show + (ssible) + [4.29811 4.30902 3.02179 6.0654 3.0327 9.90537 ] pdfxs + (t) show + (owri) + [10.5163 7.8763 4.27631 3.02179 ] pdfxs + (t) show + (ep) + [9.90537 6.37085 ] pdfxs + (o) show + (r) + [4.2654 ] pdfxs + (ta) show + (blecodeusing) + [6.0654 3.0327 9.90537 4.8436 5.75995 6.0654 9.90537 6.05449 4.30902 3.0327 6.05449 + 10.5163 ] pdfxs + (t) show + (hesetypes,) + [6.05449 4.85451 4.29811 9.90537 3.94914 5.74904 6.37085 4.8436 4.30902 8.44356 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (o) show + (u) + [6.0654 ] pdfxs + (g) show + (h) show + 0 -87.69 m + (n) + [6.0654 ] pdfxs + (o) show + (n-p) + [6.05449 3.63261 6.37085 ] pdfxs + (o) show + (r) + [4.2654 ] pdfxs + (ta) show + (blecodec) + [6.0654 3.0327 8.34538 4.8436 5.75995 6.05449 8.34538 4.85451 ] pdfxs + (a) show + (nbeexpresseddirec) + [9.55628 6.35994 8.34538 4.8436 5.75995 6.0654 4.2654 4.85451 4.29811 4.30902 4.8436 + 9.55628 6.0654 3.02179 4.27631 4.85451 4.8436 ] pdfxs + (t) show + (ly) + [3.0327 9.25083 ] pdfxs + (a) show + (swell.) + [7.7999 7.57085 4.85451 3.02179 3.0327 7.83266 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (M) + [13.4945 ] pdfxs + (a) show + (lsoincludes) + [3.0327 4.29811 8.95629 3.0327 6.05449 4.85451 3.02179 6.0654 6.05449 4.85451 7.7999 + ] pdfxs + (\(o) show + (nly\)\fvederivedtypes:) + [6.05449 3.0327 5.75995 7.73456 6.0654 5.4545 8.34538 6.05449 4.85451 4.2654 3.0327 + 5.4545 4.8436 9.55628 3.94914 5.74904 6.37085 4.8436 4.30902 3.0327 ] pdfxs + 0 -109.613 m + (p) + [6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (ers,) + [4.8436 4.27631 4.29811 6.09813 ] pdfxs + (a) show + (rrays,s) + [4.2654 4.27631 5.14905 5.75995 4.29811 6.08722 4.30902 ] pdfxs + (t) show + (ructures,func) + [4.27631 6.05449 4.85451 4.23277 6.0654 4.27631 4.8436 4.30902 6.08722 3.32724 6.0654 + 6.05449 4.85451 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns,) + [6.05449 4.30902 6.08722 ] pdfxs + (a) show + (ndS) + [6.05449 8.9781 6.0654 ] pdfxs + (I) show + (MDvec) + [9.99272 11.2473 5.4545 4.85451 4.8436 ] pdfxs + (to) show + (rs.Webelieve) + [4.27631 4.29811 7.6363 10.309 7.7563 6.37085 4.8436 3.0327 3.0327 4.8436 5.4545 + 7.76721 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tm) + [7.15638 9.09802 ] pdfxs + (o) show + (sthi) + [4.29811 7.15638 6.0654 3.02179 ] pdfxs + (g) show + (h-levell) + [6.0654 3.63261 3.0327 4.85451 5.4545 4.8436 5.9454 3.0327 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (e) show + 0 -131.535 m + (d) + [6.0654 ] pdfxs + (a) show + (tatypes) + [4.23277 9.14174 3.94914 5.74904 6.37085 4.8436 7.99626 ] pdfxs + (a) show + (reeven) + [4.2654 8.54175 4.8436 5.4545 4.85451 5.74904 ] pdfxs + (t) show + (u) + [6.0654 ] pdfxs + (a) show + (llyrepresentedusings) + [3.0327 3.02179 9.44719 4.27631 4.8436 6.0654 4.2654 4.85451 4.29811 4.85451 5.75995 + 4.23277 4.85451 9.74173 6.0654 4.29811 3.0327 6.0654 9.14174 4.29811 ] pdfxs + (o) show + (mec) + [9.08711 8.54175 4.8436 ] pdfxs + (o) show + (mbin) + [8.79257 6.05449 3.0327 6.0654 ] pdfxs + (at) show + (ion) + [3.02179 5.46541 9.74173 ] pdfxs + (o) show + (fthese\fvetypesin) + [7.02539 4.23277 6.0654 4.8436 4.30902 8.53084 6.0654 5.4545 8.53084 3.93823 5.75995 + 6.37085 4.8436 7.98535 3.0327 9.75264 ] pdfxs + (t) show + (erms) + [4.8436 4.27631 9.08711 7.98535 ] pdfxs + (o) show + (f) + [7.02539 ] pdfxs + (t) show + (heir) + [6.05449 4.85451 3.0327 4.27631 ] pdfxs + 0 -153.458 m + (o) show + (per) + [6.35994 4.85451 4.2654 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [6.0654 ] pdfxs + (a) show + (lbehavi) + [5.7054 6.35994 4.85451 6.05449 5.15996 5.74904 3.0327 ] pdfxs + (o) show + (r.F) + [4.27631 7.55993 6.20722 ] pdfxs + (o) show + (rex) + [6.95992 4.8436 5.75995 ] pdfxs + (a) show + (mple,C++cl) + [9.08711 6.0654 3.0327 4.8436 5.90177 7.8763 8.4872 11.1599 4.85451 3.0327 ] pdfxs + (a) show + (sseswi) + [4.29811 4.29811 4.85451 6.98173 7.8763 3.0327 ] pdfxs + (t) show + (hinheri) + [8.7381 3.0327 6.05449 6.0654 4.8436 4.27631 3.0327 ] pdfxs + (ta) show + (nce) + [6.05449 4.85451 7.52721 ] pdfxs + (a) show + (reimplemen) + [4.27631 7.52721 3.02179 9.09802 6.05449 3.0327 4.8436 9.09802 4.8436 5.75995 ] pdfxs + (t) show + (edusings) + [4.8436 8.74901 6.05449 4.30902 3.02179 6.0654 8.13811 4.29811 ] pdfxs + (t) show + (ructures,) + [4.27631 6.05449 4.85451 4.23277 6.0654 4.27631 4.8436 4.30902 3.0327 ] pdfxs + 0 -175.38 m + (func) + [3.33815 6.05449 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns,) + [6.05449 4.30902 6.6654 ] pdfxs + (a) show + (nd) + [6.05449 9.6981 ] pdfxs + (a) show + (rrays) + [4.27631 4.27631 5.14905 5.75995 7.94172 ] pdfxs + (o) show + (ffuncti) + [6.95994 3.33815 6.0654 6.05449 4.85451 4.23277 3.0327 ] pdfxs + (o) show + (np) + [9.6981 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (ers,) + [4.8436 4.27631 4.29811 6.6763 ] pdfxs + (a) show + (sdescribedinSecti) + [7.93081 6.0654 4.8436 4.30902 4.8436 4.27631 3.0327 6.35994 4.85451 9.68719 3.0327 + 9.6981 6.0654 4.8436 4.85451 4.23277 3.0327 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (7) show + (.) show + 16.936 -197.303 m + (Equ) + [7.42902 5.74904 6.0654 ] pdfxs + (a) show + (llyimp) + [3.0327 3.0327 9.34901 3.02179 9.09802 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (ta) show + (n) + [5.74904 ] pdfxs + (t) show + (,) + [6.63267 ] pdfxs + (t) show + (he\fvederivedtypes) + [6.0654 8.43266 6.0654 5.4545 8.44357 6.05449 4.85451 4.2654 3.0327 5.4545 4.85451 + 9.65446 3.93823 5.75995 6.35994 4.8436 7.89808 ] pdfxs + (a) show + (bovec) + [6.35994 5.15996 5.4545 8.43266 4.85451 ] pdfxs + (a) show + (p) + [6.05449 ] pdfxs + (t) show + (ure) + [6.0654 4.27631 8.43266 ] pdfxs + (t) show + (hetypeinf) + [6.0654 8.44357 3.93823 5.74904 6.37085 8.44357 3.02179 6.0654 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nusedevenbys) + [9.65446 6.0654 4.29811 4.85451 9.64355 4.85451 5.4545 4.8436 9.65446 5.75995 9.34901 + 4.30902 ] pdfxs + (o) show + (-) show + 0 -219.225 m + (phis) + [6.0654 6.05449 3.0327 4.29811 ] pdfxs + (t) show + (ic) + [3.0327 4.8436 ] pdfxs + (at) show + (edl) + [4.85451 10.0035 3.0327 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (e-independent) + [4.8436 3.64352 3.02179 6.0654 6.05449 4.85451 6.35994 4.85451 6.05449 6.0654 4.8436 + 5.75995 8.18183 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lyses) + [3.0327 5.75995 4.29811 4.85451 8.23626 ] pdfxs + (a) show + (nd) + [6.0654 10.0035 ] pdfxs + (o) show + (p) + [6.0654 ] pdfxs + (t) show + (imiz) + [3.02179 9.09802 3.02179 4.85451 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns.F) + [6.05449 4.30902 8.79265 6.21813 ] pdfxs + (o) show + (rex) + [8.21446 4.8436 5.75995 ] pdfxs + (a) show + (mple,\feld-sensi) + [9.09802 6.05449 3.0327 4.8436 7.05812 6.05449 4.85451 3.0327 6.05449 3.63261 4.30902 + 4.8436 6.0654 4.29811 3.0327 ] pdfxs + (t) show + (ivep) + [3.0327 5.4545 8.79265 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (s-) + [4.29811 3.63261 ] pdfxs + 0 -241.148 m + (t) show + (o) + [10.5272 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lyseslike) + [3.0327 5.75995 4.29811 4.85451 9.3708 3.0327 3.0327 5.4545 9.91628 ] pdfxs + (Dat) show + (aS) + [10.5272 6.05449 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.0654 4.2654 9.92719 ] pdfxs + (A) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis,c) + [3.0327 5.75995 4.29811 3.0327 4.29811 8.46538 4.8436 ] pdfxs + (a) show + (ll) + [3.0327 8.10538 ] pdfxs + (g) show + (r) + [4.27631 ] pdfxs + (a) show + (phc) + [6.05449 11.1381 4.8436 ] pdfxs + (o) show + (ns) + [6.0654 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [11.1381 ] pdfxs + (\() show + (includingf) + [3.0327 6.05449 4.85451 3.02179 6.0654 6.05449 3.0327 6.0654 10.5272 3.32724 ] pdfxs + (o) show + (r) + [9.34899 ] pdfxs + (o) show + (bject-) + [6.66539 3.33815 4.8436 4.85451 4.23277 3.64352 ] pdfxs + (o) show + (rien) + [4.2654 3.0327 4.85451 5.74904 ] pdfxs + (t) show + (ed) + [4.85451 6.0654 ] pdfxs + 0 -263.07 m + (l) + [3.0327 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (eslikeC++) + [4.8436 8.84717 3.0327 3.0327 5.4545 9.39265 7.8763 8.4872 8.47629 ] pdfxs + (\)) show + (,sc) + [7.79993 4.30902 4.8436 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (a) show + (rpr) + [8.81445 6.0654 4.2654 ] pdfxs + (o) show + (m) + [9.09802 ] pdfxs + (ot) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [10.6035 ] pdfxs + (o) show + (f) + [7.87629 ] pdfxs + (agg) show + (re) + [4.27631 4.8436 ] pdfxs + (gat) show + (es,) + [4.85451 4.29811 7.79993 ] pdfxs + (a) show + (nds) + [6.0654 10.6035 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ure\feldre) + [6.05449 4.27631 9.39265 6.05449 4.85451 3.0327 10.6035 4.2654 4.85451 ] pdfxs + (o) show + (rdering) + [4.2654 6.0654 4.8436 4.27631 3.0327 6.05449 10.0035 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (-) show + 0 -284.993 m + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns[) + [6.05449 7.04718 3.02179 ] pdfxs + (28) show + (],) + [3.0327 5.9454 ] pdfxs + (o) show + (nlyusep) + [6.0654 3.0327 8.4872 6.0654 4.29811 7.59266 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (ers,s) + [4.8436 4.27631 4.29811 5.9454 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ures,func) + [6.0654 4.27631 4.8436 4.29811 5.95631 3.32724 6.0654 6.05449 4.85451 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (ns,) + [6.0654 4.29811 5.95631 ] pdfxs + (a) show + (ndprimi) + [6.05449 8.80356 6.05449 4.27631 3.0327 9.08711 3.0327 ] pdfxs + (t) show + (ived) + [3.02179 5.4545 7.59266 6.05449 ] pdfxs + (at) show + (atypes,while) + [8.19266 3.93823 5.75995 6.35994 4.85451 4.29811 5.95631 7.8763 6.05449 3.0327 3.0327 + 7.58176 ] pdfxs + (a) show + (rraydependence) + [4.27631 4.27631 5.14905 8.49811 6.05449 4.85451 6.35994 4.8436 6.0654 6.05449 4.85451 + 6.05449 4.85451 4.8436 ] pdfxs + 0 -306.915 m + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.02179 5.75995 4.30902 3.02179 7.94172 ] pdfxs + (a) show + (ndlo) + [6.0654 9.6981 3.02179 5.75995 ] pdfxs + (o) show + (p) + [9.6981 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nsuse) + [6.05449 7.94172 6.0654 4.29811 8.4872 ] pdfxs + (a) show + (ll) + [3.0327 6.6654 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (o) show + (seplus) + [4.30902 8.4872 6.05449 3.0327 6.0654 7.93081 ] pdfxs + (a) show + (rraytypes.) + [4.27631 4.27631 5.14905 9.39264 3.93823 5.75995 6.35994 4.85451 4.29811 3.0327 ] pdfxs + 16.936 -328.838 m + (Bec) + [7.72349 4.85451 4.8436 ] pdfxs + (a) show + (use) + [6.0654 4.29811 9.58901 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Misl) + [14.7272 3.0327 9.04353 3.02179 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (eindependent) + [9.5781 3.0327 6.05449 6.0654 4.8436 6.37085 4.8436 6.0654 6.05449 4.85451 5.75995 + 8.97819 ] pdfxs + (a) show + (ndmustsupp) + [6.05449 10.7999 8.78166 6.0654 4.29811 8.97819 4.30902 6.05449 6.0654 6.35994 ] pdfxs + (o) show + (rtwe) + [4.27631 8.97819 7.57085 4.85451 ] pdfxs + (a) show + (kly-typedl) + [5.75995 3.02179 5.75995 3.63261 3.94914 5.74904 6.37085 4.8436 10.7999 3.0327 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (es,) + [4.8436 4.30902 3.0327 ] pdfxs + 430.503 -328.838 m + /N634 10.909 Tf + (d) show + (e) + [4.46185 ] pdfxs + (c) show + (l) + [2.79267 ] pdfxs + (a) show + (re) + [4.0363 4.46185 ] pdfxs + (d) show + 0 -350.761 m + /N614 10.909 Tf + (typeinf) + [3.93823 5.75995 6.35994 9.40356 3.0327 6.05449 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ninale) + [10.6035 3.0327 10.6145 10.0035 3.0327 4.85451 ] pdfxs + (ga) show + (l) + [7.58175 ] pdfxs + (L) show + (L) + [5.59632 ] pdfxs + (V) show + (Mpr) + [14.5527 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (mmayn) + [13.6471 9.08711 5.14905 10.309 6.0654 ] pdfxs + (o) show + (tbereli) + [8.79273 6.37085 9.39265 4.27631 4.8436 3.0327 3.0327 ] pdfxs + (a) show + (ble.) + [6.05449 3.0327 4.85451 10.6254 ] pdfxs + (I) show + (ns) + [6.05449 4.30902 ] pdfxs + (t) show + (e) + [4.8436 ] pdfxs + (a) show + (d,s) + [6.0654 7.81084 4.29811 ] pdfxs + (o) show + (mep) + [9.09802 9.39265 6.37085 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (er) + [4.85451 8.82536 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 4.29811 ] pdfxs + 0 -372.683 m + (a) show + (l) + [3.0327 ] pdfxs + (go) show + (ri) + [4.2654 3.0327 ] pdfxs + (t) show + (hmmustbeused) + [6.0654 12.7089 8.79257 6.05449 4.30902 7.86547 6.35994 8.47629 6.05449 4.30902 4.8436 + 9.68719 ] pdfxs + (t) show + (odistin) + [9.07629 6.05449 3.0327 4.30902 4.23277 3.0327 6.0654 ] pdfxs + (g) show + (uishmem) + [6.05449 3.0327 4.30902 9.67628 9.09802 4.8436 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 9.38174 ] pdfxs + (a) show + (ccessesf) + [4.8436 4.85451 4.8436 4.30902 4.29811 4.85451 7.9199 3.33815 ] pdfxs + (o) show + (rwhichthetype) + [7.8981 7.8763 6.05449 3.0327 4.54905 9.68719 4.23277 6.0654 8.47629 3.93823 5.74904 + 6.37085 8.46538 ] pdfxs + (o) show + (f) + [6.95994 ] pdfxs + (t) show + (hep) + [6.05449 8.47629 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er) + [4.8436 7.8981 ] pdfxs + (ta) show + (r) + [4.27631 ] pdfxs + (g) show + (etis) + [4.8436 7.86547 3.0327 4.29811 ] pdfxs + 0 -394.606 m + (reli) + [4.27631 4.8436 3.0327 3.0327 ] pdfxs + (a) show + (blyknownfr) + [6.05449 3.0327 10.0145 5.75995 6.05449 5.14905 7.88721 10.309 3.33815 4.27631 ] pdfxs + (o) show + (m) + [13.3416 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (o) show + (sef) + [4.29811 9.10902 3.32724 ] pdfxs + (o) show + (rwhichitisn) + [8.53082 7.8763 6.0654 3.02179 4.54905 10.3199 3.0327 8.49819 3.02179 8.56353 6.05449 + ] pdfxs + (ot) show + (.Them) + [9.74173 7.8763 6.0654 9.09811 9.09802 ] pdfxs + (o) show + (st) + [4.29811 8.49819 ] pdfxs + (agg) show + (ressive) + [4.27631 4.8436 4.30902 4.29811 3.0327 5.4545 9.09811 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (go) show + (rithmcurren) + [4.27631 3.0327 4.23277 6.0654 13.3416 4.85451 6.0654 4.2654 4.27631 4.8436 5.75995 + ] pdfxs + (t) show + (lyincluded) + [3.0327 10.0145 3.02179 6.0654 4.8436 3.0327 6.0654 6.05449 4.85451 6.0654 ] pdfxs + 0 -416.528 m + (wi) + [7.8763 3.0327 ] pdfxs + (t) show + (h) + [10.4508 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mis) + [14.3781 3.0327 8.69444 ] pdfxs + (Dat) show + (aStruc) + [9.83992 6.0654 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.0654 4.2654 9.23992 ] pdfxs + (A) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.02179 5.75995 4.30902 3.02179 8.69444 ] pdfxs + (\() show + (describedinCh) + [6.0654 4.8436 4.29811 4.85451 4.27631 3.02179 6.37085 4.8436 10.4508 3.0327 10.4508 + 7.8763 6.05449 ] pdfxs + (a) show + (p) + [6.0654 ] pdfxs + (t) show + (er) + [4.8436 8.66173 ] pdfxs + (3\)) show + (.Ourresul) + [10.1345 8.4872 6.05449 8.66173 4.27631 4.8436 4.30902 6.05449 3.0327 ] pdfxs + (t) show + (sshowth) + [8.69444 4.29811 6.0654 5.14905 12.2726 4.23277 6.0654 ] pdfxs + (a) show + (tdespi) + [8.6291 6.0654 4.8436 4.30902 6.05449 3.0327 ] pdfxs + (t) show + (e) show + 0 -438.451 m + (a) show + (llowingv) + [3.0327 3.0327 5.14905 7.8763 3.0327 6.05449 8.42175 5.14904 ] pdfxs + (a) show + (lues) + [3.0327 6.05449 4.85451 7.26536 ] pdfxs + (t) show + (obe) + [8.41084 6.35994 7.81084 ] pdfxs + (a) show + (rbi) + [4.27631 6.0654 3.02179 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (rilyc) + [4.27631 3.02179 3.0327 8.71629 4.85451 ] pdfxs + (a) show + (stto) + [4.29811 7.21093 4.23277 8.42175 ] pdfxs + (ot) show + (hertypes,reli) + [6.05449 4.85451 7.23265 3.93823 5.75995 6.35994 4.85451 4.29811 6.13086 4.2654 4.85451 + 3.0327 3.02179 ] pdfxs + (a) show + (bletypeinf) + [6.0654 3.0327 7.81084 3.93823 5.75995 6.35994 7.81084 3.0327 6.05449 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (nisav) + [9.02174 3.0327 7.26536 5.14905 5.14904 ] pdfxs + (a) show + (il) + [3.0327 3.0327 ] pdfxs + (a) show + (blef) + [6.0654 3.02179 7.81084 3.33815 ] pdfxs + (o) show + (ral) + [7.23265 8.41084 3.0327 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (g) show + (e) show + 0 -460.373 m + (fr) + [3.33815 4.2654 ] pdfxs + (a) show + (c) + [4.85451 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (o) show + (fmem) + [6.97085 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 9.39264 ] pdfxs + (a) show + (ccessesinCpr) + [4.85451 4.8436 4.8436 4.30902 4.29811 4.85451 7.94172 3.02179 9.6981 11.5199 6.05449 + 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (msc) + [9.08711 7.94172 4.8436 ] pdfxs + (o) show + (mpiled) + [9.09802 6.05449 3.0327 3.0327 4.8436 9.6981 ] pdfxs + (t) show + (o) + [9.08719 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (M.) + [10.0036 3.0327 ] pdfxs + 16.936 -482.296 m + (The) + [7.8763 6.0654 8.53084 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (M`) + [13.6909 3.0327 ] pdfxs + 76.736 -482.296 m + /N722 10.909 Tf + (cast) show + 99.645 -482.296 m + /N614 10.909 Tf + ('instruc) + [6.71994 3.0327 6.05449 4.30902 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nisused) + [9.74173 3.0327 7.99626 6.05449 4.30902 4.8436 9.75264 ] pdfxs + (t) show + (oc) + [9.14174 4.8436 ] pdfxs + (o) show + (nvertav) + [5.75995 5.4545 4.8436 4.27631 7.93092 9.14174 5.14904 ] pdfxs + (a) show + (lue) + [3.0327 6.0654 8.53084 ] pdfxs + (o) show + (f) + [7.02539 ] pdfxs + (o) show + (netype) + [6.05449 8.54175 3.93823 5.75995 6.35994 8.53084 ] pdfxs + (t) show + (o) + [9.14174 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (ot) show + (her) + [6.05449 4.85451 7.96355 ] pdfxs + (a) show + (rbi) + [4.2654 6.0654 3.0327 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (rytype,) + [4.27631 9.44719 3.93823 5.75995 6.35994 4.8436 3.0327 ] pdfxs + -1.52588e-05 -504.218 m + (a) show + (ndis) + [6.0654 10.4181 3.0327 8.66171 ] pdfxs + (t) show + (he) + [6.05449 4.8436 ] pdfxs + 53.146 -504.218 m + /N634 10.909 Tf + (o) show + (nly) + [6.13082 2.79267 5.30169 ] pdfxs + 78.267 -504.218 m + /N614 10.909 Tf + (way) + [7.57085 5.15996 10.1126 ] pdfxs + (t) show + (operf) + [9.8181 6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rmsuchc) + [4.27631 13.4507 4.29811 6.0654 4.54905 10.4181 4.8436 ] pdfxs + (o) show + (nversi) + [5.75995 5.4545 4.85451 4.2654 4.30902 3.02179 ] pdfxs + (o) show + (ns.C) + [6.0654 4.30902 10.0472 7.8763 ] pdfxs + (a) show + (s) + [4.30902 ] pdfxs + (t) show + (s) + [8.66171 ] pdfxs + (t) show + (husm) + [5.75995 6.05449 8.67262 9.08711 ] pdfxs + (a) show + (ke) + [5.4545 9.2072 ] pdfxs + (a) show + (lltypec) + [3.0327 7.3963 3.93823 5.74904 6.37085 9.2072 4.85451 ] pdfxs + (o) show + (nversi) + [5.74904 5.4545 4.85451 4.2654 4.30902 3.0327 ] pdfxs + (o) show + (nsexplici) + [6.05449 8.67262 4.8436 5.75995 6.05449 3.0327 3.0327 4.8436 3.0327 ] pdfxs + (t) show + (,) show + -3.05176e-05 -526.141 m + (includingtypecoerci) + [3.0327 6.05449 4.85451 3.0327 6.05449 6.0654 3.02179 6.0654 9.34901 3.93823 5.75995 + 6.35994 8.74902 4.8436 5.75995 4.8436 4.27631 4.85451 3.02179 ] pdfxs + (o) show + (n) + [9.95991 ] pdfxs + (\(t) show + (here) + [6.05449 4.85451 4.2654 8.74902 ] pdfxs + (a) show + (renomixed-type) + [4.27631 8.73811 6.0654 9.34901 9.08711 3.0327 5.75995 4.8436 6.0654 3.63261 3.93823 + 5.75995 6.35994 8.74902 ] pdfxs + (o) show + (per) + [6.35994 4.85451 4.2654 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nsin) + [6.05449 8.20354 3.0327 9.949 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (M) + [10.0036 ] pdfxs + (\)) show + (,explicitc) + [6.92721 4.8436 5.75995 6.05449 3.0327 3.0327 4.8436 3.0327 8.13819 4.85451 ] pdfxs + (a) show + (s) + [4.29811 ] pdfxs + (t) show + (sf) + [8.19263 3.33815 ] pdfxs + (o) show + (rphysic) + [8.17082 6.05449 5.75995 5.75995 4.29811 3.0327 4.85451 ] pdfxs + (a) show + (l) show + -3.05176e-05 -548.063 m + (subtypin) + [4.29811 6.0654 6.0654 3.93823 5.74904 6.0654 3.0327 6.05449 ] pdfxs + (g) show + (,) + [6.35994 ] pdfxs + (a) show + (ndreinterpre) + [6.05449 9.30537 4.27631 4.8436 3.0327 5.75995 4.23277 4.85451 4.27631 6.05449 4.27631 + 4.8436 ] pdfxs + (t) show + (ingc) + [3.0327 6.05449 8.70538 4.8436 ] pdfxs + (a) show + (stsf) + [4.30902 4.23277 7.54899 3.33815 ] pdfxs + (o) show + (rn) + [7.50537 6.0654 ] pdfxs + (o) show + (n-type-s) + [6.0654 3.63261 3.93823 5.75995 6.35994 4.85451 3.63261 4.29811 ] pdfxs + (a) show + (fecode.Apr) + [3.33815 8.08357 4.85451 5.75995 6.05449 4.85451 7.74539 11.4217 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (mwi) + [12.3271 7.88721 3.02179 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (o) show + (u) + [6.05449 ] pdfxs + (t) show + 376.214 -548.063 m + /N722 10.909 Tf + (cast) show + 399.123 -548.063 m + /N614 10.909 Tf + (sisnecess) + [7.54899 3.02179 7.54899 6.0654 4.8436 4.8436 4.85451 4.29811 4.30902 ] pdfxs + (a) show + (rily) + [4.2654 3.0327 3.0327 5.75995 ] pdfxs + -3.05176e-05 -569.986 m + (type-s) + [3.93823 5.75995 6.35994 4.85451 3.63261 4.29811 ] pdfxs + (a) show + (fe) + [3.33815 8.4872 ] pdfxs + (\() show + (in) + [3.02179 9.6981 ] pdfxs + (t) show + (he) + [6.0654 8.4872 ] pdfxs + (a) show + (bsence) + [6.05449 4.30902 4.8436 6.0654 4.8436 8.4872 ] pdfxs + (o) show + (fmem) + [6.97085 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 9.39264 ] pdfxs + (a) show + (ccesserr) + [4.8436 4.85451 4.8436 4.29811 7.94172 4.85451 4.2654 4.27631 ] pdfxs + (o) show + (rs,e.) + [4.27631 4.29811 6.6654 4.85451 3.0327 ] pdfxs + (g) show + (.,) + [3.02179 6.6654 ] pdfxs + (a) show + (rrayover\row[) + [4.27631 4.27631 5.14905 9.39264 5.14905 5.4545 4.85451 4.2654 6.0654 5.14905 11.5199 + 3.0327 ] pdfxs + (48) show + (]) + [3.02179 ] pdfxs + (\)) show + (.) show + 16.937 -591.908 m + (Acri) + [12.4472 4.85451 4.2654 3.0327 ] pdfxs + (t) show + (ic) + [3.0327 4.8436 ] pdfxs + (a) show + (ldi\016cultyinpreservingtypeinf) + [7.30903 6.05449 3.0327 9.08711 4.85451 6.05449 3.0327 3.93823 10.0254 3.0327 10.3308 + 6.0654 4.2654 4.85451 4.29811 4.85451 4.27631 5.74904 3.0327 6.0654 9.71992 3.93823 + 5.75995 6.35994 9.11992 3.0327 6.0654 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nf) + [10.3308 3.32724 ] pdfxs + (o) show + (rlow-levelcodeisimplemen) + [8.55263 3.02179 5.15996 7.8763 3.63261 3.0327 4.8436 5.4545 4.85451 7.29812 4.8436 + 5.75995 6.0654 9.11992 3.0327 8.56353 3.0327 9.09802 6.05449 3.0327 4.8436 9.09802 + 4.8436 5.75995 ] pdfxs + (t) show + (ing) + [3.0327 6.05449 9.73082 ] pdfxs + (a) show + (ddress) + [6.05449 6.0654 4.2654 4.85451 4.29811 4.29811 ] pdfxs + -3.05176e-05 -613.831 m + (a) show + (ri) + [4.27631 3.02179 ] pdfxs + (t) show + (hme) + [6.0654 9.08711 4.85451 ] pdfxs + (t) show + (ic.The) + [3.02179 4.85451 7.7672 7.88721 6.05449 4.8436 ] pdfxs + 79.002 -613.831 m + /N722 10.909 Tf + (getelementptr) show + 156.775 -613.831 m + /N614 10.909 Tf + (ins) + [3.0327 6.05449 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nisusedbythe) + [9.38173 3.0327 7.61445 6.0654 4.29811 4.85451 9.38173 5.74904 9.08719 4.23277 6.0654 + 8.17084 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Msys) + [13.32 4.29811 5.75995 4.29811 ] pdfxs + (t) show + (em) + [4.85451 12.4034 ] pdfxs + (t) show + (operf) + [8.77083 6.37085 4.8436 4.27631 3.32724 ] pdfxs + (o) show + (rmp) + [4.27631 12.4144 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er) + [4.8436 7.59264 ] pdfxs + (a) show + (ri) + [4.27631 3.02179 ] pdfxs + (t) show + (h-) + [6.0654 3.63261 ] pdfxs + 228.545 -657.201 m + (17) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (29) 30 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 595.275591 788.031496 translate + 180 rotate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 72 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (me) + [9.08711 4.85451 ] pdfxs + (t) show + (icinaway) + [3.02179 7.48357 3.02179 8.69447 8.07266 7.58175 5.14905 8.37811 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (tb) + [6.86184 6.37085 ] pdfxs + (ot) show + (hpreservestypeinf) + [8.68356 6.05449 4.27631 4.8436 4.30902 4.8436 4.27631 5.4545 4.8436 6.93809 3.93823 + 5.74904 6.37085 7.47267 3.0327 6.05449 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [8.68356 ] pdfxs + (a) show + (ndh) + [6.05449 8.69447 6.05449 ] pdfxs + (a) show + (sm) + [6.92718 9.09802 ] pdfxs + (a) show + (chine-independentsem) + [4.53815 6.0654 3.0327 6.05449 4.85451 3.63261 3.0327 6.05449 6.0654 4.8436 6.37085 + 4.8436 6.0654 6.05449 4.85451 5.74904 6.87275 4.29811 4.85451 9.08711 ] pdfxs + (a) show + (n) + [5.75995 ] pdfxs + (t) show + (ics.Given) + [3.0327 4.8436 4.29811 7.54902 8.5636 3.02179 5.4545 4.85451 6.0654 ] pdfxs + 0 -21.922 m + (atypedp) + [9.76355 3.93823 5.74904 6.37085 4.8436 10.3635 6.37085 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (er) + [4.85451 8.57445 ] pdfxs + (t) show + (o) + [9.75264 ] pdfxs + (a) show + (n) + [10.3635 ] pdfxs + (o) show + (bject) + [6.66539 3.33815 4.8436 4.85451 8.54183 ] pdfxs + (o) show + (fs) + [7.63629 4.30902 ] pdfxs + (o) show + (me) + [9.08711 9.15265 ] pdfxs + (agg) show + (re) + [4.27631 4.8436 ] pdfxs + (gat) show + (etype,) + [9.15265 3.93823 5.75995 6.35994 4.85451 7.49448 ] pdfxs + (t) show + (hisins) + [6.0654 3.0327 8.60717 3.02179 6.0654 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nc) + [10.3635 4.8436 ] pdfxs + (a) show + (lcul) + [3.0327 4.8436 6.0654 3.0327 ] pdfxs + (at) show + (es) + [4.8436 8.60717 ] pdfxs + (t) show + (he) + [6.0654 9.15265 ] pdfxs + (a) show + (ddress) + [6.05449 6.0654 4.2654 4.85451 4.29811 8.60717 ] pdfxs + (o) show + (f) + [7.63629 ] pdfxs + (a) show + 0 -43.845 m + (sub-element) + [4.29811 6.0654 6.0654 3.63261 4.8436 3.0327 4.85451 9.08711 4.8436 5.75995 7.68002 + ] pdfxs + (o) show + (f) + [6.76358 ] pdfxs + (t) show + (he) + [6.0654 8.27993 ] pdfxs + (o) show + (bjectinatype-preservingm) + [6.66539 3.33815 4.8436 4.85451 7.68002 3.02179 9.50173 8.89083 3.93823 5.75995 6.35994 + 4.85451 3.63261 6.05449 4.27631 4.85451 4.29811 4.8436 4.27631 5.75995 3.0327 6.05449 + 8.89083 9.09802 ] pdfxs + (a) show + (nner) + [6.05449 6.0654 4.8436 7.71264 ] pdfxs + (\() show + (e\013ec) + [4.8436 6.35986 4.85451 4.8436 ] pdfxs + (t) show + (ivelyac) + [3.0327 5.4545 4.8436 3.0327 9.19628 8.89083 4.8436 ] pdfxs + (o) show + (mbined`.') + [8.79257 6.05449 3.0327 6.0654 4.8436 9.50173 3.02179 3.0327 7.81084 ] pdfxs + (a) show + (nd`[]') + [6.0654 9.49082 3.0327 6.46903 3.0327 6.45812 ] pdfxs + (o) show + (per) + [6.37085 4.8436 4.27631 ] pdfxs + (ato) show + (r) show + 0 -65.768 m + (f) + [3.33815 ] pdfxs + (o) show + (r) + [7.909 ] pdfxs + (L) show + (L) + [5.59632 ] pdfxs + (V) show + (M) + [10.0036 ] pdfxs + (\)) show + (.) show + 16.936 -87.69 m + (F) + [6.20722 ] pdfxs + (o) show + (rex) + [8.51991 4.8436 5.75995 ] pdfxs + (a) show + (mple,) + [9.08711 6.0654 3.0327 4.8436 7.42903 ] pdfxs + (t) show + (heCs) + [6.05449 9.0872 12.1199 4.30902 ] pdfxs + (ta) show + (tement) + [4.23277 4.85451 9.08711 4.85451 5.74904 8.48728 ] pdfxs + (\\) show + 171.866 -87.69 m + /N722 10.909 Tf + (X[i].) show + (a=) + [11.4544 11.4544 ] pdfxs + (1;) show + 234.866 -87.69 m + /N614 10.909 Tf + ("c) + [9.99264 4.85451 ] pdfxs + (o) show + (uldbe) + [6.05449 3.0327 10.2981 6.37085 9.0872 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsl) + [6.05449 4.30902 3.02179 ] pdfxs + (at) show + (edinto) + [4.85451 10.2981 3.0327 5.75995 4.23277 9.6981 ] pdfxs + (t) show + (hep) + [6.0654 9.0872 6.05449 ] pdfxs + (a) show + (ir) + [3.0327 8.51991 ] pdfxs + (o) show + (f) + [7.57084 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Min-) + [14.2363 3.0327 6.05449 3.63261 ] pdfxs + -1.52588e-05 -109.613 m + (s) + [4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns:) + [6.05449 4.30902 3.0327 ] pdfxs + 32.101 -132.439 m + /N1156 8.96599 Tf + (%p=) + [6.80514 10.0419 7.16379 ] pdfxs + 61.306 -132.439 m + /N1217 8.96599 Tf + (getelementpt) + [5.79199 5.34372 4.61754 5.35269 3.42496 5.35269 9.32456 5.35269 6.3748 4.61754 6.3748 + 4.60858 ] pdfxs + (r) show + 135.979 -132.439 m + /N1156 8.96599 Tf + (%xty) + [8.59833 5.6845 4.40225 4.85963 ] pdfxs + 160.656 -132.439 m + /N1220 8.96599 Tf + (\003) show + 168.95 -132.439 m + /N1156 8.96599 Tf + (%X,) + [7.52242 7.80037 2.56423 ] pdfxs + 194.43 -132.439 m + /N1217 8.96599 Tf + (in) + [3.85533 6.7962 ] pdfxs + (t) show + 213.389 -132.439 m + /N1156 8.96599 Tf + (%i,) + [8.76869 6.34788 2.56423 ] pdfxs + 237.97 -132.439 m + /N1217 8.96599 Tf + (ubyt) + [6.10582 6.10582 5.80996 4.33063 ] pdfxs + (e) show + 270.73 -132.439 m + /N1156 8.96599 Tf + (3) show + 277.817 -132.439 m + /N1223 8.96599 Tf + (;) show + 33.9729 -150.171 m + /N1217 8.96599 Tf + (storein) + [4.98505 4.92239 6.10579 5.17343 12.0951 3.85533 6.7962 ] pdfxs + (t) show + 88.9459 -150.171 m + /N1156 8.96599 Tf + (1,) + [7.54046 2.56423 ] pdfxs + 105.961 -150.171 m + /N1217 8.96599 Tf + (in) + [3.85533 6.7962 ] pdfxs + (t) show + 121.951 -150.171 m + /N1220 8.96599 Tf + (\003) show + 130.245 -150.171 m + /N1156 8.96599 Tf + (%) + [8.19487 ] pdfxs + (p) show + 145.115 -150.171 m + /N1223 8.96599 Tf + (;) show + 16.9359 -177.189 m + /N614 10.909 Tf + (wherewe) + [7.8763 6.0654 4.8436 4.27631 9.21811 7.58175 9.21811 ] pdfxs + (a) show + (ssume) + [4.30902 4.29811 6.0654 9.08711 4.8436 ] pdfxs + 104.457 -177.189 m + /N695 10.909 Tf + (a) show + 114.599 -177.189 m + /N614 10.909 Tf + (is\feldnumber3wi) + [3.0327 8.67262 6.0654 4.8436 3.0327 10.4399 5.75995 6.05449 8.79257 6.35994 4.8436 + 8.65082 9.82901 7.88721 3.02179 ] pdfxs + (t) show + (hin) + [6.0654 3.0327 10.429 ] pdfxs + (t) show + (hes) + [6.0654 9.21811 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.0654 4.2654 4.8436 ] pdfxs + 302.713 -177.189 m + /N722 10.909 Tf + (X[i]) show + 325.622 -177.189 m + /N614 10.909 Tf + (,) + [7.59266 ] pdfxs + (a) show + (nd) + [6.05449 10.4399 ] pdfxs + (t) show + (hes) + [6.0654 9.21811 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ureis) + [6.0654 4.2654 9.22901 3.0327 8.67262 ] pdfxs + (o) show + (ftype) + [7.71266 3.93823 5.75995 6.35994 4.8436 ] pdfxs + -0.00012207 -199.111 m + /N722 10.909 Tf + (%xty) show + 22.9089 -199.111 m + /N614 10.909 Tf + (.Mul) + [7.70175 10.0036 6.0654 3.02179 ] pdfxs + (t) show + (iples) + [3.0327 6.0654 3.02179 7.96357 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.0654 4.27631 7.96357 ] pdfxs + (a) show + (nd) + [6.05449 9.17446 ] pdfxs + (a) show + (rrayindexv) + [4.27631 4.27631 5.14905 8.86901 3.0327 6.0654 6.05449 4.85451 8.86901 5.14904 ] pdfxs + (a) show + (luesc) + [3.0327 6.0654 4.8436 7.41809 4.8436 ] pdfxs + (a) show + (nbespeci\fedin) + [9.18537 6.35994 7.96357 4.29811 6.37085 4.8436 4.85451 3.02179 6.0654 4.8436 9.18537 + 3.02179 9.18537 ] pdfxs + (o) show + (ne) + [6.05449 4.8436 ] pdfxs + 338.825 -199.111 m + /N722 10.909 Tf + (getelementptr) show + 416.394 -199.111 m + /N614 10.909 Tf + (ins) + [3.0327 6.05449 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) show + -0.00012207 -221.034 m + (t) show + (oindexin) + [9.08719 3.0327 6.0654 6.05449 4.85451 9.39264 3.02179 5.75995 ] pdfxs + (t) show + (ones) + [9.08719 6.0654 4.85451 4.29811 ] pdfxs + (t) show + (ed) + [4.8436 9.6981 ] pdfxs + (agg) show + (re) + [4.27631 4.8436 ] pdfxs + (gat) show + (etypes.) + [8.4872 3.93823 5.75995 6.35994 4.85451 4.29811 3.0327 ] pdfxs + 28.4679 -247.877 m + /N1217 8.96599 Tf + (struc) + [5.00298 4.94929 5.20033 6.7155 5.54099 ] pdfxs + (t) show + 65.5579 -247.877 m + /N1156 8.96599 Tf + (RT) + [5.98931 6.6528 ] pdfxs + 83.3999 -247.877 m + /N1220 8.96599 Tf + (f) show + 122.226 -247.877 m + /N1223 8.96599 Tf + (/) show + 127.513 -247.877 m + /N1220 8.96599 Tf + (\003) show + 139.468 -247.877 m + /N1223 8.96599 Tf + (Structurewithcomplextypes) + [6.41064 4.29474 5.11957 6.17752 5.46925 4.29474 6.17752 5.1106 12.0862 7.19975 3.90023 + 4.14232 12.1578 5.07475 5.54093 8.36523 5.54093 3.19183 5.06578 11.853 4.29474 5.70238 + 5.9444 5.46925 3.7657 ] pdfxs + 299.163 -247.877 m + /N1220 8.96599 Tf + (\003) show + 304.353 -247.877 m + /N1223 8.96599 Tf + (/) show + 39.0988 -258.836 m + /N1217 8.96599 Tf + (cha) + [5.11062 6.28514 5.55889 ] pdfxs + (r) show + 65.6608 -258.836 m + /N1156 8.96599 Tf + (A;) + [8.02452 2.56423 ] pdfxs + 83.8438 -258.836 m + /N1217 8.96599 Tf + (in) + [3.85533 6.7962 ] pdfxs + (t) show + 104.557 -258.836 m + /N1156 8.96599 Tf + (B[10][20];) + [7.93487 4.47399 6.50938 6.51834 4.46502 4.47399 6.50938 6.51834 4.47399 2.56423 ] pdfxs + 166.273 -258.836 m + /N1217 8.96599 Tf + (cha) + [5.11062 6.28514 5.55889 ] pdfxs + (r) show + 192.962 -258.836 m + /N1156 8.96599 Tf + (C;) + [7.5763 2.56423 ] pdfxs + 28.9428 -269.795 m + /N1220 8.96599 Tf + (g) show + 34.8478 -269.795 m + /N1156 8.96599 Tf + (;) show + 28.4678 -280.753 m + /N1217 8.96599 Tf + (struc) + [5.00298 4.94929 5.20033 6.7155 5.54099 ] pdfxs + (t) show + 66.1118 -280.753 m + /N1156 8.96599 Tf + (ST) + [4.87749 6.6528 ] pdfxs + 83.3998 -280.753 m + /N1220 8.96599 Tf + (f) show + 111.168 -280.753 m + /N1223 8.96599 Tf + (/) show + 116.454 -280.753 m + /N1220 8.96599 Tf + (\003) show + 126.939 -280.753 m + /N1223 8.96599 Tf + (STcontainsaninstanceofRTembeddedini) + [4.94022 13.0634 5.40649 5.88163 6.35685 4.23198 5.88163 3.99885 6.35685 10.8578 5.10159 + 12.3282 4.05265 6.40168 4.99404 4.28577 5.93543 6.40168 5.46925 12.1668 5.88163 8.78669 + 5.96232 11.9965 4.85957 8.15902 4.85957 4.86853 5.33471 5.32574 4.86853 11.8799 3.84643 + 13.4489 4.54578 ] pdfxs + (t) show + 376.573 -280.753 m + /N1220 8.96599 Tf + (\003) show + 381.763 -280.753 m + /N1223 8.96599 Tf + (/) show + 39.6097 -291.712 m + /N1217 8.96599 Tf + (in) + [3.85533 6.7962 ] pdfxs + (t) show + 60.1317 -291.712 m + /N1156 8.96599 Tf + (X;) + [8.02452 2.56423 ] pdfxs + 83.2777 -291.712 m + /N1217 8.96599 Tf + (doubl) + [6.23134 5.64853 6.23134 6.23134 3.29047 ] pdfxs + (e) show + 120.954 -291.712 m + /N1156 8.96599 Tf + (Y;) + [8.02452 2.56423 ] pdfxs + 139.054 -291.712 m + /N1217 8.96599 Tf + (struc) + [5.00298 4.94929 5.20033 6.7155 5.54099 ] pdfxs + (t) show + 176.144 -291.712 m + /N1156 8.96599 Tf + (RTZ;) + [5.98931 11.342 7.06525 2.56423 ] pdfxs + 28.9427 -302.671 m + /N1220 8.96599 Tf + (g) show + 34.8477 -302.671 m + /N1156 8.96599 Tf + (;) show + 28.5507 -324.589 m + /N1217 8.96599 Tf + (in) + [3.85533 6.7962 ] pdfxs + (t) show + 49.5587 -324.589 m + /N1220 8.96599 Tf + (\003) show + 56.4316 -324.589 m + /N1156 8.96599 Tf + (foo\() + [3.95396 5.74727 6.72456 3.58634 ] pdfxs + 78.2316 -324.589 m + /N1217 8.96599 Tf + (struc) + [5.00298 4.94929 5.20033 6.7155 5.54099 ] pdfxs + (t) show + 115.876 -324.589 m + /N1156 8.96599 Tf + (ST) + [4.87749 6.6528 ] pdfxs + 132.498 -324.589 m + /N1220 8.96599 Tf + (\003) show + 139.179 -324.589 m + /N1156 8.96599 Tf + (s\)) + [5.91754 3.58634 ] pdfxs + 154.41 -324.589 m + /N1220 8.96599 Tf + (f) show + 39.2246 -335.548 m + /N1217 8.96599 Tf + (return) + [4.89549 5.38855 4.64444 6.41963 4.89549 5.89063 ] pdfxs + 75.4986 -335.548 m + /N1156 8.96599 Tf + (&s[1].Z.B[5][13];) + [8.38316 6.55413 4.52778 6.57214 4.52778 4.47399 7.06525 3.54152 7.98867 4.50985 6.57214 + 4.50985 4.51882 6.56317 6.56317 4.51882 2.56423 ] pdfxs + 28.1066 -346.507 m + /N1220 8.96599 Tf + (g) show + 111.833 -375.996 m + /N614 10.909 Tf + (Fi) + [7.12357 3.0327 ] pdfxs + (g) show + (ure) + [6.05449 4.27631 8.4872 ] pdfxs + (2) show + (.) + [3.02179 ] pdfxs + (1) show + (:Ccodef) + [7.8872 11.509 4.85451 5.74904 6.0654 8.4872 3.32724 ] pdfxs + (o) show + (rc) + [7.909 4.85451 ] pdfxs + (o) show + (mplexmem) + [9.08711 6.0654 3.02179 4.85451 9.39264 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 9.39264 ] pdfxs + (a) show + (ddressin) + [6.0654 6.05449 4.27631 4.8436 4.30902 4.29811 3.0327 6.05449 ] pdfxs + (g) show + 16.9356 -408.992 m + (Theex) + [7.8763 6.0654 8.62902 4.85451 5.74904 ] pdfxs + (a) show + (mpleinFi) + [9.09802 6.05449 3.0327 8.62902 3.0327 9.85082 7.11266 3.0327 ] pdfxs + (g) show + (ure) + [6.0654 4.2654 8.63993 ] pdfxs + (2) show + (.1isCcodefr) + [3.0327 9.22901 3.0327 8.09444 11.6617 4.8436 5.75995 6.05449 8.63993 3.32724 4.27631 + ] pdfxs + (ag) show + (ment) + [9.08711 4.85451 5.75995 8.01819 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (tde\fnestwostruc) + [8.0291 6.05449 4.85451 6.05449 6.0654 4.8436 8.09444 3.93823 7.57085 9.23992 4.30902 + 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (uretypes) + [6.0654 4.2654 8.63993 3.93823 5.74904 6.37085 4.8436 8.09444 ] pdfxs + (a) show + (ndafunc) + [6.05449 9.85082 9.22901 3.33815 6.0654 6.05449 4.85451 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (n) show + -0.00038147 -430.914 m + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tperf) + [8.16001 6.37085 4.8436 4.27631 3.32724 ] pdfxs + (o) show + (rmsc) + [4.27631 9.08711 8.22535 4.8436 ] pdfxs + (o) show + (mplexindexin) + [9.09802 6.05449 3.0327 4.8436 9.67628 3.0327 6.0654 6.05449 4.85451 5.74904 3.0327 + 6.0654 ] pdfxs + (g) show + (.Fi) + [8.71629 7.12357 3.0327 ] pdfxs + (g) show + (ure) + [6.05449 4.27631 8.75993 ] pdfxs + (2) show + (.2shows) + [3.0327 9.37083 4.30902 6.05449 5.14905 7.88721 8.21444 ] pdfxs + (t) show + (he) + [6.0654 8.75993 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mcode) + [13.92 4.8436 5.75995 6.05449 8.77084 ] pdfxs + (g) show + (ener) + [4.8436 6.0654 4.8436 4.27631 ] pdfxs + (at) show + (edbytheCfr) + [4.8436 9.98173 5.75995 9.67628 4.23277 6.0654 8.75993 11.8035 3.32724 4.27631 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (-end,) + [3.63261 4.8436 6.0654 6.0654 3.0327 ] pdfxs + -0.00038147 -452.837 m + (wi) + [7.8763 3.0327 ] pdfxs + (t) show + (hc) + [9.6981 4.8436 ] pdfxs + (o) show + (mmen) + [9.09802 9.08711 4.8436 5.75995 ] pdfxs + (ta) show + (ry,illus) + [4.27631 4.84359 6.6654 3.0327 3.0327 3.0327 6.05449 4.30902 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (at) show + (ing) + [3.0327 6.05449 9.0981 ] pdfxs + (t) show + (he) + [6.05449 4.8436 ] pdfxs + 164.061 -452.837 m + /N722 10.909 Tf + (getelementptr) show + 242.151 -452.837 m + /N614 10.909 Tf + (ins) + [3.0327 6.05449 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n.) + [6.0654 3.0327 ] pdfxs + 28.9996 -479.983 m + /N1223 8.96599 Tf + (;LLVMtypedefinitions) + [8.80462 4.86851 4.86851 5.93549 14.0049 4.18715 5.60375 5.82784 12.4538 6.26717 5.79203 + 4.38439 4.38439 6.73342 4.38439 4.61751 4.37542 6.26717 6.73342 3.7657 ] pdfxs + 26.5706 -490.942 m + /N1156 8.96599 Tf + (%RT=) + [5.80991 5.98931 10.5709 7.16379 ] pdfxs + 61.1476 -490.942 m + /N1217 8.96599 Tf + (typ) + [4.44719 5.92652 6.22237 ] pdfxs + (e) show + 88.9286 -490.942 m + /N1220 8.96599 Tf + (f) show + 99.9516 -490.942 m + /N1217 8.96599 Tf + (sbyt) + [4.60848 6.321 6.02514 4.54582 ] pdfxs + (e) show + 128.987 -490.942 m + /N1156 8.96599 Tf + (,[10x[20x) + [9.26182 4.37536 6.41972 11.6379 11.5124 4.17811 6.23143 11.2524 4.85963 ] pdfxs + 205.488 -490.942 m + /N1217 8.96599 Tf + (in) + [3.85533 6.7962 ] pdfxs + (t) show + 223.066 -490.942 m + /N1156 8.96599 Tf + (]],) + [4.45606 6.34788 2.56423 ] pdfxs + 243.784 -490.942 m + /N1217 8.96599 Tf + (sbyt) + [4.6802 6.39273 6.08791 4.62651 ] pdfxs + (e) show + 276.259 -490.942 m + /N1220 8.96599 Tf + (g) show + 26.5706 -501.901 m + /N1156 8.96599 Tf + (%ST=) + [6.3658 4.87749 11.1268 7.16379 ] pdfxs + 61.1476 -501.901 m + /N1217 8.96599 Tf + (typ) + [4.44719 5.92652 6.22237 ] pdfxs + (e) show + 88.9285 -501.901 m + /N1220 8.96599 Tf + (f) show + 100.251 -501.901 m + /N1217 8.96599 Tf + (in) + [3.66704 6.62584 ] pdfxs + (t) show + 117.924 -501.901 m + /N1156 8.96599 Tf + (,) show + 127.47 -501.901 m + /N1217 8.96599 Tf + (doubl) + [6.18651 5.6037 6.19548 6.18651 3.24564 ] pdfxs + (e) show + 161.168 -501.901 m + /N1156 8.96599 Tf + (,%RT) + [7.27138 7.70174 5.98931 6.6528 ] pdfxs + 193.32 -501.901 m + /N1220 8.96599 Tf + (g) show + 28.9995 -523.818 m + /N1223 8.96599 Tf + (;Functionbody..) + [10.6068 6.91276 5.83681 6.0789 5.13751 3.95403 3.72987 5.60369 12.4089 5.03889 5.50506 + 5.50506 7.29832 4.85062 4.85062 ] pdfxs + (.) show + 26.5705 -534.777 m + /N1156 8.96599 Tf + (%ST) + [6.3658 4.87749 6.6528 ] pdfxs + 44.5405 -534.777 m + /N1220 8.96599 Tf + (\003) show + 52.8345 -534.777 m + /N1156 8.96599 Tf + (%s=...) + [8.93008 11.1357 13.7269 4.29467 4.30363 2.56423 ] pdfxs + 26.5705 -545.736 m + (%tmp=) + [6.65272 3.64014 7.72863 9.88051 7.16379 ] pdfxs + 66.8345 -545.736 m + /N1217 8.96599 Tf + (getelementpt) + [5.79199 5.35269 4.60858 5.35269 3.42496 5.35269 9.32456 5.35269 6.3748 4.61754 6.3748 + 4.60858 ] pdfxs + (r) show + 141.508 -545.736 m + /N1156 8.96599 Tf + (%ST) + [7.54035 4.88646 6.6528 ] pdfxs + 160.655 -545.736 m + /N1220 8.96599 Tf + (\003) show + 168.949 -545.736 m + /N1156 8.96599 Tf + (%s,) + [8.61627 6.70655 2.56423 ] pdfxs + 194.429 -545.736 m + /N1217 8.96599 Tf + (in) + [3.85533 6.7962 ] pdfxs + (t) show + 216.119 -545.736 m + /N1156 8.96599 Tf + (1,) + [7.54046 2.56423 ] pdfxs + 232.439 -545.736 m + /N1217 8.96599 Tf + (ubyt) + [6.10582 6.10582 5.80996 4.3396 ] pdfxs + (e) show + 265.882 -545.736 m + /N1156 8.96599 Tf + (2,) + [7.54046 2.56423 ] pdfxs + 282.203 -545.736 m + /N1217 8.96599 Tf + (ubyt) + [6.10582 6.10582 5.80996 4.3396 ] pdfxs + (e) show + 315.646 -545.736 m + /N1156 8.96599 Tf + (1,) + [7.54046 2.56423 ] pdfxs + 332.407 -545.736 m + /N1217 8.96599 Tf + (uin) + [6.54515 3.59531 6.54515 ] pdfxs + (t) show + 359.88 -545.736 m + /N1156 8.96599 Tf + (5,) + [7.54046 2.56423 ] pdfxs + 376.641 -545.736 m + /N1217 8.96599 Tf + (uin) + [6.54515 3.59531 6.54515 ] pdfxs + (t) show + 403.329 -545.736 m + /N1156 8.96599 Tf + (1) + [5.6845 ] pdfxs + (3) show + 100.468 -575.226 m + /N614 10.909 Tf + (Fi) + [7.12357 3.0327 ] pdfxs + (g) show + (ure) + [6.05449 4.27631 8.4872 ] pdfxs + (2) show + (.) + [3.02179 ] pdfxs + (2) show + (:) + [7.8872 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mcodef) + [13.6363 4.8436 5.75995 6.05449 8.4872 3.33815 ] pdfxs + (o) show + (rc) + [7.909 4.8436 ] pdfxs + (o) show + (mplexmem) + [9.08711 6.0654 3.0327 4.8436 9.39264 9.09802 4.8436 9.09802 ] pdfxs + (o) show + (ry) + [4.2654 9.39264 ] pdfxs + (a) show + (ddressin) + [6.0654 6.05449 4.27631 4.85451 4.29811 4.29811 3.0327 6.0654 ] pdfxs + (g) show + 16.9354 -607.918 m + (M) + [10.0036 ] pdfxs + (a) show + (king) + [5.74904 3.0327 6.0654 8.82538 ] pdfxs + (a) show + (ll) + [3.0327 6.40358 ] pdfxs + (a) show + (ddress) + [6.0654 6.05449 4.27631 4.8436 4.30902 7.66899 ] pdfxs + (a) show + (ri) + [4.27631 3.0327 ] pdfxs + (t) show + (hme) + [6.05449 9.09802 4.8436 ] pdfxs + (t) show + (icexplicitisimp) + [3.0327 8.21448 4.85451 5.75995 6.05449 3.0327 3.0327 4.8436 3.0327 7.61456 3.0327 + 7.6799 3.0327 9.08711 6.35994 ] pdfxs + (o) show + (r) + [4.27631 ] pdfxs + (ta) show + (ntso) + [5.75995 7.61456 4.29811 8.82538 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (titisexp) + [7.61456 3.0327 7.61456 3.0327 7.6799 4.8436 5.75995 6.35994 ] pdfxs + (o) show + (sed) + [4.30902 4.8436 9.43628 ] pdfxs + (t) show + (o) + [8.82538 ] pdfxs + (a) show + (ll) + [3.0327 6.40358 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (M) + [13.3745 ] pdfxs + (o) show + (p) + [6.05449 ] pdfxs + (t) show + (imiz) + [3.0327 9.08711 3.0327 4.85451 ] pdfxs + (a) show + (-) show + -0.000595093 -629.841 m + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 8.90171 ] pdfxs + (\() show + (m) + [9.08711 ] pdfxs + (o) show + (stimp) + [4.29811 8.83637 3.0327 9.09802 6.35994 ] pdfxs + (o) show + (rt) + [4.27631 4.23277 ] pdfxs + (a) show + (n) + [5.75995 ] pdfxs + (t) show + (ly,re) + [3.0327 4.84359 7.86538 4.27631 4.8436 ] pdfxs + (a) show + (ssoci) + [4.30902 4.29811 5.75995 4.8436 3.0327 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nandredund) + [10.6472 5.46541 6.05449 10.6581 4.2654 4.85451 6.05449 6.0654 6.0654 6.05449 ] pdfxs + (a) show + (ncyelimin) + [6.0654 4.8436 10.3526 4.8436 3.0327 3.0327 9.08711 3.0327 6.0654 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [6.0654 ] pdfxs + (\)) show + (;) + [8.10538 ] pdfxs + (g) show + (e) + [4.8436 ] pdfxs + (t) show + (elemen) + [4.8436 3.0327 4.85451 9.08711 4.8436 5.75995 ] pdfxs + (t) show + (ptr) + [6.0654 4.23277 8.869 ] pdfxs + (a) show + (chieves) + [4.54905 6.05449 3.0327 4.85451 5.4545 4.8436 8.90171 ] pdfxs + (t) show + (his) + [6.05449 3.0327 4.29811 ] pdfxs + 228.544 -657.201 m + (18) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 72 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N622 11.955 Tf + (8.2.3NewA) + [6.7307 3.73 6.7307 3.73 20.1801 10.5085 6.14487 14.1906 10.1618 ] pdfxs + (pp) show + (roac) + [5.48733 6.7307 6.52739 5.60689 ] pdfxs + (h) show + (esforPrefetc) + [6.14487 9.77918 4.11245 6.7307 9.97045 9.19335 5.48733 6.13291 4.11245 6.14487 5.22437 + 5.60689 ] pdfxs + (h) show + (i) + [3.73 ] pdfxs + (n) show + (g) show + 0 -28.968 m + /N614 10.909 Tf + (Prefe) + [7.42902 4.2654 4.85451 3.32724 4.85451 ] pdfxs + (t) show + (chingf) + [4.53815 6.0654 3.0327 6.05449 8.43265 3.33815 ] pdfxs + (o) show + (rpr) + [7.24356 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms) + [9.08711 7.28718 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tusedense) + [7.22184 6.0654 4.29811 7.82175 6.0654 4.8436 6.0654 4.29811 7.83266 ] pdfxs + (a) show + (rraysisawellunders) + [4.2654 4.27631 5.14905 5.75995 7.27627 3.0327 7.28718 8.42175 7.58175 4.8436 3.0327 + 6.01086 6.05449 6.0654 6.0654 4.8436 4.27631 4.29811 ] pdfxs + (t) show + (oodpr) + [5.75995 5.75995 9.03265 6.0654 4.2654 ] pdfxs + (o) show + (blem[) + [6.0654 3.0327 4.8436 12.0653 3.0327 ] pdfxs + (21) show + (,) + [6.01086 ] pdfxs + (100) show + (],butprefe) + [3.0327 6.13086 6.0654 6.05449 7.22184 6.0654 4.2654 4.85451 3.32724 4.85451 ] pdfxs + (t) show + (ch-) + [4.53815 6.0654 3.63261 ] pdfxs + 0 -50.89 m + (ingf) + [3.0327 6.05449 8.34538 3.33815 ] pdfxs + (o) show + (rp) + [7.15628 6.37085 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (er-ch) + [4.85451 4.2654 3.64352 4.53815 6.0654 ] pdfxs + (a) show + (sing) + [4.29811 3.0327 6.0654 8.33447 ] pdfxs + (t) show + (ravers) + [4.27631 5.14905 5.4545 4.85451 4.2654 4.30902 ] pdfxs + (a) show + (ls) + [3.0327 7.189 ] pdfxs + (o) show + (frecursived) + [6.21813 4.27631 4.85451 4.8436 6.0654 4.2654 4.30902 3.02179 5.4545 7.74539 6.05449 + ] pdfxs + (at) show + (astruc) + [8.34538 4.30902 4.23277 4.27631 6.0654 4.8436 ] pdfxs + (t) show + (uresismuchh) + [6.0654 4.2654 4.85451 7.189 3.0327 7.189 8.79257 6.05449 4.54905 8.94537 6.0654 + ] pdfxs + (a) show + (rder.F) + [4.27631 6.05449 4.85451 4.2654 7.6363 6.20722 ] pdfxs + (o) show + (rex) + [7.16719 4.8436 5.75995 ] pdfxs + (a) show + (mple,c) + [9.08711 6.0654 3.0327 4.8436 6.0654 4.85451 ] pdfxs + (o) show + (nsider) + [6.05449 4.30902 3.0327 6.05449 4.85451 4.27631 ] pdfxs + 0 -72.813 m + (Fi) + [7.12357 3.0327 ] pdfxs + (g) show + (ure) + [6.05449 4.27631 8.4872 ] pdfxs + (8) show + (.) + [3.02179 ] pdfxs + (1) show + (,afunc) + [6.6654 9.0981 3.32724 6.0654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nth) + [9.6981 4.23277 6.0654 ] pdfxs + (a) show + (tc) + [7.87638 4.85451 ] pdfxs + (o) show + (mpu) + [9.08711 6.0654 6.05449 ] pdfxs + (t) show + (es) + [4.8436 7.94172 ] pdfxs + (t) show + (helen) + [6.0654 8.47629 3.0327 4.85451 6.05449 ] pdfxs + (gt) show + (h) + [9.6981 ] pdfxs + (o) show + (falinkedlis) + [6.97085 9.08719 3.0327 3.0327 6.05449 5.4545 4.85451 9.6981 3.0327 3.02179 4.30902 + ] pdfxs + (t) show + (.) show + 144.822 -98.887 m + /N1217 8.96599 Tf + (struc) + [5.00298 4.94929 5.20033 6.7155 5.54099 ] pdfxs + (t) show + 184.661 -98.887 m + /N1156 8.96599 Tf + (list) + [4.51882 4.50985 5.59477 3.58634 ] pdfxs + 210.812 -98.887 m + /N1220 8.96599 Tf + (f) show + 222.315 -98.887 m + /N1217 8.96599 Tf + (in) + [3.85533 6.7962 ] pdfxs + (t) show + 242.837 -98.887 m + /N1156 8.96599 Tf + (X;list) + [8.02452 11.2074 4.51882 4.50985 5.59477 3.58634 ] pdfxs + 287.557 -98.887 m + /N1220 8.96599 Tf + (\003) show + 293.823 -98.887 m + /N1156 8.96599 Tf + (Next;) + [7.44174 4.63542 5.38863 5.98026 2.56423 ] pdfxs + 326.63 -98.887 m + /N1220 8.96599 Tf + (g) show + 333.102 -98.887 m + /N1156 8.96599 Tf + (;) show + 144.372 -120.805 m + /N1217 8.96599 Tf + (unsigned) + [6.2672 6.2672 4.55468 3.31737 5.68439 6.2672 5.23613 5.89063 ] pdfxs + 194.919 -120.805 m + /N1156 8.96599 Tf + (length\(list) + [3.71188 5.25408 6.27618 5.7652 4.73399 7.25348 6.50925 4.51882 4.50985 5.59477 3.58634 + ] pdfxs + 259.91 -120.805 m + /N1220 8.96599 Tf + (\003) show + 265.529 -120.805 m + /N1156 8.96599 Tf + (L\)) + [6.97552 3.58634 ] pdfxs + 281.823 -120.805 m + /N1220 8.96599 Tf + (f) show + 155.431 -131.764 m + /N1217 8.96599 Tf + (unsigned) + [6.2672 6.2672 4.55468 3.31737 5.68439 6.2672 5.23613 5.89063 ] pdfxs + 205.52 -131.764 m + /N1156 8.96599 Tf + (Length=0;) + [6.4555 4.79681 5.81892 5.30793 4.27672 11.2792 12.633 5.80106 2.56423 ] pdfxs + 155.975 -142.722 m + /N1217 8.96599 Tf + (fo) + [4.16021 6.22235 ] pdfxs + (r) show + 178.65 -142.722 m + /N1156 8.96599 Tf + (\(;L;L=L) + [5.54989 9.45011 7.45072 9.1363 10.3557 11.7992 5.75615 ] pdfxs + 237.179 -142.722 m + /N1220 8.96599 Tf + (\000) show + 242.708 -142.722 m + /N1305 8.96599 Tf + (>) show + 249.589 -142.722 m + /N1156 8.96599 Tf + (Next\)) + [7.44174 4.63542 5.38863 5.09263 3.58634 ] pdfxs + 165.025 -153.681 m + (++Length;) + [6.0789 6.76928 6.4555 4.79681 5.81892 5.30793 4.27672 7.30727 2.56423 ] pdfxs + 155.578 -164.64 m + /N1217 8.96599 Tf + (return) + [4.89549 5.38855 4.64444 6.41963 4.89549 5.89063 ] pdfxs + 194.462 -164.64 m + /N1156 8.96599 Tf + (Length;) + [6.4555 4.79681 5.81892 5.30793 4.27672 7.30727 2.56423 ] pdfxs + 144.461 -175.599 m + /N1220 8.96599 Tf + (g) show + 121.182 -203.399 m + /N614 10.909 Tf + (Fi) + [7.12357 3.0327 ] pdfxs + (g) show + (ure) + [6.05449 4.27631 8.4872 ] pdfxs + (8) show + (.) + [3.02179 ] pdfxs + (1) show + (:) + [7.8872 ] pdfxs + (L) show + (inked-listp) + [3.02179 6.0654 5.4545 4.8436 6.0654 3.63261 3.0327 3.0327 4.29811 7.88729 6.35994 + ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (er-ch) + [4.85451 4.2654 3.64352 4.53815 6.0654 ] pdfxs + (a) show + (singex) + [4.29811 3.0327 6.0654 9.08719 4.85451 5.74904 ] pdfxs + (a) show + (mple) + [9.09802 6.05449 3.0327 4.8436 ] pdfxs + 16.9369 -235.625 m + (Thepr) + [7.8763 6.0654 10.0036 6.0654 4.2654 ] pdfxs + (o) show + (blemin) + [6.0654 3.0327 4.8436 14.2471 3.0327 11.2254 ] pdfxs + (t) show + (hisc) + [6.05449 3.0327 9.45807 4.85451 ] pdfxs + (a) show + (se,) + [4.29811 4.85451 8.56356 ] pdfxs + (a) show + (ndm) + [6.0654 11.2144 9.09802 ] pdfxs + (a) show + (ny) + [5.75995 10.909 ] pdfxs + (ot) show + (her) + [6.0654 4.8436 9.43626 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (g) show + (htp) + [5.74904 9.40364 6.37085 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (er-ch) + [4.8436 4.27631 3.63261 4.54905 6.0654 ] pdfxs + (a) show + (singlo) + [4.29811 3.0327 6.05449 10.6145 3.0327 5.75995 ] pdfxs + (o) show + (ps,is) + [6.0654 4.29811 8.57447 3.02179 9.46898 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [9.40364 ] pdfxs + (t) show + (hereisn) + [6.0654 4.8436 4.27631 10.0036 3.0327 9.45807 6.0654 ] pdfxs + (ot) show + -0.000137329 -257.548 m + (en) + [4.8436 6.0654 ] pdfxs + (o) show + (u) + [6.0654 ] pdfxs + (g) show + (hw) + [9.52355 7.58175 ] pdfxs + (o) show + (rk) + [4.27631 9.22901 ] pdfxs + (t) show + (ooverl) + [8.92356 5.14905 5.4545 4.85451 4.2654 3.0327 ] pdfxs + (a) show + (pwi) + [9.53446 7.8763 3.0327 ] pdfxs + (t) show + (htheprefe) + [9.53446 4.23277 6.0654 8.32357 6.05449 4.27631 4.8436 3.33815 4.8436 ] pdfxs + (t) show + (ch.Evenif) + [4.54905 6.0654 7.82175 7.41812 5.4545 4.85451 9.53446 3.02179 6.80721 ] pdfxs + (t) show + (heprefe) + [6.0654 8.32357 6.05449 4.27631 4.8436 3.33815 4.8436 ] pdfxs + (t) show + (chf) + [4.54905 9.53446 3.32724 ] pdfxs + (o) show + (r) + [7.74537 ] pdfxs + (t) show + (he'nex) + [6.0654 8.31266 3.0327 6.0654 4.8436 5.75995 ] pdfxs + (t) show + ('dereferenceiss) + [6.50176 6.05449 4.85451 4.27631 4.8436 3.33815 4.8436 4.27631 4.8436 6.0654 4.8436 + 8.32357 3.0327 7.76717 4.30902 ] pdfxs + (ta) show + (r) + [4.2654 ] pdfxs + (t) show + (ed) + [4.85451 6.0654 ] pdfxs + -0.000137329 -279.47 m + (immedi) + [3.0327 9.08711 9.08711 4.85451 6.05449 3.0327 ] pdfxs + (at) show + (ely) + [4.85451 3.02179 10.4072 ] pdfxs + (a) show + (f) + [3.33815 ] pdfxs + (t) show + (er) + [4.8436 8.92354 ] pdfxs + (t) show + (heprevi) + [6.05449 9.50174 6.0654 4.2654 4.85451 5.74904 3.0327 ] pdfxs + (o) show + (usl) + [6.0654 8.94535 3.0327 ] pdfxs + (oa) show + (dc) + [10.7126 4.8436 ] pdfxs + (o) show + (mple) + [9.09802 6.05449 3.0327 4.8436 ] pdfxs + (t) show + (es,) + [4.85451 4.29811 7.93084 ] pdfxs + (t) show + (heprefe) + [6.0654 9.49083 6.0654 4.27631 4.8436 3.33815 4.8436 ] pdfxs + (t) show + (chwilln) + [4.54905 10.7017 7.8763 3.0327 3.0327 7.67993 6.0654 ] pdfxs + (o) show + (thaveen) + [8.89091 6.05449 5.14905 5.4545 9.50174 4.8436 6.0654 ] pdfxs + (o) show + (u) + [6.05449 ] pdfxs + (g) show + (h) + [10.7126 ] pdfxs + (t) show + (ime) + [3.0327 9.08711 9.50174 ] pdfxs + (t) show + (obrin) + [10.1017 6.05449 4.27631 3.0327 6.05449 ] pdfxs + (g) show + -0.000137329 -301.393 m + (t) show + (hemem) + [6.05449 9.18538 9.09802 4.8436 9.09802 ] pdfxs + (o) show + (ryin) + [4.2654 10.1017 3.02179 5.75995 ] pdfxs + (t) show + (oc) + [9.79628 4.8436 ] pdfxs + (a) show + (che,unlessitis) + [4.54905 6.05449 4.85451 7.53812 6.0654 6.05449 3.0327 4.85451 4.29811 8.63989 3.0327 + 8.57455 3.0327 8.63989 ] pdfxs + (a) show + (lre) + [3.0327 4.27631 4.8436 ] pdfxs + (a) show + (dy) + [6.0654 10.0908 ] pdfxs + (t) show + (heretobe) + [6.05449 4.85451 4.27631 9.18538 4.23277 9.79628 6.35994 4.85451 ] pdfxs + (g) show + (inwi) + [3.0327 10.3963 7.8763 3.0327 ] pdfxs + (t) show + (h.The) + [6.05449 9.98173 7.8763 6.0654 9.18538 ] pdfxs + (o) show + (nly) + [6.0654 3.02179 10.1017 ] pdfxs + (g) show + (ener) + [4.8436 6.0654 4.8436 4.27631 ] pdfxs + (a) show + (l-purp) + [3.0327 3.63261 6.0654 6.05449 4.27631 6.35994 ] pdfxs + (o) show + (sepri) + [4.30902 9.18538 6.05449 4.27631 3.0327 ] pdfxs + (o) show + (r) show + -0.000137329 -323.316 m + (s) + [4.29811 ] pdfxs + (o) show + (lu) + [3.0327 6.0654 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [10.4726 ] pdfxs + (t) show + (o) + [9.86173 ] pdfxs + (t) show + (hispr) + [6.05449 3.0327 8.71626 6.05449 4.27631 ] pdfxs + (o) show + (blemisa) + [6.05449 3.0327 4.85451 13.4943 3.0327 8.70535 9.86173 ] pdfxs + (t) show + (echniqueknown) + [4.8436 4.54905 6.0654 6.05449 3.0327 5.75995 6.05449 9.26174 5.74904 6.0654 5.14905 + 7.8763 10.4726 ] pdfxs + (a) show + (shis) + [8.70535 6.0654 3.0327 4.29811 ] pdfxs + (to) show + (ry-p) + [4.27631 5.75995 3.63261 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (erprefe) + [4.8436 8.68354 6.05449 4.27631 4.8436 3.33815 4.8436 ] pdfxs + (t) show + (ching[) + [4.54905 6.0654 3.02179 6.0654 9.86173 3.0327 ] pdfxs + (94) show + (]) + [7.42903 ] pdfxs + (\(a) show + (lsoknown) + [3.0327 4.30902 9.86173 5.74904 6.0654 5.14905 7.8763 10.4726 ] pdfxs + (a) show + (s) show + -0.000137329 -345.238 m + (jump-p) + [3.33815 6.05449 9.08711 6.0654 3.63261 6.37085 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (erprefe) + [4.85451 7.909 6.05449 4.27631 4.8436 3.33815 4.8436 ] pdfxs + (t) show + (ching[) + [4.54905 6.05449 3.0327 6.0654 9.08719 3.0327 ] pdfxs + (112) show + (]) + [3.0327 ] pdfxs + (\)) show + (.) show + -0.000137329 -381.647 m + /N1025 10.909 Tf + (C) + [9.06531 ] pdfxs + (o) show + (m) + [10.4507 ] pdfxs + (p) show + (r) + [5.15995 ] pdfxs + (e) show + (ss) + [4.95263 4.95263 ] pdfxs + (e) show + (d) + [11.1491 ] pdfxs + (H) show + (is) + [3.47997 4.95263 ] pdfxs + (to) show + (r) + [5.17085 ] pdfxs + (y) show + (-P) + [4.1781 8.22533 ] pdfxs + (o) show + (in) + [3.49088 6.62184 ] pdfxs + (te) show + (r) + [9.349 ] pdfxs + (P) show + (r) + [5.17085 ] pdfxs + (e) show + (f) + [3.82904 ] pdfxs + (et) show + (c) + [5.23634 ] pdfxs + (h) show + (i) + [3.47997 ] pdfxs + (ng) show + -0.000137329 -410.615 m + /N614 10.909 Tf + (H) show + (is) + [3.0327 4.29811 ] pdfxs + (to) show + (ry-p) + [4.27631 5.75995 3.63261 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (erprefe) + [4.8436 7.1781 6.0654 4.2654 4.85451 3.32724 4.85451 ] pdfxs + (t) show + (chingis) + [4.54905 6.05449 3.0327 6.05449 8.3672 3.0327 7.19991 ] pdfxs + (o) show + (nesuccessful) + [6.0654 7.7563 4.29811 6.0654 4.8436 4.85451 4.8436 4.30902 4.29811 3.33815 6.05449 + 5.93449 ] pdfxs + (a) show + (ppr) + [6.0654 6.0654 4.2654 ] pdfxs + (oa) show + (chf) + [4.54905 8.96719 3.32724 ] pdfxs + (o) show + (roverc) + [7.18901 5.14905 5.4545 4.8436 4.27631 4.8436 ] pdfxs + (o) show + (ming) + [9.09802 3.02179 6.0654 8.35629 ] pdfxs + (t) show + (hel) + [6.0654 7.7563 3.0327 ] pdfxs + (a) show + (tency) + [4.23277 4.85451 6.05449 4.85451 8.66174 ] pdfxs + (o) show + (fp) + [6.23994 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er-ch) + [4.8436 4.27631 3.63261 4.54905 6.0654 ] pdfxs + (a) show + (sin) + [4.29811 3.0327 6.05449 ] pdfxs + (g) show + -0.000137329 -432.538 m + (lo) + [3.0327 5.75995 ] pdfxs + (o) show + (ps,which) + [6.05449 4.30902 7.05812 7.8763 6.05449 3.0327 4.54905 10.0145 ] pdfxs + (a) show + (dds) + [6.05449 6.0654 8.24717 ] pdfxs + (a) show + (ddi) + [6.0654 6.05449 3.0327 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [6.05449 ] pdfxs + (a) show + (lp) + [6.98176 6.37085 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (ers) + [4.85451 4.2654 8.25808 ] pdfxs + (t) show + (o) + [9.40355 ] pdfxs + (t) show + (hed) + [6.05449 8.80356 6.05449 ] pdfxs + (at) show + (as) + [9.40355 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.0654 4.27631 8.79265 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (tp) + [8.19274 6.35994 ] pdfxs + (o) show + (intsever) + [3.0327 5.74904 8.19274 4.30902 4.8436 5.4545 4.85451 4.2654 ] pdfxs + (a) show + (lnodes) + [6.98176 6.0654 5.75995 6.05449 4.85451 8.24717 ] pdfxs + (a) show + (he) + [6.0654 4.8436 ] pdfxs + (a) show + (din) + [10.0145 3.0327 10.0035 ] pdfxs + (t) show + (he) + [6.0654 4.8436 ] pdfxs + -0.000137329 -454.46 m + (t) show + (ravers) + [4.27631 5.14905 5.4545 4.8436 4.27631 4.29811 ] pdfxs + (a) show + (l.) + [3.0327 8.45447 ] pdfxs + (H) show + (avingap) + [5.14905 5.75995 3.0327 6.0654 9.28356 9.27265 6.37085 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (er) + [4.85451 8.09446 ] pdfxs + (t) show + (o) + [9.28356 ] pdfxs + (t) show + (henode) + [6.0654 8.67266 6.0654 5.74904 6.0654 8.67266 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (twillbeneeded) + [8.07274 7.8763 3.0327 3.02179 6.86176 6.37085 8.67266 6.05449 4.85451 4.8436 6.0654 + 4.8436 6.0654 ] pdfxs + 289.317 -454.46 m + /N695 10.909 Tf + (N) show + 303.1 -454.46 m + /N614 10.909 Tf + (s) + [4.29811 ] pdfxs + (t) show + (eps) + [4.85451 6.05449 8.13808 ] pdfxs + (a) show + (he) + [6.05449 4.85451 ] pdfxs + (a) show + (dinthe) + [9.88355 3.0327 9.89446 4.23277 6.0654 8.67266 ] pdfxs + (t) show + (ravers) + [4.27631 5.14905 5.4545 4.85451 4.2654 4.30902 ] pdfxs + (a) show + (l) + [6.85085 ] pdfxs + (a) show + (llows) + [3.0327 3.0327 5.14905 7.88721 4.29811 ] pdfxs + -0.000152588 -476.383 m + (t) show + (heprefe) + [6.05449 9.21811 6.05449 4.27631 4.8436 3.33815 4.8436 ] pdfxs + (t) show + (chingcode) + [4.54905 6.05449 3.0327 6.0654 9.8181 4.8436 5.75995 6.05449 9.2072 ] pdfxs + (t) show + (obefe) + [9.8181 6.35994 9.21811 3.32724 4.85451 ] pdfxs + (t) show + (chin) + [4.53815 6.0654 3.0327 6.05449 ] pdfxs + (g) show + 174.073 -476.383 m + /N695 10.909 Tf + (N) show + 188.388 -476.383 m + /N614 10.909 Tf + (nodesaway,which) + [6.0654 5.74904 6.0654 4.8436 8.67262 5.14905 7.57085 5.14905 4.8545 7.57084 7.8763 + 6.0654 3.0327 4.53815 10.429 ] pdfxs + (a) show + (llowsit) + [3.02179 3.0327 5.14905 7.88721 8.66171 3.0327 8.59637 ] pdfxs + (t) show + (ooverc) + [9.8181 5.14905 5.4545 4.8436 4.27631 4.85451 ] pdfxs + (o) show + (me) + [9.08711 9.2072 ] pdfxs + (a) show + (lm) + [3.0327 9.08711 ] pdfxs + (o) show + (st) + [4.30902 8.59637 ] pdfxs + (a) show + (rbi) + [4.27631 6.0654 3.02179 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (ry) + [4.27631 5.75995 ] pdfxs + -0.000152588 -498.305 m + (mem) + [9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ryl) + [4.27631 10.1454 3.02179 ] pdfxs + (at) show + (ency) + [4.85451 6.05449 4.85451 10.1345 ] pdfxs + (\(a) show + (ssumingth) + [4.30902 4.29811 6.0654 9.08711 3.0327 6.0654 9.83992 4.23277 6.0654 ] pdfxs + (a) show + (t) + [8.6291 ] pdfxs + (t) show + (heselinks) + [6.05449 4.85451 4.29811 9.23992 3.02179 3.0327 6.0654 5.75995 8.68353 ] pdfxs + (a) show + (re) + [4.27631 9.22901 ] pdfxs + (a) show + (ccur) + [4.85451 4.8436 6.0654 4.2654 ] pdfxs + (at) show + (e\).Theprim) + [4.85451 4.23277 10.1345 7.8763 6.05449 9.23992 6.05449 4.27631 3.0327 9.08711 ] pdfxs + (a) show + (rydis) + [4.27631 10.1454 6.05449 3.0327 4.29811 ] pdfxs + (a) show + (dv) + [6.0654 5.14904 ] pdfxs + (a) show + (n) + [5.75995 ] pdfxs + (tag) show + (e) + [9.22901 ] pdfxs + (o) show + (fhis) + [7.72357 6.05449 3.0327 4.30902 ] pdfxs + (to) show + (ry-) + [4.2654 5.75995 3.63261 ] pdfxs + -0.000152588 -520.228 m + (p) + [6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (erprefe) + [4.8436 7.52719 6.05449 4.27631 4.8436 3.33815 4.8436 ] pdfxs + (t) show + (chingis) + [4.54905 6.0654 3.02179 6.0654 8.70538 3.0327 7.54899 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (titsimul) + [7.49456 3.0327 7.49456 4.29811 3.0327 8.78166 6.0654 3.0327 ] pdfxs + (ta) show + (ne) + [6.05449 4.85451 ] pdfxs + (o) show + (usly) + [6.05449 4.30902 3.02179 5.75995 ] pdfxs + 211.254 -520.228 m + /N634 10.909 Tf + (reduc) + [4.04721 4.45094 5.58542 5.84725 4.46185 ] pdfxs + (es) show + 248.376 -520.228 m + /N614 10.909 Tf + (t) show + (hee\013ec) + [6.05449 8.10539 4.8436 6.37077 4.8436 4.8436 ] pdfxs + (t) show + (iveness) + [3.0327 5.4545 4.85451 6.05449 4.85451 4.29811 7.54899 ] pdfxs + (o) show + (f) + [6.58903 ] pdfxs + (t) show + (hec) + [6.05449 8.09448 4.85451 ] pdfxs + (a) show + (chebyincre) + [4.54905 6.05449 8.09448 5.75995 9.01083 3.0327 6.05449 4.85451 4.2654 4.85451 ] pdfxs + (a) show + (sing) + [4.29811 3.0327 6.0654 8.69447 ] pdfxs + (t) show + (he) + [6.0654 4.8436 ] pdfxs + -0.000152588 -542.15 m + (size) + [4.29811 3.0327 4.85451 8.47629 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (t) show + (helistnodes.Thise\013ectisp) + [6.0654 8.4872 3.02179 3.0327 4.30902 7.87638 6.05449 5.75995 6.0654 4.8436 4.30902 + 7.87629 7.8763 6.0654 3.02179 7.94172 4.85451 6.35986 4.8436 4.85451 7.87638 3.0327 + 7.94172 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (icul) + [3.0327 4.8436 6.0654 3.02179 ] pdfxs + (a) show + (rlyb) + [4.27631 3.0327 9.39264 6.0654 ] pdfxs + (a) show + (d) + [9.68719 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (64) show + (-bitsys) + [3.64352 6.05449 3.0327 7.87638 4.30902 5.74904 4.30902 ] pdfxs + (t) show + (ems.) + [4.8436 9.09802 4.29811 3.0327 ] pdfxs + 16.9368 -564.073 m + (Not) show + (e) + [8.18175 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (t) + [7.57093 ] pdfxs + (t) show + (heine\016ciencyin) + [6.0654 8.18175 3.0327 6.05449 4.85451 9.08711 4.85451 3.02179 4.85451 6.05449 4.85451 + 9.08719 3.0327 5.75995 ] pdfxs + (t) show + (roducedbyhis) + [4.27631 5.74904 6.0654 6.05449 4.85451 4.8436 9.40355 5.74904 9.0981 6.0654 3.02179 + 4.30902 ] pdfxs + (to) show + (ry-p) + [4.2654 5.75995 3.64352 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (ersisprecisely) + [4.85451 4.2654 7.64718 3.02179 7.64718 6.05449 4.27631 4.8436 4.85451 3.0327 4.29811 + 4.85451 3.02179 9.0981 ] pdfxs + (t) show + (heoverhe) + [6.05449 8.19266 5.14905 5.4545 4.8436 4.27631 6.0654 4.8436 ] pdfxs + (a) show + (d) + [9.39264 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (tp) + [7.58184 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (er-) + [4.85451 4.2654 3.63261 ] pdfxs + -0.000152588 -585.995 m + (c) + [4.8436 ] pdfxs + (o) show + (mpressi) + [9.09802 6.05449 4.27631 4.8436 4.30902 4.29811 3.0327 ] pdfxs + (o) show + (nisdesi) + [10.6145 3.0327 8.85807 6.05449 4.85451 4.29811 3.0327 ] pdfxs + (g) show + (ned) + [6.0654 4.8436 10.6145 ] pdfxs + (t) show + (oelimin) + [10.0145 4.8436 3.0327 3.0327 9.08711 3.0327 6.05449 ] pdfxs + (at) show + (e:it) + [4.85451 9.70901 3.0327 8.79273 ] pdfxs + (a) show + (ddsin) + [6.0654 6.05449 8.85807 3.0327 5.75995 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (-d) + [3.63261 6.05449 ] pdfxs + (ata) show + (-s) + [3.64352 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (urep) + [6.05449 4.27631 9.40356 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (ers.F) + [4.8436 4.27631 4.29811 10.6363 6.20722 ] pdfxs + (o) show + (r) + [8.82536 ] pdfxs + (t) show + (hisre) + [6.0654 3.0327 8.85807 4.2654 4.85451 ] pdfxs + (a) show + (s) + [4.29811 ] pdfxs + (o) show + (n,us-) + [6.0654 7.81084 6.0654 4.29811 3.63261 ] pdfxs + -0.000152588 -607.918 m + (ingp) + [3.0327 6.05449 10.0035 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (erc) + [4.85451 8.81445 4.8436 ] pdfxs + (o) show + (mpressi) + [9.09802 6.05449 4.27631 4.8436 4.30902 4.29811 3.0327 ] pdfxs + (o) show + (n) + [10.6035 ] pdfxs + (t) show + (oc) + [9.99264 4.8436 ] pdfxs + (o) show + (mpress) + [9.09802 6.05449 4.27631 4.8436 4.30902 8.83626 ] pdfxs + (t) show + (he) + [6.0654 9.39265 ] pdfxs + (o) show + (ri) + [4.2654 3.0327 ] pdfxs + (g) show + (in) + [3.0327 6.05449 ] pdfxs + (a) show + (l) + [7.57084 ] pdfxs + (a) show + (ndhist) + [6.0654 10.6035 6.05449 3.0327 4.30902 4.23277 ] pdfxs + (o) show + (ry-p) + [4.27631 5.75995 3.63261 6.37085 ] pdfxs + (o) show + (in) + [3.02179 5.75995 ] pdfxs + (t) show + (ersinad) + [4.85451 4.2654 8.84717 3.0327 10.5926 10.0035 6.05449 ] pdfxs + (at) show + (as) + [9.99264 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ureseems) + [6.0654 4.27631 9.38174 4.30902 4.8436 4.85451 9.08711 4.29811 ] pdfxs + -0.000152588 -629.841 m + (ex) + [4.8436 5.75995 ] pdfxs + (t) show + (remelypowerful:ith) + [4.27631 4.8436 9.09802 4.8436 3.0327 10.1345 6.35994 5.14905 7.58175 4.8436 4.27631 + 3.32724 6.0654 3.0327 9.34901 3.0327 8.61819 6.0654 ] pdfxs + (a) show + (s) + [8.67262 ] pdfxs + (t) show + (heprefe) + [6.0654 9.21811 6.0654 4.2654 4.85451 3.32724 4.85451 ] pdfxs + (t) show + (chingpower) + [4.53815 6.0654 3.0327 6.05449 9.82901 6.37085 5.14905 7.57085 4.85451 8.63991 ] pdfxs + (o) show + (fhis) + [7.71266 6.0654 3.02179 4.30902 ] pdfxs + (to) show + (ry-p) + [4.2654 5.75995 3.64352 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (erprefe) + [4.85451 8.63991 6.0654 4.27631 4.8436 3.33815 4.8436 ] pdfxs + (t) show + (chin) + [4.54905 6.05449 3.0327 6.0654 ] pdfxs + (g) show + (,butwi) + [7.58175 6.0654 6.0654 8.60728 7.88721 3.02179 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (o) show + (ut) + [6.05449 8.61819 ] pdfxs + (t) show + (he) + [6.0654 4.8436 ] pdfxs + 225.818 -657.201 m + (187) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (30) 31 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 0.000000 0.000000 translate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 88.364 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N1028 10.909 Tf + (\017) show + 10.909 0 m + /N614 10.909 Tf + (M) + [10.0036 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.29811 4.85451 ] pdfxs + (o) show + (pictechniquesw) + [6.05449 3.0327 7.30903 4.23277 4.85451 4.54905 6.05449 6.0654 3.02179 5.75995 6.0654 + 4.8436 6.76355 7.57085 ] pdfxs + (o) show + (uld) + [6.0654 3.0327 8.50901 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rme) + [4.27631 11.5416 4.85451 ] pdfxs + (a) show + (chd) + [4.53815 8.51992 6.0654 ] pdfxs + (at) show + (as) + [7.90902 4.29811 ] pdfxs + (t) show + (ructureins) + [4.27631 6.05449 4.85451 4.23277 6.0654 4.27631 7.29812 3.0327 6.0654 4.29811 ] pdfxs + (ta) show + (nce) + [6.05449 4.85451 7.29812 ] pdfxs + (a) show + (ta) + [6.69821 7.90902 ] pdfxs + (t) show + (ime,independen) + [3.0327 9.08711 4.85451 5.71631 3.0327 6.0654 6.05449 4.85451 6.35994 4.8436 6.0654 + 6.0654 4.8436 5.75995 ] pdfxs + (t) show + (ly) + [3.0327 5.75995 ] pdfxs + 10.909 -21.922 m + (o) show + (fe) + [6.65449 4.8436 ] pdfxs + (a) show + (ch) + [4.54905 9.38173 ] pdfxs + (ot) show + (her.Thisw) + [6.0654 4.8436 4.27631 7.7672 7.88721 6.05449 3.0327 7.62536 7.57085 ] pdfxs + (o) show + (uld) + [6.0654 3.0327 9.38173 ] pdfxs + (a) show + (llowdi\013erentinst) + [3.0327 3.02179 5.15996 11.1926 6.0654 3.0327 6.35986 4.8436 4.27631 4.85451 5.74904 + 7.57093 3.0327 6.05449 4.30902 4.23277 ] pdfxs + (a) show + (nces) + [6.0654 4.8436 4.85451 7.62536 ] pdfxs + (t) show + (ohavedi\013erent\feldsc) + [8.77083 6.0654 5.14905 5.4545 8.17084 6.0654 3.02179 6.37077 4.8436 4.27631 4.8436 + 5.75995 7.56002 6.0654 4.8436 3.0327 6.0654 7.62536 4.8436 ] pdfxs + (o) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (ed) + [4.8436 9.38173 ] pdfxs + (tog) show + (e) + [4.85451 ] pdfxs + (t) show + (her) + [6.05449 4.85451 4.27631 ] pdfxs + 10.909 -43.845 m + (wi) + [7.8763 3.0327 ] pdfxs + (t) show + (he) + [9.6981 4.8436 ] pdfxs + (a) show + (ch) + [4.54905 9.6981 ] pdfxs + (ot) show + (herwhenpr) + [6.05449 4.85451 7.909 7.8763 6.05449 4.85451 9.6981 6.05449 4.27631 ] pdfxs + (o) show + (\f) + [6.0654 ] pdfxs + (ta) show + (ble.) + [6.05449 3.0327 4.8436 3.0327 ] pdfxs + 0 -74.734 m + /N1028 10.909 Tf + (\017) show + 10.909 -74.734 m + /N614 10.909 Tf + (M) + [10.0036 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.29811 4.85451 ] pdfxs + (o) show + (pic) + [6.05449 3.0327 8.49811 ] pdfxs + (t) show + (echniquesiden) + [4.85451 4.53815 6.0654 6.0654 3.02179 5.75995 6.0654 4.8436 7.95263 3.0327 6.0654 + 4.8436 5.75995 ] pdfxs + (t) show + (ify) + [3.0327 3.32724 9.41446 ] pdfxs + (t) show + (rickyc) + [4.27631 3.02179 4.54905 5.75995 9.40355 4.85451 ] pdfxs + (a) show + (ses) + [4.29811 4.85451 7.95263 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (t) + [7.88729 ] pdfxs + (t) show + (he) + [6.0654 8.49811 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (go) show + (rithmmusth) + [4.27631 3.0327 4.23277 6.0654 12.7416 8.79257 6.05449 4.30902 7.8982 6.05449 ] pdfxs + (a) show + (ndle,such) + [6.0654 6.05449 3.0327 4.85451 6.68721 4.29811 6.0654 4.53815 9.71991 ] pdfxs + (a) show + (s) + [7.95263 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (a) show + (-) show + 10.909 -96.656 m + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (o) show + (f) + [6.95994 ] pdfxs + (a) show + (rrays) + [4.27631 4.27631 5.14905 5.75995 7.94172 ] pdfxs + (o) show + (fnodes.) + [6.95994 6.0654 5.75995 6.05449 4.85451 4.29811 3.0327 ] pdfxs + 0.572998 -130.534 m + (Webelieve) + [10.2981 9.3381 6.37085 4.8436 3.0327 3.0327 4.8436 5.4545 9.3381 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [8.72728 ] pdfxs + (t) show + (his) + [6.0654 3.0327 8.79262 ] pdfxs + (agg) show + (ressive) + [4.2654 4.85451 4.29811 4.30902 3.02179 5.4545 9.3381 ] pdfxs + (a) show + (pplic) + [6.0654 6.05449 3.0327 3.0327 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nw) + [10.549 7.57085 ] pdfxs + (o) show + (uldhaveal) + [6.0654 3.0327 10.549 6.05449 5.14905 5.4545 9.3381 9.9381 3.0327 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (g) show + (eperf) + [9.3381 6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (nceimp) + [6.05449 4.85451 9.3381 3.02179 9.09802 6.05449 ] pdfxs + (a) show + (ct) + [4.85451 8.72728 ] pdfxs + (o) show + (nm) + [10.549 9.08711 ] pdfxs + (a) show + (ny) + [5.75995 5.75995 ] pdfxs + -16.364 -152.457 m + (di\013erentpr) + [6.0654 3.02179 6.37077 4.8436 4.27631 4.8436 5.75995 7.87638 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms) + [9.09802 7.93081 ] pdfxs + (a) show + (ndbere) + [6.0654 9.6981 6.35994 8.4872 4.27631 4.8436 ] pdfxs + (a) show + (s) + [4.29811 ] pdfxs + (o) show + (n) + [6.0654 ] pdfxs + (a) show + (blys) + [6.0654 3.02179 9.39264 4.30902 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (a) show + (i) + [3.0327 ] pdfxs + (g) show + (h) + [5.75995 ] pdfxs + (t) show + (-f) + [3.63261 3.33815 ] pdfxs + (o) show + (rw) + [4.27631 7.57085 ] pdfxs + (a) show + (rdtoimplemen) + [4.27631 9.6981 4.23277 9.0981 3.0327 9.08711 6.05449 3.0327 4.85451 9.08711 4.8436 + 5.75995 ] pdfxs + (t) show + (.) show + -16.364 -190.289 m + /N622 11.955 Tf + (8.2.2A) + [6.7307 3.73 6.7307 3.73 20.1801 10.1499 ] pdfxs + (u) show + (tom) + [5.23633 6.71874 11.2138 ] pdfxs + (a) show + (tic) + [5.22437 3.74195 10.4606 ] pdfxs + (u) show + (seof) + [5.29606 10.628 6.71874 8.59556 ] pdfxs + (Su) show + (per) + [7.84247 6.13291 5.49929 ] pdfxs + (pa) show + (gesfor) + [6.71874 6.14487 9.77918 4.11245 6.7307 9.97045 ] pdfxs + (Inp) show + (rovedT) + [5.49929 6.34814 6.71863 6.14487 11.955 9.34877 ] pdfxs + (L) show + (BE\013e) + [14.0471 8.82286 7.8545 6.13291 ] pdfxs + (c) show + (tive) + [5.22437 3.74195 6.73059 6.13291 ] pdfxs + (n) show + (ess) + [6.13291 5.30802 5.30802 ] pdfxs + -16.364 -219.257 m + /N614 10.909 Tf + (T) + [7.8763 ] pdfxs + (L) show + (Bmissesc) + [11.0726 9.08711 3.0327 4.30902 4.29811 4.8436 7.64718 4.85451 ] pdfxs + (a) show + (nbeasi) + [9.40355 6.35994 8.19266 8.80356 4.29811 3.0327 ] pdfxs + (g) show + (ni\fc) + [6.05449 3.0327 6.0654 4.8436 ] pdfxs + (a) show + (ntf) + [5.75995 7.58184 3.33815 ] pdfxs + (a) show + (c) + [4.8436 ] pdfxs + (to) show + (r) + [7.61446 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (tlimi) + [7.58184 3.0327 3.0327 9.08711 3.0327 ] pdfxs + (t) show + (s) + [7.64718 ] pdfxs + (t) show + (heperf) + [6.05449 8.19266 6.37085 4.8436 4.27631 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (nce) + [6.0654 4.8436 8.19266 ] pdfxs + (o) show + (fpr) + [6.6763 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (mswi) + [9.08711 7.64718 7.88721 3.02179 ] pdfxs + (t) show + (hl) + [9.40355 3.0327 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (g) show + (emem) + [8.19266 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 5.75995 ] pdfxs + -16.364 -241.18 m + (fo) + [3.33815 5.74904 ] pdfxs + (ot) show + (prin) + [6.0654 4.2654 3.0327 5.75995 ] pdfxs + (t) show + (s.Toc) + [4.29811 7.66902 6.97085 8.44356 4.85451 ] pdfxs + (o) show + (mb) + [8.78166 6.0654 ] pdfxs + (a) show + (t) + [7.23275 ] pdfxs + (t) show + (hispr) + [6.0654 3.02179 7.29809 6.0654 4.2654 ] pdfxs + (o) show + (blem,) + [6.0654 3.0327 4.8436 9.09802 6.15267 ] pdfxs + (a) show + (rchi) + [4.2654 4.54905 6.05449 3.0327 ] pdfxs + (t) show + (ec) + [4.85451 4.8436 ] pdfxs + (t) show + (uresupp) + [6.05449 4.27631 7.84357 4.29811 6.0654 6.0654 6.35994 ] pdfxs + (o) show + (rtf) + [4.27631 7.23275 3.32724 ] pdfxs + (o) show + (rsuperp) + [7.26537 4.30902 6.05449 6.37085 4.8436 4.27631 6.05449 ] pdfxs + (ag) show + (esh) + [4.85451 7.29809 6.05449 ] pdfxs + (a) show + (sbec) + [7.29809 6.37085 4.8436 4.8436 ] pdfxs + (o) show + (mec) + [9.09802 7.84357 4.8436 ] pdfxs + (o) show + (mm) + [9.08711 9.09802 ] pdfxs + (o) show + (npl) + [6.05449 6.0654 3.0327 ] pdfxs + (a) show + (ce.) + [4.8436 4.85451 3.0327 ] pdfxs + -16.364 -263.102 m + (Superp) + [6.0654 6.05449 6.35994 4.85451 4.27631 6.05449 ] pdfxs + (ag) show + (esimproveT) + [4.85451 8.1599 3.0327 9.08711 6.05449 4.27631 5.14905 5.4545 8.70538 7.88721 ] pdfxs + (L) show + (B) + [11.5853 ] pdfxs + (\\) show + (re) + [4.2654 4.85451 ] pdfxs + (a) show + (ch"byenh) + [4.54905 6.05449 9.31628 5.75995 9.61082 4.85451 6.05449 6.0654 ] pdfxs + (a) show + (ncing) + [6.05449 4.85451 3.02179 6.0654 9.31628 ] pdfxs + (t) show + (heT) + [6.05449 8.70538 7.88721 ] pdfxs + (L) show + (Btosupp) + [11.5853 4.23277 9.31628 4.30902 6.05449 6.0654 6.35994 ] pdfxs + (o) show + (rtentriesf) + [4.27631 8.09456 4.85451 5.75995 4.23277 4.27631 3.0327 4.8436 8.17081 3.32724 ] pdfxs + (o) show + (rtwo) + [8.12718 3.94914 7.57085 9.31628 ] pdfxs + (o) show + (rm) + [8.12718 9.08711 ] pdfxs + (o) show + (rep) + [4.27631 8.70538 6.0654 ] pdfxs + (ag) show + (e) show + -16.364 -285.025 m + (sizes,) + [4.29811 3.0327 4.85451 4.8436 4.30902 7.66902 ] pdfxs + (t) show + (he\frstisast) + [6.05449 9.29447 6.0654 4.2654 4.30902 8.68364 3.02179 8.74898 9.89446 4.30902 4.23277 + ] pdfxs + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + (a) show + (rdsize) + [4.2654 10.5054 4.29811 3.0327 4.85451 9.28356 ] pdfxs + (\() show + (e.) + [4.85451 3.02179 ] pdfxs + (g) show + (.) + [10.2981 ] pdfxs + (4) show + (Kby) + [12.9272 5.75995 5.74904 ] pdfxs + (t) show + (es\)) + [4.85451 4.29811 8.68364 ] pdfxs + (a) show + (nd) + [6.0654 10.4945 ] pdfxs + (t) show + (hesec) + [6.0654 9.28356 4.30902 4.8436 4.85451 ] pdfxs + (o) show + (ndisapower) + [6.05449 10.5054 3.0327 8.73808 9.89446 6.37085 5.14905 7.57085 4.85451 8.71627 ] pdfxs + (o) show + (ftwo) + [7.7672 3.93823 7.58175 9.89446 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (tis) + [8.68364 3.02179 8.74898 ] pdfxs + (o) show + (f) + [3.32724 ] pdfxs + (t) show + (en) + [4.85451 6.0654 ] pdfxs + -16.364 -306.947 m + (muchl) + [8.79257 6.05449 4.54905 9.6981 3.02179 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (g) show + (er\(e.) + [4.85451 7.909 4.23277 4.85451 3.0327 ] pdfxs + (g) show + (.) + [7.87629 ] pdfxs + (1) show + (M) + [13.6363 ] pdfxs + (o) show + (r) + [7.909 ] pdfxs + (16) show + (Mbytes) + [13.6363 5.75995 5.75995 4.23277 4.85451 4.29811 ] pdfxs + (\)) show + (.) show + 0.572998 -328.87 m + (U) show + (singsuperp) + [4.29811 3.0327 6.0654 10.1345 4.30902 6.05449 6.37085 4.8436 4.27631 6.05449 ] pdfxs + (ag) show + (esimprovesT) + [4.85451 8.98898 3.0327 9.08711 6.0654 4.2654 5.15996 5.4545 4.8436 8.98898 7.8763 + ] pdfxs + (L) show + (Bperf) + [12.4144 6.37085 4.8436 4.27631 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (ncebyreducing) + [6.0654 4.8436 9.53447 5.75995 10.4508 4.2654 4.85451 6.05449 6.0654 4.8436 3.0327 + 6.0654 10.1345 ] pdfxs + (t) show + (henumber) + [6.0654 9.53447 5.75995 6.05449 8.79257 6.35994 4.85451 8.95627 ] pdfxs + (o) show + (fen) + [8.01811 4.85451 5.74904 ] pdfxs + (t) show + (riesrequired) + [4.27631 3.0327 4.8436 8.98898 4.27631 4.8436 5.75995 6.0654 3.0327 4.2654 4.85451 + 10.7454 ] pdfxs + (to) show + -16.364 -350.792 m + (cover) + [4.8436 5.15996 5.4545 4.8436 7.37446 ] pdfxs + (a) show + (n) + [9.16356 ] pdfxs + (a) show + (ddressr) + [6.0654 6.0654 4.2654 4.85451 4.29811 7.40718 4.27631 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (e.Bec) + [4.85451 7.70175 7.72349 4.85451 4.8436 ] pdfxs + (a) show + (use) + [6.0654 4.29811 7.95266 ] pdfxs + (o) show + (f) + [6.43631 ] pdfxs + (t) show + (his,) + [6.0654 3.02179 4.30902 6.23994 ] pdfxs + (o) show + (per) + [6.35994 4.85451 4.27631 ] pdfxs + (a) show + (tingsys) + [4.23277 3.0327 6.0654 8.55265 4.30902 5.75995 4.29811 ] pdfxs + (t) show + (emsupp) + [4.8436 12.1962 4.30902 6.05449 6.0654 6.35994 ] pdfxs + (o) show + (rtf) + [4.27631 7.34184 3.33815 ] pdfxs + (o) show + (r) + [7.37446 ] pdfxs + (a) show + (u) + [6.0654 ] pdfxs + (to) show + (m) + [9.08711 ] pdfxs + (at) show + (ic) + [3.0327 4.8436 ] pdfxs + (a) show + (llyinferringwhen) + [3.0327 3.0327 8.8581 3.0327 6.05449 3.33815 4.8436 4.27631 4.27631 3.02179 6.0654 + 8.56356 7.8763 6.05449 4.85451 6.0654 ] pdfxs + -16.364 -372.715 m + (superp) + [4.29811 6.0654 6.35994 4.85451 4.2654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 7.85445 ] pdfxs + (a) show + (rebene\fci) + [4.27631 8.38902 6.37085 4.8436 6.0654 4.8436 6.0654 4.8436 3.0327 ] pdfxs + (a) show + (lh) + [6.57812 6.05449 ] pdfxs + (a) show + (sbeeninves) + [7.85445 6.35994 4.85451 4.8436 9.61082 3.02179 5.75995 5.4545 4.85451 4.29811 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (gat) show + (ed) + [4.8436 9.61082 ] pdfxs + (\() show + (e.) + [4.8436 3.0327 ] pdfxs + (g) show + (.[) + [7.84357 3.0327 ] pdfxs + (111) show + (]) + [3.0327 ] pdfxs + (\)) show + (,focusing) + [6.58903 3.33815 5.75995 4.8436 6.0654 4.29811 3.0327 6.0654 8.99992 ] pdfxs + (o) show + (nhow) + [9.59991 6.0654 5.14905 11.4217 ] pdfxs + (a) show + (ndwhen) + [6.0654 9.61082 7.8763 6.05449 4.85451 9.59991 ] pdfxs + (t) show + (opr) + [8.99992 6.0654 4.27631 ] pdfxs + (o) show + (m) + [9.08711 ] pdfxs + (ot) show + (e) show + -16.364 -394.637 m + (n) + [6.0654 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (lp) + [7.74539 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 9.03262 ] pdfxs + (t) show + (osuperp) + [10.1781 4.29811 6.0654 6.35994 4.85451 4.2654 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 9.03262 ] pdfxs + (a) show + (ndwhen) + [6.05449 10.789 7.8763 6.0654 4.8436 10.789 ] pdfxs + (t) show + (oreduce) + [10.1781 4.2654 4.85451 6.05449 6.0654 4.8436 9.5781 ] pdfxs + (t) show + (hem) + [6.05449 4.85451 13.8107 ] pdfxs + (t) show + (on) + [10.1781 6.05449 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (a) show + (lp) + [7.75629 6.0654 ] pdfxs + (ag) show + (es) + [4.8436 9.03262 ] pdfxs + (aga) show + (in.) + [3.0327 6.05449 11.1381 ] pdfxs + (H) show + (owever,use) + [5.15996 7.57085 4.8436 5.4545 4.85451 4.27631 8.01811 6.0654 4.29811 9.5781 ] pdfxs + (o) show + (f) show + -16.364 -416.56 m + (superp) + [4.29811 6.0654 6.35994 4.85451 4.2654 6.0654 ] pdfxs + (ag) show + (esisn) + [4.8436 8.44353 3.0327 8.43262 6.0654 ] pdfxs + (o) show + (t) + [8.36728 ] pdfxs + (a) show + (lwayspr) + [3.0327 7.58175 5.14905 5.75995 8.43262 6.0654 4.2654 ] pdfxs + (o) show + (\f) + [6.0654 ] pdfxs + (ta) show + (ble[) + [6.05449 3.0327 8.98902 3.02179 ] pdfxs + (132) show + (,) + [7.16721 ] pdfxs + (23) show + (].) + [3.0327 9.37083 ] pdfxs + (I) show + (np) + [10.1999 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (icul) + [3.02179 4.85451 6.05449 3.0327 ] pdfxs + (a) show + (r,superp) + [4.27631 7.28721 4.29811 6.0654 6.35994 4.85451 4.2654 6.0654 ] pdfxs + (ag) show + (es) + [4.85451 8.43262 ] pdfxs + (a) show + (ddincre) + [6.05449 10.1999 3.0327 6.05449 4.85451 4.2654 4.85451 ] pdfxs + (a) show + (sedc) + [4.29811 4.85451 10.189 4.85451 ] pdfxs + (o) show + (mplexity) + [9.08711 6.0654 3.02179 4.85451 5.75995 3.02179 3.94914 5.75995 ] pdfxs + -16.364 -438.482 m + (t) show + (o) + [9.08719 ] pdfxs + (t) show + (he) + [6.0654 8.47629 ] pdfxs + (o) show + (per) + [6.37085 4.8436 4.27631 ] pdfxs + (at) show + (ingsys) + [3.0327 6.05449 9.0981 4.29811 5.75995 4.29811 ] pdfxs + (t) show + (em,m) + [4.85451 9.08711 6.6654 9.08711 ] pdfxs + (a) show + (kesw) + [5.4545 8.4872 4.30902 7.57085 ] pdfxs + (a) show + (ppingm) + [6.0654 6.05449 3.0327 6.05449 9.0981 9.08711 ] pdfxs + (o) show + (reexpensive,) + [4.27631 8.4872 4.8436 5.75995 6.35994 4.85451 6.05449 4.30902 3.02179 5.4545 4.85451 + 6.6654 ] pdfxs + (a) show + (ndc) + [6.0654 9.68719 4.85451 ] pdfxs + (a) show + (n) + [9.6981 ] pdfxs + (a) show + (\013ectw) + [6.35986 4.85451 4.8436 7.87638 7.58175 ] pdfxs + (o) show + (rkingsetsizes.) + [4.2654 5.75995 3.0327 6.0654 9.08719 4.29811 4.85451 7.87638 4.29811 3.0327 4.85451 + 4.8436 4.30902 3.0327 ] pdfxs + 0.572998 -460.405 m + (M) + [10.0036 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.29811 4.85451 ] pdfxs + (o) show + (pic) + [6.05449 3.0327 9.83992 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.02179 5.75995 4.30902 3.02179 9.29443 ] pdfxs + (a) show + (ndpo) + [6.0654 11.0508 6.35994 5.75995 ] pdfxs + (o) show + (l) + [8.01811 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ninp) + [11.0508 3.0327 11.0508 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (icul) + [3.0327 4.8436 6.0654 3.02179 ] pdfxs + (a) show + (rc) + [9.27263 4.8436 ] pdfxs + (a) show + (nbeused) + [11.0508 6.35994 9.83992 6.0654 4.29811 4.85451 11.0508 ] pdfxs + (t) show + (oiden) + [10.4399 3.0327 6.0654 4.8436 5.75995 ] pdfxs + (t) show + (ify) + [3.02179 3.33815 10.7454 ] pdfxs + (a) show + (ndincre) + [6.0654 11.0508 3.0327 6.05449 4.85451 4.2654 4.85451 ] pdfxs + (a) show + (se) + [4.29811 4.8436 ] pdfxs + -16.364 -482.328 m + (t) show + (henumber) + [6.05449 8.7272 5.75995 6.05449 8.79257 6.35994 4.8436 8.149 ] pdfxs + (o) show + (fc) + [7.19993 4.85451 ] pdfxs + (a) show + (seswhensuperp) + [4.29811 4.85451 8.17081 7.8763 6.0654 4.8436 9.93809 4.29811 6.0654 6.35994 4.85451 + 4.2654 6.0654 ] pdfxs + (ag) show + (epr) + [8.71629 6.0654 4.2654 ] pdfxs + (o) show + (m) + [9.09802 ] pdfxs + (ot) show + (i) + [3.02179 ] pdfxs + (o) show + (nisc) + [9.93809 3.0327 8.17081 4.8436 ] pdfxs + (o) show + (ste\013ec) + [4.30902 8.11638 4.8436 6.35986 4.85451 4.8436 ] pdfxs + (t) show + (ive.) + [3.0327 5.4545 4.8436 8.58538 ] pdfxs + (I) show + (np) + [9.93809 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (icul) + [3.0327 4.8436 6.0654 3.02179 ] pdfxs + (a) show + (r,asimple) + [4.27631 6.95994 9.32719 4.30902 3.02179 9.09802 6.05449 3.0327 8.71629 ] pdfxs + (a) show + (ppr) + [6.0654 6.05449 4.27631 ] pdfxs + (oa) show + (ch) + [4.54905 6.0654 ] pdfxs + -16.364 -504.25 m + (w) + [7.57085 ] pdfxs + (o) show + (uldenh) + [6.0654 3.0327 9.51264 4.85451 6.05449 6.0654 ] pdfxs + (a) show + (ncethepo) + [6.0654 4.8436 8.31266 4.23277 6.0654 8.31266 6.35994 5.75995 ] pdfxs + (o) show + (lruntimelibr) + [6.49085 4.2654 6.0654 5.75995 4.23277 3.0327 9.09802 8.30175 3.0327 3.0327 6.05449 + 4.27631 ] pdfxs + (a) show + (ry) + [4.27631 9.20719 ] pdfxs + (\() show + (describedinSec) + [6.0654 4.8436 4.30902 4.8436 4.27631 3.0327 6.35994 4.85451 9.51264 3.0327 9.52355 + 6.05449 4.85451 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.51264 ] pdfxs + (5) show + (.) + [3.0327 ] pdfxs + (1) show + (.) + [3.0327 ] pdfxs + (1) show + (\)) + [7.70183 ] pdfxs + (t) show + (o) + [8.91265 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (esuperp) + [8.30175 4.30902 6.05449 6.37085 4.8436 4.27631 6.05449 ] pdfxs + (ag) show + (emem) + [8.31266 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 5.75995 ] pdfxs + -16.364 -526.173 m + (when) + [7.8763 6.0654 4.8436 9.50173 ] pdfxs + (a) show + (lloc) + [3.0327 3.02179 5.75995 4.85451 ] pdfxs + (a) show + (tingsl) + [4.23277 3.0327 6.0654 8.89083 4.29811 3.0327 ] pdfxs + (a) show + (bs) + [6.0654 7.73445 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (t) + [7.66911 ] pdfxs + (a) show + (rel) + [4.27631 8.29084 3.02179 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (g) show + (er) + [4.8436 7.71264 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (n) + [9.49082 ] pdfxs + (t) show + (hesuperp) + [6.0654 8.27993 4.29811 6.0654 6.35994 4.85451 4.27631 6.05449 ] pdfxs + (ag) show + (e.This) + [4.85451 7.81084 7.8763 6.05449 3.0327 7.74536 ] pdfxs + (a) show + (ppr) + [6.05449 6.0654 4.2654 ] pdfxs + (oa) show + (ch) + [4.54905 9.50173 ] pdfxs + (\(o) show + (rm) + [7.70173 9.09802 ] pdfxs + (o) show + (re) + [4.2654 8.29084 ] pdfxs + (agg) show + (ressive) + [4.2654 4.85451 4.29811 4.30902 3.0327 5.4545 8.27993 ] pdfxs + (o) show + (nes) + [6.0654 4.8436 4.29811 ] pdfxs + (\)) show + -16.364 -548.095 m + (c) + [4.8436 ] pdfxs + (o) show + (uldincre) + [6.0654 3.0327 10.6145 3.0327 6.05449 4.85451 4.2654 4.85451 ] pdfxs + (a) show + (se) + [4.29811 9.40356 ] pdfxs + (t) show + (henumber) + [6.0654 9.40356 5.75995 6.05449 8.79257 6.35994 4.85451 8.82536 ] pdfxs + (o) show + (fsitu) + [7.8872 4.30902 3.0327 4.23277 6.0654 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nswhereuse) + [6.05449 8.85807 7.88721 6.05449 4.85451 4.2654 9.40356 6.0654 4.29811 9.40356 ] pdfxs + (o) show + (fsuperp) + [7.89811 4.29811 6.0654 6.35994 4.8436 4.27631 6.0654 ] pdfxs + (ag) show + (esf) + [4.8436 8.85807 3.33815 ] pdfxs + (o) show + (rrecursived) + [8.82536 4.27631 4.8436 4.85451 6.05449 4.27631 4.29811 3.0327 5.4545 9.40356 6.0654 + ] pdfxs + (at) show + (as) + [10.0035 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (uresis) + [6.0654 4.27631 4.8436 8.85807 3.0327 4.29811 ] pdfxs + -16.364 -570.018 m + (pr) + [6.0654 4.2654 ] pdfxs + (o) show + (\f) + [6.0654 ] pdfxs + (ta) show + (ble,) + [6.05449 3.0327 4.8436 8.30175 ] pdfxs + (ta) show + (king) + [5.74904 3.0327 6.0654 10.3854 ] pdfxs + (a) show + (dv) + [6.0654 5.14904 ] pdfxs + (a) show + (n) + [5.75995 ] pdfxs + (tag) show + (e) + [9.78537 ] pdfxs + (o) show + (f) + [8.26902 ] pdfxs + (t) show + (hed) + [6.05449 9.78537 6.0654 ] pdfxs + (at) show + (as) + [10.3963 4.29811 ] pdfxs + (t) show + (ructuredefr) + [4.27631 6.05449 4.85451 4.23277 6.0654 4.27631 9.78537 6.05449 4.85451 3.32724 4.27631 + ] pdfxs + (ag) show + (ment) + [9.08711 4.85451 5.75995 4.23277 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (npr) + [10.9963 6.0654 4.2654 ] pdfxs + (o) show + (per) + [6.37085 4.8436 4.27631 ] pdfxs + (t) show + (iesprovidedbypo) + [3.0327 4.8436 9.23989 6.0654 4.2654 5.15996 5.74904 3.0327 6.0654 4.8436 10.9963 + 5.75995 10.6908 6.37085 5.75995 ] pdfxs + (o) show + (l) show + -16.364 -591.94 m + (a) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (\() show + (discussedinSec) + [6.0654 3.0327 4.29811 4.85451 6.05449 4.30902 4.29811 4.8436 9.6981 3.0327 9.6981 + 6.0654 4.8436 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (6) show + (.) + [3.0327 ] pdfxs + (3) show + (.) + [3.0327 ] pdfxs + (7) show + (\).) + [4.23277 3.0327 ] pdfxs + 209.454 -657.201 m + (186) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 72 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (wi) + [7.8763 3.0327 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (o) show + (ut) + [6.0654 8.07274 ] pdfxs + (o) show + (bscuring) + [6.0654 4.29811 4.85451 6.05449 4.27631 3.0327 6.05449 9.29447 ] pdfxs + (t) show + (hetypeinf) + [6.05449 8.68356 3.93823 5.75995 6.35994 8.68356 3.0327 6.05449 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n.) + [6.05449 8.47629 ] pdfxs + (Loa) show + (d) + [9.89446 ] pdfxs + (a) show + (ndst) + [6.05449 9.89446 4.30902 4.23277 ] pdfxs + (o) show + (reins) + [4.27631 8.68356 3.0327 6.05449 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.0654 8.12717 ] pdfxs + (ta) show + (keasin) + [5.4545 8.68356 9.29447 4.29811 3.0327 6.05449 ] pdfxs + (g) show + (lep) + [3.0327 8.68356 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er) + [4.8436 8.10537 ] pdfxs + (a) show + (ndd) + [6.0654 9.89446 6.05449 ] pdfxs + (o) show + 0 -21.922 m + (n) + [6.0654 ] pdfxs + (o) show + (tperf) + [7.87638 6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 12.7307 ] pdfxs + (a) show + (nyindexin) + [5.75995 9.39264 3.0327 6.05449 6.0654 4.8436 5.75995 3.0327 6.0654 ] pdfxs + (g) show + (,whichm) + [6.6654 7.8763 6.05449 3.0327 4.54905 9.6981 9.08711 ] pdfxs + (a) show + (kes) + [5.4545 4.85451 7.93081 ] pdfxs + (t) show + (heprocessing) + [6.0654 8.4872 6.05449 4.27631 5.75995 4.8436 4.85451 4.29811 4.29811 3.0327 6.0654 + 9.08719 ] pdfxs + (o) show + (fmem) + [6.97085 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 9.39264 ] pdfxs + (a) show + (ccessessimple) + [4.8436 4.85451 4.8436 4.30902 4.29811 4.85451 7.93081 4.30902 3.0327 9.08711 6.0654 + 3.02179 8.4872 ] pdfxs + (a) show + (ndunif) + [6.0654 9.6981 6.05449 6.0654 3.02179 3.33815 ] pdfxs + (o) show + (rm.) + [4.27631 9.08711 3.0327 ] pdfxs + 0 -59.755 m + /N622 11.955 Tf + (2.2.3Ex) + [6.7307 3.73 6.7307 3.73 20.1801 8.82286 7.10119 ] pdfxs + (p) show + (li) + [3.73 3.74195 ] pdfxs + (c) show + (it) + [3.73 9.71945 ] pdfxs + (M) show + (emoryAllo) + [6.13291 11.2138 6.71874 5.49929 11.5843 10.1499 3.74195 3.73 7.1013 ] pdfxs + (ca) show + (tion) + [5.22437 3.74195 6.71874 11.955 ] pdfxs + (an) show + (dU) + [11.955 10.3411 ] pdfxs + (n) show + (i) + [3.73 ] pdfxs + (\f) show + (ed) + [6.14487 11.955 ] pdfxs + (M) show + (emoryMo) + [6.13291 11.2138 6.71874 5.49929 11.5724 12.7679 7.08935 ] pdfxs + (d) show + (el) + [6.14487 3.74195 ] pdfxs + 0 -88.723 m + /N614 10.909 Tf + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mprovidesins) + [13.4072 6.05449 4.27631 5.14905 5.75995 3.0327 6.05449 4.85451 7.71263 3.02179 6.0654 + 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nsf) + [6.05449 7.71263 3.32724 ] pdfxs + (o) show + (rtypedmem) + [7.67992 3.93823 5.75995 6.37085 4.8436 9.46901 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 9.16356 ] pdfxs + (a) show + (lloc) + [3.02179 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n.The) + [6.0654 7.79993 7.8763 6.0654 4.8436 ] pdfxs + 301.344 -88.723 m + /N722 10.909 Tf + (malloc) show + 339.114 -88.723 m + /N614 10.909 Tf + (ins) + [3.0327 6.05449 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.46901 ] pdfxs + (a) show + (lloc) + [3.0327 3.02179 5.75995 4.85451 ] pdfxs + (at) show + (es) + [4.8436 7.71263 ] pdfxs + (o) show + (ne) + [6.05449 8.25811 ] pdfxs + (o) show + (r) show + -3.05176e-05 -110.645 m + (m) + [9.08711 ] pdfxs + (o) show + (reelemen) + [4.27631 8.74902 4.8436 3.0327 4.8436 9.09802 4.8436 5.75995 ] pdfxs + (t) show + (s) + [8.19263 ] pdfxs + (o) show + (faspeci\fctype) + [7.23266 9.34901 4.30902 6.35994 4.8436 4.85451 3.0327 6.05449 8.74902 3.93823 5.75995 + 6.35994 8.74902 ] pdfxs + (o) show + (n) + [9.949 ] pdfxs + (t) show + (hehe) + [6.0654 8.73811 6.0654 4.8436 ] pdfxs + (a) show + (p,re) + [6.0654 6.99267 4.27631 4.8436 ] pdfxs + (t) show + (urningatypedp) + [6.05449 4.27631 6.0654 3.02179 6.0654 9.34901 9.34901 3.93823 5.75995 6.37085 4.8436 + 9.95991 6.35994 ] pdfxs + (o) show + (inter) + [3.0327 5.75995 4.23277 4.85451 8.17082 ] pdfxs + (t) show + (o) + [9.34901 ] pdfxs + (t) show + (henewmem) + [6.05449 8.74902 6.05449 4.85451 11.7708 9.09802 4.8436 9.08711 ] pdfxs + (o) show + (ry.The) + [4.27631 4.84359 8.66174 7.8763 6.0654 4.8436 ] pdfxs + -3.05176e-05 -132.568 m + /N722 10.909 Tf + (free) show + 26.347 -132.568 m + /N614 10.909 Tf + (ins) + [3.0327 6.05449 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nrele) + [9.50173 4.2654 4.85451 3.0327 4.8436 ] pdfxs + (a) show + (sesmem) + [4.30902 4.8436 7.74536 9.08711 4.8436 9.09802 ] pdfxs + (o) show + (ry) + [4.2654 9.19628 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (ed) + [4.85451 9.49082 ] pdfxs + (t) show + (hr) + [6.0654 4.2654 ] pdfxs + (o) show + (u) + [6.0654 ] pdfxs + (g) show + (h) show + 249.901 -132.568 m + /N722 10.909 Tf + (malloc) show + 284.265 -128.609 m + /N703 7.96999 Tf + (3) show + 288.997 -132.568 m + /N614 10.909 Tf + (.The) + [7.81084 7.8763 6.0654 4.8436 ] pdfxs + 319.036 -132.568 m + /N722 10.909 Tf + (alloca) show + 356.837 -132.568 m + /N614 10.909 Tf + (ins) + [3.0327 6.05449 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nissimil) + [9.50173 3.0327 7.73445 4.30902 3.02179 9.09802 3.0327 3.02179 ] pdfxs + (a) show + (r) + [7.71264 ] pdfxs + (to) show + -3.05176e-05 -154.49 m + /N722 10.909 Tf + (malloc) show + 38.454 -154.49 m + /N614 10.909 Tf + (exceptth) + [4.8436 5.75995 4.85451 4.8436 6.0654 8.33456 4.23277 6.0654 ] pdfxs + (a) show + (tit) + [8.33456 3.0327 8.33456 ] pdfxs + (a) show + (lloc) + [3.02179 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (esmem) + [4.85451 8.38899 9.09802 4.8436 9.08711 ] pdfxs + (o) show + (ryin) + [4.27631 9.85082 3.0327 10.1454 ] pdfxs + (t) show + (hes) + [6.0654 8.93447 4.29811 ] pdfxs + (ta) show + (ckfr) + [4.54905 9.85082 3.32724 4.27631 ] pdfxs + (a) show + (me) + [9.08711 8.94538 ] pdfxs + (o) show + (f) + [7.41812 ] pdfxs + (t) show + (hecurrentfunc) + [6.0654 8.93447 4.85451 6.05449 4.27631 4.27631 4.8436 5.75995 8.33456 3.32724 6.0654 + 6.05449 4.85451 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nins) + [10.1454 3.0327 6.0654 4.29811 ] pdfxs + (t) show + (e) + [4.8436 ] pdfxs + (a) show + (d) + [10.1563 ] pdfxs + (o) show + (f) + [7.41812 ] pdfxs + (t) show + (he) + [6.0654 4.8436 ] pdfxs + -3.05176e-05 -176.413 m + (he) + [6.0654 4.8436 ] pdfxs + (a) show + (p,) + [6.0654 6.4254 ] pdfxs + (a) show + (nd) + [6.0654 9.40355 ] pdfxs + (t) show + (hemem) + [6.05449 8.19266 9.09802 4.8436 9.09802 ] pdfxs + (o) show + (ryis) + [4.2654 9.10901 3.02179 7.64718 ] pdfxs + (a) show + (u) + [6.0654 ] pdfxs + (to) show + (m) + [9.08711 ] pdfxs + (at) show + (ic) + [3.0327 4.8436 ] pdfxs + (a) show + (llyde) + [3.0327 3.0327 9.0981 6.0654 4.8436 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (ed) + [4.8436 9.40355 ] pdfxs + (o) show + (nreturnfr) + [9.40355 4.27631 4.85451 4.23277 6.0654 4.27631 9.40355 3.32724 4.27631 ] pdfxs + (o) show + (m) + [12.4362 ] pdfxs + (t) show + (hefuncti) + [6.05449 8.19266 3.33815 6.0654 6.05449 4.85451 4.23277 3.0327 ] pdfxs + (o) show + (n.) + [6.0654 7.77811 ] pdfxs + (A) show + (lls) + [3.0327 6.37085 4.30902 ] pdfxs + (ta) show + (ck-residen) + [4.53815 5.75995 3.63261 4.27631 4.8436 4.30902 3.0327 6.05449 4.85451 5.74904 ] pdfxs + (t) show + -3.05176e-05 -198.336 m + (d) + [6.0654 ] pdfxs + (a) show + (ta) + [4.23277 9.0981 ] pdfxs + (\() show + (including) + [3.02179 6.0654 4.8436 3.0327 6.0654 6.05449 3.0327 6.0654 9.08719 ] pdfxs + (\\a) show + (u) + [6.0654 ] pdfxs + (to) show + (m) + [9.08711 ] pdfxs + (at) show + (ic"v) + [3.0327 4.8436 9.08719 5.15995 ] pdfxs + (a) show + (ri) + [4.2654 3.0327 ] pdfxs + (a) show + (bles\)) + [6.0654 3.02179 4.85451 4.29811 7.87638 ] pdfxs + (a) show + (re) + [4.27631 8.4872 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (edexplicitlyusin) + [4.8436 9.6981 4.8436 5.75995 6.0654 3.0327 3.02179 4.85451 3.0327 4.23277 3.0327 + 9.39264 6.0654 4.29811 3.0327 6.0654 ] pdfxs + (g) show + 328.667 -198.336 m + /N722 10.909 Tf + (alloca) show + 363.03 -198.336 m + /N614 10.909 Tf + (.) show + 16.936 -220.258 m + (I) show + (n) + [9.43628 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (M,) + [10.0036 6.40358 ] pdfxs + (a) show + (ll) + [3.02179 6.40358 ] pdfxs + (a) show + (ddress) + [6.0654 6.05449 4.27631 4.85451 4.29811 4.29811 ] pdfxs + (a) show + (ble) + [6.0654 3.0327 8.21448 ] pdfxs + (o) show + (bjec) + [6.6763 3.32724 4.85451 4.8436 ] pdfxs + (t) show + (s\() + [7.6799 4.23277 ] pdfxs + (\\) show + (lv) + [3.0327 5.14904 ] pdfxs + (a) show + (lues) + [3.0327 6.0654 4.8436 4.30902 ] pdfxs + (") show + (\)) + [7.61456 ] pdfxs + (a) show + (reexplici) + [4.2654 8.22539 4.85451 5.74904 6.0654 3.0327 3.0327 4.8436 3.0327 ] pdfxs + (t) show + (ly) + [3.02179 9.13083 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.75995 4.8436 ] pdfxs + (at) show + (ed.Gl) + [4.85451 6.05449 7.78902 8.5636 3.0327 ] pdfxs + (o) show + (b) + [6.05449 ] pdfxs + (a) show + (lv) + [6.40358 5.15995 ] pdfxs + (a) show + (ri) + [4.2654 3.0327 ] pdfxs + (a) show + (ble) + [6.0654 3.02179 8.22539 ] pdfxs + (a) show + (ndfunc-) + [6.0654 9.42537 3.33815 6.0654 6.05449 4.85451 3.63261 ] pdfxs + -1.52588e-05 -242.181 m + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nde\fni) + [10.5054 6.0654 4.8436 6.0654 6.05449 3.0327 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nsde\fneasymb) + [6.05449 8.74898 6.0654 4.8436 6.0654 6.0654 9.29447 9.90537 4.29811 5.75995 8.78166 + 6.37085 ] pdfxs + (o) show + (lwhichprovides) + [7.47266 7.8763 6.0654 3.0327 4.53815 10.5163 6.05449 4.27631 5.14905 5.75995 3.0327 + 6.05449 4.85451 8.74898 ] pdfxs + (t) show + (he) + [6.0654 9.29447 ] pdfxs + (a) show + (ddress) + [6.05449 6.0654 4.27631 4.8436 4.29811 8.75989 ] pdfxs + (o) show + (f) + [7.77811 ] pdfxs + (t) show + (he) + [6.05449 9.30538 ] pdfxs + (o) show + (bject) + [6.66539 3.32724 4.85451 4.8436 8.69455 ] pdfxs + (\() show + (n) + [6.05449 ] pdfxs + (o) show + (t) + [8.69455 ] pdfxs + (t) show + (he) + [6.0654 9.29447 ] pdfxs + (o) show + (bjecti) + [6.66539 3.32724 4.85451 4.8436 8.69455 3.0327 ] pdfxs + (t) show + (self) + [4.29811 4.85451 3.02179 4.18905 ] pdfxs + (\)) show + (,) show + -1.52588e-05 -264.103 m + (a) show + (nd) + [6.0654 11.1272 ] pdfxs + (a) show + (lls) + [3.0327 8.10538 4.29811 ] pdfxs + (ta) show + (ckmem) + [4.54905 10.8217 9.09802 4.8436 9.08711 ] pdfxs + (o) show + (ryisexplicitly) + [4.27631 10.8326 3.0327 9.3708 4.8436 5.75995 6.0654 3.0327 3.02179 4.85451 3.0327 + 4.23277 3.0327 10.8326 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (edwith) + [4.8436 11.1381 7.8763 3.0327 4.23277 11.1381 ] pdfxs + (t) show + (he) + [6.05449 4.8436 ] pdfxs + 267.618 -264.103 m + /N722 10.909 Tf + (alloca) show + 307.053 -264.103 m + /N614 10.909 Tf + (ins) + [3.0327 6.05449 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n.This) + [6.0654 12.1853 7.8763 6.05449 3.0327 9.38171 ] pdfxs + (g) show + (ivesauni\fed) + [3.02179 5.4545 4.85451 9.3708 10.5272 6.0654 6.05449 3.0327 6.0654 4.8436 6.0654 + ] pdfxs + 0 -286.026 m + (mem) + [9.08711 4.85451 9.08711 ] pdfxs + (o) show + (rymodelinwhich) + [4.27631 10.0799 9.08711 5.75995 6.05449 4.85451 7.34175 3.0327 10.3854 7.8763 6.0654 + 3.02179 4.54905 10.3854 ] pdfxs + (a) show + (llmem) + [3.02179 7.35266 9.09802 4.8436 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 10.0799 ] pdfxs + (o) show + (per) + [6.35994 4.85451 4.2654 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (ns,includingc) + [6.05449 4.30902 7.5163 3.0327 6.0654 4.8436 3.0327 6.0654 6.05449 3.0327 6.05449 + 9.77446 4.85451 ] pdfxs + (a) show + (llins) + [3.0327 7.34175 3.0327 6.0654 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (ns,occur) + [6.0654 4.29811 7.52721 5.75995 4.8436 4.85451 6.05449 8.59627 ] pdfxs + (t) show + (hr) + [6.05449 4.27631 ] pdfxs + (o) show + (u) + [6.0654 ] pdfxs + (g) show + (htyped) + [10.3745 3.93823 5.75995 6.35994 4.85451 6.0654 ] pdfxs + 0 -307.948 m + (p) + [6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (ers.There) + [4.8436 4.27631 4.29811 9.29446 7.8763 6.0654 4.8436 4.27631 8.95629 ] pdfxs + (a) show + (renoimplicit) + [4.27631 8.95629 6.05449 9.56719 3.0327 9.08711 6.05449 3.0327 3.0327 4.8436 3.0327 + 8.35637 ] pdfxs + (a) show + (ccesses) + [4.8436 4.85451 4.8436 4.29811 4.30902 4.8436 8.41081 ] pdfxs + (t) show + (omem) + [9.56719 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry,simplifyingmem) + [4.27631 4.84359 7.25448 4.30902 3.02179 9.09802 6.05449 3.0327 3.0327 3.32724 5.75995 + 3.0327 6.05449 9.56719 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 9.86173 ] pdfxs + (a) show + (ccess) + [4.85451 4.8436 4.8436 4.30902 8.41081 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis,) + [3.0327 5.75995 4.29811 3.0327 4.30902 7.25448 ] pdfxs + (a) show + (nd) + [6.05449 10.1672 ] pdfxs + (t) show + (he) + [6.0654 4.8436 ] pdfxs + 0 -329.871 m + (represen) + [4.27631 4.8436 6.0654 4.2654 4.85451 4.29811 4.85451 5.74904 ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (nneedsno) + [9.6981 6.0654 4.8436 4.8436 6.0654 7.94172 6.05449 9.0981 ] pdfxs + (\\a) show + (ddress) + [6.05449 6.0654 4.2654 4.85451 4.29811 7.94172 ] pdfxs + (o) show + (f") + [4.17814 9.0981 ] pdfxs + (o) show + (per) + [6.35994 4.85451 4.2654 ] pdfxs + (ato) show + (r.) + [4.27631 3.0327 ] pdfxs + 0 -367.703 m + /N622 11.955 Tf + (2.2.4F) + [6.7307 3.73 6.7307 3.73 20.1801 7.32842 ] pdfxs + (unc) show + (tionC) + [5.23633 3.73 6.7307 11.955 9.70749 ] pdfxs + (a) show + (lls) + [3.73 3.74195 9.79114 ] pdfxs + (an) show + (dEx) + [11.955 8.82286 7.10119 ] pdfxs + (c) show + (e) + [6.13291 ] pdfxs + (p) show + (tionH) + [5.23633 3.73 6.7307 11.955 10.5085 ] pdfxs + (and) show + (li) + [3.74195 3.73 ] pdfxs + (n) show + (g) show + 0 -396.671 m + /N614 10.909 Tf + (F) + [6.20722 ] pdfxs + (o) show + (r) + [7.7781 ] pdfxs + (o) show + (rdin) + [4.27631 6.05449 3.0327 6.0654 ] pdfxs + (a) show + (ryfunc) + [4.2654 9.26174 3.33815 6.05449 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nc) + [9.56719 4.8436 ] pdfxs + (a) show + (lls,) + [3.0327 3.0327 4.29811 6.55631 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mprovides) + [13.5054 6.0654 4.2654 5.15996 5.74904 3.0327 6.0654 4.8436 7.81081 ] pdfxs + (a) show + 219.18 -396.671 m + /N722 10.909 Tf + (call) show + 245.591 -396.671 m + /N614 10.909 Tf + (ins) + [3.0327 6.05449 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.56719 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [7.74547 ] pdfxs + (ta) show + (kesatypedfunc) + [5.4545 4.8436 7.81081 8.95629 3.93823 5.75995 6.35994 4.85451 9.55628 3.33815 6.05449 + 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (np) + [9.56719 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (er) + [4.8436 4.27631 ] pdfxs + 0 -418.594 m + (\() show + (whichmaybeafuncti) + [7.8763 6.0654 3.02179 4.54905 10.7999 9.08711 5.14905 10.4945 6.37085 9.5781 10.189 + 3.33815 6.0654 6.05449 4.85451 4.23277 3.0327 ] pdfxs + (o) show + (nn) + [10.7999 6.0654 ] pdfxs + (a) show + (me) + [9.08711 9.5781 ] pdfxs + (o) show + (r) + [9.01081 ] pdfxs + (a) show + (n) + [10.7999 ] pdfxs + (a) show + (c) + [4.8436 ] pdfxs + (t) show + (u) + [6.0654 ] pdfxs + (a) show + (lp) + [7.7672 6.35994 ] pdfxs + (o) show + (in) + [3.0327 5.75995 ] pdfxs + (t) show + (erv) + [4.8436 9.01081 5.14904 ] pdfxs + (a) show + (lue\)) + [3.0327 6.05449 4.85451 8.97819 ] pdfxs + (a) show + (ndtyped) + [6.0654 10.789 3.93823 5.75995 6.35994 4.85451 10.7999 ] pdfxs + (a) show + (c) + [4.8436 ] pdfxs + (t) show + (u) + [6.0654 ] pdfxs + (a) show + (lar) + [7.75629 5.46541 4.2654 ] pdfxs + (g) show + (umen) + [6.0654 9.08711 4.85451 5.74904 ] pdfxs + (t) show + (s.This) + [4.30902 11.1708 7.88721 6.05449 3.0327 4.29811 ] pdfxs + 0 -440.516 m + (a) show + (bs) + [6.0654 4.29811 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (c) + [4.8436 ] pdfxs + (t) show + (saway) + [7.94172 5.14905 7.57085 5.15996 9.39264 ] pdfxs + (t) show + (hec) + [6.05449 8.4872 4.8436 ] pdfxs + (a) show + (llingc) + [3.0327 3.0327 3.0327 6.05449 9.0981 4.8436 ] pdfxs + (o) show + (nven) + [5.75995 5.4545 4.8436 5.75995 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 7.94172 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (t) show + (heunderlyingm) + [6.05449 8.4872 6.0654 6.05449 6.0654 4.8436 4.27631 3.0327 5.75995 3.02179 6.0654 + 9.08719 9.09802 ] pdfxs + (a) show + (chine) + [4.53815 6.0654 3.0327 6.05449 8.4872 ] pdfxs + (a) show + (ndsimpli\fespr) + [6.0654 9.68719 4.30902 3.0327 9.08711 6.0654 3.02179 3.0327 6.0654 4.8436 7.94172 + 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (m) + [12.7307 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysis.) + [3.0327 5.75995 4.29811 3.0327 4.29811 3.0327 ] pdfxs + 16.936 -462.439 m + (One) + [8.4872 6.05449 8.90174 ] pdfxs + (o) show + (f) + [7.38539 ] pdfxs + (t) show + (hem) + [6.0654 8.90174 9.08711 ] pdfxs + (o) show + (stunusu) + [4.30902 8.29092 6.0654 5.74904 6.0654 4.29811 6.0654 ] pdfxs + (a) show + (lfe) + [7.07994 3.33815 4.8436 ] pdfxs + (at) show + (ures) + [6.0654 4.2654 4.85451 8.35626 ] pdfxs + (o) show + (f) + [7.38539 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (Mis) + [14.0509 3.0327 8.35626 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (titprovides) + [8.30183 3.02179 8.30183 6.05449 4.27631 5.14905 5.75995 3.0327 6.05449 4.85451 8.35626 + ] pdfxs + (a) show + (nexplicit,low-level,m) + [10.1126 4.8436 5.75995 6.0654 3.0327 3.02179 4.85451 3.0327 4.23277 7.18903 3.0327 + 5.14905 7.88721 3.63261 3.0327 4.8436 5.4545 4.85451 3.02179 7.18903 9.08711 ] pdfxs + (a) show + (chine-) + [4.54905 6.0654 3.0327 6.05449 4.85451 3.63261 ] pdfxs + 0 -484.361 m + (independentmech) + [3.0327 6.05449 6.0654 4.8436 6.37085 4.8436 6.0654 6.05449 4.85451 5.74904 9.41455 + 9.09802 4.8436 4.54905 6.05449 ] pdfxs + (a) show + (nism) + [6.0654 3.0327 4.29811 14.258 ] pdfxs + (t) show + (oimplementexcep) + [10.6254 3.0327 9.08711 6.05449 3.0327 4.85451 9.08711 4.85451 5.74904 9.41455 4.8436 + 5.75995 4.85451 4.8436 6.0654 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (nh) + [11.2363 6.05449 ] pdfxs + (a) show + (ndlinginhi) + [6.0654 6.05449 3.0327 3.0327 6.0654 10.6145 3.0327 11.2254 6.0654 3.0327 ] pdfxs + (g) show + (h-levell) + [6.05449 3.64352 3.02179 4.85451 5.4545 4.8436 8.20356 3.0327 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (ag) show + (es.) + [4.8436 4.30902 12.469 ] pdfxs + (I) show + (nf) + [11.2363 3.32724 ] pdfxs + (a) show + (c) + [4.85451 ] pdfxs + (t) show + (,) + [8.57447 ] pdfxs + (t) show + (he) + [6.0654 4.8436 ] pdfxs + 0 -506.284 m + (s) + [4.29811 ] pdfxs + (a) show + (memech) + [9.09802 8.57447 9.08711 4.8436 4.54905 6.0654 ] pdfxs + (a) show + (nism) + [6.05449 3.0327 4.30902 12.8071 ] pdfxs + (a) show + (lsosupp) + [3.0327 4.30902 9.17447 4.29811 6.0654 6.0654 6.35994 ] pdfxs + (o) show + (rts) + [4.27631 4.23277 4.29811 ] pdfxs + 150.385 -506.284 m + /N722 10.909 Tf + (setjmp) show + 188.473 -506.284 m + /N614 10.909 Tf + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + 209.774 -506.284 m + /N722 10.909 Tf + (longjmp) show + 253.589 -506.284 m + /N614 10.909 Tf + (o) show + (per) + [6.35994 4.85451 4.2654 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nsinC,) + [6.0654 8.02899 3.02179 9.78537 7.88721 6.75267 ] pdfxs + (a) show + (llowing) + [3.0327 3.02179 5.15996 7.8763 3.0327 6.05449 9.18538 ] pdfxs + (t) show + (hese) + [6.05449 4.85451 4.29811 8.57447 ] pdfxs + (o) show + (per) + [6.35994 4.85451 4.2654 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nst) + [6.0654 8.02899 4.23277 ] pdfxs + (o) show + -1.52588e-05 -528.206 m + (be) + [6.35994 9.06538 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lyzed) + [3.0327 5.74904 4.85451 4.8436 10.2763 ] pdfxs + (a) show + (nd) + [6.0654 10.2763 ] pdfxs + (o) show + (p) + [6.05449 ] pdfxs + (t) show + (imizedin) + [3.0327 9.08711 3.0327 4.85451 4.8436 10.2763 3.0327 10.2763 ] pdfxs + (t) show + (hes) + [6.05449 9.06538 4.30902 ] pdfxs + (a) show + (meway) + [9.08711 9.06538 7.57085 5.15996 9.97082 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (texcep) + [8.46546 4.8436 5.75995 4.8436 4.85451 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nfe) + [10.2763 3.32724 4.85451 ] pdfxs + (at) show + (uresin) + [6.05449 4.27631 4.8436 8.5199 3.0327 10.2763 ] pdfxs + (ot) show + (herl) + [6.0654 4.8436 8.48718 3.0327 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (u) + [6.05449 ] pdfxs + (ag) show + (es) + [4.85451 8.50899 ] pdfxs + (a) show + (re.The) + [4.27631 4.85451 9.61082 7.8763 6.0654 4.8436 ] pdfxs + -1.52588e-05 -550.129 m + (c) + [4.8436 ] pdfxs + (o) show + (mm) + [9.09802 9.08711 ] pdfxs + (o) show + (nexcep) + [9.6981 4.8436 5.75995 4.85451 4.8436 6.0654 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (nmech) + [9.6981 9.09802 4.8436 4.54905 6.05449 ] pdfxs + (a) show + (nismisb) + [6.0654 3.0327 4.29811 12.7307 3.0327 7.93081 6.0654 ] pdfxs + (a) show + (sed) + [4.29811 4.85451 9.6981 ] pdfxs + (o) show + (ntwoins) + [9.6981 3.93823 7.57085 9.0981 3.02179 6.0654 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns,) + [6.05449 4.30902 3.0327 ] pdfxs + 288.212 -550.129 m + /N722 10.909 Tf + (invoke) show + 326.212 -550.129 m + /N614 10.909 Tf + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + 347.424 -550.129 m + /N722 10.909 Tf + (unwind) show + 381.787 -550.129 m + /N614 10.909 Tf + (.) show + 16.9359 -572.051 m + (The) + [7.8763 6.0654 4.8436 ] pdfxs + 40.1189 -572.051 m + /N722 10.909 Tf + (invoke) show + 78.8759 -572.051 m + /N614 10.909 Tf + (a) show + (nd) + [6.0654 6.0654 ] pdfxs + 100.846 -572.051 m + /N722 10.909 Tf + (unwind) show + 139.604 -572.051 m + /N614 10.909 Tf + (ins) + [3.0327 6.05449 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.0654 8.69444 ] pdfxs + (tog) show + (e) + [4.8436 ] pdfxs + (t) show + (hersupp) + [6.0654 4.8436 8.67263 4.29811 6.0654 6.05449 6.35994 ] pdfxs + (o) show + (rt) + [4.27631 8.64001 ] pdfxs + (a) show + (n) + [10.4508 ] pdfxs + (a) show + (bs) + [6.0654 4.29811 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (ctexcep) + [4.8436 8.64001 4.8436 5.75995 4.85451 4.8436 6.0654 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (nh) + [10.4617 6.05449 ] pdfxs + (a) show + (ndlingmodel) + [6.0654 6.05449 3.0327 3.0327 6.05449 9.85082 9.09802 5.74904 6.0654 4.8436 3.0327 + ] pdfxs + -0.000106812 -593.974 m + (l) + [3.0327 ] pdfxs + (og) show + (ic) + [3.0327 4.8436 ] pdfxs + (a) show + (llyb) + [3.0327 3.0327 9.46901 6.0654 ] pdfxs + (a) show + (sed) + [4.29811 4.85451 9.77446 ] pdfxs + (o) show + (ns) + [9.77446 4.30902 ] pdfxs + (ta) show + (ckunwinding) + [4.53815 9.47992 6.05449 5.75995 7.8763 3.0327 6.0654 6.05449 3.0327 6.0654 9.16356 + ] pdfxs + (\(t) show + (h) + [6.0654 ] pdfxs + (o) show + (u) + [6.05449 ] pdfxs + (g) show + (h) + [9.77446 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (M-) + [10.0036 3.63261 ] pdfxs + (to) show + (-n) + [3.64352 6.05449 ] pdfxs + (at) show + (ivecode) + [3.0327 5.4545 8.56356 4.85451 5.74904 6.0654 8.56356 ] pdfxs + (g) show + (ener) + [4.8436 6.0654 4.8436 4.27631 ] pdfxs + (ato) show + (rsmayuseei) + [4.27631 8.01808 9.08711 5.14905 9.47992 6.0654 4.29811 8.56356 4.85451 3.02179 ] pdfxs + (t) show + (her) + [6.0654 4.8436 7.99628 ] pdfxs + (\\) show + (zer) + [4.8436 4.85451 4.2654 ] pdfxs + (o) show + 1 0 0 1 0 -604.074 cm + q + [] 0 d + 0 J + 0.397995 w + n + 0 0.19899 m + 187.197 0.19899 l + S + Q + 1 0 0 1 12.437 -6.452 cm + 0 0 m + /N1153 5.978 Tf + (3) show + 4.15099 -3.80899 m + /N1156 8.96599 Tf + (Whe) show + (n) + [8.85839 ] pdfxs + (na) show + (tiveco) + [3.58634 2.55527 4.60858 7.83628 4.0885 4.8686 ] pdfxs + (d) show + (eis) + [7.83628 2.55527 7.37003 ] pdfxs + (genera) show + (t) + [3.58634 ] pdfxs + (e) show + (d) + [8.85839 ] pdfxs + (fo) show + (ra) + [7.33411 8.3474 ] pdfxs + (progra) show + (m,) + [7.67484 2.56423 ] pdfxs + 197.921 -3.80899 m + /N1196 8.96599 Tf + (malloc) show + 229.899 -3.80899 m + /N1156 8.96599 Tf + (and) show + 248.481 -3.80899 m + /N1196 8.96599 Tf + (free) show + 271.045 -3.80899 m + /N1156 8.96599 Tf + (i) + [2.56423 ] pdfxs + (n) show + (st) + [3.63121 3.58634 ] pdfxs + (ru) show + (cti) + [4.0885 3.58634 2.56423 ] pdfxs + (on) show + (sa) + [7.37003 4.59962 ] pdfxs + (r) show + (ec) + [7.83628 4.09746 ] pdfxs + (o) show + (nv) + [4.85956 4.60858 ] pdfxs + (er) show + (t) + [3.58634 ] pdfxs + (e) show + (dtot) + [8.85839 3.58634 8.33844 3.58634 ] pdfxs + (h) show + (ea) + [7.83628 4.59962 ] pdfxs + (ppropr) show + (i) + [2.56423 ] pdfxs + (a) show + (t) + [3.58634 ] pdfxs + (e) show + -12.437 -14.768 m + (na) show + (tive) + [3.58634 2.55527 4.60858 7.1728 ] pdfxs + (fun) show + (cti) + [4.09746 3.57737 2.56423 ] pdfxs + (o) show + (nc) + [8.18594 4.09746 ] pdfxs + (a) show + (lls,) + [2.56423 2.55527 3.64018 5.6306 ] pdfxs + (a) show + (llowi) + [2.55527 2.56423 4.34857 6.6528 2.56423 ] pdfxs + (n) show + (gc) + [7.67495 4.09746 ] pdfxs + (u) show + (st) + [3.64018 3.57737 ] pdfxs + (o) show + (mm) + [10.7502 7.6838 ] pdfxs + (e) show + (m) + [7.67484 ] pdfxs + (or) show + (y) + [7.93497 ] pdfxs + (a) show + (lloc) + [2.56423 2.55527 4.8686 4.09746 ] pdfxs + (a) show + (t) + [3.57737 ] pdfxs + (or) show + (stobe) + [6.70655 3.58634 7.67495 5.37959 7.1728 ] pdfxs + (u) show + (s) + [3.63121 ] pdfxs + (ed) show + (.) show + 216.108 -46.675 m + /N614 10.909 Tf + (19) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (31) 32 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 595.275591 788.031496 translate + 180 rotate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 72 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (c) + [4.8436 ] pdfxs + (o) show + (s) + [4.30902 ] pdfxs + (t) show + (") + [8.55265 ] pdfxs + (ta) show + (ble-drivenme) + [6.05449 3.0327 4.8436 3.64352 6.05449 4.27631 3.0327 5.4545 4.8436 9.16356 9.08711 + 4.8436 ] pdfxs + (t) show + (hods[) + [6.0654 5.75995 6.05449 7.39627 3.0327 ] pdfxs + (22) show + (]) + [6.13086 ] pdfxs + (o) show + (r) show + 163.845 0 m + /N722 10.909 Tf + (setjmp) show + 198.209 0 m + /N614 10.909 Tf + (/) show + 203.663 0 m + /N722 10.909 Tf + (longjmp) show + 246.85 0 m + /N614 10.909 Tf + (t) show + (oimplement) + [8.55265 3.0327 9.08711 6.05449 3.0327 4.85451 9.08711 4.8436 5.75995 7.34184 ] pdfxs + (t) show + (heins) + [6.05449 7.95266 3.02179 6.0654 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 4.30902 ] pdfxs + (\)) show + (.) show + 398.838 0 m + /N722 10.909 Tf + (invoke) show + 436.298 0 m + /N614 10.909 Tf + (isused) + [3.0327 7.39627 6.0654 4.29811 4.8436 6.0654 ] pdfxs + -3.05176e-05 -21.922 m + (t) show + (ospecifyexcep) + [8.62902 4.29811 6.37085 4.8436 4.8436 3.0327 3.33815 8.92356 4.85451 5.75995 4.8436 + 4.85451 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nh) + [9.22901 6.0654 ] pdfxs + (a) show + (ndlingcode) + [6.05449 6.0654 3.0327 3.02179 6.0654 8.62902 4.8436 5.75995 6.0654 8.01812 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tmustbeexecu) + [7.4182 8.79257 6.05449 4.30902 7.4182 6.35994 8.01812 4.85451 5.74904 4.85451 4.8436 + 6.0654 ] pdfxs + (t) show + (eddurings) + [4.8436 9.23992 6.05449 6.0654 4.27631 3.02179 6.0654 8.62902 4.29811 ] pdfxs + (ta) show + (ckunwindingf) + [4.54905 8.92356 6.0654 5.75995 7.8763 3.0327 6.05449 6.0654 3.0327 6.05449 8.62902 + 3.33815 ] pdfxs + (o) show + (r) + [7.43992 ] pdfxs + (a) show + (nexcep) + [9.23992 4.8436 5.75995 4.8436 4.85451 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n.) + [6.0654 3.0327 ] pdfxs + -3.05176e-05 -43.845 m + /N722 10.909 Tf + (unwind) show + 38.082 -43.845 m + /N614 10.909 Tf + (isused) + [3.0327 8.01808 6.0654 4.29811 4.85451 9.77446 ] pdfxs + (t) show + (o) + [9.17447 ] pdfxs + (t) show + (hrow) + [6.05449 4.27631 5.14905 11.5963 ] pdfxs + (a) show + (nexcep) + [9.78537 4.8436 5.75995 4.8436 4.85451 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.78537 ] pdfxs + (o) show + (r) + [7.98537 ] pdfxs + (t) show + (operf) + [9.17447 6.35994 4.85451 4.2654 3.33815 ] pdfxs + (o) show + (rm) + [4.27631 12.8071 ] pdfxs + (a) show + 260.362 -43.845 m + /N722 10.909 Tf + (longjmp) show + 300.453 -43.845 m + /N614 10.909 Tf + (.We\frstdescribe) + [8.1272 10.2981 8.57447 6.05449 4.27631 4.29811 7.96365 6.0654 4.8436 4.30902 4.8436 + 4.27631 3.0327 6.35994 8.56356 ] pdfxs + (t) show + (hemech) + [6.0654 8.56356 9.08711 4.85451 4.53815 6.0654 ] pdfxs + (a) show + (nisms) + [6.0654 3.02179 4.30902 9.08711 4.29811 ] pdfxs + -6.10352e-05 -65.768 m + (a) show + (nd) + [6.0654 9.68719 ] pdfxs + (t) show + (hendescribehow) + [6.0654 4.8436 9.6981 6.0654 4.8436 4.30902 4.8436 4.27631 3.0327 6.35994 8.4872 + 6.05449 5.15996 11.509 ] pdfxs + (t) show + (heyc) + [6.0654 4.8436 9.39264 4.85451 ] pdfxs + (a) show + (nbeusedf) + [9.68719 6.37085 8.4872 6.05449 4.30902 4.8436 9.6981 3.32724 ] pdfxs + (o) show + (rimplemen) + [7.909 3.0327 9.09802 6.05449 3.0327 4.8436 9.09802 4.8436 5.75995 ] pdfxs + (t) show + (ingexcep) + [3.0327 6.05449 9.0981 4.8436 5.75995 4.8436 4.85451 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nh) + [9.6981 6.05449 ] pdfxs + (a) show + (ndlin) + [6.0654 6.0654 3.02179 3.0327 6.0654 ] pdfxs + (g) show + (.) show + 16.9359 -87.69 m + (The) + [7.8763 6.0654 4.8436 ] pdfxs + 39.1519 -87.69 m + /N722 10.909 Tf + (invoke) show + 76.9429 -87.69 m + /N614 10.909 Tf + (ins) + [3.0327 6.05449 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nw) + [9.49082 7.57085 ] pdfxs + (o) show + (rksjustlike) + [4.27631 5.75995 7.72354 3.33815 6.0654 4.29811 7.66911 3.0327 3.0327 5.4545 8.26902 + ] pdfxs + (a) show + 212.809 -87.69 m + /N722 10.909 Tf + (call) show + 235.718 -87.69 m + /N614 10.909 Tf + (,butspeci\fes) + [6.50176 6.05449 6.0654 7.66911 4.29811 6.37085 4.8436 4.85451 3.0327 6.05449 4.85451 + 7.72354 ] pdfxs + (a) show + (nex) + [9.49082 4.8436 5.75995 ] pdfxs + (t) show + (rab) + [4.27631 8.87992 6.0654 ] pdfxs + (a) show + (sicblock) + [4.29811 3.0327 8.26902 6.0654 3.0327 5.75995 4.53815 9.18537 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (tindic) + [7.66911 3.0327 6.05449 6.0654 3.02179 4.85451 ] pdfxs + (at) show + (es) + [4.8436 4.29811 ] pdfxs + -9.15527e-05 -109.613 m + (t) show + (hes) + [6.05449 9.83992 4.29811 ] pdfxs + (ta) show + (r) + [4.27631 ] pdfxs + (t) show + (ingblockf) + [3.0327 6.05449 10.4399 6.0654 3.0327 5.74904 4.54905 10.7454 3.32724 ] pdfxs + (o) show + (r) + [9.26172 ] pdfxs + (a) show + (nunwindh) + [11.0508 6.05449 5.75995 7.8763 3.0327 6.0654 11.0399 6.0654 ] pdfxs + (a) show + (ndler.Whenthepr) + [6.05449 6.0654 3.0327 4.8436 4.27631 11.9235 11.2144 6.0654 4.8436 11.0508 4.23277 + 6.0654 9.83992 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (mexecu) + [14.0834 4.8436 5.75995 4.8436 4.85451 6.05449 ] pdfxs + (t) show + (es) + [4.85451 9.28353 ] pdfxs + (a) show + (n) show + 374.014 -109.613 m + /N722 10.909 Tf + (unwind) show + 413.364 -109.613 m + /N614 10.909 Tf + (ins) + [3.0327 6.05449 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n,) + [6.0654 3.0327 ] pdfxs + -0.00012207 -131.535 m + (itl) + [3.0327 9.55636 3.02179 ] pdfxs + (og) show + (ic) + [3.0327 4.85451 ] pdfxs + (a) show + (llyunwinds) + [3.02179 3.0327 11.0726 6.05449 5.75995 7.8763 3.0327 6.0654 6.05449 9.62171 ] pdfxs + (t) show + (hes) + [6.05449 10.1672 4.29811 ] pdfxs + (ta) show + (ckun) + [4.54905 11.0617 6.0654 5.75995 ] pdfxs + (t) show + (ilitremoves) + [3.02179 8.34538 3.0327 9.55636 4.2654 4.85451 9.08711 5.14905 5.4545 4.85451 9.6108 + ] pdfxs + (a) show + (n) + [11.3781 ] pdfxs + (a) show + (c) + [4.8436 ] pdfxs + (t) show + (iv) + [3.0327 5.14904 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nrec) + [11.3672 4.27631 4.8436 4.85451 ] pdfxs + (o) show + (rdcre) + [4.2654 11.3781 4.8436 4.27631 4.8436 ] pdfxs + (at) show + (edby) + [4.85451 11.3672 5.75995 11.0726 ] pdfxs + (a) show + (n) show + 412.549 -131.535 m + /N722 10.909 Tf + (invoke) show + 446.913 -131.535 m + /N614 10.909 Tf + (.) + [12.9053 ] pdfxs + (It) show + -9.15527e-05 -153.458 m + (t) show + (hen) + [6.05449 4.85451 10.3199 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsfersc) + [6.05449 4.30902 3.32724 4.85451 4.2654 8.56353 4.85451 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (r) + [4.2654 ] pdfxs + (o) show + (l) + [7.29812 ] pdfxs + (t) show + (o) + [9.70901 ] pdfxs + (t) show + (heb) + [6.0654 9.10902 6.05449 ] pdfxs + (a) show + (sicblockspeci\fedby) + [4.30902 3.02179 9.11992 6.05449 3.0327 5.75995 4.53815 10.0254 4.29811 6.37085 4.8436 + 4.8436 3.0327 6.0654 4.8436 10.3199 5.75995 10.0254 ] pdfxs + (t) show + (he) + [6.05449 4.8436 ] pdfxs + 278.705 -153.458 m + /N722 10.909 Tf + (invoke) show + 313.068 -153.458 m + /N614 10.909 Tf + (.Thesetwoins) + [9.75264 7.8763 6.0654 4.8436 4.30902 9.10902 3.93823 7.57085 9.71992 3.0327 6.05449 + 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nsexp) + [6.0654 8.56353 4.8436 5.75995 6.35994 ] pdfxs + (o) show + (se) + [4.30902 4.8436 ] pdfxs + -0.00012207 -175.38 m + (excep) + [4.8436 5.75995 4.85451 4.8436 6.0654 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [6.0654 ] pdfxs + (a) show + (lc) + [6.6654 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (o) show + (l\rowin) + [6.6654 6.0654 5.14905 11.509 3.0327 9.6981 ] pdfxs + (t) show + (he) + [6.05449 8.4872 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (MCFG.) + [13.6363 7.8763 6.81812 8.5636 3.0327 ] pdfxs + 16.9359 -197.303 m + (Thesetwoprimi) + [7.8763 6.0654 4.8436 4.30902 7.38539 3.93823 7.57085 7.99629 6.0654 4.2654 3.0327 + 9.09802 3.02179 ] pdfxs + (t) show + (ivesc) + [3.0327 5.4545 4.85451 6.83991 4.8436 ] pdfxs + (a) show + (nbeused) + [8.59629 6.37085 7.38539 6.0654 4.29811 4.8436 8.6072 ] pdfxs + (t) show + (oimplementawidev) + [7.98539 3.0327 9.09802 6.05449 3.0327 4.8436 9.09802 4.8436 5.75995 6.78548 7.98539 + 7.88721 3.02179 6.0654 7.38539 5.14904 ] pdfxs + (a) show + (riety) + [4.27631 3.0327 4.8436 3.93823 8.30174 ] pdfxs + (o) show + (fexcep) + [5.86904 4.85451 5.74904 4.85451 4.8436 6.0654 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nh) + [8.59629 6.05449 ] pdfxs + (a) show + (ndlingmech) + [6.0654 6.0654 3.02179 3.0327 6.0654 7.98539 9.09802 4.8436 4.54905 6.05449 ] pdfxs + (a) show + (nisms.) + [6.0654 3.0327 4.29811 9.09802 4.29811 3.0327 ] pdfxs + -0.00012207 -219.225 m + (Weimplemen) + [10.2981 8.15993 3.02179 9.09802 6.05449 3.0327 4.8436 9.09802 4.8436 5.75995 ] pdfxs + (t) show + (edfullsupp) + [4.8436 9.37082 3.32724 6.0654 3.02179 6.33813 4.29811 6.0654 6.05449 6.37085 ] pdfxs + (o) show + (rtf) + [4.2654 7.54911 3.33815 ] pdfxs + (o) show + (rC's) + [7.57082 7.8763 3.0327 4.29811 ] pdfxs + 176.355 -219.225 m + /N722 10.909 Tf + (setjmp) show + 210.718 -219.225 m + /N614 10.909 Tf + (/) show + 216.173 -219.225 m + /N722 10.909 Tf + (longjmp) show + 259.565 -219.225 m + /N614 10.909 Tf + (c) + [4.8436 ] pdfxs + (a) show + (lls) + [3.0327 3.0327 7.60354 ] pdfxs + (a) show + (nd) + [6.0654 9.35992 ] pdfxs + (t) show + (heC++excepti) + [6.05449 8.14902 7.88721 8.47629 11.7926 4.8436 5.75995 4.85451 4.8436 6.0654 4.23277 + 3.0327 ] pdfxs + (o) show + (nmodel;inf) + [9.35992 9.09802 5.75995 6.05449 4.85451 3.02179 6.44722 3.0327 9.35992 3.33815 ] pdfxs + (a) show + (c) + [4.8436 ] pdfxs + (t) show + (,) show + -0.000152588 -241.148 m + (b) + [6.35994 ] pdfxs + (ot) show + (hcoexistcle) + [9.20719 4.8436 5.75995 4.8436 5.75995 3.0327 4.29811 7.38547 4.8436 3.0327 4.8436 + ] pdfxs + (a) show + (nlyin) + [6.0654 3.0327 8.89083 3.0327 9.19628 ] pdfxs + (o) show + (urimplemen) + [6.0654 7.40719 3.0327 9.08711 6.0654 3.0327 4.8436 9.09802 4.8436 5.75995 ] pdfxs + (tat) show + (i) + [3.02179 ] pdfxs + (o) show + (n[) + [9.20719 3.02179 ] pdfxs + (33) show + (].Atac) + [3.0327 7.71266 7.8763 7.38547 8.59629 4.8436 ] pdfxs + (a) show + (llsi) + [3.0327 6.16358 4.30902 3.0327 ] pdfxs + (t) show + (e,ifs) + [4.8436 6.27267 3.02179 6.47994 4.29811 ] pdfxs + (o) show + (mecodemustbeexecu) + [9.08711 7.9963 4.8436 5.75995 6.05449 7.9963 8.78166 6.0654 4.29811 7.38547 6.35994 + 7.98539 4.85451 5.74904 4.85451 4.8436 6.0654 ] pdfxs + (t) show + (edwhen) + [4.8436 9.20719 7.8763 6.05449 4.85451 6.0654 ] pdfxs + -0.000152588 -263.07 m + (a) show + (nexcep) + [10.7563 4.85451 5.74904 4.85451 4.8436 6.0654 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (nis) + [10.7563 3.0327 8.99989 ] pdfxs + (t) show + (hrown) + [6.0654 4.2654 5.15996 7.8763 10.7563 ] pdfxs + (\() show + (f) + [3.32724 ] pdfxs + (o) show + (rex) + [8.96718 4.85451 5.75995 ] pdfxs + (a) show + (mple,) + [9.08711 6.0654 3.02179 4.85451 3.0327 ] pdfxs + 185.534 -263.07 m + /N722 10.909 Tf + (setjmp) show + 219.898 -263.07 m + /N614 10.909 Tf + (,) + [7.99629 ] pdfxs + (\\) show + (c) + [4.8436 ] pdfxs + (at) show + (ch"blocks,) + [4.54905 6.05449 10.1563 6.05449 3.0327 5.75995 4.53815 5.75995 4.30902 7.98538 ] pdfxs + (o) show + (r) + [8.96718 ] pdfxs + (a) show + (u) + [6.0654 ] pdfxs + (to) show + (m) + [9.08711 ] pdfxs + (at) show + (icv) + [3.0327 9.54537 5.14904 ] pdfxs + (a) show + (ri) + [4.27631 3.0327 ] pdfxs + (a) show + (bledes) + [6.05449 3.0327 9.54537 6.05449 4.85451 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (to) show + (rs) + [4.2654 4.29811 ] pdfxs + -0.000152588 -284.993 m + (inC++) + [3.0327 10.5599 7.8763 8.4872 8.4872 ] pdfxs + (\)) show + (,thecodeuses) + [7.74539 4.23277 6.0654 9.34901 4.8436 5.75995 6.0654 9.34901 6.05449 4.30902 4.8436 + 8.80353 ] pdfxs + (t) show + (he) + [6.05449 4.8436 ] pdfxs + 139.759 -284.993 m + /N722 10.909 Tf + (invoke) show + 178.622 -284.993 m + /N614 10.909 Tf + (ins) + [3.0327 6.05449 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nf) + [10.5599 3.33815 ] pdfxs + (o) show + (r) + [8.77081 ] pdfxs + (t) show + (hec) + [6.05449 9.34901 4.85451 ] pdfxs + (a) show + (ll.When) + [3.02179 3.0327 10.4726 11.2144 6.05449 4.85451 10.5599 ] pdfxs + (a) show + (nexcep) + [10.5599 4.8436 5.75995 4.8436 4.85451 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nis) + [10.5599 3.0327 8.80353 ] pdfxs + (t) show + (hrown,) + [6.05449 4.27631 5.14905 7.8763 6.0654 7.74539 ] pdfxs + (t) show + (his) + [6.05449 3.0327 4.29811 ] pdfxs + -0.000167847 -306.915 m + (c) + [4.8436 ] pdfxs + (a) show + (uses) + [6.0654 4.29811 4.85451 7.57081 ] pdfxs + (t) show + (hes) + [6.05449 8.1163 4.29811 ] pdfxs + (ta) show + (ckunwinding) + [4.54905 9.02174 6.05449 5.75995 7.8763 3.0327 6.0654 6.05449 3.0327 6.0654 8.71629 + ] pdfxs + (t) show + (ostopin) + [8.71629 4.30902 4.23277 5.46541 9.31628 3.0327 9.32719 ] pdfxs + (t) show + (hecurrentfunc) + [6.05449 8.1163 4.85451 6.05449 4.27631 4.2654 4.85451 5.75995 7.50547 3.32724 6.0654 + 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n,execu) + [6.05449 6.37085 4.85451 5.74904 4.85451 4.8436 6.0654 ] pdfxs + (t) show + (e) + [8.10539 ] pdfxs + (t) show + (hedesiredcode,) + [6.0654 8.1163 6.05449 4.85451 4.29811 3.0327 4.27631 4.8436 9.32719 4.8436 5.75995 + 6.0654 4.8436 6.37085 ] pdfxs + (t) show + (henc) + [6.05449 4.85451 9.32719 4.8436 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (inue) + [3.0327 5.74904 6.0654 4.8436 ] pdfxs + -0.000167847 -328.838 m + (execu) + [4.8436 5.75995 4.85451 4.8436 6.0654 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (o) show + (runwinding) + [7.909 6.0654 5.75995 7.8763 3.0327 6.05449 6.0654 3.0327 6.05449 9.08719 ] pdfxs + (a) show + (s) + [7.94172 ] pdfxs + (a) show + (ppr) + [6.0654 6.05449 4.27631 ] pdfxs + (o) show + (pri) + [6.0654 4.2654 3.0327 ] pdfxs + (at) show + (e.) + [4.8436 3.0327 ] pdfxs + 17.0488 -356.563 m + /N1220 8.96599 Tf + (f) show + 28.3848 -367.522 m + /N1156 8.96599 Tf + (AClassObj;) + [7.64795 7.39698 3.29944 5.3438 4.37539 10.275 7.54036 5.48718 4.99401 2.56423 ] pdfxs + 105.606 -367.522 m + /N1223 8.96599 Tf + (//Hasadestructo) + [5.25401 11.0998 7.16383 5.0209 10.0329 11.9875 6.05199 5.58581 5.1106 4.4113 5.22716 + 6.28511 5.58581 4.40233 6.06095 ] pdfxs + (r) show + 28.6398 -378.481 m + /N1156 8.96599 Tf + (func\(\);) + [3.8105 6.1148 6.10583 6.95761 5.4423 5.45127 2.56423 ] pdfxs + 105.606 -378.481 m + /N1223 8.96599 Tf + (//Mightthrow;mustexecutedestructo) + [5.25401 11.5481 9.0108 3.58642 4.99406 5.4692 10.2123 3.92713 5.56782 4.743 5.56782 + 8.62534 9.97917 8.09625 5.50507 4.32159 10.3468 5.42442 5.44235 5.42442 5.42442 6.12372 + 4.24991 12.3013 6.05199 5.58581 5.1106 4.4113 5.22716 6.28511 5.58581 4.40233 6.05199 + ] pdfxs + (r) show + 29.8728 -389.44 m + /N1156 8.96599 Tf + (...) + [4.7878 4.7878 2.56423 ] pdfxs + 17.0488 -400.399 m + /N1220 8.96599 Tf + (g) show + 125.273 -429.888 m + /N614 10.909 Tf + (Fi) + [7.12357 3.0327 ] pdfxs + (g) show + (ure) + [6.05449 4.27631 8.4872 ] pdfxs + (2) show + (.) + [3.02179 ] pdfxs + (3) show + (:C++excep) + [7.8872 7.8763 8.4872 12.1199 4.8436 5.75995 4.8436 4.85451 6.05449 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nh) + [9.6981 6.0654 ] pdfxs + (a) show + (ndlingex) + [6.05449 6.0654 3.02179 3.0327 6.0654 9.08719 4.85451 5.74904 ] pdfxs + (a) show + (mple) + [9.09802 6.05449 3.0327 4.8436 ] pdfxs + 16.9359 -463.766 m + (F) + [6.20722 ] pdfxs + (o) show + (rex) + [8.44354 4.85451 5.74904 ] pdfxs + (a) show + (mple,c) + [9.09802 6.05449 3.0327 4.8436 7.33084 4.85451 ] pdfxs + (o) show + (nsiderFi) + [6.05449 4.30902 3.0327 6.05449 4.85451 8.43264 7.12357 3.0327 ] pdfxs + (g) show + (ure) + [6.05449 4.27631 9.01083 ] pdfxs + (2) show + (.) + [3.0327 ] pdfxs + (3) show + (,whichshowsac) + [7.33084 7.8763 6.0654 3.0327 4.53815 10.2326 4.29811 6.0654 5.14905 7.8763 8.46535 + 9.62173 4.85451 ] pdfxs + (a) show + (sewhere) + [4.29811 9.02174 7.8763 6.05449 4.85451 4.27631 9.01083 ] pdfxs + (\\) show + (cle) + [4.8436 3.0327 4.85451 ] pdfxs + (a) show + (nupcode"needs) + [5.74904 6.0654 10.2217 4.85451 5.75995 6.05449 4.85451 9.62173 6.05449 4.85451 4.8436 + 6.0654 8.46535 ] pdfxs + (t) show + (obe) + [9.62173 6.35994 9.01083 ] pdfxs + (g) show + (en-) + [4.85451 6.0654 3.63261 ] pdfxs + -0.000137329 -485.688 m + (er) + [4.8436 4.27631 ] pdfxs + (at) show + (edby) + [4.8436 9.86173 5.75995 9.55628 ] pdfxs + (t) show + (heC++fr) + [6.05449 8.65084 7.8763 8.4872 12.2835 3.32724 4.27631 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (-end.) + [3.63261 4.85451 6.05449 6.0654 8.35629 ] pdfxs + (I) show + (f) + [7.13448 ] pdfxs + (t) show + (he`) + [6.0654 8.63993 3.0327 ] pdfxs + 181.515 -485.688 m + /N722 10.909 Tf + (func\(\)) show + 215.879 -485.688 m + /N614 10.909 Tf + ('c) + [6.82903 4.8436 ] pdfxs + (a) show + (ll) + [3.0327 6.82903 ] pdfxs + (t) show + (hrows) + [6.0654 4.2654 5.14905 7.88721 8.09444 ] pdfxs + (a) show + (nexcep) + [9.86173 4.8436 5.75995 4.85451 4.8436 6.0654 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (n,C++) + [6.0654 6.87267 7.8763 8.4872 12.2726 ] pdfxs + (g) show + (u) + [6.0654 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (a) show + (n) + [5.74904 ] pdfxs + (t) show + (ees) + [4.85451 4.8436 8.10535 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [8.04001 ] pdfxs + (t) show + (he) + [6.0654 4.8436 ] pdfxs + -0.000137329 -507.611 m + (des) + [6.0654 4.8436 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (to) show + (rf) + [7.99628 3.32724 ] pdfxs + (o) show + (r) + [7.99628 ] pdfxs + (t) show + (he) + [6.05449 4.8436 ] pdfxs + 87.9809 -507.611 m + /N722 10.909 Tf + (Object) show + 126.066 -507.611 m + /N614 10.909 Tf + (o) show + (bjectwillberun.Toimplement) + [6.66539 3.33815 4.8436 4.85451 7.96365 7.8763 3.0327 3.02179 6.75267 6.37085 8.56356 + 4.27631 6.05449 6.0654 8.1272 6.97085 9.17447 3.0327 9.09802 6.05449 3.0327 4.8436 + 9.09802 4.8436 5.75995 7.96365 ] pdfxs + (t) show + (his,) + [6.05449 3.0327 4.30902 6.76358 ] pdfxs + (a) show + (n) show + 328.843 -507.611 m + /N722 10.909 Tf + (invoke) show + 366.928 -507.611 m + /N614 10.909 Tf + (ins) + [3.0327 6.05449 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (nisused) + [9.78537 3.02179 8.02899 6.0654 4.29811 4.8436 9.78537 ] pdfxs + (to) show + -0.000152588 -529.533 m + (h) + [6.0654 ] pdfxs + (a) show + (ltunwindin) + [3.02179 8.59637 6.0654 5.74904 7.88721 3.02179 6.0654 6.05449 3.0327 6.0654 ] pdfxs + (g) show + (,) + [7.55993 ] pdfxs + (t) show + (hedes) + [6.05449 9.19629 6.0654 4.8436 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (to) show + (risrun,) + [8.629 3.0327 8.6508 4.2654 6.0654 6.0654 7.54902 ] pdfxs + (t) show + (henunwindingisc) + [6.0654 4.8436 10.4181 6.05449 5.75995 7.8763 3.0327 6.0654 6.05449 3.0327 6.0654 + 9.79628 3.0327 8.6508 4.85451 ] pdfxs + (o) show + (ntinuedwi) + [5.75995 4.23277 3.0327 5.75995 6.0654 4.8436 10.4072 7.88721 3.02179 ] pdfxs + (t) show + (hthe) + [10.4181 4.23277 6.0654 4.8436 ] pdfxs + 374.65 -529.533 m + /N722 10.909 Tf + (unwind) show + 413.364 -529.533 m + /N614 10.909 Tf + (ins) + [3.0327 6.05449 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n.) + [6.0654 3.0327 ] pdfxs + -0.000183105 -551.456 m + (The) + [7.8763 6.0654 8.01812 ] pdfxs + (g) show + (ener) + [4.85451 6.05449 4.85451 4.2654 ] pdfxs + (at) show + (ed) + [4.85451 9.22901 ] pdfxs + (L) show + (L) + [5.60722 ] pdfxs + (V) show + (McodeisshowninFi) + [13.1781 4.8436 5.75995 6.0654 8.01812 3.0327 7.47263 4.30902 6.05449 5.14905 7.88721 + 9.22901 3.0327 9.23992 7.11266 3.0327 ] pdfxs + (g) show + (ure) + [6.0654 4.2654 8.02902 ] pdfxs + (2) show + (.) + [3.0327 ] pdfxs + (4) show + (.) + [7.72357 ] pdfxs + (Not) show + (e) + [8.01812 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tafr) + [7.4182 8.62902 3.33815 4.27631 ] pdfxs + (o) show + (n) + [5.74904 ] pdfxs + (t) show + (-endf) + [3.64352 4.8436 6.0654 9.22901 3.33815 ] pdfxs + (o) show + (r) + [7.43992 ] pdfxs + (J) show + (avaw) + [5.15996 5.14904 8.62902 7.57085 ] pdfxs + (o) show + (uldusesimil) + [6.0654 3.0327 9.22901 6.0654 4.29811 8.02902 4.29811 3.0327 9.08711 3.0327 3.0327 + ] pdfxs + (a) show + (r) show + -0.000183105 -573.379 m + (code) + [4.8436 5.75995 6.0654 9.04356 ] pdfxs + (t) show + (ounlocklocks) + [9.64355 6.05449 6.0654 3.0327 5.75995 4.53815 9.949 3.0327 5.75995 4.54905 5.74904 + 8.49808 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (t) + [8.43274 ] pdfxs + (a) show + (re) + [4.27631 9.04356 ] pdfxs + (a) show + (cquired) + [4.8436 5.75995 6.05449 3.0327 4.27631 4.8436 10.2545 ] pdfxs + (t) show + (hr) + [6.0654 4.2654 ] pdfxs + (o) show + (u) + [6.0654 ] pdfxs + (g) show + (hsynchr) + [10.2545 4.29811 5.75995 6.0654 4.53815 6.0654 4.27631 ] pdfxs + (o) show + (nizedblocks) + [6.05449 3.0327 4.8436 4.85451 10.2545 6.05449 3.0327 5.75995 4.54905 5.74904 8.49808 + ] pdfxs + (o) show + (rme) + [8.46536 9.09802 4.8436 ] pdfxs + (t) show + (hodswhenexcep) + [6.0654 5.74904 6.0654 8.49808 7.8763 6.0654 4.8436 10.2545 4.8436 5.75995 4.85451 + 4.8436 6.0654 ] pdfxs + (t) show + (i) + [3.02179 ] pdfxs + (o) show + (ns) + [6.0654 4.29811 ] pdfxs + -0.000183105 -595.301 m + (a) show + (re) + [4.27631 8.47629 ] pdfxs + (t) show + (hrown.) + [6.0654 4.27631 5.14905 7.8763 6.0654 3.0327 ] pdfxs + 16.9358 -617.224 m + (Akeyfe) + [13.6144 5.4545 4.85451 11.1926 3.32724 4.85451 ] pdfxs + (at) show + (ure) + [6.05449 4.27631 10.2872 ] pdfxs + (o) show + (f) + [8.75992 ] pdfxs + (o) show + (ur) + [6.0654 9.70899 ] pdfxs + (a) show + (ppr) + [6.05449 6.0654 4.27631 ] pdfxs + (oa) show + (chis) + [4.53815 11.4981 3.0327 9.7417 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [9.67636 ] pdfxs + (t) show + (hec) + [6.0654 10.2872 4.8436 ] pdfxs + (o) show + (mplex,l) + [9.08711 6.0654 3.0327 4.8436 5.75995 8.91265 3.0327 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (g) show + (u) + [6.05449 ] pdfxs + (ag) show + (e-speci\fcde) + [4.85451 3.63261 4.29811 6.37085 4.8436 4.85451 3.02179 6.0654 10.2872 6.05449 4.85451 + ] pdfxs + (ta) show + (ils) + [3.02179 3.0327 9.7417 ] pdfxs + (o) show + (fwh) + [8.77083 7.8763 6.05449 ] pdfxs + (a) show + (tcode) + [9.68727 4.8436 5.75995 6.05449 4.8436 ] pdfxs + 228.545 -657.201 m + (20) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 396.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 88.936 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (Whenins) + [11.2144 6.05449 4.85451 10.0035 3.02179 6.0654 4.29811 ] pdfxs + (ta) show + (nceinterleavingisused,) + [6.0654 4.8436 8.79265 3.0327 5.75995 4.23277 4.85451 4.27631 3.02179 4.85451 5.14905 + 5.75995 3.0327 6.05449 9.39265 3.0327 8.24717 6.05449 4.30902 4.8436 6.0654 7.04721 + ] pdfxs + (a) show + (ssuming) + [4.29811 4.30902 6.05449 9.09802 3.02179 6.0654 9.39265 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (t) + [8.18183 ] pdfxs + (t) show + (he\felds) + [6.05449 8.79265 6.05449 4.85451 3.0327 6.05449 8.24717 ] pdfxs + (o) show + (f) + [7.2763 ] pdfxs + (t) show + (hiss) + [6.05449 3.0327 8.24717 4.29811 ] pdfxs + (t) show + (ructure) + [4.27631 6.05449 4.85451 4.23277 6.0654 4.27631 8.78174 ] pdfxs + (a) show + (re) + [4.27631 8.79265 ] pdfxs + (a) show + (ll) + [3.02179 6.97085 ] pdfxs + (t) show + (hes) + [6.0654 8.79265 4.29811 ] pdfxs + (a) show + (me) + [9.08711 4.8436 ] pdfxs + -16.936 -21.922 m + (size) + [4.29811 3.0327 4.85451 8.47629 ] pdfxs + (a) show + (nd) + [6.0654 9.6981 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tf) + [7.88729 3.32724 ] pdfxs + (o) show + (ur\felds\ft) + [6.0654 7.909 6.05449 4.85451 3.0327 6.05449 7.94172 6.05449 7.88729 ] pdfxs + (o) show + (nac) + [9.6981 9.08719 4.8436 ] pdfxs + (a) show + (cheline,mem) + [4.54905 6.0654 8.47629 3.0327 3.0327 6.05449 4.85451 6.6654 9.08711 4.85451 9.08711 + ] pdfxs + (o) show + (ryw) + [4.27631 9.39264 7.57085 ] pdfxs + (o) show + (uldbe) + [6.0654 3.0327 9.6981 6.35994 8.4872 ] pdfxs + (o) show + (r) + [4.2654 ] pdfxs + (ga) show + (nizedlike) + [6.0654 3.0327 4.8436 4.85451 9.6981 3.02179 3.0327 5.4545 8.4872 ] pdfxs + (t) show + (hisins) + [6.05449 3.0327 7.94172 3.0327 6.05449 4.30902 ] pdfxs + (t) show + (e) + [4.8436 ] pdfxs + (a) show + (d:) + [6.0654 3.0327 ] pdfxs + 0 -43.845 m + /N722 10.909 Tf + (AF1,BF1,CF1,DF1) show + (,) + [11.4544 ] pdfxs + (AF2,BF2,CF2,DF2) show + (,) + [11.4544 ] pdfxs + (AF3,BF3,CF3,DF3) show + (,) + [11.4544 ] pdfxs + (AF4,BF4,CF4,DF4) show + 0 -65.768 m + /N614 10.909 Tf + (The) + [7.8763 6.0654 7.85448 ] pdfxs + (a) show + (dv) + [6.0654 5.14904 ] pdfxs + (a) show + (n) + [5.75995 ] pdfxs + (tag) show + (e) + [7.85448 ] pdfxs + (o) show + (fthislay) + [6.34903 4.23277 6.0654 3.0327 7.309 3.0327 5.14905 5.4545 ] pdfxs + (o) show + (utis) + [6.0654 7.25457 3.02179 7.31991 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (titp) + [7.25457 3.0327 7.25457 6.05449 ] pdfxs + (a) show + (cksidentic) + [4.54905 5.75995 7.309 3.0327 6.05449 4.85451 5.75995 4.23277 3.0327 4.85451 ] pdfxs + (a) show + (l\felds) + [6.03267 6.0654 4.8436 3.0327 6.0654 7.309 ] pdfxs + (tog) show + (e) + [4.8436 ] pdfxs + (t) show + (her) + [6.0654 4.8436 7.28719 ] pdfxs + (o) show + (n) + [5.75995 ] pdfxs + (t) show + (oac) + [8.46538 8.45447 4.85451 ] pdfxs + (a) show + (cheline.C) + [4.54905 6.05449 7.86539 3.02179 3.0327 6.0654 4.8436 7.66902 7.8763 ] pdfxs + (o) show + (nsider) + [6.0654 4.29811 3.0327 6.0654 4.8436 4.27631 ] pdfxs + -16.936 -87.69 m + (a) + [8.69447 ] pdfxs + (t) show + (ravers) + [4.27631 5.14905 5.4545 4.8436 4.27631 4.29811 ] pdfxs + (a) show + (l) + [6.27267 ] pdfxs + (o) show + (f) + [6.57812 ] pdfxs + (t) show + (hisd) + [6.05449 3.0327 7.54899 6.05449 ] pdfxs + (at) show + (as) + [8.69447 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (ure) + [6.0654 4.2654 8.09448 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [7.48365 ] pdfxs + (a) show + (ccesses\feldsF1) + [4.85451 4.8436 4.8436 4.30902 4.29811 4.85451 7.53809 6.0654 4.8436 3.0327 6.0654 + 7.53809 7.12357 8.69447 ] pdfxs + (a) show + (ndF) + [6.05449 9.30537 7.12357 ] pdfxs + (2) show + (,butn) + [6.34903 6.0654 6.05449 7.48365 6.0654 ] pdfxs + (o) show + (tF3) + [7.47275 7.12357 8.69447 ] pdfxs + (o) show + (rF) + [7.51628 7.12357 ] pdfxs + (4) show + (.) + [7.74539 ] pdfxs + (I) show + (n) + [9.30537 ] pdfxs + (t) show + (he\frstc) + [6.05449 8.09448 6.05449 4.27631 4.29811 7.48365 4.85451 ] pdfxs + (a) show + (se,) + [4.29811 4.85451 3.0327 ] pdfxs + -16.936 -109.613 m + (e) + [4.8436 ] pdfxs + (a) show + (chs) + [4.54905 10.0908 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ureins) + [6.05449 4.27631 8.86902 3.0327 6.0654 4.29811 ] pdfxs + (ta) show + (nceoccupies) + [6.05449 4.85451 8.86902 5.75995 4.85451 4.8436 6.0654 6.05449 3.0327 4.8436 8.33444 + ] pdfxs + (a) show + (nentirec) + [10.0799 4.85451 5.75995 4.23277 3.0327 4.27631 8.86902 4.85451 ] pdfxs + (a) show + (cheline,) + [4.53815 6.0654 8.86902 3.0327 3.0327 6.0654 4.8436 7.1563 ] pdfxs + (a) show + (nd) + [6.05449 10.0908 ] pdfxs + (t) show + (raversing) + [4.2654 5.15996 5.4545 4.8436 4.27631 4.29811 3.0327 6.05449 9.47992 ] pdfxs + (t) show + (hesef) + [6.0654 4.8436 4.30902 8.86902 3.33815 ] pdfxs + (o) show + (urins) + [6.05449 8.30173 3.0327 6.05449 4.30902 ] pdfxs + (ta) show + (ncesrequires) + [6.05449 4.85451 4.8436 8.33444 4.2654 4.85451 5.74904 6.0654 3.0327 4.2654 4.85451 + 4.29811 ] pdfxs + -16.936 -131.535 m + (t) show + (heuse) + [6.05449 8.47629 6.0654 4.29811 8.47629 ] pdfxs + (o) show + (ff) + [6.95994 3.32724 ] pdfxs + (o) show + (urc) + [6.0654 7.8981 4.8436 ] pdfxs + (a) show + (chelines,) + [4.54905 6.05449 8.47629 3.0327 3.02179 6.0654 4.8436 4.30902 6.65449 ] pdfxs + (a) show + (nd) + [6.0654 9.67628 ] pdfxs + (o) show + (nlyh) + [6.0654 3.0327 9.38174 6.05449 ] pdfxs + (a) show + (lf) + [3.0327 6.95994 ] pdfxs + (o) show + (ftheinf) + [6.95994 4.23277 6.0654 8.47629 3.02179 6.0654 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (a) show + (ti) + [4.23277 3.0327 ] pdfxs + (o) show + (ne) + [9.68719 4.8436 ] pdfxs + (a) show + (chc) + [4.54905 9.68719 4.8436 ] pdfxs + (a) show + (chelineis) + [4.54905 6.0654 8.46538 3.0327 3.0327 6.05449 8.47629 3.0327 7.9199 ] pdfxs + (a) show + (c) + [4.85451 ] pdfxs + (t) show + (u) + [6.05449 ] pdfxs + (a) show + (llyused.) + [3.0327 3.0327 9.38174 6.05449 4.30902 4.8436 6.0654 7.87629 ] pdfxs + (A) show + (f) + [3.32724 ] pdfxs + (t) show + (er) + [4.85451 4.27631 ] pdfxs + -16.936 -153.458 m + (ins) + [3.0327 6.05449 4.30902 ] pdfxs + (ta) show + (ncein) + [6.05449 4.85451 8.47629 3.0327 5.75995 ] pdfxs + (t) show + (erleavin) + [4.8436 4.27631 3.0327 4.8436 5.15996 5.74904 3.0327 6.0654 ] pdfxs + (g) show + (,) + [6.6654 ] pdfxs + (o) show + (nlytwoc) + [6.05449 3.0327 9.39264 3.93823 7.58175 9.08719 4.85451 ] pdfxs + (a) show + (chelines) + [4.53815 6.0654 8.4872 3.02179 3.0327 6.0654 4.8436 7.94172 ] pdfxs + (a) show + (re) + [4.27631 8.47629 ] pdfxs + (a) show + (ccessed,reducingc) + [4.85451 4.8436 4.85451 4.29811 4.30902 4.8436 6.0654 6.6654 4.2654 4.85451 6.05449 + 6.0654 4.8436 3.0327 6.0654 9.08719 4.85451 ] pdfxs + (a) show + (chefo) + [4.53815 6.0654 8.4872 3.32724 5.75995 ] pdfxs + (ot) show + (print) + [6.05449 4.27631 3.0327 5.75995 7.87638 ] pdfxs + (o) show + (f) + [6.97085 ] pdfxs + (t) show + (he) + [6.05449 8.4872 ] pdfxs + (t) show + (ravers) + [4.27631 5.14905 5.4545 4.8436 4.27631 4.29811 ] pdfxs + (a) show + (l.) + [3.0327 3.0327 ] pdfxs + 0 -175.38 m + (I) show + (ns) + [6.0654 4.29811 ] pdfxs + (ta) show + (ncein) + [6.0654 4.8436 9.58901 3.0327 5.75995 ] pdfxs + (t) show + (erleavingisapowerful) + [4.8436 4.27631 3.0327 4.8436 5.14905 5.75995 3.0327 6.0654 10.189 3.0327 9.04353 + 10.1999 6.37085 5.14905 7.57085 4.85451 4.2654 3.33815 6.0654 7.7672 ] pdfxs + (t) show + (echnique,\frstprop) + [4.8436 4.54905 6.0654 6.05449 3.0327 5.75995 6.05449 4.85451 8.05084 6.05449 4.27631 + 4.30902 8.97819 6.0654 4.2654 5.46541 6.35994 ] pdfxs + (o) show + (sedbyTru) + [4.29811 4.85451 10.7999 5.75995 10.5054 6.95994 4.27631 6.0654 ] pdfxs + (o) show + (nget.) + [6.05449 10.1999 4.85451 4.23277 11.2035 ] pdfxs + (a) show + (l,in[) + [3.0327 8.05084 3.0327 10.7999 3.0327 ] pdfxs + (136) show + (],) + [3.0327 8.05084 ] pdfxs + (a) show + (nd) + [6.05449 6.0654 ] pdfxs + -16.936 -197.303 m + (p) + [6.0654 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (a) show + (lly) + [3.0327 3.02179 8.83629 ] pdfxs + (a) show + (u) + [6.0654 ] pdfxs + (to) show + (m) + [9.08711 ] pdfxs + (at) show + (edin[) + [4.8436 9.14174 3.02179 9.14174 3.0327 ] pdfxs + (106) show + (].Theyshow) + [3.0327 7.69084 7.8763 6.05449 4.85451 8.82538 4.30902 6.05449 5.15996 10.9526 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tins) + [7.32002 3.0327 6.05449 4.30902 ] pdfxs + (ta) show + (ncein) + [6.05449 4.85451 7.91993 3.0327 5.75995 ] pdfxs + (t) show + (erleavingc) + [4.8436 4.27631 3.02179 4.85451 5.14905 5.75995 3.0327 6.05449 8.53084 4.85451 ] pdfxs + (a) show + (nhaveal) + [9.13083 6.0654 5.14905 5.4545 7.91993 8.53084 3.0327 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (g) show + (ep) + [7.93084 6.35994 ] pdfxs + (o) show + (si) + [4.30902 3.02179 ] pdfxs + (t) show + (iveperf) + [3.0327 5.4545 7.91993 6.37085 4.8436 4.27631 3.32724 ] pdfxs + (o) show + (r-) + [4.27631 3.63261 ] pdfxs + -16.936 -219.225 m + (m) + [9.08711 ] pdfxs + (a) show + (nceimp) + [6.0654 4.8436 8.6072 3.0327 9.08711 6.0654 ] pdfxs + (a) show + (c) + [4.8436 ] pdfxs + (t) show + (,butisdi\016cult) + [6.81812 6.05449 6.0654 7.99638 3.0327 8.06172 6.05449 3.0327 9.08711 4.85451 6.05449 + 3.0327 7.99638 ] pdfxs + (t) show + (oimplemen) + [9.20719 3.0327 9.09802 6.05449 3.0327 4.8436 9.09802 4.8436 5.75995 ] pdfxs + (t) show + (.) + [8.23629 ] pdfxs + (I) show + (np) + [9.81809 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (icul) + [3.0327 4.8436 6.0654 3.02179 ] pdfxs + (a) show + (r,ins) + [4.27631 6.81812 3.0327 6.05449 4.30902 ] pdfxs + (ta) show + (ncein) + [6.05449 4.85451 8.59629 3.0327 5.75995 ] pdfxs + (t) show + (erleavingrequiresaspeci) + [4.8436 4.27631 3.0327 4.8436 5.14905 5.75995 3.0327 6.05449 9.2181 4.2654 4.85451 + 5.75995 6.05449 3.0327 4.27631 4.8436 8.06172 9.20719 4.30902 6.35994 4.8436 4.85451 + 3.0327 ] pdfxs + (a) show + (l) show + -16.936 -241.148 m + (a) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (nlibr) + [9.63264 3.0327 3.0327 6.0654 4.2654 ] pdfxs + (a) show + (ry) + [4.27631 9.32719 ] pdfxs + (a) show + (ndrequiresaway) + [6.0654 9.62173 4.27631 4.85451 5.74904 6.0654 3.0327 4.2654 4.85451 7.87627 9.02174 + 7.57085 5.15996 9.32719 ] pdfxs + (t) show + (o) + [9.02174 ] pdfxs + (g) show + (et) + [4.8436 7.82183 ] pdfxs + (t) show + (hec) + [6.05449 8.42175 4.8436 ] pdfxs + (o) show + (mpiler) + [9.09802 6.05449 3.0327 3.0327 4.8436 7.84355 ] pdfxs + (t) show + (olay) + [9.02174 3.0327 5.15996 9.32719 ] pdfxs + (o) show + (ut) + [6.05449 7.81092 ] pdfxs + (t) show + (he\felds) + [6.0654 8.42175 6.05449 4.85451 3.02179 6.0654 7.87627 ] pdfxs + (o) show + (fas) + [6.90539 9.02174 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.0654 4.8436 ] pdfxs + (t) show + (urein) + [6.0654 4.2654 8.42175 3.0327 9.63264 ] pdfxs + (t) show + (his) + [6.05449 3.0327 4.29811 ] pdfxs + -16.936 -263.07 m + (unusu) + [6.0654 5.74904 6.0654 4.29811 6.0654 ] pdfxs + (a) show + (lways.Theimplement) + [6.21813 7.58175 5.14905 5.75995 4.29811 7.73448 7.8763 6.0654 8.03993 3.0327 9.08711 + 6.0654 3.0327 4.8436 9.08711 4.85451 5.75995 4.23277 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nin[) + [9.26173 3.02179 9.26173 3.02179 ] pdfxs + (106) show + (]islimi) + [6.22904 3.0327 7.49445 3.0327 3.0327 9.08711 3.0327 ] pdfxs + (t) show + (edinsever) + [4.8436 9.25083 3.0327 9.26173 4.29811 4.8436 5.4545 4.85451 4.27631 ] pdfxs + (a) show + (lways:inp) + [6.21813 7.58175 5.14905 5.75995 4.29811 7.65811 3.0327 9.25083 6.0654 ] pdfxs + (a) show + (r) + [4.2654 ] pdfxs + (t) show + (icul) + [3.0327 4.8436 6.0654 3.0327 ] pdfxs + (a) show + (r,) + [4.2654 6.31631 ] pdfxs + (t) show + (hey) + [6.0654 4.8436 8.95628 ] pdfxs + (o) show + (nlyev) + [6.05449 3.0327 8.95628 4.8436 5.14904 ] pdfxs + (a) show + (l-) + [3.0327 3.63261 ] pdfxs + -16.936 -284.993 m + (u) + [6.0654 ] pdfxs + (a) show + (te) + [4.23277 8.1272 ] pdfxs + (t) show + (he) + [6.05449 8.1272 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nf) + [9.3381 3.32724 ] pdfxs + (o) show + (rverysm) + [7.54901 5.4545 4.8436 4.27631 9.03265 4.29811 9.09802 ] pdfxs + (a) show + (llpr) + [3.02179 6.3054 6.0654 4.27631 ] pdfxs + (og) show + (r) + [4.2654 ] pdfxs + (a) show + (ms,) + [9.09802 4.29811 6.38176 ] pdfxs + (a) show + (ssume) + [4.29811 4.30902 6.05449 9.08711 8.1272 ] pdfxs + (\() show + (butdon) + [6.05449 6.0654 7.51638 6.0654 8.7272 6.05449 ] pdfxs + (o) show + (tcheck\)) + [7.51638 4.54905 6.05449 4.85451 4.54905 5.74904 7.51638 ] pdfxs + (t) show + (h) + [6.0654 ] pdfxs + (a) show + (t) + [7.51638 ] pdfxs + (t) show + (heirCpr) + [6.05449 4.85451 3.0327 7.5381 11.1599 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (ms) + [9.08711 4.29811 ] pdfxs + -16.936 -306.915 m + (a) show + (retype-s) + [4.27631 8.4872 3.93823 5.75995 6.35994 4.8436 3.64352 4.29811 ] pdfxs + (a) show + (fe,perf) + [3.33815 4.8436 6.6763 6.35994 4.8436 4.27631 3.33815 ] pdfxs + (o) show + (rmsthe) + [4.2654 9.09802 7.94172 4.23277 6.0654 8.4872 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.6981 ] pdfxs + (\\) show + (pertype"ins) + [6.35994 4.85451 7.909 3.93823 5.75995 6.35994 4.85451 9.08719 3.0327 6.05449 4.30902 + ] pdfxs + (t) show + (e) + [4.8436 ] pdfxs + (a) show + (d) + [9.6981 ] pdfxs + (o) show + (fperd) + [6.97085 6.37085 4.8436 7.909 6.0654 ] pdfxs + (at) show + (as) + [9.08719 4.30902 ] pdfxs + (t) show + (ruc) + [4.2654 6.0654 4.8436 ] pdfxs + (t) show + (ureins) + [6.0654 4.27631 8.4872 3.02179 6.0654 4.29811 ] pdfxs + (ta) show + (nce,does) + [6.0654 4.8436 4.85451 6.6654 6.0654 5.74904 4.85451 4.29811 ] pdfxs + -16.936 -328.838 m + (n) + [6.0654 ] pdfxs + (o) show + (tcheckf) + [7.87638 4.53815 6.0654 4.8436 4.54905 9.39264 3.33815 ] pdfxs + (o) show + (rmem) + [7.909 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 9.39264 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tesc) + [7.87638 4.85451 4.29811 4.85451 ] pdfxs + (a) show + (pes) + [6.35994 4.85451 7.93081 ] pdfxs + (t) show + (hepr) + [6.0654 8.4872 6.05449 4.27631 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (m,e) + [9.08711 6.6654 4.8436 ] pdfxs + (t) show + (c.) + [4.85451 3.0327 ] pdfxs + 0 -350.761 m + (I) show + (mplemen) + [9.08711 6.0654 3.0327 4.8436 9.09802 4.8436 5.75995 ] pdfxs + (t) show + (ingins) + [3.0327 6.05449 8.18175 3.0327 6.05449 4.30902 ] pdfxs + (ta) show + (ncein) + [6.05449 4.85451 7.57085 3.0327 5.75995 ] pdfxs + (t) show + (erleaving) + [4.8436 4.27631 3.0327 4.8436 5.14905 5.75995 3.0327 6.05449 8.18175 ] pdfxs + (a) show + (saM) + [7.03627 8.18175 10.0036 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.29811 4.85451 ] pdfxs + (o) show + (pic) + [6.05449 3.0327 7.57085 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.0654 4.29811 3.33815 ] pdfxs + (o) show + (rm) + [4.2654 9.09802 ] pdfxs + (at) show + (i) + [3.02179 ] pdfxs + (o) show + (nw) + [8.79265 7.57085 ] pdfxs + (o) show + (uldimproveup) + [6.0654 3.0327 8.78174 3.0327 9.08711 6.0654 4.27631 5.14905 5.4545 7.57085 6.0654 + 6.35994 ] pdfxs + (o) show + (n) + [8.79265 ] pdfxs + (t) show + (hisin) + [6.05449 3.0327 7.03627 3.02179 6.0654 ] pdfxs + -16.936 -372.683 m + (sever) + [4.29811 4.85451 5.4545 4.8436 4.27631 ] pdfxs + (a) show + (lways,requiringimplement) + [6.31631 7.58175 5.14905 5.75995 4.29811 6.39267 4.2654 4.85451 5.74904 6.0654 3.0327 + 4.2654 3.0327 6.0654 8.73811 3.0327 9.08711 6.0654 3.0327 4.8436 9.08711 4.85451 + 5.75995 4.23277 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.34901 ] pdfxs + (t) show + (echniquesth) + [4.8436 4.54905 6.0654 6.05449 3.0327 5.75995 6.05449 4.85451 7.59263 4.23277 6.0654 + ] pdfxs + (a) show + (t) + [7.52729 ] pdfxs + (a) show + (reverysimil) + [4.27631 8.13811 5.4545 4.8436 4.27631 9.04356 4.29811 3.0327 9.08711 3.0327 3.0327 + ] pdfxs + (a) show + (r) + [7.55992 ] pdfxs + (t) show + (o) + [8.73811 ] pdfxs + (t) show + (hep) + [6.0654 8.1272 6.37085 ] pdfxs + (o) show + (in) + [3.0327 5.74904 ] pdfxs + (t) show + (erc) + [4.85451 7.55992 4.8436 ] pdfxs + (o) show + (mpressi) + [9.08711 6.0654 4.27631 4.8436 4.30902 4.29811 3.0327 ] pdfxs + (o) show + (n) show + -16.936 -394.606 m + (a) show + (l) + [3.0327 ] pdfxs + (go) show + (ri) + [4.2654 3.0327 ] pdfxs + (t) show + (hmdescribedinCh) + [6.0654 12.2071 6.0654 4.8436 4.30902 4.8436 4.27631 3.0327 6.35994 4.8436 9.18537 + 3.0327 9.18537 7.8763 6.05449 ] pdfxs + (a) show + (p) + [6.0654 ] pdfxs + (t) show + (er) + [4.8436 7.39628 ] pdfxs + (7) show + (.) + [7.71266 ] pdfxs + (I) show + (np) + [9.18537 6.05449 ] pdfxs + (a) show + (r) + [4.27631 ] pdfxs + (t) show + (icul) + [3.02179 4.85451 6.05449 3.0327 ] pdfxs + (a) show + (r,am) + [4.27631 6.25085 8.57447 9.09802 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.29811 4.85451 ] pdfxs + (o) show + (picimplemen) + [6.05449 3.0327 7.97448 3.0327 9.08711 6.05449 3.0327 4.85451 9.08711 4.8436 5.75995 + ] pdfxs + (tat) show + (i) + [3.0327 ] pdfxs + (o) show + (nc) + [9.18537 4.8436 ] pdfxs + (o) show + (ulddirec) + [6.0654 3.02179 9.18537 6.0654 3.02179 4.27631 4.85451 4.8436 ] pdfxs + (t) show + (lys) + [3.0327 8.87992 4.29811 ] pdfxs + (o) show + (lve) + [3.0327 5.4545 4.8436 ] pdfxs + -16.936 -416.528 m + (t) show + (hepr) + [6.05449 9.06538 6.05449 4.27631 ] pdfxs + (o) show + (blemswi) + [6.0654 3.02179 4.85451 9.08711 8.5199 7.8763 3.0327 ] pdfxs + (t) show + (h) + [10.2654 ] pdfxs + (t) show + (he) + [6.0654 9.05447 ] pdfxs + (a) show + (l) + [3.0327 ] pdfxs + (go) show + (ri) + [4.2654 3.0327 ] pdfxs + (t) show + (hmpresen) + [6.0654 13.298 6.0654 4.2654 4.85451 4.29811 4.85451 5.74904 ] pdfxs + (t) show + (edin[) + [4.85451 10.2654 3.0327 10.2763 3.02179 ] pdfxs + (106) show + (],m) + [3.0327 7.38539 9.08711 ] pdfxs + (a) show + (king) + [5.75995 3.0327 6.05449 9.66537 ] pdfxs + (t) show + (hissui) + [6.0654 3.0327 8.50899 4.30902 6.05449 3.0327 ] pdfxs + (ta) show + (blef) + [6.05449 3.0327 9.06538 3.32724 ] pdfxs + (o) show + (ruseinaproduc) + [8.48718 6.05449 4.30902 9.05447 3.0327 10.2763 9.66537 6.05449 4.27631 5.75995 6.05449 + 6.0654 4.8436 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (n) show + -16.936 -438.451 m + (c) + [4.8436 ] pdfxs + (o) show + (mpilerbyusing) + [9.09802 6.05449 3.0327 3.0327 4.8436 7.909 5.75995 9.39264 6.0654 4.29811 3.0327 + 6.0654 9.08719 ] pdfxs + (t) show + (hef) + [6.05449 8.4872 3.33815 ] pdfxs + (o) show + (llowingpr) + [3.0327 3.02179 5.15996 7.8763 3.0327 6.05449 9.08719 6.0654 4.27631 ] pdfxs + (o) show + (per) + [6.35994 4.8436 4.27631 ] pdfxs + (t) show + (ies:) + [3.0327 4.8436 4.30902 3.0327 ] pdfxs + -0.571991 -472.328 m + /N1028 10.909 Tf + (\017) show + 10.337 -472.328 m + /N614 10.909 Tf + (M) + [10.0036 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.29811 4.85451 ] pdfxs + (o) show + (pic) + [6.05449 3.0327 8.4872 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysisidenti\fesmem) + [3.0327 5.75995 4.29811 3.0327 7.94172 3.0327 6.05449 4.85451 5.75995 4.23277 3.0327 + 6.0654 4.8436 7.94172 9.08711 4.85451 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 9.39264 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tis) + [7.88729 3.02179 7.94172 ] pdfxs + (a) show + (ccessedinatype-s) + [4.85451 4.8436 4.85451 4.29811 4.29811 4.85451 9.6981 3.0327 9.68719 9.0981 3.93823 + 5.75995 6.35994 4.8436 3.64352 4.29811 ] pdfxs + (a) show + (feway.) + [3.33815 8.4872 7.57085 5.14905 4.8545 3.0327 ] pdfxs + -0.571991 -503.217 m + /N1028 10.909 Tf + (\017) show + 10.337 -503.217 m + /N614 10.909 Tf + (M) + [10.0036 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.29811 4.85451 ] pdfxs + (o) show + (pic) + [6.05449 3.0327 8.4872 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysisidenti\festype-h) + [3.0327 5.75995 4.29811 3.0327 7.94172 3.0327 6.05449 4.85451 5.75995 4.23277 3.0327 + 6.0654 4.8436 7.94172 3.93823 5.75995 6.35994 4.85451 3.63261 6.0654 ] pdfxs + (o) show + (m) + [9.08711 ] pdfxs + (og) show + (en) + [4.8436 6.0654 ] pdfxs + (o) show + (usrecursived) + [6.05449 7.94172 4.27631 4.8436 4.85451 6.05449 4.27631 4.30902 3.02179 5.4545 8.4872 + 6.0654 ] pdfxs + (at) show + (as) + [9.08719 4.29811 ] pdfxs + (t) show + (ruc) + [4.27631 6.05449 4.85451 ] pdfxs + (t) show + (ures.) + [6.05449 4.27631 4.8436 4.30902 3.0327 ] pdfxs + -0.571991 -534.106 m + /N1028 10.909 Tf + (\017) show + 10.337 -534.106 m + /N614 10.909 Tf + (M) + [10.0036 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.29811 4.85451 ] pdfxs + (o) show + (pic) + [6.05449 3.0327 8.99993 ] pdfxs + (a) show + (n) + [6.05449 ] pdfxs + (a) show + (lysisiden) + [3.0327 5.75995 4.29811 3.0327 8.44353 3.0327 6.0654 4.8436 5.75995 ] pdfxs + (t) show + (i\fesmem) + [3.0327 6.05449 4.85451 8.44353 9.09802 4.8436 9.08711 ] pdfxs + (o) show + (ry) + [4.27631 9.90537 ] pdfxs + (o) show + (bjects) + [6.66539 3.33815 4.8436 4.85451 4.23277 8.45444 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (tesc) + [8.3891 4.85451 4.29811 4.85451 ] pdfxs + (a) show + (pe) + [6.35994 8.99993 ] pdfxs + (o) show + (u) + [6.05449 ] pdfxs + (t) show + (side) + [4.30902 3.02179 6.0654 8.98902 ] pdfxs + (o) show + (f) + [7.48357 ] pdfxs + (t) show + (hesc) + [6.0654 8.98902 4.29811 4.85451 ] pdfxs + (o) show + (pe) + [6.35994 8.99993 ] pdfxs + (o) show + (f) + [7.47266 ] pdfxs + (a) show + (n) + [6.0654 ] pdfxs + (a) show + (lysis) + [3.0327 5.75995 4.29811 3.0327 4.29811 ] pdfxs + 10.337 -556.029 m + (\() show + (e.) + [4.8436 3.0327 ] pdfxs + (g) show + (.,) + [3.0327 6.6654 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (o) show + (se) + [4.30902 8.4872 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [7.87638 ] pdfxs + (a) show + (rep) + [4.27631 8.4872 6.05449 ] pdfxs + (a) show + (ssed) + [4.30902 4.29811 4.85451 9.6981 ] pdfxs + (t) show + (oex) + [9.08719 4.8436 5.75995 ] pdfxs + (t) show + (ern) + [4.8436 4.27631 6.0654 ] pdfxs + (a) show + (lfunc) + [6.6654 3.32724 6.0654 6.05449 4.85451 ] pdfxs + (t) show + (i) + [3.0327 ] pdfxs + (o) show + (ns) + [6.05449 4.30902 ] pdfxs + (\)) show + (.) show + -0.571991 -586.918 m + /N1028 10.909 Tf + (\017) show + 10.337 -586.918 m + /N614 10.909 Tf + (M) + [10.0036 ] pdfxs + (a) show + (cr) + [4.8436 4.27631 ] pdfxs + (o) show + (sc) + [4.29811 4.85451 ] pdfxs + (o) show + (pic) + [6.05449 3.0327 8.13811 ] pdfxs + (t) show + (echinques) + [4.8436 4.54905 6.05449 3.0327 6.0654 5.75995 6.05449 4.85451 7.58172 ] pdfxs + (g) show + (ivefullc) + [3.0327 5.4545 8.13811 3.33815 6.05449 3.0327 6.31631 4.85451 ] pdfxs + (o) show + (n) + [5.74904 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (o) show + (lover) + [6.31631 5.14905 5.4545 4.85451 7.55992 ] pdfxs + (t) show + (he) + [6.05449 8.13811 ] pdfxs + (a) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (nruntimelibr) + [9.34901 4.2654 6.0654 5.75995 4.23277 3.0327 9.09802 8.1272 3.0327 3.0327 6.05449 + 4.27631 ] pdfxs + (a) show + (ry) + [4.27631 9.04356 ] pdfxs + (t) show + (h) + [6.05449 ] pdfxs + (a) show + (t) + [7.5382 ] pdfxs + (t) show + (hepr) + [6.05449 8.13811 6.0654 4.2654 ] pdfxs + (og) show + (r) + [4.27631 ] pdfxs + (a) show + (m) show + 10.337 -608.84 m + (a) show + (lloc) + [3.0327 3.0327 5.74904 4.85451 ] pdfxs + (at) show + (es) + [4.8436 7.94172 ] pdfxs + (a) show + (ndfreesmem) + [6.05449 9.6981 3.33815 4.27631 4.8436 4.8436 7.94172 9.09802 4.8436 9.08711 ] pdfxs + (o) show + (rywi) + [4.27631 9.39264 7.8763 3.0327 ] pdfxs + (t) show + (h.) + [6.0654 3.0327 ] pdfxs + 208.882 -657.201 m + (185) show + Q + PDFVars/TermAll get exec end end + userdict /pgsave get restore + showpage + %%PageTrailer + %%EndPage + PStoPSsaved restore + PStoPSsaved restore + %%Page: (32) 33 + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 0.000000 0.000000 translate + 1.000000 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + userdict/PStoPSsaved save put + PStoPSmatrix setmatrix + 562.235294 -0.000000 translate + 90 rotate + 0.647059 dup scale + userdict/PStoPSmatrix matrix currentmatrix put + userdict/PStoPSclip{0 0 moveto + 612.000000 0 rlineto 0 792.000000 rlineto -612.000000 0 rlineto + closepath}put initclip + /showpage{}def/copypage{}def/erasepage{}def + PStoPSxform concat + %%BeginPageSetup + userdict /pgsave save put + PDFVars begin PDF begin PDFVars/InitAll get exec + 0 0 612 792 true PDF begin PDFVars begin AS end end + %%EndPageSetup + 0 0 612 792 re + W + n + q + 1 0 0 1 72 709.041 cm + [/DeviceGray] cs 0 sc + 0 0 m + /N614 10.909 Tf + (sh) + [4.29811 6.0654 ] pdfxs + (o) show + (uld) + [6.0654 3.02179 9.93809 ] pdfxs + (a) show + (llowdirectimplement) + [3.0327 3.0327 5.14905 11.749 6.0654 3.02179 4.27631 4.85451 4.8436 8.11638 3.0327 + 9.08711 6.0654 3.0327 4.8436 9.08711 4.85451 5.75995 4.23277 ] pdfxs + (at) show + (i) + [3.0327 ] pdfxs + (o) show + (n) + [9.93809 ] pdfxs + (o) show + (fCBGC.C) + [7.19993 7.88721 7.72349 8.5636 7.8763 6.90539 7.8763 ] pdfxs + (o) show + (mp) + [9.08711 6.0654 ] pdfxs + (a) show + (red) + [4.27631 4.8436 9.93809 ] pdfxs + (t) show + (o[) + [9.32719 3.0327 ] pdfxs + (66) show + (]) + [6.89448 ] pdfxs + (a) show + (nd[) + [6.0654 9.93809 3.02179 ] pdfxs + (74) show + (],using) + [3.0327 6.97085 6.05449 4.30902 3.02179 6.0654 9.32719 ] pdfxs + (D) show + (SA) + [6.05449 12.0653 ] pdfxs + (a) show + (s) + [8.17081 ] pdfxs + (t) show + (heb) + [6.0654 8.71629 6.0654 ] pdfxs + (a) show + (sis) + [4.29811 3.0327 4.29811 ] pdfxs + 0 -21.922 m + (f) + [3.33815 ] pdfxs + (o) show + (r) + [8.84718 ] pdfxs + (t) show + (his) + [6.0654 3.0327 8.87989 ] pdfxs + (t) show + (r) + [4.27631 ] pdfxs + (a) show + (nsf) + [6.05449 4.30902 3.32724 ] pdfxs + (o) show + (rm) + [4.27631 9.08711 ] pdfxs